| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233 |
- ; FBX 7.5.0 project file
- ; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors.
- ; All rights reserved.
- ; ----------------------------------------------------
- FBXHeaderExtension: {
- FBXHeaderVersion: 1003
- FBXVersion: 7500
- CreationTimeStamp: {
- Version: 1000
- Year: 2020
- Month: 7
- Day: 2
- Hour: 13
- Minute: 58
- Second: 19
- Millisecond: 145
- }
- Creator: "FBX SDK/FBX Plugins version 2016.1.2"
- SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
- Type: "UserData"
- Version: 100
- MetaData: {
- Version: 100
- Title: ""
- Subject: ""
- Author: ""
- Keywords: ""
- Revision: ""
- Comment: ""
- }
- Properties70: {
- P: "DocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Round_Tower_Entrance_01.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Round_Tower_Entrance_01.fbx"
- P: "Original", "Compound", "", ""
- P: "Original|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "Original|ApplicationName", "KString", "", "", "Maya LT"
- P: "Original|ApplicationVersion", "KString", "", "", "2016"
- P: "Original|DateTime_GMT", "DateTime", "", "", "02/07/2020 10:58:19.145"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Round_Tower_Entrance_01.fbx"
- P: "LastSaved", "Compound", "", ""
- P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk"
- P: "LastSaved|ApplicationName", "KString", "", "", "Maya LT"
- P: "LastSaved|ApplicationVersion", "KString", "", "", "2016"
- P: "LastSaved|DateTime_GMT", "DateTime", "", "", "02/07/2020 10:58:19.145"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Maya"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_05.mlt"
- }
- }
- }
- GlobalSettings: {
- Version: 1000
- Properties70: {
- P: "UpAxis", "int", "Integer", "",1
- P: "UpAxisSign", "int", "Integer", "",1
- P: "FrontAxis", "int", "Integer", "",2
- P: "FrontAxisSign", "int", "Integer", "",1
- P: "CoordAxis", "int", "Integer", "",0
- P: "CoordAxisSign", "int", "Integer", "",1
- P: "OriginalUpAxis", "int", "Integer", "",1
- P: "OriginalUpAxisSign", "int", "Integer", "",1
- P: "UnitScaleFactor", "double", "Number", "",1
- P: "OriginalUnitScaleFactor", "double", "Number", "",1
- P: "AmbientColor", "ColorRGB", "Color", "",0,0,0
- P: "DefaultCamera", "KString", "", "", "Producer Perspective"
- P: "TimeMode", "enum", "", "",6
- P: "TimeProtocol", "enum", "", "",2
- P: "SnapOnFrameMode", "enum", "", "",0
- P: "TimeSpanStart", "KTime", "Time", "",1539538600
- P: "TimeSpanStop", "KTime", "Time", "",92372316000
- P: "CustomFrameRate", "double", "Number", "",-1
- P: "TimeMarker", "Compound", "", ""
- P: "CurrentTimeMarker", "int", "Integer", "",-1
- }
- }
- ; Documents Description
- ;------------------------------------------------------------------
- Documents: {
- Count: 1
- Document: 2400061419488, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 64
- ObjectType: "GlobalSettings" {
- Count: 1
- }
- ObjectType: "AnimationStack" {
- Count: 1
- PropertyTemplate: "FbxAnimStack" {
- Properties70: {
- P: "Description", "KString", "", "", ""
- P: "LocalStart", "KTime", "Time", "",0
- P: "LocalStop", "KTime", "Time", "",0
- P: "ReferenceStart", "KTime", "Time", "",0
- P: "ReferenceStop", "KTime", "Time", "",0
- }
- }
- }
- ObjectType: "AnimationLayer" {
- Count: 1
- PropertyTemplate: "FbxAnimLayer" {
- Properties70: {
- P: "Weight", "Number", "", "A",100
- P: "Mute", "bool", "", "",0
- P: "Solo", "bool", "", "",0
- P: "Lock", "bool", "", "",0
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BlendMode", "enum", "", "",0
- P: "RotationAccumulationMode", "enum", "", "",0
- P: "ScaleAccumulationMode", "enum", "", "",0
- P: "BlendModeBypass", "ULongLong", "", "",0
- }
- }
- }
- ObjectType: "NodeAttribute" {
- Count: 2
- PropertyTemplate: "FbxNull" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "Size", "double", "Number", "",100
- P: "Look", "enum", "", "",1
- }
- }
- }
- ObjectType: "Model" {
- Count: 25
- PropertyTemplate: "FbxNode" {
- Properties70: {
- P: "QuaternionInterpolate", "enum", "", "",0
- P: "RotationOffset", "Vector3D", "Vector", "",0,0,0
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "TranslationActive", "bool", "", "",0
- P: "TranslationMin", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMax", "Vector3D", "Vector", "",0,0,0
- P: "TranslationMinX", "bool", "", "",0
- P: "TranslationMinY", "bool", "", "",0
- P: "TranslationMinZ", "bool", "", "",0
- P: "TranslationMaxX", "bool", "", "",0
- P: "TranslationMaxY", "bool", "", "",0
- P: "TranslationMaxZ", "bool", "", "",0
- P: "RotationOrder", "enum", "", "",0
- P: "RotationSpaceForLimitOnly", "bool", "", "",0
- P: "RotationStiffnessX", "double", "Number", "",0
- P: "RotationStiffnessY", "double", "Number", "",0
- P: "RotationStiffnessZ", "double", "Number", "",0
- P: "AxisLen", "double", "Number", "",10
- P: "PreRotation", "Vector3D", "Vector", "",0,0,0
- P: "PostRotation", "Vector3D", "Vector", "",0,0,0
- P: "RotationActive", "bool", "", "",0
- P: "RotationMin", "Vector3D", "Vector", "",0,0,0
- P: "RotationMax", "Vector3D", "Vector", "",0,0,0
- P: "RotationMinX", "bool", "", "",0
- P: "RotationMinY", "bool", "", "",0
- P: "RotationMinZ", "bool", "", "",0
- P: "RotationMaxX", "bool", "", "",0
- P: "RotationMaxY", "bool", "", "",0
- P: "RotationMaxZ", "bool", "", "",0
- P: "InheritType", "enum", "", "",0
- P: "ScalingActive", "bool", "", "",0
- P: "ScalingMin", "Vector3D", "Vector", "",0,0,0
- P: "ScalingMax", "Vector3D", "Vector", "",1,1,1
- P: "ScalingMinX", "bool", "", "",0
- P: "ScalingMinY", "bool", "", "",0
- P: "ScalingMinZ", "bool", "", "",0
- P: "ScalingMaxX", "bool", "", "",0
- P: "ScalingMaxY", "bool", "", "",0
- P: "ScalingMaxZ", "bool", "", "",0
- P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0
- P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1
- P: "MinDampRangeX", "double", "Number", "",0
- P: "MinDampRangeY", "double", "Number", "",0
- P: "MinDampRangeZ", "double", "Number", "",0
- P: "MaxDampRangeX", "double", "Number", "",0
- P: "MaxDampRangeY", "double", "Number", "",0
- P: "MaxDampRangeZ", "double", "Number", "",0
- P: "MinDampStrengthX", "double", "Number", "",0
- P: "MinDampStrengthY", "double", "Number", "",0
- P: "MinDampStrengthZ", "double", "Number", "",0
- P: "MaxDampStrengthX", "double", "Number", "",0
- P: "MaxDampStrengthY", "double", "Number", "",0
- P: "MaxDampStrengthZ", "double", "Number", "",0
- P: "PreferedAngleX", "double", "Number", "",0
- P: "PreferedAngleY", "double", "Number", "",0
- P: "PreferedAngleZ", "double", "Number", "",0
- P: "LookAtProperty", "object", "", ""
- P: "UpVectorProperty", "object", "", ""
- P: "Show", "bool", "", "",1
- P: "NegativePercentShapeSupport", "bool", "", "",1
- P: "DefaultAttributeIndex", "int", "Integer", "",-1
- P: "Freeze", "bool", "", "",0
- P: "LODBox", "bool", "", "",0
- P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0
- P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0
- P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1
- P: "Visibility", "Visibility", "", "A",1
- P: "Visibility Inheritance", "Visibility Inheritance", "", "",1
- }
- }
- }
- ObjectType: "Geometry" {
- Count: 23
- PropertyTemplate: "FbxMesh" {
- Properties70: {
- P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8
- P: "BBoxMin", "Vector3D", "Vector", "",0,0,0
- P: "BBoxMax", "Vector3D", "Vector", "",0,0,0
- P: "Primary Visibility", "bool", "", "",1
- P: "Casts Shadows", "bool", "", "",1
- P: "Receive Shadows", "bool", "", "",1
- }
- }
- }
- ObjectType: "Material" {
- Count: 3
- PropertyTemplate: "FbxSurfacePhong" {
- Properties70: {
- P: "ShadingModel", "KString", "", "", "Phong"
- P: "MultiLayer", "bool", "", "",0
- P: "EmissiveColor", "Color", "", "A",0,0,0
- P: "EmissiveFactor", "Number", "", "A",1
- P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2
- P: "AmbientFactor", "Number", "", "A",1
- P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8
- P: "DiffuseFactor", "Number", "", "A",1
- P: "Bump", "Vector3D", "Vector", "",0,0,0
- P: "NormalMap", "Vector3D", "Vector", "",0,0,0
- P: "BumpFactor", "double", "Number", "",1
- P: "TransparentColor", "Color", "", "A",0,0,0
- P: "TransparencyFactor", "Number", "", "A",0
- P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "DisplacementFactor", "double", "Number", "",1
- P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0
- P: "VectorDisplacementFactor", "double", "Number", "",1
- P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2
- P: "SpecularFactor", "Number", "", "A",1
- P: "ShininessExponent", "Number", "", "A",20
- P: "ReflectionColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",1
- }
- }
- }
- ObjectType: "Texture" {
- Count: 4
- PropertyTemplate: "FbxFileTexture" {
- Properties70: {
- P: "TextureTypeUse", "enum", "", "",0
- P: "Texture alpha", "Number", "", "A",1
- P: "CurrentMappingType", "enum", "", "",0
- P: "WrapModeU", "enum", "", "",0
- P: "WrapModeV", "enum", "", "",0
- P: "UVSwap", "bool", "", "",0
- P: "PremultiplyAlpha", "bool", "", "",1
- P: "Translation", "Vector", "", "A",0,0,0
- P: "Rotation", "Vector", "", "A",0,0,0
- P: "Scaling", "Vector", "", "A",1,1,1
- P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0
- P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0
- P: "CurrentTextureBlendMode", "enum", "", "",1
- P: "UVSet", "KString", "", "", "default"
- P: "UseMaterial", "bool", "", "",0
- P: "UseMipMap", "bool", "", "",0
- }
- }
- }
- ObjectType: "Video" {
- Count: 4
- PropertyTemplate: "FbxVideo" {
- Properties70: {
- P: "ImageSequence", "bool", "", "",0
- P: "ImageSequenceOffset", "int", "Integer", "",0
- P: "FrameRate", "double", "Number", "",0
- P: "LastFrame", "int", "Integer", "",0
- P: "Width", "int", "Integer", "",0
- P: "Height", "int", "Integer", "",0
- P: "Path", "KString", "XRefUrl", "", ""
- P: "StartFrame", "int", "Integer", "",0
- P: "StopFrame", "int", "Integer", "",0
- P: "PlaySpeed", "double", "Number", "",0
- P: "Offset", "KTime", "Time", "",0
- P: "InterlaceMode", "enum", "", "",0
- P: "FreeRunning", "bool", "", "",0
- P: "Loop", "bool", "", "",0
- P: "AccessMode", "enum", "", "",0
- }
- }
- }
- }
- ; Object properties
- ;------------------------------------------------------------------
- Objects: {
- NodeAttribute: 2399942306176, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2403860671008, "NodeAttribute::", "LodGroup" {
- Properties70: {
- P: "WorldSpace", "bool", "", "",1
- P: "Thresholds|Level0", "Distance", "", "",100, "cm"
- P: "Thresholds|Level1", "Distance", "", "",100, "cm"
- P: "DisplayLevels|Level0", "enum", "", "",1
- P: "DisplayLevels|Level1", "enum", "", "",1
- P: "DisplayLevels|Level2", "enum", "", "",1
- }
- }
- Geometry: 2399509547744, "Geometry::", "Mesh" {
- Vertices: *4182 {
- a: 382.50390625,0,-76.0849609375,360.3125,0,-149.246337890625,324.2734375,0,-216.672119140625,275.7734375,0,-275.771484375,216.671875,0,-324.27294921875,149.24609375,0,-360.312744140625,76.0859375,0,-382.505859375,0,0,-389.999755859375,-76.0859375,0,-382.505859375,-149.24609375,0,-360.31298828125,-216.671875,0,-324.27294921875,-275.7734375,0,-275.771484375,-324.2734375,0,-216.67236328125,-360.3125,0,-149.24658203125,-382.50390625,0,-76.08544921875,-390,0,-0.000244140625,-382.50390625,0,76.0849609375,-360.3125,0,149.24609375,-324.2734375,0,216.671875,-275.7734375,0,275.771484375,-216.671875,0,324.27294921875,-149.24609375,0,360.312744140625,149.24609375,0,360.31298828125,216.671875,0,324.27294921875,275.7734375,0,275.771484375,324.2734375,0,216.67236328125,360.3125,0,149.24658203125,382.50390625,0,76.0849609375,390,0,0,382.50390625,600,-76.0849609375,360.3125,600,-149.246337890625,324.2734375,600,-216.672119140625,275.7734375,600,-275.771484375,216.671875,600,-324.27294921875,149.24609375,600,-360.312744140625,76.0859375,600,-382.505859375,0,600,-389.999755859375,-76.0859375,600,-382.505859375,-149.24609375,600,-360.31298828125,-216.671875,600,-324.27294921875,-275.7734375,600,-275.771484375,-324.2734375,600,-216.67236328125,-360.3125,600,-149.24658203125,-382.50390625,600,-76.08544921875,-390,600,-0.000244140625,-382.50390625,600,76.0849609375,-360.3125,600,149.24609375,-324.2734375,600,216.671875,-275.7734375,600,275.771484375,-216.671875,600,324.27294921875,-149.24609375,600,360.312744140625,-76.0859375,600,382.505859375,0,600,389.999755859375,76.0859375,600,382.506103515625,149.24609375,600,360.31298828125,216.671875,600,324.27294921875,275.7734375,600,275.771484375,324.2734375,600,216.67236328125,360.3125,600,149.24658203125,382.50390625,600,76.0849609375,390,600,0,382.50390625,500,-76.0849609375,360.3125,500,-149.246337890625,324.2734375,500,-216.672119140625,275.7734375,500,-275.771484375,216.671875,500,-324.27294921875,149.24609375,500,-360.312744140625,76.0859375,500,-382.505859375,0,500,-389.999755859375,
- -76.0859375,500,-382.505859375,-149.24609375,500,-360.31298828125,-216.671875,500,-324.27294921875,-275.7734375,500,-275.771484375,-324.2734375,500,-216.67236328125,-360.3125,500,-149.24658203125,-382.50390625,500,-76.08544921875,-390,500,-0.000244140625,-382.50390625,500,76.0849609375,-360.3125,500,149.24609375,-324.2734375,500,216.671875,-275.7734375,500,275.771484375,-216.671875,500,324.27294921875,-149.24609375,500,360.312744140625,-76.0859375,500,382.505859375,0,500,389.999755859375,76.0859375,500,382.506103515625,149.24609375,500,360.31298828125,216.671875,500,324.27294921875,275.7734375,500,275.771484375,324.2734375,500,216.67236328125,360.3125,500,149.24658203125,382.50390625,500,76.0849609375,390,500,0,382.50390625,400,-76.0849609375,360.3125,400,-149.246337890625,324.2734375,400,-216.672119140625,275.7734375,400,-275.771484375,216.671875,400,-324.27294921875,149.24609375,400,-360.312744140625,76.0859375,400,-382.505859375,0,400,-389.999755859375,-76.0859375,400,-382.505859375,-149.24609375,400,-360.31298828125,-216.671875,400,-324.27294921875,-275.7734375,400,-275.771484375,-324.2734375,400,-216.67236328125,-360.3125,400,-149.24658203125,-382.50390625,400,-76.08544921875,-390,400,-0.000244140625,-382.50390625,400,76.0849609375,-360.3125,400,149.24609375,-324.2734375,400,216.671875,-275.7734375,400,275.771484375,-216.671875,400,324.27294921875,-149.24609375,400,360.312744140625,-76.0859375,400,382.505859375,0,443.775146484375,389.999755859375,76.0859375,400,382.506103515625,149.24609375,400,360.31298828125,216.671875,400,324.27294921875,275.7734375,400,275.771484375,324.2734375,400,216.67236328125,360.3125,400,149.24658203125,382.50390625,400,76.0849609375,390,400,0,382.50390625,300,-76.0849609375,360.3125,300,-149.246337890625,324.2734375,300,-216.672119140625,275.7734375,300,-275.771484375,216.671875,300,-324.27294921875,149.24609375,300,-360.312744140625,76.0859375,300,-382.505859375,0,300,-389.999755859375,-76.0859375,300,-382.505859375,-149.24609375,300,-360.31298828125,-216.671875,300,-324.27294921875,
- -275.7734375,300,-275.771484375,-324.2734375,300,-216.67236328125,-360.3125,300,-149.24658203125,-382.50390625,300,-76.08544921875,-390,300,-0.000244140625,-382.50390625,300,76.0849609375,-360.3125,300,149.24609375,-324.2734375,300,216.671875,-275.7734375,300,275.771484375,-216.671875,300,324.27294921875,-149.24609375,300,360.312744140625,149.24609375,300,360.31298828125,216.671875,300,324.27294921875,275.7734375,300,275.771484375,324.2734375,300,216.67236328125,360.3125,300,149.24658203125,382.50390625,300,76.0849609375,390,300,0,382.50390625,200,-76.0849609375,360.3125,200,-149.246337890625,324.2734375,200,-216.672119140625,275.7734375,200,-275.771484375,216.671875,200,-324.27294921875,149.24609375,200,-360.312744140625,76.0859375,200,-382.505859375,0,200,-389.999755859375,-76.0859375,200,-382.505859375,-149.24609375,200,-360.31298828125,-216.671875,200,-324.27294921875,-275.7734375,200,-275.771484375,-324.2734375,200,-216.67236328125,-360.3125,200,-149.24658203125,-382.50390625,200,-76.08544921875,-390,200,-0.000244140625,-382.50390625,200,76.0849609375,-360.3125,200,149.24609375,-324.2734375,200,216.671875,-275.7734375,200,275.771484375,-216.671875,200,324.27294921875,-149.24609375,200,360.312744140625,149.24609375,200,360.31298828125,216.671875,200,324.27294921875,275.7734375,200,275.771484375,324.2734375,200,216.67236328125,360.3125,200,149.24658203125,382.50390625,200,76.0849609375,390,200,0,382.50390625,100,-76.0849609375,360.3125,100,-149.246337890625,324.2734375,100,-216.672119140625,275.7734375,100,-275.771484375,216.671875,100,-324.27294921875,149.24609375,100,-360.312744140625,76.0859375,100,-382.505859375,0,100,-389.999755859375,-76.0859375,100,-382.505859375,-149.24609375,100,-360.31298828125,-216.671875,100,-324.27294921875,-275.7734375,100,-275.771484375,-324.2734375,100,-216.67236328125,-360.3125,100,-149.24658203125,-382.50390625,100,-76.08544921875,-390,100,-0.000244140625,-382.50390625,100,76.0849609375,-360.3125,100,149.24609375,-324.2734375,100,216.671875,-275.7734375,100,275.771484375,-216.671875,100,324.27294921875,
- -149.24609375,100,360.312744140625,149.24609375,100,360.31298828125,216.671875,100,324.27294921875,275.7734375,100,275.771484375,324.2734375,100,216.67236328125,360.3125,100,149.24658203125,382.50390625,100,76.0849609375,390,100,0,322.3125,0,-64.1123046875,303.6171875,0,-125.76123046875,273.24609375,0,-182.5771484375,232.37890625,0,-232.37646484375,182.578125,0,-273.245849609375,125.76171875,0,-303.61474609375,64.11328125,0,-322.3154296875,0,0,-328.630126953125,-64.11328125,0,-322.3154296875,-125.7578125,0,-303.61474609375,-182.578125,0,-273.24609375,-232.375,0,-232.376708984375,-273.24609375,0,-182.5771484375,-303.61328125,0,-125.761474609375,-322.3125,0,-64.11279296875,-328.6328125,0,-0.000244140625,-322.3125,0,64.1123046875,-303.61328125,0,125.76123046875,-273.24609375,0,182.5771484375,-232.375,0,232.37646484375,-182.578125,0,273.24609375,-125.7578125,0,303.61474609375,125.76171875,0,303.61474609375,182.578125,0,273.24609375,232.37890625,0,232.37646484375,273.24609375,0,182.5771484375,303.6171875,0,125.76123046875,322.3125,0,64.1123046875,328.6328125,0,0,322.3125,600,-64.1123046875,303.6171875,600,-125.76123046875,273.24609375,600,-182.5771484375,232.37890625,600,-232.37646484375,182.578125,600,-273.245849609375,125.76171875,600,-303.61474609375,64.11328125,600,-322.3154296875,0,600,-328.630126953125,-64.11328125,600,-322.3154296875,-125.7578125,600,-303.61474609375,-182.578125,600,-273.24609375,-232.375,600,-232.376708984375,-273.24609375,600,-182.5771484375,-303.61328125,600,-125.761474609375,-322.3125,600,-64.11279296875,-328.6328125,600,-0.000244140625,-322.3125,600,64.1123046875,-303.61328125,600,125.76123046875,-273.24609375,600,182.5771484375,-232.375,600,232.37646484375,-182.578125,600,273.24609375,-125.7578125,600,303.61474609375,-64.11328125,600,322.3154296875,0,600,328.630126953125,64.11328125,600,322.315673828125,125.76171875,600,303.61474609375,182.578125,600,273.24609375,232.37890625,600,232.37646484375,273.24609375,600,182.5771484375,303.6171875,600,125.76123046875,322.3125,600,64.1123046875,328.6328125,600,0,
- 322.3125,500,-64.1123046875,303.6171875,500,-125.76123046875,273.24609375,500,-182.5771484375,232.37890625,500,-232.37646484375,182.578125,500,-273.245849609375,125.76171875,500,-303.61474609375,64.11328125,500,-322.3154296875,0,500,-328.630126953125,-64.11328125,500,-322.3154296875,-125.7578125,500,-303.61474609375,-182.578125,500,-273.24609375,-232.375,500,-232.376708984375,-273.24609375,500,-182.5771484375,-303.61328125,500,-125.761474609375,-322.3125,500,-64.11279296875,-328.6328125,500,-0.000244140625,-322.3125,500,64.1123046875,-303.61328125,500,125.76123046875,-273.24609375,500,182.5771484375,-232.375,500,232.37646484375,-182.578125,500,273.24609375,-125.7578125,500,303.61474609375,-64.11328125,500,322.3154296875,0,500,328.630126953125,64.11328125,500,322.315673828125,125.76171875,500,303.61474609375,182.578125,500,273.24609375,232.37890625,500,232.37646484375,273.24609375,500,182.5771484375,303.6171875,500,125.76123046875,322.3125,500,64.1123046875,328.6328125,500,0,322.3125,400,-64.1123046875,303.6171875,400,-125.76123046875,273.24609375,400,-182.5771484375,232.37890625,400,-232.37646484375,182.578125,400,-273.245849609375,125.76171875,400,-303.61474609375,64.11328125,400,-322.3154296875,0,400,-328.630126953125,-64.11328125,400,-322.3154296875,-125.7578125,400,-303.61474609375,-182.578125,400,-273.24609375,-232.375,400,-232.376708984375,-273.24609375,400,-182.5771484375,-303.61328125,400,-125.761474609375,-322.3125,400,-64.11279296875,-328.6328125,400,-0.000244140625,-322.3125,400,64.1123046875,-303.61328125,400,125.76123046875,-273.24609375,400,182.5771484375,-232.375,400,232.37646484375,-182.578125,400,273.24609375,-125.7578125,400,303.61474609375,-64.11328125,400,322.3154296875,0,443.775146484375,328.630126953125,64.11328125,400,322.315673828125,125.76171875,400,303.61474609375,182.578125,400,273.24609375,232.37890625,400,232.37646484375,273.24609375,400,182.5771484375,303.6171875,400,125.76123046875,322.3125,400,64.1123046875,328.6328125,400,0,322.3125,300,-64.1123046875,303.6171875,300,-125.76123046875,
- 273.24609375,300,-182.5771484375,232.37890625,300,-232.37646484375,182.578125,300,-273.245849609375,125.76171875,300,-303.61474609375,64.11328125,300,-322.3154296875,0,300,-328.630126953125,-64.11328125,300,-322.3154296875,-125.7578125,300,-303.61474609375,-182.578125,300,-273.24609375,-232.375,300,-232.376708984375,-273.24609375,300,-182.5771484375,-303.61328125,300,-125.761474609375,-322.3125,300,-64.11279296875,-328.6328125,300,-0.000244140625,-322.3125,300,64.1123046875,-303.61328125,300,125.76123046875,-273.24609375,300,182.5771484375,-232.375,300,232.37646484375,-182.578125,300,273.24609375,-125.7578125,300,303.61474609375,125.76171875,300,303.61474609375,182.578125,300,273.24609375,232.37890625,300,232.37646484375,273.24609375,300,182.5771484375,303.6171875,300,125.76123046875,322.3125,300,64.1123046875,328.6328125,300,0,322.3125,200,-64.1123046875,303.6171875,200,-125.76123046875,273.24609375,200,-182.5771484375,232.37890625,200,-232.37646484375,182.578125,200,-273.245849609375,125.76171875,200,-303.61474609375,64.11328125,200,-322.3154296875,0,200,-328.630126953125,-64.11328125,200,-322.3154296875,-125.7578125,200,-303.61474609375,-182.578125,200,-273.24609375,-232.375,200,-232.376708984375,-273.24609375,200,-182.5771484375,-303.61328125,200,-125.761474609375,-322.3125,200,-64.11279296875,-328.6328125,200,-0.000244140625,-322.3125,200,64.1123046875,-303.61328125,200,125.76123046875,-273.24609375,200,182.5771484375,-232.375,200,232.37646484375,-182.578125,200,273.24609375,-125.7578125,200,303.61474609375,125.76171875,200,303.61474609375,182.578125,200,273.24609375,232.37890625,200,232.37646484375,273.24609375,200,182.5771484375,303.6171875,200,125.76123046875,322.3125,200,64.1123046875,328.6328125,200,0,322.3125,100,-64.1123046875,303.6171875,100,-125.76123046875,273.24609375,100,-182.5771484375,232.37890625,100,-232.37646484375,182.578125,100,-273.245849609375,125.76171875,100,-303.61474609375,64.11328125,100,-322.3154296875,0,100,-328.630126953125,-64.11328125,100,-322.3154296875,-125.7578125,100,-303.61474609375,
- -182.578125,100,-273.24609375,-232.375,100,-232.376708984375,-273.24609375,100,-182.5771484375,-303.61328125,100,-125.761474609375,-322.3125,100,-64.11279296875,-328.6328125,100,-0.000244140625,-322.3125,100,64.1123046875,-303.61328125,100,125.76123046875,-273.24609375,100,182.5771484375,-232.375,100,232.37646484375,-182.578125,100,273.24609375,-125.7578125,100,303.61474609375,125.76171875,100,303.61474609375,182.578125,100,273.24609375,232.37890625,100,232.37646484375,273.24609375,100,182.5771484375,303.6171875,100,125.76123046875,322.3125,100,64.1123046875,328.6328125,100,0,-112.6640625,371.409912109375,371.409423828125,-94.9375,371.409912109375,312.965087890625,112.6640625,371.409912109375,371.409423828125,94.9375,371.409912109375,312.96533203125,-130.953125,300,365.861083984375,-130.953125,200,365.861083984375,-130.953125,100,365.861083984375,-130.953125,0,365.861083984375,-110.34765625,0,308.289794921875,-110.34765625,100,308.289794921875,-110.34765625,200,308.289794921875,-110.34765625,300,308.289794921875,130.953125,300,365.861083984375,130.953125,200,365.861083984375,130.953125,100,365.861083984375,130.953125,0,365.861083984375,110.3515625,0,308.2900390625,110.3515625,100,308.2900390625,110.3515625,200,308.2900390625,110.3515625,300,308.2900390625,2.0576171875,446.39111328125,394.518798828125,33.1220703125,402.71484375,357.395751953125,142.6259765625,356.017578125,367.93212890625,69.8408203125,396.91796875,387.961181640625,126.4619140625,391.2900390625,375.956298828125,1.234375,405.89111328125,384.13720703125,2.5615234375,404.70068359375,384.08984375,88.2138671875,367.87353515625,374.85595703125,122.1650390625,391.775390625,370.4228515625,121.3701171875,279.4775390625,375.1298828125,156.173828125,279.94140625,362.331298828125,155.7705078125,315.64599609375,361.23583984375,108.8837890625,312.439453125,369.137939453125,102.6650390625,342.55029296875,370.804443359375,95.8056640625,372.13525390625,382.00537109375,84.8134765625,426.73046875,387.025390625,99.9189453125,415.23876953125,381.68896484375,87.01953125,416.41796875,385.689697265625,
- 121.818359375,312.8896484375,375.758056640625,90.3876953125,422.4072265625,378.06982421875,152.8212890625,316.3173828125,362.290771484375,62.84765625,389.42333984375,379.107421875,154.5244140625,278.87890625,362.833740234375,126.439453125,392.2900390625,374.30029296875,111.7890625,344.69287109375,376.87744140625,114.4794921875,346.36669921875,379.230224609375,49.27734375,440.17626953125,386.70458984375,94.9521484375,344.6259765625,346.177001953125,39.1025390625,411.32177734375,391.689208984375,52.326171875,441.5751953125,392.377685546875,96.0068359375,373.3310546875,383.77783203125,81.9599609375,367.38720703125,349.471923828125,47.9658203125,438.40771484375,392.909912109375,70.134765625,398.32373046875,390.06396484375,113.28515625,343.85791015625,379.146484375,108.42578125,279.7177734375,367.9013671875,152.7216796875,317.791015625,364.722412109375,86.19921875,419.41162109375,386.5517578125,151.37890625,316.39794921875,364.176025390625,48.96484375,437.66455078125,391.61962890625,40.544921875,411.25439453125,393.8623046875,119.8818359375,314.17919921875,377.427490234375,37.8125,410.80615234375,394.055419921875,87.4521484375,421.65185546875,376.59375,145.19921875,358.33984375,368.99169921875,144.6201171875,355.52001953125,368.840576171875,62.490234375,387.37646484375,379.341552734375,71.0400390625,396.19287109375,389.8134765625,153.595703125,317.2880859375,361.68310546875,61.3974609375,389.19873046875,379.482421875,2.830078125,415.74560546875,396.2041015625,122.8486328125,392.95361328125,374.2880859375,36.2578125,401.8369140625,383.291748046875,3.6611328125,446.22021484375,396.698974609375,122.4619140625,391.7265625,376.58544921875,121.345703125,389.42919921875,375.55712890625,122.009765625,280.4609375,376.061767578125,84.880859375,427.63427734375,385.660400390625,52.61328125,442.82958984375,391.18115234375,48.240234375,440.9443359375,390.43701171875,3.74609375,447.64404296875,395.27197265625,145.5263671875,358.75439453125,367.281494140625,155.671875,315.6220703125,363.5341796875,155.46484375,280.06640625,363.891845703125,
- 144.70703125,355.28564453125,366.580810546875,108.2763671875,280.96875,368.471435546875,99.4619140625,414.64697265625,383.184326171875,87.9638671875,424.36669921875,376.91015625,1.5869140625,415.85791015625,394.85009765625,85.97265625,367.03564453125,375.35302734375,98.279296875,372.50341796875,382.9521484375,87.9267578125,366.6572265625,374.90380859375,101.21484375,342.88427734375,371.2109375,100.265625,340.59375,371.46240234375,85.4912109375,417.056640625,384.25341796875,143.1669921875,356.3564453125,366.712890625,35.330078125,403.17626953125,383.349853515625,33.416015625,400.5810546875,383.490966796875,109.5283203125,313.64501953125,368.624755859375,106.865234375,314.12548828125,369.718017578125,120.7412109375,313.9541015625,374.181396484375,101.3388671875,279.1962890625,344.3662109375,1.2216796875,406.20068359375,358.912841796875,114.650390625,391.74365234375,340.1767578125,83.228515625,422.59423828125,349.1728515625,111.9267578125,390.865234375,341.08056640625,129.59765625,356.46240234375,334.781005859375,102.08203125,313.47265625,344.147216796875,96.677734375,342.6474609375,345.7001953125,57.1787109375,389.5498046875,354.35595703125,1.37890625,447.5576171875,358.912353515625,140.775390625,279.53125,330.247314453125,101.3466796875,312.109375,344.364013671875,138.900390625,316.16064453125,331.03857421875,58.5810546875,387.85302734375,354.12744140625,58.8310546875,389.44482421875,354.086181640625,45.486328125,440.40087890625,356.03955078125,2.640625,448.5380859375,358.90576171875,131.4638671875,358.560546875,334.05419921875,140.1171875,317.51171875,330.5263671875,141.732421875,315.42236328125,329.838623046875,132.2724609375,355.3916015625,333.73583984375,81.8369140625,422.62158203125,349.500732421875,101.4091796875,280.5556640625,344.345458984375,142.9609375,280.97265625,329.3095703125,81.857421875,424.8876953125,349.495849609375,47.3876953125,442.40234375,355.792236328125,44.6923828125,441.625,356.139404296875,2.8603515625,404.921875,358.904052734375,34.0703125,401.59619140625,357.30712890625,80.0888671875,366.61328125,349.904296875,
- 112.9658203125,393.333984375,340.73876953125,83.4287109375,363.94921875,349.125244140625,93.76171875,340.08349609375,346.500244140625,30.8974609375,400.11474609375,357.593994140625,99.6357421875,314.37841796875,344.86181640625,152.888671875,280.234375,363.785888671875,102.478515625,242.744140625,344.02978515625,149.9248046875,144.416015625,363.47314453125,123.443359375,213.205078125,374.405517578125,152.3984375,177.802734375,364.677978515625,108.0380859375,280.123046875,368.68798828125,106.01953125,278.576171875,369.229248046875,111.2841796875,179.22265625,368.681640625,150.94921875,179.2275390625,359.679443359375,120.1572265625,73.24560546875,374.349853515625,153.400390625,73.70849609375,362.880859375,153.4150390625,107.88623046875,361.60888671875,106.7119140625,107.91162109375,369.1650390625,109.4755859375,144.8203125,368.85595703125,121.7490234375,179.4599609375,373.0537109375,155.1416015625,218.2412109375,364.62548828125,156.0517578125,202.416015625,362.4228515625,149.728515625,211.580078125,365.984130859375,118.587890625,107.61962890625,376.177978515625,154.7333984375,211.365234375,356.652099609375,152.3251953125,108.64501953125,361.291015625,111.1669921875,212.978515625,367.88134765625,152.26953125,72.64697265625,362.576416015625,152.7666015625,178.2490234375,362.81396484375,119.1484375,144.390625,373.11474609375,119.2265625,145.412109375,376.2626953125,151.1484375,243.0244140625,359.40771484375,100.8154296875,148.044921875,344.51953125,122.3955078125,243.11328125,374.173583984375,155.392578125,241.7119140625,364.147705078125,123.330078125,180.6533203125,375.90771484375,103.9716796875,178.970703125,343.582763671875,151.5087890625,244.103515625,365.753173828125,122.9404296875,214.14453125,376.802490234375,121.9970703125,143.23828125,376.43994140625,107.2568359375,73.48583984375,367.0830078125,155.7265625,109.97900390625,363.452392578125,149.5966796875,213.76953125,366.753173828125,150.900390625,108.84716796875,363.16845703125,151.3193359375,242.9609375,364.577392578125,122.2001953125,241.9404296875,376.66259765625,
- 121.5400390625,109.22509765625,376.89794921875,121.390625,244.3779296875,376.8427734375,151.03515625,212.626953125,355.941650390625,152.08203125,145.7021484375,364.66015625,156.5224609375,143.587890625,363.9599609375,109.373046875,211.916015625,368.597900390625,124.013671875,212.0478515625,376.361083984375,156.5234375,109.41064453125,360.428466796875,107.9189453125,214.2021484375,368.9873046875,121.0234375,278.5341796875,377.33984375,156.1005859375,180.294921875,361.712890625,108.71484375,241.6171875,369.37646484375,152.7890625,278.9755859375,366.2021484375,155.3681640625,179.9765625,364.27197265625,150.6484375,178.7412109375,363.262939453125,118.4677734375,74.22802734375,376.58056640625,155.5751953125,218.41796875,363.00732421875,156.2734375,241.7412109375,362.52197265625,153.1865234375,244.353515625,362.428466796875,153.689453125,278.9287109375,364.279052734375,152.4658203125,145.763671875,362.9052734375,153.3046875,107.92529296875,363.90576171875,152.68359375,73.83447265625,364.43505859375,156.3984375,143.1484375,361.757568359375,105.8115234375,74.73681640625,368.580322265625,155.634765625,202.58203125,364.05078125,152.2587890625,213.67578125,355.88232421875,121.525390625,279.783203125,375.74951171875,110.30078125,179.9833984375,368.9541015625,118.6064453125,178.4697265625,375.661376953125,106.298828125,178.2626953125,368.633056640625,105.7041015625,145.806640625,368.467529296875,108.2548828125,143.625,369.21875,148.9755859375,212.69921875,364.417724609375,151.0517578125,144.4208984375,363.543212890625,110.2890625,243.11328125,368.88134765625,107.078125,244.1826171875,369.793212890625,108.123046875,109.27392578125,367.877685546875,108.5234375,110.13623046875,369.23583984375,119.92578125,108.82568359375,373.2734375,100.537109375,72.96435546875,344.6005859375,101.779296875,280.0537109375,344.236572265625,138.8359375,178.0166015625,331.065185546875,142.9072265625,211.6396484375,329.332763671875,138.03125,178.8916015625,331.40087890625,136.8984375,144.8359375,331.86962890625,102.5859375,107.95751953125,343.997802734375,
- 102.2822265625,144.53515625,344.087890625,100.9716796875,214.6064453125,344.473876953125,140.1865234375,280.6826171875,330.4970703125,139.115234375,73.29833984375,330.9482421875,99.447265625,107.53759765625,344.916015625,138.83203125,108.55810546875,331.067138671875,102.6298828125,212.02734375,343.98486328125,103.9326171875,212.87890625,343.59423828125,139.41796875,243.00390625,330.8212890625,140.384765625,279.6103515625,330.413330078125,138.2734375,145.8828125,331.30029296875,142.8115234375,109.61962890625,329.373779296875,139.775390625,107.72998046875,330.6708984375,142.923828125,143.0947265625,329.325439453125,141.240234375,212.65234375,330.04931640625,99.2548828125,74.32275390625,344.970947265625,140.6455078125,74.73974609375,330.302734375,141.765625,213.7392578125,329.82470703125,141.6240234375,242.00390625,329.885009765625,140.5771484375,243.9873046875,330.331787109375,99.3095703125,278.0166015625,344.955322265625,101.2333984375,241.2275390625,344.397216796875,102.537109375,179.6298828125,344.012451171875,143.2490234375,180.00390625,329.184326171875,98.634765625,174.587890625,345.1484375,101.0302734375,142.951171875,344.456787109375,99.3515625,244.3212890625,344.943603515625,101.205078125,110.45068359375,344.405517578125,152.888671875,73.72314453125,363.785888671875,101.7734375,36.41845703125,344.238525390625,120.349609375,-0.607421875,375.408935546875,108.0380859375,73.61279296875,368.68798828125,107.89453125,72.06396484375,368.687255859375,153.1259765625,4.427734375,365.474609375,108.126953125,-0.833984375,368.783935546875,150.4599609375,36.69970703125,359.69580078125,121.62890625,36.78759765625,374.422607421875,153.3798828125,35.38720703125,364.998046875,153.3642578125,37.77880859375,364.98046875,120.8583984375,0.3310546875,377.473876953125,148.845703125,-0.04296875,367.058349609375,150.6435546875,36.70068359375,364.856689453125,120.1201171875,35.61474609375,377.32958984375,123.302734375,38.05224609375,376.22265625,147.8447265625,-1.1865234375,357.275634765625,105.8798828125,0.388671875,369.575927734375,122.9384765625,72.02197265625,376.721435546875,
- 106.673828125,35.29150390625,369.9697265625,154.6474609375,72.46435546875,365.423095703125,153.568359375,4.60546875,363.85888671875,154.26953125,35.41552734375,363.37744140625,155.025390625,38.02880859375,361.6474609375,155.5380859375,72.41748046875,363.495361328125,149.9814453125,-0.1376953125,356.845703125,121.525390625,73.27197265625,375.74951171875,146.7119140625,-1.1142578125,365.333251953125,109.5341796875,36.78759765625,369.105712890625,108.955078125,37.85693359375,369.245849609375,101.2587890625,73.54345703125,344.389892578125,99.068359375,0.7939453125,345.024658203125,140.1865234375,74.17236328125,330.4970703125,101.09375,-0.93359375,344.438232421875,138.7841796875,36.67822265625,331.087158203125,142.0615234375,73.09814453125,329.697509765625,137.603515625,-1.16015625,331.57861328125,138.5048828125,-0.07421875,331.203857421875,139.80078125,35.67919921875,330.66015625,142.2529296875,37.66162109375,329.614990234375,101.060546875,71.50537109375,344.44775390625,99.330078125,34.90185546875,344.949462890625,101.1025390625,37.99560546875,344.435791015625,-149.927734375,33.37255859375,363.376708984375,-152.4013671875,-0.31640625,364.579833984375,-111.2900390625,-1.736328125,368.60986328125,-150.9501953125,-1.7412109375,359.58203125,-120.16796875,96.51806640625,374.2724609375,-153.4033203125,96.05517578125,362.781982421875,-153.4169921875,64.07080078125,361.51025390625,-106.7177734375,64.04638671875,369.096435546875,-109.4814453125,32.96923828125,368.785400390625,-121.7578125,-1.9736328125,372.975341796875,-118.599609375,64.33837890625,376.1015625,-152.326171875,63.31298828125,361.193115234375,-152.271484375,97.11669921875,362.478271484375,-152.76953125,-0.7626953125,362.715576171875,-119.1572265625,33.39794921875,373.0380859375,-119.23828125,32.37646484375,376.185791015625,-98.75390625,31.70458984375,345.048583984375,-103.234375,-1.484375,343.73486328125,-122.0078125,34.55029296875,376.361572265625,-107.26171875,96.27880859375,367.013916015625,-155.7294921875,61.97900390625,363.352294921875,-150.9033203125,63.11083984375,363.0712890625,
- -121.5517578125,62.73291015625,376.819580078125,-152.0859375,32.08642578125,364.562255859375,-156.525390625,34.20068359375,363.859130859375,-156.5244140625,62.54736328125,360.32763671875,-150.650390625,-1.2548828125,363.166015625,-118.4794921875,95.53564453125,376.50439453125,-152.46875,32.02490234375,362.80712890625,-153.30859375,64.03271484375,363.80712890625,-152.6865234375,95.92919921875,364.336669921875,-156.400390625,34.64013671875,361.656982421875,-105.8173828125,95.02685546875,368.51220703125,-118.6171875,-0.9833984375,375.5849609375,-106.3046875,-0.7763671875,368.564453125,-105.7099609375,31.98193359375,368.399658203125,-108.26171875,34.16357421875,369.14892578125,-151.0546875,33.36767578125,363.446044921875,-108.12890625,62.68408203125,367.80810546875,-108.5302734375,61.82177734375,369.166015625,-119.935546875,63.13232421875,373.1962890625,-100.52734375,96.80029296875,344.535888671875,-138.818359375,-0.529296875,330.975830078125,-138.013671875,-1.4052734375,331.31201171875,-136.880859375,32.95263671875,331.781494140625,-101.0390625,62.86865234375,344.38623046875,-102.2724609375,33.25341796875,344.02197265625,-139.09765625,96.46533203125,330.858642578125,-99.4375,64.42041015625,344.85205078125,-138.8134765625,63.39892578125,330.977783203125,-138.2548828125,31.90576171875,331.21142578125,-142.79296875,62.33837890625,329.281982421875,-139.7568359375,64.22802734375,330.580810546875,-142.9052734375,34.69384765625,329.2333984375,-99.24609375,95.44091796875,344.9072265625,-140.626953125,95.02392578125,330.212158203125,-98.6259765625,2.8984375,345.0849609375,-101.0205078125,34.83740234375,344.391845703125,-101.1962890625,61.50732421875,344.34033203125,-152.8916015625,96.03955078125,363.687255859375,-101.763671875,124.568359375,344.173095703125,-152.4267578125,227.6611328125,362.470458984375,-120.3603515625,158.38525390625,375.33154296875,-156.5244140625,194.2744140625,362.965087890625,-108.0439453125,96.15087890625,368.618408203125,-107.900390625,97.69970703125,368.617919921875,-110.654296875,192.8544921875,367.0009765625,
- -151.267578125,192.849609375,359.448486328125,-120.5078125,291.51953125,375.3330078125,-153.15625,291.0556640625,363.517333984375,-153.171875,257.390625,362.245361328125,-106.11328125,257.365234375,369.875732421875,-111.28515625,227.2587890625,368.245361328125,-120.4189453125,192.6181640625,373.539794921875,-153.130859375,153.35009765625,365.3759765625,-153.802734375,169.17529296875,363.283203125,-147.4609375,160.01025390625,366.80908203125,-119.0087890625,257.658203125,376.58203125,-152.5166015625,160.22607421875,357.505126953125,-152.4521484375,256.6328125,362.348388671875,-108.1337890625,158.61181640625,368.71435546875,-153.681640625,292.1171875,363.093017578125,-156.8720703125,193.830078125,361.09619140625,-120.1337890625,227.6875,372.85498046875,-123.4833984375,226.6650390625,374.945068359375,-150.4599609375,124.2880859375,359.59912109375,-107.0751953125,226.08203125,357.85546875,-121.6396484375,124.19921875,374.34423828125,-153.3837890625,125.599609375,364.8994140625,-121.005859375,191.4248046875,376.586181640625,-103.5517578125,193.107421875,343.639404296875,-153.3681640625,123.2080078125,364.8818359375,-120.8701171875,157.44677734375,377.39599609375,-121.02734375,228.8388671875,376.677734375,-107.57421875,291.279296875,368.0830078125,-153.5751953125,255.298828125,364.267333984375,-148.8505859375,157.82080078125,366.96240234375,-151.0224609375,256.4306640625,364.227783203125,-150.6474609375,124.2861328125,364.759521484375,-120.1318359375,125.3720703125,377.252197265625,-120.5693359375,256.052734375,377.135009765625,-123.314453125,122.9345703125,376.143310546875,-147.84375,158.96435546875,357.180419921875,-156.208984375,226.3759765625,362.95068359375,-154.369140625,228.4892578125,364.77880859375,-107.08984375,159.67431640625,369.198974609375,-121.6875,159.54345703125,377.043212890625,-154.388671875,255.8671875,361.24755859375,-105.88671875,157.38916015625,369.5078125,-122.9501953125,97.74169921875,376.642333984375,-153.8544921875,191.78125,362.57373046875,-106.681640625,125.6953125,369.90087890625,-154.6513671875,97.29931640625,365.323486328125,
- -153.109375,192.1015625,365.128173828125,-105.05859375,193.935546875,353.041259765625,-151.05078125,193.3369140625,363.134033203125,-118.888671875,290.5361328125,376.985107421875,-153.5712890625,153.17236328125,363.760009765625,-154.2724609375,125.5712890625,363.278076171875,-155.02734375,122.9580078125,361.547607421875,-155.541015625,97.34619140625,363.395263671875,-156.572265625,226.3125,361.19140625,-153.05859375,257.3525390625,364.54248046875,-152.435546875,290.9296875,365.07177734375,-154.2568359375,228.9287109375,362.575927734375,-105.212890625,290.0283203125,369.289794921875,-153.376953125,169.00830078125,364.908447265625,-149.98046875,157.91455078125,356.7490234375,-121.5361328125,96.49169921875,375.67138671875,-108.0166015625,192.0947265625,369.56005859375,-122.85546875,193.607421875,374.35107421875,-109.9609375,193.814453125,367.619873046875,-109.4365234375,226.271484375,367.439453125,-107.2998046875,228.4521484375,369.429931640625,-146.7158203125,158.89208984375,365.23876953125,-153.505859375,227.65625,362.41796875,-109.5400390625,124.19921875,369.03515625,-108.9619140625,123.1298828125,369.17578125,-108.80859375,256.0029296875,368.76904296875,-107.568359375,255.1416015625,369.447265625,-120.2763671875,256.453125,374.256591796875,-100.52734375,291.80078125,344.535888671875,-101.2490234375,96.22021484375,344.32470703125,-142.517578125,194.0615234375,329.401123046875,-140.841796875,159.95068359375,330.12060546875,-139.56640625,193.185546875,330.661376953125,-139.119140625,227.2412109375,330.849609375,-101.3818359375,256.1875,344.285888671875,-104.673828125,227.54296875,343.29931640625,-99.0595703125,156.98388671875,344.960693359375,-140.16796875,95.59130859375,330.406982421875,-139.98828125,291.4658203125,330.483154296875,-98.72265625,257.740234375,345.057373046875,-138.5341796875,256.71875,331.094970703125,-100.4833984375,159.56396484375,344.548828125,-101.083984375,158.71142578125,344.373046875,-138.7666015625,124.30859375,330.997802734375,-142.0419921875,96.66552734375,329.606201171875,-141.9560546875,226.1953125,329.64306640625,
- -140.8408203125,255.6572265625,330.12109375,-139.3271484375,257.5478515625,330.76220703125,-140.9541015625,228.982421875,330.07275390625,-137.5849609375,158.93798828125,331.489990234375,-98.5322265625,290.44140625,345.11181640625,-140.197265625,290.0244140625,330.394775390625,-138.4873046875,157.85205078125,331.11474609375,-139.7822265625,125.3076171875,330.570068359375,-142.234375,123.3251953125,329.5234375,-101.0517578125,98.25830078125,344.382568359375,-99.3212890625,126.083984375,344.885498046875,-100.390625,192.4482421875,344.575927734375,-141.1845703125,192.0732421875,329.97412109375,-102.4853515625,197.4892578125,343.958740234375,-100.123046875,229.1259765625,344.65380859375,-102.6962890625,223.9443359375,343.89599609375,-101.0927734375,122.990234375,344.37060546875,-100.2978515625,254.826171875,344.602783203125,-154.5859375,291.3203125,362.97119140625,-101.396484375,325.3193359375,344.28125,-79.638671875,426.939453125,386.3984375,-108.23828125,351.357421875,379.00390625,-114.880859375,405.4375,379.576904296875,-109.7607421875,291.431640625,368.111083984375,-108.9873046875,292.9794921875,368.298095703125,-81.91015625,376.509765625,376.229736328125,-112.5634765625,402.77197265625,373.3759765625,1.7568359375,416.2197265625,394.212158203125,1.6875,449.27197265625,394.466064453125,-40.4267578125,444.95654296875,391.210693359375,-27.7890625,403.07177734375,383.796630859375,-57.6640625,394.52587890625,380.347412109375,-89.9990234375,381.64599609375,383.357177734375,-141.890625,359.7177734375,369.88330078125,-134.044921875,376.6884765625,371.02392578125,-133.392578125,364.41455078125,372.153076171875,-30.92578125,412.40771484375,393.730712890625,-137.9287109375,367.9189453125,363.37939453125,-41.1162109375,443.94970703125,390.95361328125,-98.2607421875,348.2822265625,371.466552734375,3.03515625,448.40966796875,394.271728515625,-115.5439453125,405.7197265625,377.72705078125,-63.09375,401.7060546875,387.944580078125,-64.9951171875,402.0498046875,390.696533203125,-148.2080078125,332.4384765625,360.532470703125,-55.1689453125,392.033203125,354.63720703125,
- -119.9169921875,326.64013671875,374.8994140625,-150.369140625,333.9638671875,366.151123046875,-90.0888671875,379.9013671875,385.15234375,-75.83203125,376.3095703125,350.798583984375,-151.9013671875,331.431640625,365.494384765625,-110.26953125,351.0615234375,380.627197265625,-61.783203125,401.07763671875,390.789306640625,1.35546875,406.76953125,383.490966796875,-42.6943359375,442.56689453125,393.001220703125,-134.6337890625,362.18603515625,372.410400390625,-40.955078125,442.09033203125,392.16015625,-146.8388671875,331.81396484375,366.308837890625,-117.7783203125,327.17919921875,377.993408203125,-32.4716796875,411.80615234375,394.60888671875,-122.3828125,325.77783203125,376.447265625,-136.5888671875,366.0068359375,361.63134765625,-83.2314453125,428.94775390625,387.6064453125,-79.8125,428.59765625,387.965576171875,-96.7919921875,348.560546875,372.031005859375,-110.1025390625,353.091796875,380.58642578125,-42.2451171875,444.43701171875,390.572998046875,-96.5751953125,346.40576171875,372.049560546875,-124.060546875,293.021484375,376.2783203125,-114.814453125,402.0703125,376.75390625,-104.53125,325.43505859375,370.51416015625,-155.728515625,292.580078125,364.865966796875,-113.962890625,401.31103515625,379.168212890625,-111.0771484375,401.0302734375,378.646484375,0.7822265625,415.80419921875,395.298583984375,-142.38671875,359.8896484375,368.279052734375,-151.2509765625,334.19970703125,364.545654296875,-153.583984375,331.619140625,362.16259765625,-156.6123046875,292.6259765625,362.935302734375,-83.515625,429.71044921875,386.0400390625,-40.4345703125,444.06884765625,393.29443359375,1.5166015625,448.12353515625,395.6220703125,-79.2919921875,429.45068359375,385.957275390625,0.2490234375,405.775390625,383.99755859375,-133.76171875,376.0576171875,372.5419921875,-137.1142578125,364.8369140625,361.88623046875,-123.2861328125,291.7724609375,375.1005859375,-79.927734375,373.89013671875,376.634033203125,-90.1005859375,382.67431640625,384.8994140625,-80.404296875,376.27880859375,376.534912109375,-57.76953125,393.08056640625,380.340087890625,
- -54.9501953125,392.1708984375,380.7529296875,-133.2705078125,363.2509765625,370.353515625,-79.9638671875,427.7314453125,385.37060546875,-109.2021484375,325.0859375,369.135498046875,-108.203125,323.9775390625,369.398681640625,-29.3134765625,404.10107421875,383.372314453125,-29.6728515625,402.5693359375,383.647705078125,-32.017578125,412.4267578125,391.80615234375,1.703125,406.60302734375,358.9111328125,-102.853515625,291.5009765625,343.84912109375,-104.427734375,405.54443359375,343.374267578125,-127.5,367.62939453125,335.495849609375,-102.6484375,402.37841796875,343.910400390625,-72.845703125,426.67578125,351.43115234375,-27.15625,403.951171875,357.87841796875,-54.0400390625,395.4091796875,354.81103515625,-90.4794921875,346.18798828125,347.309326171875,-141.7080078125,290.8720703125,329.75,2.015625,448.51513671875,358.909423828125,-25.5517578125,402.896484375,357.996826171875,-37.2529296875,443.28369140625,356.966796875,-90.8603515625,348.70263671875,347.2099609375,-91.822265625,348.39306640625,346.95703125,-136.6845703125,332.5107421875,331.862060546875,-143.013671875,291.9462890625,329.18603515625,-75.560546875,428.89453125,350.857421875,-38.7626953125,444.14599609375,356.8056640625,-36.5830078125,444.521484375,357.0361328125,-72.40625,429.89208984375,351.52197265625,-126.1201171875,365.619140625,336.0166015625,0.5791015625,405.97216796875,358.914306640625,0.341796875,450.18896484375,358.91455078125,-127.689453125,365.013671875,335.423828125,-137.1005859375,333.78466796875,331.690673828125,-140.8310546875,332.20458984375,330.125,-102.0673828125,293.5380859375,344.083251953125,-97.2548828125,325.716796875,345.4736328125,-74.087890625,373.892578125,351.17138671875,-105.1533203125,403.041015625,343.15283203125,-72.56640625,378.22119140625,351.48876953125,-50.7978515625,392.46484375,355.290283203125,-100.4140625,323.7646484375,344.569091796875,-27.9091796875,402.46337890625,357.8203125,1.7080078125,446.39111328125,323.301513671875,116.9267578125,356.017578125,301.49169921875,57.3837890625,396.91796875,318.561279296875,
- 102.4853515625,391.2900390625,304.515869140625,1.087890625,405.89111328125,333.68896484375,2.2412109375,404.70068359375,333.724609375,76.267578125,367.87353515625,323.956298828125,102.7421875,391.775390625,311.39208984375,99.681640625,279.4775390625,307.941650390625,128.078125,279.94140625,297.00830078125,128.5859375,315.64599609375,298.058837890625,94.2646484375,312.439453125,319.456298828125,88.9326171875,342.55029296875,321.083984375,78.876953125,372.13525390625,314.334228515625,68.90234375,426.73046875,314.226806640625,81.9345703125,415.23876953125,312.8173828125,71.0224609375,416.41796875,314.602783203125,99.6376953125,312.8896484375,307.18310546875,76.578125,422.4072265625,320.15478515625,126.2822265625,316.3173828125,299.23974609375,54.583984375,389.42333984375,329.10302734375,126.857421875,278.87890625,297.732666015625,103.37890625,392.2900390625,305.87939453125,92.4150390625,344.69287109375,311.405517578125,93.0458984375,346.36669921875,308.06103515625,41.4931640625,440.17626953125,325.39990234375,32.236328125,411.32177734375,322.6142578125,42.599609375,441.5751953125,319.18701171875,78.26171875,373.3310546875,312.6650390625,39.056640625,438.40771484375,319.660400390625,56.943359375,398.32373046875,316.48486328125,92.2939453125,343.85791015625,308.727783203125,94.560546875,279.7177734375,320.74072265625,124.6484375,317.791015625,297.53466796875,70.0927734375,419.41162109375,314.13232421875,124.2626953125,316.39794921875,298.801025390625,40.1298828125,437.66455078125,320.695556640625,32.9951171875,411.25439453125,320.218994140625,97.505859375,314.17919921875,306.816162109375,30.787109375,410.80615234375,320.51513671875,74.9697265625,421.65185546875,322.698974609375,117.7578125,358.33984375,299.105224609375,117.5205078125,355.52001953125,299.576416015625,54.2216796875,387.37646484375,328.9873046875,57.7060546875,396.19287109375,316.434326171875,127.1064453125,317.2880859375,299.171875,53.28515625,389.19873046875,329.1767578125,2.3203125,415.74560546875,321.608154296875,101.08984375,392.95361328125,307.844970703125,
- 31.3681640625,401.8369140625,331.37109375,2.986328125,446.22021484375,321.1015625,99.6103515625,391.7265625,306.15576171875,99.4384765625,389.42919921875,307.6005859375,99.599609375,280.4609375,306.82958984375,69.4697265625,427.63427734375,315.45263671875,43.109375,442.82958984375,320.277099609375,39.81640625,440.9443359375,322.0068359375,3.078125,447.64404296875,322.527099609375,119.0029296875,358.75439453125,300.196044921875,127.0166015625,315.6220703125,296.4755859375,126.671875,280.06640625,296.353515625,118.966796875,355.28564453125,301.234375,94.1640625,280.96875,320.330810546875,80.951171875,414.64697265625,311.6962890625,75.23046875,424.36669921875,322.203369140625,1.3193359375,415.85791015625,322.97412109375,74.33984375,367.03564453125,324.4248046875,80.2236328125,372.50341796875,312.42041015625,76.02734375,366.6572265625,324.031982421875,87.6728515625,342.88427734375,321.42041015625,86.853515625,340.59375,321.6474609375,70.4580078125,417.056640625,316.5068359375,117.9921875,356.3564453125,302.08740234375,30.5703125,403.17626953125,331.473388671875,28.9208984375,400.5810546875,331.650146484375,94.986328125,313.64501953125,319.566162109375,92.521484375,314.12548828125,319.971923828125,99.77734375,313.9541015625,309.062255859375,125.345703125,280.234375,298.109375,123.9033203125,144.416015625,300.252685546875,101.41015625,213.205078125,307.42724609375,124.5,177.802734375,297.7763671875,93.8828125,280.123046875,320.26611328125,92.1513671875,278.576171875,320.81005859375,96.208984375,179.22265625,318.619140625,126.9453125,179.2275390625,302.3583984375,99.3046875,73.24560546875,309.23291015625,126.21484375,73.70849609375,298.43359375,127.0556640625,107.88623046875,299.34423828125,92.685546875,107.91162109375,320.52197265625,94.8310546875,144.8203125,319.396484375,101.0400390625,179.4599609375,309.45458984375,126.01953125,218.2412109375,296.034912109375,127.9521484375,202.416015625,297.023193359375,122.189453125,211.580078125,298.524658203125,97.3134765625,107.61962890625,308.534912109375,131.080078125,211.365234375,302.013427734375,
- 126.6611328125,108.64501953125,300.28857421875,96.5380859375,212.978515625,319.355712890625,125.791015625,72.64697265625,299.391845703125,125.9111328125,178.2490234375,298.895263671875,99.29296875,144.390625,310.794189453125,97.6875,145.412109375,308.130615234375,127.236328125,243.0244140625,302.4248046875,100.8583984375,243.11328125,308.18359375,126.4658203125,241.7119140625,296.21630859375,100.5283203125,180.6533203125,306.25146484375,123.3203125,244.103515625,297.56005859375,99.80078125,214.14453125,305.7216796875,99.3896484375,143.23828125,306.5234375,94.125,73.48583984375,322.02880859375,127.099609375,109.97900390625,296.498291015625,121.62890625,213.76953125,298.0380859375,124.646484375,108.84716796875,299.847412109375,123.970703125,242.9609375,298.544677734375,99.40234375,241.9404296875,306.231201171875,98.853515625,109.22509765625,306.3857421875,98.7861328125,244.3779296875,306.5107421875,129.4658203125,212.626953125,304.99853515625,124.337890625,145.7021484375,297.9931640625,127.19140625,143.587890625,295.61083984375,94.888671875,211.916015625,319.66796875,100.720703125,212.0478515625,305.5107421875,129.5283203125,109.41064453125,298.1337890625,93.646484375,214.2021484375,320.071044921875,98.2880859375,278.5341796875,306.291015625,128.447265625,180.294921875,297.499267578125,94.0234375,241.6171875,319.338134765625,123.7314453125,278.9755859375,296.408935546875,126.37109375,179.9765625,296.142333984375,124.4443359375,178.7412109375,299.94140625,97.025390625,74.22802734375,308.260498046875,127.310546875,218.41796875,296.91796875,128.0048828125,241.7412109375,296.805908203125,126.3935546875,244.353515625,298.90087890625,125.4619140625,278.9287109375,297.23095703125,125.685546875,145.763671875,299.024658203125,125.4951171875,107.92529296875,297.751953125,124.8125,73.83447265625,297.769287109375,128.578125,143.1484375,297.269775390625,92.3203125,74.73681640625,321.470458984375,126.658203125,202.58203125,296.127685546875,130.205078125,213.67578125,304.223388671875,99.453125,279.783203125,307.345947265625,95.37109375,179.9833984375,318.892822265625,
- 97.5947265625,178.4697265625,308.957275390625,92.6494140625,178.2626953125,321.183349609375,92.2978515625,145.806640625,321.6201171875,93.7724609375,143.625,319.7041015625,122.765625,212.69921875,300.16357421875,124.48828125,144.4208984375,299.4755859375,95.3994140625,243.11328125,318.96044921875,92.6376953125,244.1826171875,319.8017578125,94.353515625,109.27392578125,320.9140625,93.95703125,110.13623046875,319.5546875,99.724609375,108.82568359375,310.2490234375,125.345703125,73.72314453125,298.109375,98.869140625,-0.607421875,308.251708984375,93.8828125,73.61279296875,320.26611328125,93.779296875,72.06396484375,320.339111328125,124.3828125,4.427734375,296.724365234375,93.8994140625,-0.833984375,320.1396484375,126.65625,36.69970703125,302.66748046875,100.2275390625,36.78759765625,308.388671875,124.828125,35.38720703125,296.908203125,124.8310546875,37.77880859375,296.93115234375,98.111328125,0.3310546875,306.266357421875,121.017578125,-0.04296875,298.285888671875,123.41796875,36.70068359375,298.773193359375,97.7109375,35.61474609375,306.7734375,100.3427734375,38.05224609375,306.00634765625,126.7314453125,-1.1865234375,306.141845703125,91.8779296875,0.388671875,320.581787109375,99.84375,72.02197265625,305.7890625,92.2587890625,35.29150390625,319.85107421875,125.236328125,72.46435546875,295.778076171875,125.6689453125,4.60546875,297.61474609375,126.3642578125,35.41552734375,297.506591796875,127.91015625,38.02880859375,298.256591796875,126.970703125,72.41748046875,296.591064453125,128.2587890625,-0.1376953125,305.047119140625,99.453125,73.27197265625,307.345947265625,120.8994140625,-1.1142578125,300.91796875,94.74609375,36.78759765625,319.154541015625,94.26171875,37.85693359375,319.328369140625,-123.8662109375,33.37255859375,300.1728515625,-124.4599609375,-0.31640625,297.6962890625,-96.18359375,-1.736328125,318.55712890625,-126.908203125,-1.7412109375,302.276611328125,-99.2724609375,96.51806640625,309.1689453125,-126.17578125,96.05517578125,298.352294921875,-127.0166015625,64.07080078125,299.262451171875,-92.66015625,64.04638671875,320.46240234375,
- -94.8056640625,32.96923828125,319.33544921875,-101.0087890625,-1.9736328125,309.3896484375,-97.2802734375,64.33837890625,308.47216796875,-126.623046875,63.31298828125,300.20703125,-125.7529296875,97.11669921875,299.31103515625,-125.8720703125,-0.7626953125,298.814208984375,-99.26171875,33.39794921875,310.730224609375,-97.6552734375,32.37646484375,308.06787109375,-99.3564453125,34.55029296875,306.45947265625,-94.1005859375,96.27880859375,321.968017578125,-127.0595703125,61.97900390625,296.41650390625,-124.6083984375,63.11083984375,299.767333984375,-98.8203125,62.73291015625,306.322021484375,-124.298828125,32.08642578125,297.9130859375,-127.150390625,34.20068359375,295.529052734375,-129.4892578125,62.54736328125,298.050537109375,-124.40625,-1.2548828125,299.861083984375,-96.9921875,95.53564453125,308.197998046875,-125.6474609375,32.02490234375,298.943603515625,-125.4560546875,64.03271484375,297.671142578125,-124.7734375,95.92919921875,297.68896484375,-128.5380859375,34.64013671875,297.18701171875,-92.2958984375,95.02685546875,321.4111328125,-97.5625,-0.9833984375,308.894287109375,-92.625,-0.7763671875,321.123779296875,-92.2734375,31.98193359375,321.560791015625,-93.748046875,34.16357421875,319.643798828125,-124.4501953125,33.36767578125,299.3955078125,-94.3291015625,62.68408203125,320.853271484375,-93.931640625,61.82177734375,319.494140625,-99.693359375,63.13232421875,310.184814453125,-125.306640625,96.03955078125,298.028564453125,-125.84375,227.6611328125,299.21533203125,-98.8369140625,158.38525390625,308.18798828125,-127.73828125,194.2744140625,296.170654296875,-93.8583984375,96.15087890625,320.20556640625,-93.7548828125,97.69970703125,320.27880859375,-96.5615234375,192.8544921875,320.244140625,-127.17578125,192.849609375,302.16455078125,-98.9326171875,291.51953125,308.1083984375,-125.5615234375,291.0556640625,297.980712890625,-126.400390625,257.390625,298.89208984375,-91.8349609375,257.365234375,320.094970703125,-96.3681640625,227.2587890625,318.86767578125,-99.828125,192.6181640625,309.64208984375,-124.3427734375,153.35009765625,296.644287109375,
- -126.06640625,169.17529296875,297.728515625,-120.2958984375,160.01025390625,299.197509765625,-97.2978515625,257.658203125,307.857177734375,-129.166015625,160.22607421875,302.736083984375,-125.9375,256.6328125,299.287353515625,-93.8740234375,158.61181640625,320.0791015625,-126.125,292.1171875,297.945556640625,-129.1630859375,193.830078125,297.2724609375,-100.005859375,227.6875,310.361572265625,-101.0615234375,226.6650390625,306.837158203125,-126.6201171875,124.2880859375,302.585693359375,-98.6904296875,226.08203125,329.824951171875,-100.1953125,124.19921875,308.32421875,-124.7880859375,125.599609375,296.827880859375,-98.591796875,191.4248046875,306.80419921875,-124.791015625,123.2080078125,296.850830078125,-98.0771484375,157.44677734375,306.203369140625,-98.5576171875,228.8388671875,306.717041015625,-93.7880859375,291.279296875,320.89892578125,-125.3017578125,255.298828125,297.1630859375,-120.978515625,157.82080078125,298.2080078125,-123.9287109375,256.4306640625,298.843505859375,-123.37890625,124.2861328125,298.69384765625,-97.6767578125,125.3720703125,306.710693359375,-98.0205078125,256.052734375,306.57861328125,-100.30859375,122.9345703125,305.941650390625,-126.697265625,158.96435546875,306.060302734375,-127.580078125,226.3759765625,296.388916015625,-125.3974609375,228.4892578125,296.2763671875,-92.8779296875,159.67431640625,320.189208984375,-98.7880859375,159.54345703125,306.06494140625,-127.7216796875,255.8671875,298.8115234375,-91.853515625,157.38916015625,320.5224609375,-99.80859375,97.74169921875,305.724853515625,-126.55859375,191.78125,298.207275390625,-92.2333984375,125.6953125,319.791748046875,-125.1953125,97.29931640625,295.697509765625,-124.4912109375,192.1015625,296.838623046875,-99.67578125,193.935546875,334.94677734375,-124.650390625,193.3369140625,299.625732421875,-97.009765625,290.5361328125,307.5830078125,-125.6298828125,153.17236328125,297.533935546875,-126.32421875,125.5712890625,297.42529296875,-127.87109375,122.9580078125,298.17431640625,-126.9306640625,97.34619140625,296.509521484375,-128.939453125,226.3125,297.404296875,
- -124.8427734375,257.3525390625,297.298095703125,-124.1611328125,290.9296875,297.314697265625,-126.775390625,228.9287109375,297.9423828125,-91.4697265625,290.0283203125,321.04248046875,-124.7783203125,169.00830078125,296.82568359375,-128.2236328125,157.91455078125,304.964599609375,-99.419921875,96.49169921875,307.281982421875,-93.365234375,192.0947265625,319.416748046875,-100.978515625,193.607421875,307.66455078125,-95.7451171875,193.814453125,320.078369140625,-95.4609375,226.271484375,320.5,-92.9140625,228.4521484375,319.886962890625,-120.8623046875,158.89208984375,300.840087890625,-126.470703125,227.65625,298.54833984375,-94.720703125,124.19921875,319.093505859375,-94.2353515625,123.1298828125,319.267578125,-94.33203125,256.0029296875,319.691162109375,-93.0986328125,255.1416015625,319.73779296875,-99.3525390625,256.453125,309.12451171875,-126.6953125,291.3203125,297.441650390625,-65.2568359375,426.939453125,316.628173828125,-88.8798828125,351.357421875,311.204345703125,-93.05859375,405.4375,307.449462890625,-95.349609375,291.431640625,319.764892578125,-94.69921875,292.9794921875,320.0009765625,-70.787109375,376.509765625,325.143798828125,-94.6318359375,402.77197265625,313.875244140625,1.4638671875,416.2197265625,323.61083984375,1.404296875,449.27197265625,323.357421875,-33.345703125,444.95654296875,322.798828125,-24.0380859375,403.07177734375,332.14501953125,-49.9267578125,394.52587890625,329.34912109375,-74.0556640625,381.64599609375,315.44677734375,-115.21484375,359.7177734375,300.304931640625,-109.869140625,376.6884765625,304.07421875,-108.8173828125,364.41455078125,303.55810546875,-25.2685546875,412.40771484375,321.88037109375,-116.8095703125,367.9189453125,307.711669921875,-33.9501953125,443.94970703125,322.9208984375,-85.3017578125,348.2822265625,322.46875,2.51171875,448.40966796875,323.537841796875,-94.4306640625,405.7197265625,308.6806640625,-52.126953125,401.7060546875,320.552734375,-52.7919921875,402.0498046875,317.378173828125,-124.724609375,332.4384765625,303.37158203125,-98.7763671875,326.64013671875,308.781494140625,
- -122.3349609375,333.9638671875,297.846435546875,-73.3955078125,379.9013671875,313.78515625,-123.59765625,331.431640625,297.349365234375,-89.474609375,351.0615234375,308.82568359375,-50.3017578125,401.07763671875,318.2109375,1.197265625,406.76953125,334.33447265625,-34.8193359375,442.56689453125,320.611083984375,-109.4208984375,362.18603515625,302.63671875,-33.5927734375,442.09033203125,321.768798828125,-120.2587890625,331.81396484375,299.962646484375,-95.7626953125,327.17919921875,307.3134765625,-26.3828125,411.80615234375,320.78759765625,-99.55078125,325.77783203125,306.18896484375,-117.05078125,366.0068359375,309.875,-67.466796875,428.94775390625,314.19921875,-64.8232421875,428.59765625,315.11474609375,-83.9453125,348.560546875,322.645751953125,-89.380859375,353.091796875,308.94189453125,-34.9345703125,444.43701171875,323.07568359375,-83.7744140625,346.40576171875,322.727783203125,-100.7109375,293.021484375,305.42919921875,-94.439453125,402.0703125,309.873779296875,-90.3740234375,325.43505859375,320.322021484375,-126.0673828125,292.580078125,295.3271484375,-92.65625,401.31103515625,308.25634765625,-90.9833984375,401.0302734375,310.131591796875,0.6591796875,415.80419921875,322.529541015625,-116.478515625,359.8896484375,301.2314453125,-123.849609375,334.19970703125,298.46337890625,-126.6806640625,331.619140625,298.681640625,-127.8046875,292.6259765625,296.134033203125,-68.26171875,429.71044921875,315.532958984375,-32.96484375,444.06884765625,320.753662109375,1.2568359375,448.12353515625,322.20263671875,-65.15625,429.45068359375,317.161376953125,0.2314453125,405.775390625,333.831298828125,-108.8173828125,376.0576171875,303.03662109375,-117.22265625,364.8369140625,309.357177734375,-100.8515625,291.7724609375,306.81494140625,-69.08203125,373.89013671875,325.531982421875,-73.5068359375,382.67431640625,314.00927734375,-69.4921875,376.27880859375,325.4423828125,-50.015625,393.08056640625,329.326904296875,-47.5751953125,392.1708984375,329.693603515625,-109.7841796875,363.2509765625,305.05419921875,-65.87109375,427.7314453125,317.461669921875,
- -94.427734375,325.0859375,319.18017578125,-93.580078125,323.9775390625,319.46044921875,-25.40234375,404.10107421875,332.353515625,-25.669921875,402.5693359375,332.030029296875,-26.4326171875,412.4267578125,323.623779296875
- }
- PolygonVertexIndex: *5848 {
- a: 0,1,184,-184,1,2,185,-185,2,3,186,-186,3,4,187,-187,4,5,188,-188,5,6,189,-189,6,7,190,-190,7,8,191,-191,8,9,192,-192,9,10,193,-193,10,11,194,-194,11,12,195,-195,12,13,196,-196,13,14,197,-197,14,15,198,-198,15,16,199,-199,16,17,200,-200,17,18,201,-201,18,19,202,-202,19,20,203,-203,20,21,204,-204,438,439,22,-206,22,23,206,-206,23,24,207,-207,24,25,208,-208,25,26,209,-209,26,27,210,-210,27,28,211,-211,28,0,183,-212,61,62,30,-30,62,63,31,-31,63,64,32,-32,64,65,33,-33,65,66,34,-34,66,67,35,-35,67,68,36,-36,68,69,37,-37,69,70,38,-38,70,71,39,-39,71,72,40,-40,72,73,41,-41,73,74,42,-42,74,75,43,-43,75,76,44,-44,76,77,45,-45,77,78,46,-46,78,79,47,-47,79,80,48,-48,80,81,49,-49,81,82,50,-50,82,83,51,-51,83,84,52,-52,84,85,53,-53,85,86,54,-54,86,87,55,-55,87,88,56,-56,88,89,57,-57,89,90,58,-58,90,91,59,-59,91,92,60,-60,92,61,29,-61,93,94,62,-62,94,95,63,-63,95,96,64,-64,96,97,65,-65,97,98,66,-66,98,99,67,-67,99,100,68,-68,100,101,69,-69,101,102,70,-70,102,103,71,-71,103,104,72,-72,104,105,73,-73,105,106,74,-74,106,107,75,-75,107,108,76,-76,108,109,77,-77,109,110,78,-78,110,111,79,-79,111,112,80,-80,112,113,81,-81,113,114,82,-82,114,115,83,-83,115,116,84,-84,116,117,85,-85,117,118,86,-86,118,119,87,-87,119,120,88,-88,120,121,89,-89,121,122,90,-90,122,123,91,-91,123,124,92,-92,124,93,61,-93,125,126,94,-94,126,127,95,-95,127,128,96,-96,128,129,97,-97,129,130,98,-98,130,131,99,-99,131,132,100,-100,132,133,101,-101,133,134,102,-102,134,135,103,-103,135,136,104,-104,136,137,105,-105,137,138,106,-106,138,139,107,-107,139,140,108,-108,140,141,109,-109,141,142,110,-110,142,143,111,-111,143,144,112,-112,144,145,113,-113,145,146,114,-114,426,436,147,-119,147,148,119,-119,148,149,120,-120,149,150,121,-121,150,151,122,-122,151,152,123,-123,152,153,124,-124,153,125,93,-125,154,155,126,-126,155,156,127,-127,156,157,128,-128,157,158,129,-129,158,159,130,-130,159,160,131,-131,160,161,132,-132,161,162,133,-133,162,163,134,-134,163,164,135,-135,164,165,136,-136,165,166,137,-137,166,167,138,-138,167,168,139,-139,168,169,140,-140,
- 169,170,141,-141,170,171,142,-142,171,172,143,-143,172,173,144,-144,173,174,145,-145,174,175,146,-146,436,437,176,-148,176,177,148,-148,177,178,149,-149,178,179,150,-150,179,180,151,-151,180,181,152,-152,181,182,153,-153,182,154,125,-154,183,184,155,-155,184,185,156,-156,185,186,157,-157,186,187,158,-158,187,188,159,-159,188,189,160,-160,189,190,161,-161,190,191,162,-162,191,192,163,-163,192,193,164,-164,193,194,165,-165,194,195,166,-166,195,196,167,-167,196,197,168,-168,197,198,169,-169,198,199,170,-170,199,200,171,-171,200,201,172,-172,201,202,173,-173,202,203,174,-174,203,204,175,-175,437,438,205,-177,205,206,177,-177,206,207,178,-178,207,208,179,-179,208,209,180,-180,209,210,181,-181,210,211,182,-182,211,183,154,-183,212,395,396,-214,213,396,397,-215,214,397,398,-216,215,398,399,-217,216,399,400,-218,217,400,401,-219,218,401,402,-220,219,402,403,-221,220,403,404,-222,221,404,405,-223,222,405,406,-224,223,406,407,-225,224,407,408,-226,225,408,409,-227,226,409,410,-228,227,410,411,-229,228,411,412,-230,229,412,413,-231,230,413,414,-232,231,414,415,-233,232,415,416,-234,440,441,417,-235,234,417,418,-236,235,418,419,-237,236,419,420,-238,237,420,421,-239,238,421,422,-240,239,422,423,-241,240,423,395,-213,273,241,242,-275,274,242,243,-276,275,243,244,-277,276,244,245,-278,277,245,246,-279,278,246,247,-280,279,247,248,-281,280,248,249,-282,281,249,250,-283,282,250,251,-284,283,251,252,-285,284,252,253,-286,285,253,254,-287,286,254,255,-288,287,255,256,-289,288,256,257,-290,289,257,258,-291,290,258,259,-292,291,259,260,-293,292,260,261,-294,293,261,262,-295,294,262,263,-296,295,263,264,-297,296,264,265,-298,297,265,266,-299,298,266,267,-300,299,267,268,-301,300,268,269,-302,301,269,270,-303,302,270,271,-304,303,271,272,-305,304,272,241,-274,305,273,274,-307,306,274,275,-308,307,275,276,-309,308,276,277,-310,309,277,278,-311,310,278,279,-312,311,279,280,-313,312,280,281,-314,313,281,282,-315,314,282,283,-316,315,283,284,-317,316,284,285,-318,317,285,286,-319,318,286,287,-320,319,287,288,-321,320,288,289,-322,321,289,290,
- -323,322,290,291,-324,323,291,292,-325,324,292,293,-326,325,293,294,-327,326,327,-426,327,295,296,-329,328,296,297,-330,329,330,-428,330,298,299,-332,331,299,300,-333,332,300,301,-334,333,301,302,-335,334,302,303,-336,335,303,304,-337,336,304,273,-306,337,305,306,-339,338,306,307,-340,339,307,308,-341,340,308,309,-342,341,309,310,-343,342,310,311,-344,343,311,312,-345,344,312,313,-346,345,313,314,-347,346,314,315,-348,347,315,316,-349,348,316,317,-350,349,317,318,-351,350,318,319,-352,351,319,320,-353,352,320,321,-354,353,321,322,-355,354,322,323,-356,355,323,324,-357,356,324,325,-358,357,325,326,-359,359,330,331,-361,360,331,332,-362,361,332,333,-363,362,333,334,-364,363,334,335,-365,364,335,336,-366,365,336,305,-338,366,337,338,-368,367,338,339,-369,368,339,340,-370,369,340,341,-371,370,341,342,-372,371,342,343,-373,372,343,344,-374,373,344,345,-375,374,345,346,-376,375,346,347,-377,376,347,348,-378,377,348,349,-379,378,349,350,-380,379,350,351,-381,380,351,352,-382,381,352,353,-383,382,353,354,-384,383,354,355,-385,384,355,356,-386,385,356,357,-387,386,357,358,-388,442,443,359,-389,388,359,360,-390,389,360,361,-391,390,361,362,-392,391,362,363,-393,392,363,364,-394,393,364,365,-395,394,365,337,-367,395,366,367,-397,396,367,368,-398,397,368,369,-399,398,369,370,-400,399,370,371,-401,400,371,372,-402,401,372,373,-403,402,373,374,-404,403,374,375,-405,404,375,376,-406,405,376,377,-407,406,377,378,-408,407,378,379,-409,408,379,380,-410,409,380,381,-411,410,381,382,-412,411,382,383,-413,412,383,384,-414,413,384,385,-415,414,385,386,-416,415,386,387,-417,441,442,388,-418,417,388,389,-419,418,389,390,-420,419,390,391,-421,420,391,392,-422,421,392,393,-423,422,393,394,-424,423,394,366,-396,271,59,60,-273,255,43,44,-257,42,43,255,-255,41,42,254,-254,40,41,253,-253,39,40,252,-252,38,39,251,-251,37,38,250,-250,36,37,249,-249,35,36,248,-248,34,35,247,-247,33,34,246,-246,32,33,245,-245,31,32,244,-244,30,31,243,-243,29,30,242,-242,272,60,29,-242,58,59,271,-271,57,58,270,-270,56,57,269,-269,55,56,268,-268,54,55,267,-267,53,54,
- 266,-266,52,53,265,-265,51,52,264,-264,50,51,263,-263,49,50,262,-262,48,49,261,-261,47,48,260,-260,46,47,259,-259,45,46,258,-258,44,45,257,-257,239,240,28,-28,226,227,15,-15,13,225,226,-15,12,224,225,-14,11,223,224,-13,10,222,223,-12,9,221,222,-11,8,220,221,-10,7,219,220,-9,6,218,219,-8,5,217,218,-7,4,216,217,-6,3,215,216,-5,2,214,215,-4,1,213,214,-3,0,212,213,-2,240,212,0,-29,26,238,239,-28,25,237,238,-27,24,236,237,-26,23,235,236,-25,22,234,235,-24,439,440,234,-23,20,232,233,-22,19,231,232,-21,18,230,231,-20,17,229,230,-19,16,228,229,-18,15,227,228,-17,358,326,425,-436,175,429,428,-147,204,430,429,-176,21,431,430,-205,21,233,432,-432,233,416,433,-433,416,387,434,-434,387,358,435,-435,146,428,424,-115,443,427,330,-360,114,424,-116,326,294,295,-328,117,426,-119,329,297,298,-331,449,444,534,-527,451,513,554,-476,469,488,448,-515,525,535,466,453,-480,523,485,478,-518,497,494,486,-477,469,516,457,-469,503,504,497,-477,492,543,545,-509,450,449,526,-553,486,494,450,-522,495,555,528,463,-461,499,514,-449,480,489,478,-486,496,553,533,-494,474,491,490,-514,510,491,474,-499,447,518,481,-478,510,461,-492,500,509,479,-454,482,462,-507,461,463,-488,481,511,-460,484,496,493,-478,466,454,-508,504,541,534,-445,459,473,484,-478,501,502,473,-460,486,483,-477,516,532,-458,477,493,465,-448,505,519,530,-543,484,473,483,-473,470,483,-474,474,513,451,-459,511,501,-460,462,482,-525,477,481,-460,455,464,-507,454,455,506,-508,483,503,-477,467,452,-500,516,471,-533,483,486,-473,488,469,468,-447,493,533,539,-466,492,508,489,-481,468,478,489,-447,447,491,-462,482,464,-481,494,512,-450,474,458,499,-499,444,497,-505,500,453,466,-508,505,467,448,-489,446,505,-489,455,544,537,-465,489,508,-447,462,456,509,-501,455,454,548,-545,499,452,495,-499,460,510,498,-496,481,518,487,-512,470,502,550,-541,503,551,541,-505,444,449,-513,444,512,494,-498,450,552,558,-522,445,553,-497,461,510,460,-464,447,465,490,-492,458,514,-500,451,515,514,-459,529,555,495,-453,467,499,-449,514,515,516,-470,457,517,478,-469,447,461,-519,487,518,-462,446,519,-506,508,519,-447,
- 483,470,-504,540,551,503,-471,496,520,-446,472,520,496,-485,445,520,-522,486,521,520,-473,521,558,-446,470,473,-503,522,531,-457,523,559,531,-523,485,523,522,-525,524,522,456,-463,506,462,500,-508,524,482,480,-486,506,464,-483,480,464,-493,494,449,-451,542,527,467,-506,527,529,452,-468,535,548,454,-467,545,530,519,-509,547,525,479,-510,517,557,559,-524,537,543,492,-465,528,546,487,-464,539,538,490,-466,531,536,-457,536,547,509,-457,546,549,511,-488,549,550,502,501,-512,538,554,513,-491,532,557,517,-458,556,471,516,-516,556,515,451,-476,565,560,650,-643,567,629,670,-592,585,604,564,-631,641,651,582,569,-596,639,601,594,-634,602,592,613,-611,585,632,573,-585,592,619,620,-614,608,659,661,-625,566,565,642,-669,637,602,610,-567,611,671,644,579,-577,615,630,-565,601,596,605,-595,612,669,649,-610,629,590,607,-607,590,614,626,-608,563,634,597,-594,626,577,-608,616,625,595,-570,598,578,-623,577,579,-604,597,627,-576,600,612,609,-594,582,570,-624,620,657,650,-561,589,600,593,-576,618,589,575,-618,602,599,-593,632,648,-574,593,609,581,-564,621,635,646,-659,600,589,599,-589,586,599,-590,590,629,567,-575,627,617,-576,578,598,-641,593,597,-576,571,580,-623,623,570,571,-623,599,619,-593,583,568,-616,632,587,-649,599,602,-589,604,585,584,-563,609,649,655,-582,596,608,624,-606,584,594,605,-563,563,607,-578,598,580,-597,610,628,-566,590,574,615,-615,560,613,-621,616,569,582,-624,604,621,583,-565,562,621,-605,571,660,653,-581,605,624,-563,625,616,578,-573,570,664,660,-572,615,568,611,-615,614,611,576,-627,597,634,603,-628,586,618,666,-657,619,667,657,-621,560,565,-629,560,628,610,-614,668,674,637,-567,561,669,-613,577,626,576,-580,563,581,606,-608,574,630,-616,567,631,630,-575,645,671,611,-569,583,615,-565,632,585,630,-632,573,633,594,-585,563,577,-635,603,634,-578,562,635,-622,624,635,-563,599,586,-620,656,667,619,-587,612,636,-562,588,636,612,-601,561,636,-638,602,637,636,-589,637,674,-562,586,589,-619,638,647,-573,639,675,647,-639,601,639,638,-641,640,638,572,-579,616,623,622,-579,640,598,596,-602,622,580,-599,596,580,-609,610,565,
- -567,621,658,643,-584,643,645,568,-584,651,664,570,-583,661,646,635,-625,663,641,595,-626,673,675,639,-634,653,659,608,-581,644,662,603,-580,655,654,606,-582,647,652,-573,652,663,625,-573,662,665,627,-604,665,666,618,617,-628,654,670,629,-607,648,673,633,-574,672,587,632,-632,672,631,567,-592,679,676,708,-707,691,686,696,-695,686,699,700,-697,680,679,706,-717,705,691,694,-681,695,717,707,-694,678,703,688,-688,688,701,-682,690,695,693,-688,700,711,708,-677,685,690,687,-682,698,685,681,-698,691,689,-687,687,693,682,-679,690,685,689,-685,683,689,-686,701,697,-682,687,688,-682,689,699,-687,689,691,-685,693,707,709,-683,694,702,-680,676,696,-701,688,703,692,-702,683,698,714,-711,699,715,711,-701,676,679,-703,676,702,694,-697,716,718,705,-681,677,717,-696,689,683,-700,710,715,699,-684,695,704,-678,684,704,695,-691,677,704,-706,691,705,704,-685,705,718,-678,683,685,-699,694,679,-681,712,713,701,-693,713,714,698,697,-702,734,742,720,-753,760,766,731,723,-739,758,741,737,-756,734,754,727,-734,744,770,772,-751,745,752,-721,741,739,743,-738,746,751,738,-724,740,729,-749,731,724,-750,735,727,-755,747,756,763,-770,729,740,-760,725,730,-749,749,724,725,-749,732,722,-746,735,765,-728,742,734,733,-720,739,744,750,-744,733,737,743,-720,740,730,-740,746,723,731,-750,742,747,732,-721,719,747,-743,725,771,768,-731,743,750,-720,751,746,729,-727,724,774,771,-726,728,752,-746,721,753,752,-729,732,745,-721,754,734,752,-754,727,755,737,-734,719,756,-748,750,756,-720,757,764,-727,758,777,764,-758,741,758,757,-760,759,757,726,-730,746,749,748,-730,759,740,739,-742,748,730,-741,739,730,-745,747,769,761,-733,761,762,722,-733,766,774,724,-732,772,763,756,-751,773,760,738,-752,776,777,758,-756,768,770,744,-731,764,767,-727,767,773,751,-727,765,776,755,-728,775,735,754,-754,775,753,721,-737,783,778,869,-862,785,848,889,-810,803,822,782,-850,860,870,800,787,-814,858,819,812,-853,820,810,831,-829,803,851,791,-803,810,838,839,-832,826,878,880,-844,784,783,861,-888,856,820,828,-785,829,890,863,797,-795,834,849,-783,814,823,812,-820,830,888,868,-828,
- 848,808,825,-825,808,832,845,-826,781,853,815,-812,845,795,-826,835,844,813,-788,816,796,-842,795,797,-822,815,846,-794,818,830,827,-812,800,788,-843,839,876,869,-779,807,818,811,-794,837,807,793,-837,820,817,-811,805,791,-852,811,827,799,-782,840,854,865,-878,818,807,817,-807,804,817,-808,808,848,785,-793,785,809,833,-851,846,836,-794,796,816,-860,811,815,-794,789,798,-842,788,789,841,-843,817,838,-811,801,786,-835,805,867,-792,817,820,-807,822,803,802,-781,827,868,874,-800,826,843,823,-815,802,812,823,-781,781,825,-796,816,798,-815,828,847,-784,808,792,834,-833,778,831,-840,835,787,800,-843,822,840,801,-783,780,840,-823,789,879,872,-799,823,843,-781,796,790,844,-836,789,788,883,-880,834,786,829,-833,832,829,794,-846,815,853,821,-847,804,837,885,-876,838,886,876,-840,778,783,-848,778,847,828,-832,887,894,856,-785,779,888,-831,795,845,794,-798,781,799,824,-826,792,849,-835,785,850,849,-793,864,890,829,-787,801,834,-783,851,803,849,-851,791,852,812,-803,781,795,-854,821,853,-796,780,854,-841,843,854,-781,817,804,-839,875,886,838,-805,830,855,-780,806,855,830,-819,779,855,-857,820,856,855,-807,856,894,-780,804,807,-838,857,866,-791,858,895,866,-858,819,858,857,-860,859,857,790,-797,841,796,835,-843,859,816,814,-820,841,798,-817,814,798,-827,828,783,-785,840,877,862,-802,862,864,786,-802,870,883,788,-801,880,865,854,-844,882,860,813,-845,852,892,895,-859,893,867,-806,872,878,826,-799,863,881,821,-798,809,891,-834,874,873,824,-800,866,871,-791,871,882,844,-791,881,884,846,-822,884,885,837,836,-847,873,889,848,-825,867,892,852,-792,891,893,805,851,-851,891,850,-834,901,896,986,-979,903,965,1006,-928,921,940,900,-967,977,987,918,905,-932,975,937,930,-970,949,946,938,-929,921,968,909,-921,955,956,949,-929,944,995,997,-961,902,901,978,-1005,938,946,902,-974,947,1007,980,915,-913,951,966,-901,932,941,930,-938,948,1005,985,-946,926,943,942,-966,962,943,926,-951,899,970,933,-930,962,913,-944,952,961,931,-906,934,914,-959,913,915,-940,933,963,-912,936,948,945,-930,918,906,-960,956,993,986,-897,911,925,936,-930,953,954,925,-912,
- 938,935,-929,923,909,-969,929,945,917,-900,957,971,982,-995,936,925,935,-925,922,935,-926,926,965,903,-911,963,953,-912,914,934,-977,929,933,-912,907,916,-959,906,907,958,-960,935,955,-929,919,904,-952,923,984,-910,935,938,-925,940,921,920,-899,945,985,991,-918,944,960,941,-933,920,930,941,-899,899,943,-914,934,916,-933,946,964,-902,926,910,951,-951,896,949,-957,952,905,918,-960,957,919,900,-941,898,957,-941,907,996,989,-917,941,960,-899,914,908,961,-953,907,906,1000,-997,951,904,947,-951,912,962,950,-948,933,970,939,-964,922,954,1002,-993,955,1003,993,-957,896,901,-965,896,964,946,-950,902,1004,1010,-974,897,1005,-949,913,962,912,-916,899,917,942,-944,910,966,-952,903,967,966,-911,981,1007,947,-905,919,951,-901,966,967,968,-922,909,969,930,-921,899,913,-971,939,970,-914,898,971,-958,960,971,-899,935,922,-956,992,1003,955,-923,948,972,-898,924,972,948,-937,897,972,-974,938,973,972,-925,973,1010,-898,922,925,-955,974,983,-909,975,1011,983,-975,937,975,974,-977,976,974,908,-915,958,914,952,-960,976,934,932,-938,958,916,-935,932,916,-945,946,901,-903,994,979,919,-958,979,981,904,-920,987,1000,906,-919,997,982,971,-961,999,977,931,-962,969,1009,1011,-976,989,995,944,-917,980,998,939,-916,991,990,942,-918,983,988,-909,988,999,961,-909,998,1001,963,-940,1001,1002,954,953,-964,990,1006,965,-943,984,1009,969,-910,1008,923,968,-968,1008,967,903,-928,1016,526,534,-1013,1018,475,554,-1079,1036,1079,1015,-1054,525,1044,1020,1033,-536,1088,1082,1043,-1051,1062,1041,1051,-1060,1036,1035,1024,-1082,1068,1041,1062,-1070,1057,1073,545,-544,1017,552,526,-1017,1051,1086,1017,-1060,1060,1027,1030,528,-556,1064,1015,-1080,1045,1050,1043,-1055,1061,1058,533,-554,1040,1078,1055,-1057,1075,1063,1040,-1057,1014,1042,1046,-1084,1075,1056,-1029,1065,1020,1044,-1075,1047,1071,-1030,1028,1052,-1031,1046,1026,-1077,1049,1042,1058,-1062,1033,1072,-1022,1069,1012,534,-542,1026,1042,1049,-1040,1066,1026,1039,-1068,1051,1041,-1049,1081,1024,-533,1042,1014,1032,-1059,1070,542,530,-1085,1049,1038,1048,-1040,1037,1039,-1049,1040,1025,1018,-1079,1076,
- 1026,-1067,1029,1089,-1048,1042,1026,-1047,1022,1071,-1032,1021,1072,1071,-1023,1048,1041,-1069,1034,1064,-1020,1081,532,-472,1048,1038,-1052,1053,1013,1035,-1037,1058,1032,539,-534,1057,1045,1054,-1074,1035,1013,1054,-1044,1014,1028,-1057,1047,1045,-1032,1059,1016,-1078,1040,1063,1064,-1026,1012,1069,-1063,1065,1072,1033,-1021,1070,1053,1015,-1035,1013,1053,-1071,1022,1031,537,-545,1054,1013,-1074,1029,1065,1074,-1024,1022,544,548,-1022,1064,1063,1060,-1020,1027,1060,1063,-1076,1046,1076,1052,-1084,1037,540,550,-1068,1068,1069,541,-552,1012,1077,-1017,1012,1062,1059,-1078,1017,1086,558,-553,445,1061,-554,1028,1030,1027,-1076,1014,1056,1055,-1033,1025,1064,-1080,1018,1025,1079,-1081,529,1019,1060,-556,1034,1015,-1065,1079,1036,1081,-1081,1024,1035,1043,-1083,1014,1083,-1029,1052,1028,-1084,1013,1070,-1085,1073,1013,-1085,1048,1068,-1038,540,1037,1068,-552,1061,445,-1086,1038,1049,1061,-1086,445,1086,-1086,1051,1038,1085,-1087,1086,445,-559,1037,1067,-1040,1087,1023,-532,1088,1087,531,-560,1050,1089,1087,-1089,1089,1029,1023,-1088,1071,1072,1065,-1030,1089,1050,1045,-1048,1071,1047,-1032,1045,1057,-1032,1059,1017,-1017,542,1070,1034,-528,527,1034,1019,-530,535,1033,1021,-549,545,1073,1084,-531,547,1074,1044,-526,1082,1088,559,-558,537,1031,1057,-544,528,1030,1052,-547,539,1032,1055,-539,531,1023,-537,536,1023,1074,-548,546,1052,1076,-550,549,1076,1066,1067,-551,538,1055,1078,-555,532,1024,1082,-558,556,1080,1081,-472,556,475,1018,-1081,1094,642,650,-1091,1096,591,670,-1157,1114,1157,1093,-1132,641,1122,1098,1111,-652,1166,1160,1121,-1129,1129,1137,1140,-1120,1114,1113,1102,-1160,1119,1140,1147,-1147,1135,1151,661,-660,1095,668,642,-1095,1164,1095,1137,-1130,1138,1105,1108,644,-672,1142,1093,-1158,1128,1121,1132,-1124,1139,1136,649,-670,1156,1133,1134,-1119,1118,1134,1153,-1142,1092,1120,1124,-1162,1153,1134,-1107,1143,1098,1122,-1153,1125,1149,-1108,1106,1130,-1109,1124,1104,-1155,1127,1120,1136,-1140,1111,1150,-1100,1147,1090,650,-658,1117,1104,1120,-1128,1145,1144,1104,-1118,1129,1119,-1127,1159,1102,-649,1120,1092,
- 1110,-1137,1148,658,646,-1163,1127,1116,1126,-1118,1115,1117,-1127,1118,1103,1096,-1157,1154,1104,-1145,1107,1167,-1126,1120,1104,-1125,1100,1149,-1110,1150,1149,1100,-1100,1126,1119,-1147,1112,1142,-1098,1159,648,-588,1126,1116,-1130,1131,1091,1113,-1115,1136,1110,655,-650,1123,1132,1151,-1136,1113,1091,1132,-1122,1092,1106,-1135,1125,1123,-1110,1137,1094,-1156,1118,1141,1142,-1104,1090,1147,-1141,1143,1150,1111,-1099,1131,1093,1112,-1149,1091,1131,-1149,1100,1109,653,-661,1132,1091,-1152,1152,1101,1107,-1144,1099,1100,660,-665,1142,1141,1138,-1098,1141,1153,1105,-1139,1124,1154,1130,-1162,1115,656,666,-1146,1146,1147,657,-668,1090,1155,-1095,1090,1140,1137,-1156,668,1095,1164,-675,561,1139,-670,1106,1108,1105,-1154,1092,1134,1133,-1111,1103,1142,-1158,1096,1103,1157,-1159,645,1097,1138,-672,1112,1093,-1143,1159,1158,1157,-1115,1102,1113,1121,-1161,1092,1161,-1107,1130,1106,-1162,1091,1148,-1163,1151,1091,-1163,1126,1146,-1116,656,1115,1146,-668,1139,561,-1164,1116,1127,1139,-1164,561,1164,-1164,1129,1116,1163,-1165,1164,561,-675,1115,1145,-1118,1165,1101,-648,1166,1165,647,-676,1128,1167,1165,-1167,1167,1107,1101,-1166,1143,1107,1149,-1151,1167,1128,1123,-1126,1149,1125,-1110,1123,1135,-1110,1137,1095,-1095,1148,1112,643,-659,643,1112,1097,-646,651,1111,1099,-665,661,1151,1162,-647,663,1152,1122,-642,673,1160,1166,-676,653,1109,1135,-660,644,1108,1130,-663,655,1110,1133,-655,647,1101,-653,652,1101,1152,-664,662,1130,1154,-666,665,1154,1144,1145,-667,654,1133,1156,-671,648,1102,1160,-674,672,1158,1159,-588,672,591,1096,-1159,1170,706,708,-1169,1182,1185,1187,-1178,1177,1187,1191,-1191,1171,716,706,-1171,1196,1171,1185,-1183,1186,1184,707,-718,1169,1178,1179,-1195,1179,1172,-1193,1181,1178,1184,-1187,1191,1168,708,-712,1176,1172,1178,-1182,1189,1188,1172,-1177,1182,1177,-1181,1178,1169,1173,-1185,1181,1175,1180,-1177,1174,1176,-1181,1192,1172,-1189,1178,1172,-1180,1180,1177,-1191,1180,1175,-1183,1184,1173,709,-708,1185,1170,-1194,1168,1191,-1188,1179,1192,1183,-1195,1174,710,714,-1190,1190,1191,711,-716,1168,1193,
- -1171,1168,1187,1185,-1194,716,1171,1196,-719,677,1186,-718,1180,1190,-1175,710,1174,1190,-716,1186,677,-1196,1175,1181,1186,-1196,677,1196,-1196,1182,1175,1195,-1197,1196,677,-719,1174,1189,-1177,1185,1171,-1171,712,1183,1192,-714,713,1192,1188,1189,-715,1212,1228,1198,-1219,760,1214,1201,1209,-767,1234,1231,1213,-1218,1212,1211,1205,-1231,1220,1226,772,-771,1221,1198,-1229,1217,1213,1219,-1216,1222,1201,1214,-1228,1216,1224,-1208,1209,1225,-1203,735,1230,-1206,1223,769,763,-1233,1207,1235,-1217,1203,1224,-1209,1225,1224,1203,-1203,1210,1221,-1201,735,1205,-766,1218,1197,1211,-1213,1215,1219,1226,-1221,1211,1197,1219,-1214,1216,1215,-1209,1222,1225,1209,-1202,1218,1198,1210,-1224,1197,1218,-1224,1203,1208,768,-772,1219,1197,-1227,1227,1204,1207,-1223,1202,1203,771,-775,1206,1221,-1229,1199,1206,1228,-1230,1210,1198,-1222,1230,1229,1228,-1213,1205,1211,1213,-1232,1197,1223,-1233,1226,1197,-1233,1233,1204,-765,1234,1233,764,-778,1217,1235,1233,-1235,1235,1207,1204,-1234,1222,1207,1224,-1226,1235,1217,1215,-1217,1224,1216,-1209,1215,1220,-1209,1223,1210,761,-770,761,1210,1200,-763,766,1209,1202,-775,772,1226,1232,-764,773,1227,1214,-761,776,1231,1234,-778,768,1208,1220,-771,764,1204,-768,767,1204,1227,-774,765,1205,1231,-777,775,1229,1230,-736,775,736,1199,-1230,1240,861,869,-1237,1242,809,889,-1305,1260,1305,1239,-1279,860,1269,1244,1257,-871,1314,1308,1268,-1276,1276,1284,1287,-1267,1260,1259,1248,-1308,1266,1287,1295,-1295,1282,1299,880,-879,1241,887,861,-1241,1312,1241,1284,-1277,1285,1251,1254,863,-891,1290,1239,-1306,1270,1275,1268,-1280,1286,1283,868,-889,1304,1280,1281,-1266,1265,1281,1301,-1289,1238,1267,1271,-1310,1301,1281,-1253,1291,1244,1269,-1301,1272,1297,-1254,1252,1277,-1255,1271,1250,-1303,1274,1267,1283,-1287,1257,1298,-1246,1295,1236,869,-877,1264,1250,1267,-1275,1293,1292,1250,-1265,1276,1266,-1274,1262,1307,-1249,1267,1238,1256,-1284,1296,877,865,-1311,1274,1263,1273,-1265,1261,1264,-1274,1265,1249,1242,-1305,1242,1306,1289,-810,1302,1250,-1293,1253,1315,-1273,1267,1250,-1272,1246,1297,-1256,1245,
- 1298,1297,-1247,1273,1266,-1295,1258,1290,-1244,1262,1248,-868,1273,1263,-1277,1278,1237,1259,-1261,1283,1256,874,-869,1282,1270,1279,-1300,1259,1237,1279,-1269,1238,1252,-1282,1272,1270,-1256,1284,1240,-1304,1265,1288,1290,-1250,1236,1295,-1288,1291,1298,1257,-1245,1278,1239,1258,-1297,1237,1278,-1297,1246,1255,872,-880,1279,1237,-1300,1253,1291,1300,-1248,1246,879,883,-1246,1290,1288,1285,-1244,1288,1301,1251,-1286,1271,1302,1277,-1310,1261,875,885,-1294,1294,1295,876,-887,1236,1303,-1241,1236,1287,1284,-1304,887,1241,1312,-895,779,1286,-889,1252,1254,1251,-1302,1238,1281,1280,-1257,1249,1290,-1306,1242,1249,1305,-1307,864,1243,1285,-891,1258,1239,-1291,1307,1306,1305,-1261,1248,1259,1268,-1309,1238,1309,-1253,1277,1252,-1310,1237,1296,-1311,1299,1237,-1311,1273,1294,-1262,875,1261,1294,-887,1286,779,-1312,1263,1274,1286,-1312,779,1312,-1312,1276,1263,1311,-1313,1312,779,-895,1261,1293,-1265,1313,1247,-867,1314,1313,866,-896,1275,1315,1313,-1315,1315,1253,1247,-1314,1297,1298,1291,-1254,1315,1275,1270,-1273,1297,1272,-1256,1270,1282,-1256,1284,1241,-1241,1296,1258,862,-878,862,1258,1243,-865,870,1257,1245,-884,880,1299,1310,-866,882,1300,1269,-861,1308,1314,895,-893,893,1262,-868,872,1255,1282,-879,863,1254,1277,-882,809,1289,-892,874,1256,1280,-874,866,1247,-872,871,1247,1300,-883,881,1277,1302,-885,884,1302,1292,1293,-886,873,1280,1304,-890,867,1248,1308,-893,891,1306,1307,1262,-894,891,1289,-1307,1320,978,986,-1317,1322,927,1006,-1383,1340,1383,1319,-1358,977,1348,1324,1337,-988,1392,1386,1347,-1355,1366,1345,1355,-1364,1340,1339,1328,-1386,1372,1345,1366,-1374,1361,1377,997,-996,1321,1004,978,-1321,1355,1390,1321,-1364,1364,1331,1334,980,-1008,1368,1319,-1384,1349,1354,1347,-1359,1365,1362,985,-1006,1344,1382,1359,-1361,1379,1367,1344,-1361,1318,1346,1350,-1388,1379,1360,-1333,1369,1324,1348,-1379,1351,1375,-1334,1332,1356,-1335,1350,1330,-1381,1353,1346,1362,-1366,1337,1376,-1326,1373,1316,986,-994,1330,1346,1353,-1344,1370,1330,1343,-1372,1355,1345,-1353,923,1385,-1329,1346,1318,1336,-1363,1374,994,982,-1389,
- 1353,1342,1352,-1344,1341,1343,-1353,1344,1329,1322,-1383,1380,1330,-1371,1333,1393,-1352,1346,1330,-1351,1326,1375,-1336,1325,1376,1375,-1327,1352,1345,-1373,1338,1368,-1324,923,1328,-985,1352,1342,-1356,1357,1317,1339,-1341,1362,1336,991,-986,1361,1349,1358,-1378,1339,1317,1358,-1348,1318,1332,-1361,1351,1349,-1336,1363,1320,-1382,1344,1367,1368,-1330,1316,1373,-1367,1369,1376,1337,-1325,1374,1357,1319,-1339,1317,1357,-1375,1326,1335,989,-997,1358,1317,-1378,1333,1369,1378,-1328,1326,996,1000,-1326,1368,1367,1364,-1324,1331,1364,1367,-1380,1350,1380,1356,-1388,1341,992,1002,-1372,1372,1373,993,-1004,1316,1381,-1321,1316,1366,1363,-1382,1321,1390,1010,-1005,897,1365,-1006,1332,1334,1331,-1380,1318,1360,1359,-1337,1329,1368,-1384,1322,1329,1383,-1385,981,1323,1364,-1008,1338,1319,-1369,1383,1340,1385,-1385,1328,1339,1347,-1387,1318,1387,-1333,1356,1332,-1388,1317,1374,-1389,1377,1317,-1389,1352,1372,-1342,992,1341,1372,-1004,1365,897,-1390,1342,1353,1365,-1390,897,1390,-1390,1355,1342,1389,-1391,1390,897,-1011,1341,1371,-1344,1391,1327,-984,1392,1391,983,-1012,1354,1393,1391,-1393,1393,1333,1327,-1392,1375,1376,1369,-1334,1393,1354,1349,-1352,1375,1351,-1336,1349,1361,-1336,1363,1321,-1321,994,1374,1338,-980,979,1338,1323,-982,987,1337,1325,-1001,997,1377,1388,-983,999,1378,1348,-978,1386,1392,1011,-1010,989,1335,1361,-996,980,1334,1356,-999,991,1336,1359,-991,983,1327,-989,988,1327,1378,-1000,998,1356,1380,-1002,1001,1380,1370,1371,-1003,990,1359,1382,-1007,984,1328,1386,-1010,1008,1384,1385,-924,1008,927,1322,-1385,682,709,1173,1169,1194,1183,712,692,703,-679,721,728,745,722,762,1200,1221,1206,1199,-737
- }
- Edges: *2937 {
- a: 0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,1690,88,92,96,100,104,108,112,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238,242,3,1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,86,89,93,97,101,105,109,119,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,247,245,249,253,257,261,265,269,273,277,281,285,289,293,297,301,305,309,313,317,321,325,329,333,337,341,345,349,353,357,361,365,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,1719,332,336,459,344,348,352,356,360,364,368,375,373,377,381,385,389,393,397,401,405,409,413,417,421,425,429,433,437,441,445,449,453,458,461,465,469,473,477,481,372,376,380,384,388,392,396,400,404,408,412,416,420,424,428,432,436,440,444,448,452,457,460,464,468,472,476,480,484,491,489,493,497,501,505,509,513,517,521,525,529,533,537,541,545,549,553,557,561,565,569,574,577,581,585,589,593,597,488,492,496,500,504,508,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,573,576,580,584,588,592,596,600,607,605,609,613,617,621,625,629,633,637,641,645,649,653,657,661,665,669,673,677,681,685,690,693,697,701,705,709,713,2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,87,90,94,98,102,106,110,114,723,727,731,735,739,743,747,751,755,759,763,767,771,775,779,783,787,791,795,799,803,1695,811,815,819,823,827,831,835,837,841,845,849,853,857,861,865,869,873,877,881,885,889,893,897,901,905,909,913,917,921,925,929,933,937,941,945,949,953,957,961,720,722,726,730,734,738,742,746,750,754,758,762,766,770,774,778,782,786,790,794,798,802,806,810,814,818,822,826,830,836,838,842,846,850,854,858,862,866,870,874,878,882,886,890,894,898,902,906,910,914,918,922,926,930,934,938,942,946,950,954,958,839,843,847,851,855,859,863,867,871,875,879,883,887,891,
- 895,899,903,907,911,915,919,923,927,931,935,939,943,947,951,955,959,963,964,966,970,974,978,982,986,990,994,998,1002,1006,1010,1014,1018,1022,1026,1030,1034,1038,1042,1046,1051,1053,1057,1062,1064,1068,1072,1076,1080,1084,967,971,975,979,983,987,991,995,999,1003,1007,1011,1015,1019,1023,1027,1031,1035,1039,1043,1047,1049,1054,1058,1060,1065,1069,1073,1077,1081,1085,1089,1090,1092,1096,1100,1104,1108,1112,1116,1120,1124,1128,1132,1136,1140,1144,1148,1152,1156,1160,1164,1168,1172,1174,1176,1180,1184,1188,1192,1196,1093,1097,1101,1105,1109,1113,1117,1121,1125,1129,1133,1137,1141,1145,1149,1153,1157,1161,1165,1169,1173,1287,1177,1181,1185,1189,1193,1197,1201,1202,1204,1208,1212,1216,1220,1224,1228,1232,1236,1240,1244,1248,1252,1256,1260,1264,1268,1272,1276,1280,1284,1288,1292,1296,1300,1304,1308,1312,1205,1209,1213,1217,1221,1225,1229,1233,1237,1241,1245,1249,1253,1257,1261,1265,1269,1273,1277,1281,1285,1289,1293,1297,1301,1305,1309,1313,1317,1318,1320,1324,1328,1332,1336,1340,1344,1348,1352,1356,1360,1364,1368,1372,1376,1380,1384,1388,1392,1396,1400,1404,1408,1412,1416,1420,1424,1428,721,725,729,733,737,741,745,749,753,757,761,765,769,773,777,781,785,789,793,797,801,805,809,813,817,821,825,829,833,1436,1434,1440,1438,1445,1449,1453,1457,1461,1465,1469,1473,1477,1481,1485,1489,1493,1497,1505,1509,1513,1517,1521,1525,1529,1533,1537,1541,1545,1549,1553,1557,1563,1565,1567,1569,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606,1610,1614,1618,1622,1630,1634,1638,1642,1646,1656,1654,1658,1662,1666,1670,1712,1050,1725,1061,1684,1682,1686,1699,1703,1681,1683,1687,1691,1696,1700,1704,1708,1711,1680,85,807,572,688,84,1650,804,1402,1286,456,1714,328,1048,340,1059,1732,1929,1741,1740,1748,1750,1753,1754,1996,1769,1774,1775,1884,1784,1782,1747,1746,1785,1786,1825,1826,1928,2056,1848,1793,1844,1911,2016,1837,1806,1780,1943,1812,1946,1817,1739,1914,1877,1736,1795,1821,1792,1993,1863,1745,1760,1759,1832,1833,1839,1941,1874,1881,1841,1840,1824,1835,1803,1855,1864,1756,1804,1905,1819,1809,2123,1788,1820,1912,1814,1858,1781,1952,1885,1857,
- 1856,2064,1843,1891,1816,1896,1907,1990,1899,1895,1909,2081,1847,1919,1799,1984,1922,1920,1811,1904,1836,1963,1764,1762,2028,1761,1831,1828,1930,1932,1853,1933,1876,1879,1827,1768,1902,1823,1944,1808,2105,1953,1955,1797,1805,1800,1961,1865,1818,2130,1973,1916,1915,1789,1815,1794,1796,1737,1743,2008,1742,1997,1777,1886,1758,1757,1887,2011,1751,2106,1802,1801,1960,2021,1850,2024,2034,2035,2037,2042,2043,1776,1860,1755,2060,1752,1749,1870,2063,1813,1869,1875,1913,1917,1735,2087,1779,2003,1851,2055,1888,1791,1733,2049,1938,2119,1966,1765,1936,1767,2115,1948,1964,1967,1772,1980,2054,2057,1734,1738,1744,1766,1771,2086,1778,2090,2094,2098,2102,2107,1790,1829,1852,2110,2114,1949,2153,2118,1898,2122,1965,1937,2125,2129,2133,1968,1979,1982,2138,2000,2142,2146,2030,2058,2149,2154,2352,2162,2170,2177,2178,2418,2191,2197,2198,2306,2206,2204,2169,2168,2209,2247,2248,2350,2478,2270,2216,2266,2333,2438,2258,2228,2202,2367,2234,2366,2239,2161,2336,2300,2158,2218,2243,2415,2285,2167,2182,2181,2257,2254,2260,2363,2296,2303,2263,2262,2246,2256,2225,2277,2286,2176,2226,2327,2241,2231,2545,2207,2242,2334,2236,2280,2203,2374,2307,2279,2278,2486,2265,2313,2238,2318,2329,2412,2321,2317,2331,2503,2269,2341,2219,2406,2344,2342,2233,2323,2261,2385,2183,2185,2450,2253,2250,2353,2351,2275,2355,2298,2302,2249,2190,2325,2245,2230,2527,2375,2379,2221,2227,2383,2287,2240,2552,2395,2338,2337,2211,2237,2217,2215,2159,2165,2432,2164,2419,2199,2308,2180,2179,2309,2433,2173,2531,2224,2223,2382,2443,2272,2446,2456,2457,2459,2464,2465,2195,2282,2175,2482,2171,2292,2485,2235,2291,2297,2335,2339,2157,2510,2201,2425,2273,2477,2310,2213,2155,2471,2360,2541,2388,2187,2358,2189,2537,2369,2386,2389,2194,2401,2476,2479,2156,2160,2166,2193,2509,2512,2516,2520,2524,2528,2251,2274,2532,2536,2370,2575,2540,2320,2544,2387,2359,2547,2551,2555,2404,2560,2422,2564,2568,2452,2480,2571,2576,2582,2583,2588,2594,2595,2628,2619,2607,2618,2615,2621,2643,2624,2623,2610,2617,2602,2631,2581,2603,2605,2606,2634,2633,2632,2647,2651,2627,2684,2656,2622,2663,2584,2586,2686,2614,2611,
- 2609,2661,2637,2604,2716,2673,2654,2653,2596,2601,2600,2660,2692,2693,2695,2700,2701,2592,2636,2580,2655,2579,2598,2577,2707,2666,2718,2664,2667,2591,2679,2578,2590,2612,2650,2665,2715,2719,2682,2688,2668,2585,2678,2368,2188,2208,2172,2174,2163,2200,2220,2212,2214,2390,2184,2400,2597,2599,2805,2724,2732,2829,2779,2747,2745,2731,2730,2750,2759,2760,2803,2852,2783,2820,2756,2819,2924,2799,2776,2826,2832,2729,2740,2739,2816,2772,2793,2753,2908,2748,2797,2758,2780,2860,2762,2788,2795,2787,2877,2828,2755,2789,2806,2804,2768,2808,2774,2778,2761,2744,2791,2752,2898,2727,2839,2726,2830,2781,2738,2737,2764,2840,2735,2902,2844,2765,2847,2856,2733,2771,2859,2757,2770,2773,2798,2881,2884,2766,2851,2782,2813,2741,2811,2743,2822,2850,2853,2728,2880,2883,2887,2891,2895,2899,2767,2903,2823,2925,2907,2812,2910,2914,2918,2854,2921,2926,3128,2934,2942,2944,2949,2950,3062,2963,2969,2970,3082,2978,2976,2941,2940,2979,2980,3019,3020,3126,3254,3042,2988,3086,3109,3214,3030,3000,2974,3141,3006,3144,3011,2933,3112,3075,2930,2990,3015,3191,3057,2939,2954,2953,3029,3026,3032,3139,3072,3079,3035,3034,3018,3028,2997,3049,3058,3060,2948,2998,3103,3013,3003,3327,2982,3014,3110,3008,3052,2975,3150,3083,3051,3050,3262,3037,3089,3010,3094,3105,3188,3097,3093,3107,3279,3041,3117,2991,3182,3120,3118,3005,3102,3033,3161,2955,2957,3226,3025,3022,3129,3127,3047,3131,3074,3077,3021,2962,3100,3017,3142,3002,3303,3151,3155,2993,2999,3159,3063,3012,3334,3171,3114,3113,2983,3009,2989,2987,2931,2937,3208,2936,3195,3061,2971,3084,2952,2951,3039,3209,2945,3304,3310,2996,2995,3158,3219,3044,3222,3232,3233,3235,3240,3241,2967,3054,2947,3258,2946,2943,3068,3261,3007,3067,3073,3111,3115,2929,3286,2973,3201,3045,3253,3085,2985,2927,3247,3136,3323,3164,2959,3134,2961,3316,3146,3162,3165,2966,3320,3177,3252,3255,2928,2932,2938,2960,2965,3285,3288,3292,3296,3300,3305,3308,3023,3046,3311,3315,3147,3319,3322,3096,3326,3163,3135,3329,3333,3337,3180,3342,3198,3346,3350,3228,3256,3354,3358,3555,3367,3366,3374,3376,3379,3380,3622,3395,3400,3401,3510,3410,3408,3373,3372,3411,
- 3412,3451,3452,3554,3682,3474,3419,3514,3537,3642,3463,3432,3406,3569,3438,3572,3443,3365,3540,3503,3362,3421,3447,3418,3619,3489,3371,3386,3385,3458,3459,3465,3567,3500,3507,3467,3466,3450,3461,3429,3481,3490,3382,3430,3531,3445,3435,3749,3414,3446,3538,3440,3484,3407,3578,3511,3483,3482,3690,3469,3517,3442,3522,3533,3616,3525,3521,3535,3707,3473,3545,3425,3610,3548,3546,3437,3530,3462,3589,3390,3388,3654,3387,3457,3454,3556,3558,3479,3559,3502,3505,3453,3394,3528,3449,3570,3434,3731,3579,3581,3423,3431,3426,3587,3491,3444,3756,3599,3542,3541,3415,3441,3420,3422,3363,3369,3634,3368,3623,3403,3512,3384,3383,3471,3637,3377,3732,3428,3427,3586,3647,3476,3650,3660,3661,3663,3668,3669,3402,3486,3381,3686,3378,3375,3496,3689,3439,3495,3501,3539,3543,3361,3713,3405,3629,3477,3681,3513,3417,3359,3675,3564,3745,3592,3391,3562,3393,3741,3574,3590,3593,3398,3606,3680,3683,3360,3364,3370,3392,3397,3712,3404,3716,3720,3724,3728,3733,3416,3455,3478,3736,3740,3575,3779,3744,3524,3748,3591,3563,3751,3755,3759,3594,3605,3608,3764,3626,3768,3772,3656,3684,3775,3166,2956,3176,2821,2742,2749,2734,2736,2725,2972,2992,2935,2984,2986,3783,3980,3790,3791,3792,3799,3804,3803,4047,3820,3823,3822,3934,3830,3832,3793,3794,3836,3835,3875,3874,3973,4102,3895,3844,3892,3957,4064,3886,3854,3826,3994,3862,3991,3863,3784,3960,3928,3787,3842,3872,3837,4043,3910,3795,3805,3806,3883,3882,3884,3989,3924,3931,3889,3890,3869,3880,3850,3904,3909,3801,3849,3956,3867,3858,4171,3833,3866,3962,3860,3908,3825,4001,3933,3902,3903,4109,3893,3939,3864,3941,3954,4039,3946,3942,3959,4129,3896,3968,3846,4030,3972,3967,3856,3949,3887,4014,3809,3811,4076,3812,3876,3879,3979,3977,3898,3983,3922,3926,3873,3813,3951,3870,3993,3859,4150,4000,4006,3848,3855,3845,4008,3915,3868,4179,4019,3964,3965,3840,3865,3843,3841,3786,3788,4057,3789,4046,3829,3932,3807,3808,3937,4062,3798,4157,3851,3852,4009,4071,3901,4074,4084,4083,4088,4090,4089,3821,3906,3802,4105,3797,3800,3916,4110,3861,3917,3923,3961,3963,3780,4136,3827,4048,3900,4103,3838,3782,3985,4168,4011,3816,3987,3814,4164,
- 3997,4013,4018,3817,4027,4104,4108,4194,4205,4401,4213,4214,4224,4223,4469,4242,4244,4243,4356,4252,4254,4215,4216,4256,4297,4296,4395,4524,4317,4265,4314,4379,4486,4309,4276,4248,4414,4284,4415,4285,4206,4382,4349,4209,4263,4294,4465,4332,4217,4227,4228,4302,4305,4307,4411,4346,4353,4311,4312,4291,4303,4272,4326,4331,4225,4271,4378,4289,4280,4593,4258,4288,4384,4282,4330,4247,4423,4355,4324,4325,4531,4315,4361,4286,4363,4376,4461,4368,4364,4381,4551,4318,4390,4270,4452,4394,4389,4278,4374,4306,4436,4234,4232,4498,4298,4301,4400,4402,4320,4405,4344,4347,4295,4235,4372,4292,4281,4572,4422,4426,4268,4277,4430,4337,4290,4601,4441,4386,4387,4262,4287,4264,4266,4208,4210,4477,4211,4468,4251,4354,4229,4230,4359,4484,4220,4576,4273,4274,4431,4493,4323,4496,4506,4505,4510,4512,4511,4246,4328,4226,4527,4222,4338,4532,4283,4339,4345,4383,4385,4202,4557,4249,4470,4322,4525,4260,4204,4407,4590,4433,4238,4409,4236,4586,4420,4435,4440,4239,4450,4526,4530,4616,4627,4629,4628,4639,4641,4640,4675,4670,4658,4663,4666,4668,4693,4672,4673,4655,4664,4649,4680,4630,4648,4653,4652,4684,4678,4679,4695,4698,4676,4730,4706,4667,4714,4635,4633,4734,4659,4662,4656,4708,4687,4654,4765,4719,4702,4703,4647,4650,4651,4709,4742,4741,4746,4748,4747,4643,4682,4631,4701,4624,4645,4626,4711,4763,4713,4718,4636,4728,4634,4413,4257,4221,4219,4212,4269,4259,4233,4644,4854,4775,4776,4880,4829,4793,4795,4777,4778,4797,4809,4808,4848,4898,4831,4867,4806,4868,4971,4845,4825,4876,4877,4779,4785,4786,4864,4822,4844,4802,4956,4799,4847,4804,4828,4905,4812,4833,4842,4834,4925,4874,4800,4840,4853,4855,4813,4858,4820,4823,4807,4789,4838,4803,4943,4772,4884,4773,4879,4827,4787,4788,4810,4891,4782,4947,4894,4816,4897,4901,4784,4817,4906,4805,4818,4821,4846,4928,4933,4815,4899,4860,4792,4862,4790,4873,4900,4904,4966,4977,5177,4985,4986,4993,4996,4995,5107,5014,5016,5015,5132,5024,5026,4987,4988,5030,5029,5069,5068,5171,5300,5089,5037,5134,5155,5262,5081,5048,5020,5192,5056,5189,5057,4978,5158,5126,4981,5035,5066,5241,5104,4989,4999,5000,5074,5077,5079,5187,5122,5129,
- 5083,5084,5063,5075,5044,5098,5103,5109,4997,5043,5154,5061,5052,5375,5027,5060,5160,5054,5102,5019,5199,5131,5096,5097,5307,5087,5137,5058,5139,5152,5237,5144,5140,5157,5327,5090,5166,5042,5228,5170,5165,5050,5147,5078,5212,5006,5004,5274,5070,5073,5176,5178,5092,5181,5120,5124,5067,5007,5149,5064,5191,5053,5348,5198,5202,5040,5049,5206,5113,5062,5383,5217,5162,5163,5034,5059,5036,5038,4980,4982,5253,4983,5244,5108,5023,5130,5001,5002,5085,5260,4992,5355,5356,5045,5046,5207,5269,5095,5272,5282,5281,5286,5288,5287,5018,5100,4998,5303,4991,4994,5114,5308,5055,5115,5121,5159,5161,4974,5333,5021,5246,5094,5301,5135,5032,4976,5183,5372,5209,5010,5185,5008,5365,5195,5211,5216,5011,5368,5226,5302,5306,5398,5409,5606,5416,5417,5418,5425,5430,5429,5673,5446,5449,5448,5560,5456,5458,5419,5420,5462,5461,5501,5500,5599,5728,5521,5470,5562,5583,5690,5512,5480,5452,5620,5488,5617,5489,5410,5586,5554,5413,5468,5498,5463,5669,5536,5421,5431,5432,5509,5508,5510,5615,5550,5557,5515,5516,5495,5506,5476,5530,5535,5427,5475,5582,5493,5484,5797,5459,5492,5588,5486,5534,5451,5627,5559,5528,5529,5735,5519,5565,5490,5567,5580,5665,5572,5568,5585,5755,5522,5594,5472,5656,5598,5593,5482,5575,5513,5640,5435,5437,5702,5438,5502,5505,5605,5603,5524,5609,5548,5552,5499,5439,5577,5496,5619,5485,5776,5626,5632,5474,5481,5471,5634,5541,5494,5805,5645,5590,5591,5466,5491,5469,5467,5412,5414,5683,5415,5672,5455,5558,5433,5434,5517,5688,5424,5783,5477,5478,5635,5697,5527,5700,5710,5709,5714,5716,5715,5447,5532,5428,5731,5423,5426,5542,5736,5487,5543,5549,5587,5589,5406,5762,5453,5674,5526,5729,5464,5408,5611,5794,5637,5442,5613,5440,5790,5623,5639,5644,5443,5653,5730,5734,5820,5005,4866,4798,4783,4781,4774,5041,4984,5031
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *17544 {
- a: 0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474542617798,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474542617798,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,
- -0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474542617798,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474542617798,-0.436507523059845,0,0.89970064163208,-0.436507523059845,0,0.89970064163208,-0.555562913417816,0,0.831474423408508,0.290237426757813,0,0.956954658031464,0.290237426757813,0,0.956954658031464,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476151943207,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476151943207,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,
- 0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474542617798,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474542617798,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476151943207,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476151943207,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,
- -0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474542617798,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.38268518447876,0,0.923878908157349,-0.38268518447876,0,0.923878908157349,-0.555562913417816,0,0.831474542617798,-0.38268518447876,0,0.923878908157349,-0.200679734349251,0,0.979656875133514,-0.19509120285511,0,0.980785131454468,-0.38268518447876,0,0.923878908157349,-0.200679734349251,0,0.979656875133514,-1.51532753989159e-006,0,1,-1.54227825532871e-006,0,1,-0.19509120285511,0,0.980785131454468,-1.51532753989159e-006,0,1,0.200678393244743,0,0.979657173156738,0.195089727640152,0,0.980785369873047,-1.54227825532871e-006,0,1,0.200678393244743,0,0.979657173156738,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.195089727640152,0,0.980785369873047,0.382686465978622,0,0.923878252506256,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.382686465978622,0,0.923878252506256,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476151943207,0,0.555560350418091,
- 0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476151943207,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,
- -0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.38268518447876,0,0.923878908157349,-0.555562913417816,0,0.831474423408508,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.22770893573761,-5.88813975355151e-007,0.973729252815247,-0.200679734349251,0,0.979656875133514,-0.38268518447876,0,0.923878908157349,-0.22770893573761,-5.88813975355151e-007,0.973729252815247,-1.47354728596838e-006,0,0.999999940395355,-1.51532753989159e-006,0,1,-0.200679734349251,0,0.979656875133514,-1.47354728596838e-006,0,0.999999940395355,0.227708041667938,-8.87366468305117e-007,0.973729491233826,
- 0.200678393244743,0,0.979657173156738,-1.51532753989159e-006,0,1,0.227708041667938,-8.87366468305117e-007,0.973729491233826,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.382686465978622,0,0.923878252506256,0.200678393244743,0,0.979657173156738,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.382686465978622,0,0.923878252506256,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,
- 0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,
- -0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.555562913417816,0,0.831474423408508,0.290269136428833,-1.04692262539174e-005,0.956945061683655,0.290252298116684,-3.1147117169894e-006,0.956950128078461,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,
- 0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,
- -0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.436507523059845,0,0.89970064163208,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.555562913417816,0,0.831474423408508,0.290252298116684,-3.1147117169894e-006,0.956950128078461,0.290237426757813,0,0.956954658031464,0.436507552862167,0,0.89970064163208,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,
- 0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,
- -0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.436507523059845,0,0.89970064163208,-0.436507523059845,0,0.89970064163208,-0.555562913417816,0,0.831474423408508,0.290237426757813,0,0.956954658031464,0.290237426757813,0,0.956954658031464,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,
- -0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.195088893175125,0,0.980785608291626,-0.195088908076286,0,0.980785608291626,-0.195088908076286,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,0,0,1,0,0,1,0,0,1,0,0,1,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.923888266086578,0,0.38266259431839,0.923888146877289,0,0.382662564516068,0.923888146877289,0,0.382662564516068,0.923888266086578,0,0.38266259431839,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120453834534,0.980779230594635,0,-0.195120453834534,0.980779230594635,0,-0.195120438933373,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,
- 0.831468641757965,0,-0.555571615695953,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.436504274606705,0,-0.899702250957489,0.43650421500206,0,-0.899702250957489,-0.290322959423065,0,-0.956928789615631,-0.290322959423065,0,-0.956928789615631,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.382661193609238,-0.923888742923737,0,-0.382661193609238,-0.923888742923737,0,-0.38266122341156,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,
- -0.707109689712524,0,0.707103908061981,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.195088908076286,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088908076286,0,0.980785608291626,0,0,1,0,0,1,0,0,1,0,0,1,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.923888146877289,0,0.382662564516068,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888146877289,0,0.382662564516068,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120453834534,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120453834534,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,
- 0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.382680714130402,0,-0.923880577087402,0.382680714130402,0,-0.923880577087402,0.382680714130402,0,-0.923880577087402,0.382680714130402,0,-0.923880577087402,0.195094734430313,0,-0.98078441619873,0.200683698058128,0,-0.979656040668488,0.200683698058128,0,-0.979656040668488,0.195094734430313,0,-0.98078441619873,1.83028669198393e-006,0,-1,1.7966018504012e-006,0,-1,1.7966018504012e-006,0,-1,1.83028669198393e-006,0,-1,-0.195088878273964,0,-0.980785548686981,-0.200677558779716,0,-0.979657351970673,-0.200677558779716,0,-0.979657351970673,-0.195088878273964,0,-0.980785548686981,-0.382682263851166,0,-0.923879981040955,-0.382682263851166,0,-0.923879981040955,-0.382682263851166,0,-0.923879981040955,-0.382682263851166,0,-0.923879981040955,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.923888742923737,0,-0.382661193609238,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.382661193609238,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.923888742923737,0,0.382661193609238,
- -0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,0,0,1,0,0,1,0,0,1,0,0,1,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,
- 0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.382680714130402,0,-0.923880577087402,0.403620958328247,-3.57363234115837e-007,-0.914926290512085,0.403620958328247,-3.57363234115837e-007,-0.914926290512085,0.231185108423233,-8.50748051561823e-007,-0.972909808158875,0.290310889482498,-4.43532644567313e-006,-0.956932306289673,0.231185108423233,-8.50748051561823e-007,-0.972909808158875,0.200683698058128,0,-0.979656040668488,1.7966018504012e-006,0,-1,1.75421325820935e-006,0,-1,1.75421325820935e-006,0,-1,1.7966018504012e-006,0,-1,-0.200677558779716,0,-0.979657351970673,-0.231177061796188,-1.75814108160921e-007,-0.972911715507507,-0.231177061796188,-1.75814108160921e-007,-0.972911715507507,-0.403626710176468,-3.20320680202713e-007,-0.914923787117004,-0.290295243263245,-4.16859620600007e-006,-0.9569371342659,-0.403626710176468,-3.20320680202713e-007,-0.914923787117004,-0.382682263851166,0,-0.923879981040955,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.923888742923737,0,-0.38266122341156,
- -0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,0,0,1,0,0,1,0,0,1,0,0,1,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.831468641757965,0,0.555571615695953,
- 0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.403620958328247,-3.57363234115837e-007,-0.914926290512085,0.431628227233887,1.13812170354777e-007,-0.902051627635956,-0.431644052267075,-5.50720869796351e-007,-0.902044057846069,-0.403626710176468,-3.20320680202713e-007,-0.914923787117004,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,
- -0.923888742923737,0,-0.38266122341156,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,0,0,1,0,0,1,0,0,1,0,0,1,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,
- 0.831468641757965,0,0.555571615695953,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.431628227233887,1.13812170354777e-007,-0.902051627635956,0.436504274606705,0,-0.899702250957489,-0.290322959423065,0,-0.956928789615631,-0.290307968854904,-2.54551378020551e-006,-0.956933200359344,-0.431644052267075,-5.50720869796351e-007,-0.902044057846069,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.431644052267075,-5.50720869796351e-007,-0.902044057846069,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.923888742923737,0,-0.38266122341156,
- -0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.923888742923737,0,0.382661193609238,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.831468641757965,0,0.555571615695953,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.707109689712524,0,0.707103908061981,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.555564641952515,0,0.831473350524902,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.382682263851166,0,0.923879981040955,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,-0.195088893175125,0,0.980785608291626,0,0,1,0,0,1,0,0,1,0,0,1,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.195094734430313,0,0.98078441619873,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.382680714130402,0,0.923880577087402,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.707110583782196,0,0.70710301399231,0.831468641757965,0,0.555571615695953,
- 0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.831468641757965,0,0.555571615695953,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.923888266086578,0,0.38266259431839,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,0.980779230594635,0,0.195120871067047,1,0,0,1,0,0,1,0,0,1,0,0,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.980779230594635,0,-0.195120438933373,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.923888742923737,0,-0.382661193609238,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.831468641757965,0,-0.555571615695953,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.707110643386841,0,-0.707102954387665,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.555564641952515,0,-0.831473350524902,0.436504274606705,0,-0.899702250957489,0.436504274606705,0,-0.899702250957489,-0.290322959423065,0,-0.956928789615631,-0.290322959423065,0,-0.956928789615631,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.436525672674179,0,-0.899691760540009,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.555564641952515,0,-0.831473350524902,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.707110643386841,0,-0.70710301399231,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.831468641757965,0,-0.555571615695953,-0.923888742923737,0,-0.38266122341156,
- -0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.923888742923737,0,-0.38266122341156,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,
- 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.431628227233887,1.13812170354777e-007,-0.902051627635956,0.403620958328247,-3.57363234115837e-007,-0.914926290512085,0.290310889482498,-4.43532644567313e-006,-0.956932306289673,0.290312916040421,5.2609624390243e-007,-0.956931710243225,-0.436507523059845,0,0.89970064163208,-0.290248602628708,0,0.956951200962067,-0.290260910987854,-2.53790699389356e-006,0.956947565078735,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.436507523059845,0,0.89970064163208,-0.290248602628708,0,0.956951200962067,-0.290248602628708,0,0.956951200962067,-0.436507523059845,0,0.89970064163208,-0.436507523059845,0,0.89970064163208,-0.290248602628708,0,0.956951200962067,-0.290248602628708,0,0.956951200962067,-0.436507523059845,0,0.89970064163208,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.43650421500206,0,-0.899702250957489,0.436504274606705,0,-0.899702250957489,0.290309637784958,0,-0.956932723522186,0.290309637784958,0,-0.956932723522186,0.436504274606705,0,-0.899702250957489,0.436504274606705,0,-0.899702250957489,0.290309637784958,0,-0.956932723522186,0.290309637784958,0,-0.956932723522186,0.436504274606705,0,-0.899702250957489,0.431628227233887,1.13812170354777e-007,-0.902051627635956,0.290312916040421,5.2609624390243e-007,-0.956931710243225,
- 0.290309637784958,0,-0.956932723522186,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.290260910987854,-2.53790699389356e-006,0.956947565078735,-0.290273874998093,-7.49560740587185e-006,0.95694363117218,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.290307968854904,-2.54551378020551e-006,-0.956933200359344,-0.290295243263245,-4.16859620600007e-006,-0.9569371342659,-0.403626710176468,-3.20320680202713e-007,-0.914923787117004,-0.431644052267075,-5.50720869796351e-007,-0.902044057846069,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.290273874998093,-7.49560740587185e-006,0.95694363117218,-0.22770893573761,-5.88813975355151e-007,0.973729252815247,0.403620958328247,-3.57363234115837e-007,-0.914926290512085,0.382680714130402,0,-0.923880577087402,0.200683698058128,0,-0.979656040668488,0.231185108423233,-8.50748051561823e-007,-0.972909808158875,0.227708041667938,-8.87366468305117e-007,0.973729491233826,0.290269136428833,-1.04692262539174e-005,0.956945061683655,0.403272300958633,-7.44816816222738e-007,0.915080070495605,-0.231177061796188,-1.75814108160921e-007,-0.972911715507507,-0.200677558779716,0,-0.979657351970673,-0.382682263851166,0,-0.923879981040955,-0.403626710176468,-3.20320680202713e-007,-0.914923787117004,-0.999640464782715,-0.020321061834693,0.0174964591860771,-0.996767938137054,0.0641493201255798,0.0483588464558125,-0.998780488967896,0.0491892285645008,0.00424923980608583,-0.99982076883316,-0.0184798706322908,0.00409756181761622,-0.345358669757843,-0.895100355148315,0.281997710466385,-0.529891610145569,-0.742468357086182,0.4098239839077,-0.625767290592194,-0.770402193069458,0.12204821407795,-0.483208328485489,-0.868025481700897,0.114199705421925,0.161892980337143,-0.153335064649582,0.974822521209717,0.344165056943893,-0.00984370708465576,0.938857555389404,0.3281230032444,0.0328546203672886,0.944063484668732,0.0929239243268967,-0.0878574922680855,0.991789400577545,-0.0284387264400721,-0.999559760093689,0.00845816731452942,0.0209057629108429,-0.999733686447144,-0.00977678131312132,
- 0.0296231415122747,-0.999451816082001,0.0147803463041782,-0.00790791213512421,-0.999673664569855,0.0242897011339664,-0.0280694365501404,-0.999545156955719,0.0110251922160387,-0.792696893215179,-0.295510292053223,0.533202946186066,0.159608840942383,-0.0903017073869705,0.98304158449173,0.130343943834305,-0.000176923349499702,0.991468846797943,-0.836689174175262,-0.143358111381531,0.528582632541656,0.0387391149997711,0.0705873891711235,0.996753036975861,0.00185694475658238,-0.209590077400208,0.977787613868713,0.0638180151581764,-0.212724983692169,0.975025832653046,0.102455355226994,0.0677241981029511,0.992429494857788,0.161892980337143,-0.153335064649582,0.974822521209717,-0.705039203166962,-0.503599643707275,0.499306797981262,-0.728750228881836,0.548270344734192,0.41027158498764,-0.152693510055542,0.241969421505928,0.958193838596344,0.169952362775803,0.983389437198639,0.0637293979525566,0.13775272667408,0.98810601234436,0.0683420076966286,0.0387391149997711,0.0705873891711235,0.996753036975861,0.102455355226994,0.0677241981029511,0.992429494857788,0.918007135391235,0.201570197939873,-0.341514647006989,0.907909572124481,0.194745287299156,-0.371179908514023,0.891456544399261,0.270269930362701,-0.363674849271774,0.906021296977997,0.274281829595566,-0.322327345609665,-0.148723646998405,-0.938032448291779,0.313011735677719,-0.999640464782715,-0.020321061834693,0.0174964591860771,-0.99982076883316,-0.0184798706322908,0.00409756181761622,-0.186172932386398,-0.982489407062531,0.00734337139874697,0.0638180151581764,-0.212724983692169,0.975025832653046,0.00185694475658238,-0.209590077400208,0.977787613868713,-0.148723646998405,-0.938032448291779,0.313011735677719,-0.0811601206660271,-0.94028639793396,0.330566883087158,0.676278352737427,0.720706820487976,-0.15241152048111,0.692107677459717,0.694208860397339,-0.197638541460037,0.648155093193054,0.738996624946594,-0.183790251612663,0.638910353183746,0.754611670970917,-0.149515390396118,0.657229959964752,0.741254210472107,-0.136349260807037,0.42262127995491,-0.150956615805626,0.89364618062973,
- 0.0929239243268967,-0.0878574922680855,0.991789400577545,0.3281230032444,0.0328546203672886,0.944063484668732,0.424388557672501,-0.0191018357872963,0.905278742313385,0.386932760477066,0.0418119616806507,0.921159505844116,0.130343943834305,-0.000176923349499702,0.991468846797943,0.159608840942383,-0.0903017073869705,0.98304158449173,-0.388606727123261,-0.846578240394592,0.363717049360275,-0.469791084527969,-0.880806267261505,0.0589629858732224,-0.437301486730576,-0.897605776786804,0.0554182156920433,-0.356229454278946,-0.865645349025726,0.351793587207794,0.123602814972401,-0.189317926764488,0.97410523891449,0.0348820835351944,-0.185997411608696,0.981930911540985,-0.601114988327026,-0.687745869159698,0.407021403312683,-0.529891610145569,-0.742468357086182,0.4098239839077,0.27652433514595,0.0661881864070892,0.958724915981293,0.0348820835351944,-0.185997411608696,0.981930911540985,0.123602814972401,-0.189317926764488,0.97410523891449,0.308985501527786,0.00711082201451063,0.951040148735046,-0.022654490545392,-0.402073055505753,0.915327310562134,0.800510406494141,-0.31380033493042,0.510600030422211,0.64183509349823,-0.15133111178875,0.751762270927429,0.101729966700077,-0.208527088165283,0.972711384296417,0.27652433514595,0.0661881864070892,0.958724915981293,0.149379104375839,0.257207721471787,0.954740881919861,0.0348820835351944,-0.185997411608696,0.981930911540985,0.126548051834106,-0.0257778707891703,0.991625428199768,-0.838502407073975,-0.00588681781664491,0.544866144657135,-0.0280694365501404,-0.999545156955719,0.0110251922160387,-0.00790791213512421,-0.999673664569855,0.0242897011339664,0.332042515277863,-0.610695660114288,0.718887031078339,0.126774713397026,0.0292130801826715,0.991501271724701,0.388023465871811,0.0149742197245359,0.921527862548828,0.149379104375839,0.257207721471787,0.954740881919861,0.638910353183746,0.754611670970917,-0.149515390396118,0.75782173871994,0.652307033538818,-0.0142036331817508,0.64183509349823,-0.15133111178875,0.751762270927429,0.469962179660797,0.877871751785278,-0.0920686423778534,
- 0.193695113062859,0.0463545136153698,0.97996598482132,0.0130733037367463,-0.179588943719864,0.983654856681824,-0.388606727123261,-0.846578240394592,0.363717049360275,-0.356229454278946,-0.865645349025726,0.351793587207794,0.101729966700077,-0.208527088165283,0.972711384296417,0.0296231415122747,-0.999451816082001,0.0147803463041782,0.931573390960693,-0.0380631722509861,-0.361555308103561,0.385458111763,-0.0190533455461264,0.922528624534607,0.13775272667408,0.98810601234436,0.0683420076966286,0.130488559603691,0.991416752338409,-0.00809981301426888,-0.998780488967896,0.0491892285645008,0.00424923980608583,-0.996767938137054,0.0641493201255798,0.0483588464558125,0.193695113062859,0.0463545136153698,0.97996598482132,0.147063016891479,0.0554205849766731,0.987573385238647,0.0130733037367463,-0.179588943719864,0.983654856681824,0.101729966700077,-0.208527088165283,0.972711384296417,0.439795970916748,0.895553648471832,-0.0675512701272964,0.408578217029572,0.910888910293579,-0.0578378550708294,0.147063016891479,0.0554205849766731,0.987573385238647,0.193695113062859,0.0463545136153698,0.97996598482132,0.0638180151581764,-0.212724983692169,0.975025832653046,-0.456904321908951,0.261154562234879,0.850315690040588,0.102455355226994,0.0677241981029511,0.992429494857788,-0.705039203166962,-0.503599643707275,0.499306797981262,-0.845894932746887,0.48104926943779,0.230333238840103,-0.728750228881836,0.548270344734192,0.41027158498764,0.101729966700077,-0.208527088165283,0.972711384296417,-0.356229454278946,-0.865645349025726,0.351793587207794,-0.754897177219391,-0.510601401329041,0.411602377891541,-0.022654490545392,-0.402073055505753,0.915327310562134,0.83942848443985,0.452732086181641,-0.300654947757721,0.92862606048584,-0.0113348010927439,-0.370843946933746,0.929604709148407,0.0541696026921272,-0.364555418491364,0.852940082550049,0.417063891887665,-0.313928186893463,0.0130733037367463,-0.179588943719864,0.983654856681824,0.147063016891479,0.0554205849766731,0.987573385238647,-0.456904321908951,0.261154562234879,0.850315690040588,
- 0.0748489573597908,-0.346288740634918,0.935137271881104,-0.331818401813507,0.940998375415802,0.0664708614349365,-0.456904321908951,0.261154562234879,0.850315690040588,0.147063016891479,0.0554205849766731,0.987573385238647,0.123602814972401,-0.189317926764488,0.97410523891449,-0.529891610145569,-0.742468357086182,0.4098239839077,-0.345358669757843,-0.895100355148315,0.281997710466385,0.27275076508522,-0.666501700878143,0.693817257881165,0.469962179660797,0.877871751785278,-0.0920686423778534,0.439795970916748,0.895553648471832,-0.0675512701272964,0.193695113062859,0.0463545136153698,0.97996598482132,0.126774713397026,0.0292130801826715,0.991501271724701,0.332042515277863,-0.610695660114288,0.718887031078339,0.0856106653809547,-0.746019303798676,0.660398483276367,0.101729966700077,-0.208527088165283,0.972711384296417,0.64183509349823,-0.15133111178875,0.751762270927429,0.193695113062859,0.0463545136153698,0.97996598482132,0.927663803100586,0.0953338816761971,-0.361041843891144,0.572137057781219,0.787553668022156,-0.228950396180153,0.388023465871811,0.0149742197245359,0.921527862548828,0.931573390960693,-0.0380631722509861,-0.361555308103561,0.927663803100586,0.0953338816761971,-0.361041843891144,0.388023465871811,0.0149742197245359,0.921527862548828,0.385458111763,-0.0190533455461264,0.922528624534607,-0.456904321908951,0.261154562234879,0.850315690040588,0.169952362775803,0.983389437198639,0.0637293979525566,0.102455355226994,0.0677241981029511,0.992429494857788,0.801831185817719,0.523689866065979,-0.28777688741684,0.416085779666901,0.900353133678436,-0.127424478530884,0.42262127995491,-0.150956615805626,0.89364618062973,-0.705039203166962,-0.503599643707275,0.499306797981262,-0.835535645484924,-0.506864905357361,0.212056785821915,-0.845894932746887,0.48104926943779,0.230333238840103,-0.456904321908951,0.261154562234879,0.850315690040588,0.0638180151581764,-0.212724983692169,0.975025832653046,0.0748489573597908,-0.346288740634918,0.935137271881104,0.344165056943893,-0.00984370708465576,0.938857555389404,0.161892980337143,-0.153335064649582,0.974822521209717,
- -0.152693510055542,0.241969421505928,0.958193838596344,0.389529973268509,-0.227125093340874,0.892569601535797,-0.356229454278946,-0.865645349025726,0.351793587207794,-0.437301486730576,-0.897605776786804,0.0554182156920433,-0.810597240924835,-0.570194661617279,0.133454650640488,-0.754897177219391,-0.510601401329041,0.411602377891541,0.918007135391235,0.201570197939873,-0.341514647006989,0.906021296977997,0.274281829595566,-0.322327345609665,0.386932760477066,0.0418119616806507,0.921159505844116,0.424388557672501,-0.0191018357872963,0.905278742313385,-0.152693510055542,0.241969421505928,0.958193838596344,0.130343943834305,-0.000176923349499702,0.991468846797943,0.386932760477066,0.0418119616806507,0.921159505844116,0.389529973268509,-0.227125093340874,0.892569601535797,-0.022654490545392,-0.402073055505753,0.915327310562134,0.0348820835351944,-0.185997411608696,0.981930911540985,0.149379104375839,0.257207721471787,0.954740881919861,0.332042515277863,-0.610695660114288,0.718887031078339,0.572137057781219,0.787553668022156,-0.228950396180153,0.424388557672501,-0.0191018357872963,0.905278742313385,0.00185694475658238,-0.209590077400208,0.977787613868713,-0.982764005661011,-0.0119596812874079,0.184477463364601,-0.999640464782715,-0.020321061834693,0.0174964591860771,0.123602814972401,-0.189317926764488,0.97410523891449,0.27275076508522,-0.666501700878143,0.693817257881165,0.42262127995491,-0.150956615805626,0.89364618062973,0.308985501527786,0.00711082201451063,0.951040148735046,-0.996767938137054,0.0641493201255798,0.0483588464558125,0.0387391149997711,0.0705873891711235,0.996753036975861,0.13775272667408,0.98810601234436,0.0683420076966286,0.126548051834106,-0.0257778707891703,0.991625428199768,-0.00790791213512421,-0.999673664569855,0.0242897011339664,0.0296231415122747,-0.999451816082001,0.0147803463041782,0.385458111763,-0.0190533455461264,0.922528624534607,0.83942848443985,0.452732086181641,-0.300654947757721,0.801831185817719,0.523689866065979,-0.28777688741684,0.3281230032444,0.0328546203672886,0.944063484668732,
- 0.344165056943893,-0.00984370708465576,0.938857555389404,0.389529973268509,-0.227125093340874,0.892569601535797,0.83942848443985,0.452732086181641,-0.300654947757721,0.344165056943893,-0.00984370708465576,0.938857555389404,0.927663803100586,0.0953338816761971,-0.361041843891144,0.91410094499588,0.0991092547774315,-0.393187940120697,0.648452162742615,0.709844052791595,-0.275011628866196,0.572137057781219,0.787553668022156,-0.228950396180153,0.386932760477066,0.0418119616806507,0.921159505844116,0.906021296977997,0.274281829595566,-0.322327345609665,0.389529973268509,-0.227125093340874,0.892569601535797,0.126774713397026,0.0292130801826715,0.991501271724701,-0.828953266143799,0.0173903480172157,0.559047520160675,-0.838502407073975,-0.00588681781664491,0.544866144657135,0.126548051834106,-0.0257778707891703,0.991625428199768,0.927663803100586,0.0953338816761971,-0.361041843891144,0.931573390960693,-0.0380631722509861,-0.361555308103561,0.918048501014709,-0.0350680984556675,-0.394914209842682,0.91410094499588,0.0991092547774315,-0.393187940120697,0.42262127995491,-0.150956615805626,0.89364618062973,0.416085779666901,0.900353133678436,-0.127424478530884,0.676278352737427,0.720706820487976,-0.15241152048111,0.308985501527786,0.00711082201451063,0.951040148735046,0.657229959964752,0.741254210472107,-0.136349260807037,0.27652433514595,0.0661881864070892,0.958724915981293,0.308985501527786,0.00711082201451063,0.951040148735046,0.676278352737427,0.720706820487976,-0.15241152048111,0.64183509349823,-0.15133111178875,0.751762270927429,0.800510406494141,-0.31380033493042,0.510600030422211,0.75782173871994,0.652307033538818,-0.0142036331817508,0.469962179660797,0.877871751785278,-0.0920686423778534,-0.331818401813507,0.940998375415802,0.0664708614349365,0.408578217029572,0.910888910293579,-0.0578378550708294,0.385920912027359,0.919525504112244,-0.0744170099496841,-0.374768882989883,0.925724923610687,0.050808560103178,0.169952362775803,0.983389437198639,0.0637293979525566,0.179674535989761,0.98366379737854,-0.0110748345032334,0.130488559603691,0.991416752338409,-0.00809981301426888,
- 0.13775272667408,0.98810601234436,0.0683420076966286,-0.996767938137054,0.0641493201255798,0.0483588464558125,-0.999640464782715,-0.020321061834693,0.0174964591860771,-0.982764005661011,-0.0119596812874079,0.184477463364601,-0.996767938137054,0.0641493201255798,0.0483588464558125,-0.982764005661011,-0.0119596812874079,0.184477463364601,0.00185694475658238,-0.209590077400208,0.977787613868713,0.0387391149997711,0.0705873891711235,0.996753036975861,-0.148723646998405,-0.938032448291779,0.313011735677719,-0.186172932386398,-0.982489407062531,0.00734337139874697,-0.10643332451582,-0.994313478469849,0.00355748180299997,-0.0811601206660271,-0.94028639793396,0.330566883087158,0.419470876455307,-0.907124996185303,-0.0341815017163754,-0.469791084527969,-0.880806267261505,0.0589629858732224,-0.388606727123261,-0.846578240394592,0.363717049360275,0.149379104375839,0.257207721471787,0.954740881919861,0.27652433514595,0.0661881864070892,0.958724915981293,0.657229959964752,0.741254210472107,-0.136349260807037,0.638910353183746,0.754611670970917,-0.149515390396118,-0.022654490545392,-0.402073055505753,0.915327310562134,-0.754897177219391,-0.510601401329041,0.411602377891541,-0.601114988327026,-0.687745869159698,0.407021403312683,0.0348820835351944,-0.185997411608696,0.981930911540985,0.27275076508522,-0.666501700878143,0.693817257881165,0.0929239243268967,-0.0878574922680855,0.991789400577545,0.42262127995491,-0.150956615805626,0.89364618062973,-0.345358669757843,-0.895100355148315,0.281997710466385,-0.728418588638306,-0.474888682365417,0.493849366903305,0.0929239243268967,-0.0878574922680855,0.991789400577545,0.27275076508522,-0.666501700878143,0.693817257881165,0.403645515441895,0.905279338359833,-0.13243767619133,0.692107677459717,0.694208860397339,-0.197638541460037,0.676278352737427,0.720706820487976,-0.15241152048111,0.416085779666901,0.900353133678436,-0.127424478530884,0.801831185817719,0.523689866065979,-0.28777688741684,0.42262127995491,-0.150956615805626,0.89364618062973,0.3281230032444,0.0328546203672886,0.944063484668732,
- 0.0929239243268967,-0.0878574922680855,0.991789400577545,-0.728418588638306,-0.474888682365417,0.493849366903305,-0.705039203166962,-0.503599643707275,0.499306797981262,0.161892980337143,-0.153335064649582,0.974822521209717,-0.728750228881836,0.548270344734192,0.41027158498764,-0.836689174175262,-0.143358111381531,0.528582632541656,0.130343943834305,-0.000176923349499702,0.991468846797943,-0.152693510055542,0.241969421505928,0.958193838596344,-0.022654490545392,-0.402073055505753,0.915327310562134,0.149379104375839,0.257207721471787,0.954740881919861,0.800510406494141,-0.31380033493042,0.510600030422211,0.75782173871994,0.652307033538818,-0.0142036331817508,0.800510406494141,-0.31380033493042,0.510600030422211,0.149379104375839,0.257207721471787,0.954740881919861,0.389529973268509,-0.227125093340874,0.892569601535797,0.92862606048584,-0.0113348010927439,-0.370843946933746,0.83942848443985,0.452732086181641,-0.300654947757721,0.906021296977997,0.274281829595566,-0.322327345609665,0.92862606048584,-0.0113348010927439,-0.370843946933746,0.389529973268509,-0.227125093340874,0.892569601535797,-0.456904321908951,0.261154562234879,0.850315690040588,-0.331818401813507,0.940998375415802,0.0664708614349365,0.169952362775803,0.983389437198639,0.0637293979525566,-0.374768882989883,0.925724923610687,0.050808560103178,0.179674535989761,0.98366379737854,-0.0110748345032334,0.169952362775803,0.983389437198639,0.0637293979525566,-0.331818401813507,0.940998375415802,0.0664708614349365,-0.388606727123261,-0.846578240394592,0.363717049360275,0.39530548453331,-0.859919607639313,0.322911530733109,0.419470876455307,-0.907124996185303,-0.0341815017163754,0.0748489573597908,-0.346288740634918,0.935137271881104,0.39530548453331,-0.859919607639313,0.322911530733109,-0.388606727123261,-0.846578240394592,0.363717049360275,0.0130733037367463,-0.179588943719864,0.983654856681824,0.419470876455307,-0.907124996185303,-0.0341815017163754,0.39530548453331,-0.859919607639313,0.322911530733109,-0.0811601206660271,-0.94028639793396,0.330566883087158,0.0638180151581764,-0.212724983692169,0.975025832653046,
- -0.0811601206660271,-0.94028639793396,0.330566883087158,0.39530548453331,-0.859919607639313,0.322911530733109,0.0748489573597908,-0.346288740634918,0.935137271881104,-0.0811601206660271,-0.94028639793396,0.330566883087158,-0.10643332451582,-0.994313478469849,0.00355748180299997,0.419470876455307,-0.907124996185303,-0.0341815017163754,-0.331818401813507,0.940998375415802,0.0664708614349365,0.147063016891479,0.0554205849766731,0.987573385238647,0.408578217029572,0.910888910293579,-0.0578378550708294,-0.388512641191483,-0.878622770309448,0.277632713317871,-0.505367696285248,-0.850086390972137,0.148177400231361,-0.828953266143799,0.0173903480172157,0.559047520160675,-0.792696893215179,-0.295510292053223,0.533202946186066,-0.914921939373016,-0.312540322542191,0.255414217710495,-0.505367696285248,-0.850086390972137,0.148177400231361,-0.388512641191483,-0.878622770309448,0.277632713317871,0.159608840942383,-0.0903017073869705,0.98304158449173,-0.792696893215179,-0.295510292053223,0.533202946186066,-0.388512641191483,-0.878622770309448,0.277632713317871,0.0856106653809547,-0.746019303798676,0.660398483276367,0.0856106653809547,-0.746019303798676,0.660398483276367,-0.388512641191483,-0.878622770309448,0.277632713317871,-0.828953266143799,0.0173903480172157,0.559047520160675,0.126774713397026,0.0292130801826715,0.991501271724701,0.388023465871811,0.0149742197245359,0.921527862548828,0.126774713397026,0.0292130801826715,0.991501271724701,0.126548051834106,-0.0257778707891703,0.991625428199768,0.385458111763,-0.0190533455461264,0.922528624534607,0.0856106653809547,-0.746019303798676,0.660398483276367,0.332042515277863,-0.610695660114288,0.718887031078339,0.424388557672501,-0.0191018357872963,0.905278742313385,0.159608840942383,-0.0903017073869705,0.98304158449173,0.388023465871811,0.0149742197245359,0.921527862548828,0.572137057781219,0.787553668022156,-0.228950396180153,0.332042515277863,-0.610695660114288,0.718887031078339,0.424388557672501,-0.0191018357872963,0.905278742313385,0.572137057781219,0.787553668022156,-0.228950396180153,
- 0.918007135391235,0.201570197939873,-0.341514647006989,0.00185694475658238,-0.209590077400208,0.977787613868713,-0.999640464782715,-0.020321061834693,0.0174964591860771,-0.148723646998405,-0.938032448291779,0.313011735677719,0.852940082550049,0.417063891887665,-0.313928186893463,0.793495833873749,0.534328043460846,-0.291303515434265,0.801831185817719,0.523689866065979,-0.28777688741684,0.83942848443985,0.452732086181641,-0.300654947757721,0.793495833873749,0.534328043460846,-0.291303515434265,0.403645515441895,0.905279338359833,-0.13243767619133,0.416085779666901,0.900353133678436,-0.127424478530884,0.801831185817719,0.523689866065979,-0.28777688741684,0.0209057629108429,-0.999733686447144,-0.00977678131312132,0.918048501014709,-0.0350680984556675,-0.394914209842682,0.931573390960693,-0.0380631722509861,-0.361555308103561,0.0296231415122747,-0.999451816082001,0.0147803463041782,0.891456544399261,0.270269930362701,-0.363674849271774,0.929604709148407,0.0541696026921272,-0.364555418491364,0.92862606048584,-0.0113348010927439,-0.370843946933746,0.906021296977997,0.274281829595566,-0.322327345609665,-0.959471642971039,0.00142522749956697,0.281801521778107,-0.0284387264400721,-0.999559760093689,0.00845816731452942,-0.0280694365501404,-0.999545156955719,0.0110251922160387,-0.838502407073975,-0.00588681781664491,0.544866144657135,-0.836689174175262,-0.143358111381531,0.528582632541656,-0.955633401870728,-0.126592427492142,0.265968143939972,-0.914921939373016,-0.312540322542191,0.255414217710495,-0.792696893215179,-0.295510292053223,0.533202946186066,0.648452162742615,0.709844052791595,-0.275011628866196,0.907909572124481,0.194745287299156,-0.371179908514023,0.918007135391235,0.201570197939873,-0.341514647006989,0.572137057781219,0.787553668022156,-0.228950396180153,0.648155093193054,0.738996624946594,-0.183790251612663,0.754423379898071,0.632864952087402,-0.174147590994835,0.75782173871994,0.652307033538818,-0.0142036331817508,0.638910353183746,0.754611670970917,-0.149515390396118,-0.810597240924835,-0.570194661617279,0.133454650640488,
- -0.707217395305634,-0.693579316139221,0.137081101536751,-0.601114988327026,-0.687745869159698,0.407021403312683,-0.754897177219391,-0.510601401329041,0.411602377891541,-0.505367696285248,-0.850086390972137,0.148177400231361,-0.959337711334229,0.0165892262011766,0.28177273273468,-0.828953266143799,0.0173903480172157,0.559047520160675,-0.959337711334229,0.0165892262011766,0.28177273273468,-0.959471642971039,0.00142522749956697,0.281801521778107,-0.838502407073975,-0.00588681781664491,0.544866144657135,-0.828953266143799,0.0173903480172157,0.559047520160675,0.754423379898071,0.632864952087402,-0.174147590994835,0.490454256534576,0.866488873958588,-0.0930148363113403,0.469962179660797,0.877871751785278,-0.0920686423778534,0.75782173871994,0.652307033538818,-0.0142036331817508,0.490454256534576,0.866488873958588,-0.0930148363113403,0.385920912027359,0.919525504112244,-0.0744170099496841,0.408578217029572,0.910888910293579,-0.0578378550708294,0.439795970916748,0.895553648471832,-0.0675512701272964,0.469962179660797,0.877871751785278,-0.0920686423778534,-0.707217395305634,-0.693579316139221,0.137081101536751,-0.625767290592194,-0.770402193069458,0.12204821407795,-0.529891610145569,-0.742468357086182,0.4098239839077,-0.601114988327026,-0.687745869159698,0.407021403312683,-0.845894932746887,0.48104926943779,0.230333238840103,-0.955633401870728,-0.126592427492142,0.265968143939972,-0.836689174175262,-0.143358111381531,0.528582632541656,-0.728750228881836,0.548270344734192,0.41027158498764,-0.850526690483093,-0.480524152517319,0.213777720928192,-0.835535645484924,-0.506864905357361,0.212056785821915,-0.705039203166962,-0.503599643707275,0.499306797981262,-0.728418588638306,-0.474888682365417,0.493849366903305,-0.850526690483093,-0.480524152517319,0.213777720928192,-0.728418588638306,-0.474888682365417,0.493849366903305,-0.345358669757843,-0.895100355148315,0.281997710466385,-0.483208328485489,-0.868025481700897,0.114199705421925,-0.0399400219321251,0.998828828334808,0.0273104757070541,0.047607745975256,0.998698115348816,0.0183180142194033,
- 0.0228325836360455,0.999693274497986,-0.00959029234945774,-0.0409179963171482,0.999078392982483,0.0129651315510273,-0.578403532505035,0.754499852657318,0.310127794742584,-0.837755739688873,-0.0434028953313828,0.544317364692688,-0.957473874092102,-0.0475620627403259,0.284572750329971,-0.638613343238831,0.74667876958847,0.186128214001656,0.090483047068119,-0.0452837944030762,0.994867920875549,0.360583573579788,-0.0320380330085754,0.932176470756531,0.36745685338974,0.0284949336200953,0.92960399389267,0.0732558369636536,0.0443248227238655,0.996327638626099,-0.028524586930871,-0.999557912349701,0.00838887598365545,0.0222484301775694,-0.999700665473938,-0.0101722199469805,0.0351779796183109,-0.999355673789978,0.00711918389424682,-0.002472362248227,-0.999496400356293,0.0316345877945423,-0.0293029230087996,-0.999495506286621,0.0122580621391535,-0.833460748195648,-0.0319273471832275,0.551655530929565,0.119828164577484,-0.0740885436534882,0.990026295185089,0.119339048862457,0.0819033533334732,0.989469587802887,-0.842118203639984,0.0332278534770012,0.538268327713013,0.0770660638809204,-0.0486398227512836,0.995838820934296,0.389203995466232,-0.0361447520554066,0.920442163944244,0.390583425760269,0.0407975912094116,0.919663071632385,0.0793413072824478,0.0167850665748119,0.996706187725067,0.090483047068119,-0.0452837944030762,0.994867920875549,-0.83334094285965,-0.071189247071743,0.548156023025513,-0.748613238334656,-0.30981981754303,0.586165487766266,0.0406784489750862,-0.133230283856392,0.990249991416931,0.389203995466232,-0.0361447520554066,0.920442163944244,0.949847102165222,-0.00741187715902925,-0.312626838684082,0.951011896133423,0.0105078816413879,-0.308975696563721,0.390583425760269,0.0407975912094116,0.919663071632385,0.926948070526123,-0.0938132256269455,-0.363271772861481,0.912614524364471,-0.107394315302372,-0.394463151693344,0.904629826545715,0.170250669121742,-0.390716761350632,0.921360731124878,0.167404174804688,-0.350813686847687,-0.833030223846436,0.0369705744087696,0.551990747451782,-0.0399400219321251,0.998828828334808,0.0273104757070541,
- -0.0409179963171482,0.999078392982483,0.0129651315510273,-0.959844946861267,0.0492991618812084,0.276165425777435,-0.820331275463104,-0.0587363094091415,0.568864285945892,0.0770660638809204,-0.0486398227512836,0.995838820934296,0.0793413072824478,0.0167850665748119,0.996706187725067,-0.833030223846436,0.0369705744087696,0.551990747451782,0.934621512889862,-0.0896272510290146,-0.344165056943893,0.909925401210785,-0.137122541666031,-0.391450166702271,0.916971802711487,0.0586673691868782,-0.394614726305008,0.935596108436584,0.0480759851634502,-0.349783778190613,0.944468140602112,0.013436377979815,-0.328328251838684,0.215631097555161,-0.798500180244446,0.562050461769104,0.0732558369636536,0.0443248227238655,0.996327638626099,0.36745685338974,0.0284949336200953,0.92960399389267,0.119828164577484,-0.0740885436534882,0.990026295185089,0.414105713367462,-0.0357495546340942,0.909526467323303,0.402836263179779,0.022897956892848,0.914985597133636,0.119339048862457,0.0819033533334732,0.989469587802887,-0.823293268680573,0.0435524508357048,0.565942883491516,-0.958993315696716,0.0390930026769638,0.280719637870789,-0.955631852149963,-0.0918608903884888,0.279873847961426,-0.833485543727875,-0.0824333056807518,0.546357452869415,-0.837755739688873,-0.0434028953313828,0.544317364692688,0.0658828467130661,-0.0861886516213417,0.99409806728363,0.0426179319620132,0.0263466890901327,0.998744010925293,-0.841013073921204,0.0332719795405865,0.539990663528442,0.0658828467130661,-0.0861886516213417,0.99409806728363,0.388137638568878,-0.06538325548172,0.919279217720032,0.416751861572266,0.0187281593680382,0.908827364444733,0.0426179319620132,0.0263466890901327,0.998744010925293,-0.0137873580679297,-0.601575613021851,0.798696935176849,0.512687206268311,-0.605559468269348,0.608645617961884,0.392408967018127,-0.523092985153198,0.7565638422966,0.0771704614162445,-0.0508804507553577,0.995718777179718,0.416751861572266,0.0187281593680382,0.908827364444733,0.481742799282074,0.245919972658157,0.841098845005035,0.0426179319620132,0.0263466890901327,0.998744010925293,
- 0.102425642311573,-0.0304523818194866,0.994274437427521,-0.85487312078476,-0.0341963358223438,0.517708957195282,-0.0293029230087996,-0.999495506286621,0.0122580621391535,-0.002472362248227,-0.999496400356293,0.0316345877945423,0.177916780114174,-0.876593232154846,0.447135329246521,0.097900964319706,0.0406991057097912,0.994363605976105,0.376925468444824,0.020433621481061,0.926018297672272,0.481742799282074,0.245919972658157,0.841098845005035,0.935596108436584,0.0480759851634502,-0.349783778190613,0.763289570808411,0.616579532623291,-0.192921444773674,0.392408967018127,-0.523092985153198,0.7565638422966,0.921096503734589,-0.0432164557278156,-0.386928379535675,0.394749373197556,-0.0109785785898566,0.918723285198212,0.082584410905838,0.0555944032967091,0.99503219127655,-0.823293268680573,0.0435524508357048,0.565942883491516,-0.833485543727875,-0.0824333056807518,0.546357452869415,0.0771704614162445,-0.0508804507553577,0.995718777179718,0.0351779796183109,-0.999355673789978,0.00711918389424682,0.934855103492737,-0.0220861416310072,-0.354341983795166,0.375230371952057,-0.0404482185840607,0.926048636436462,0.951011896133423,0.0105078816413879,-0.308975696563721,0.921432435512543,0.0159147251397371,-0.388212740421295,0.0228325836360455,0.999693274497986,-0.00959029234945774,0.047607745975256,0.998698115348816,0.0183180142194033,0.38520810008049,0.0388102494180202,0.922013282775879,0.082584410905838,0.0555944032967091,0.99503219127655,0.0771704614162445,-0.0508804507553577,0.995718777179718,0.394749373197556,-0.0109785785898566,0.918723285198212,0.929244577884674,0.0253148712217808,-0.368596941232681,0.38520810008049,0.0388102494180202,0.922013282775879,0.394749373197556,-0.0109785785898566,0.918723285198212,0.928391218185425,-0.0223751645535231,-0.370930016040802,0.0770660638809204,-0.0486398227512836,0.995838820934296,0.30131134390831,0.672747731208801,0.675738096237183,0.389203995466232,-0.0361447520554066,0.920442163944244,-0.83334094285965,-0.071189247071743,0.548156023025513,-0.950699210166931,0.141964927315712,0.275711804628372,
- -0.748613238334656,-0.30981981754303,0.586165487766266,0.0771704614162445,-0.0508804507553577,0.995718777179718,-0.833485543727875,-0.0824333056807518,0.546357452869415,-0.693511068820953,-0.527433276176453,0.490771412849426,-0.0137873580679297,-0.601575613021851,0.798696935176849,0.923972487449646,-0.0583862736821175,-0.377976030111313,0.452527046203613,0.872908651828766,-0.18234483897686,0.484490394592285,0.850806713104248,-0.203462481498718,0.920611083507538,-0.0570131652057171,-0.386296272277832,0.082584410905838,0.0555944032967091,0.99503219127655,0.38520810008049,0.0388102494180202,0.922013282775879,0.30131134390831,0.672747731208801,0.675738096237183,0.0675851628184319,0.0939414128661156,0.993281006813049,0.731428742408752,0.617497205734253,-0.289325624704361,0.30131134390831,0.672747731208801,0.675738096237183,0.38520810008049,0.0388102494180202,0.922013282775879,0.0658828467130661,-0.0861886516213417,0.99409806728363,-0.837755739688873,-0.0434028953313828,0.544317364692688,-0.578403532505035,0.754499852657318,0.310127794742584,0.091668464243412,-0.453721553087235,0.88641619682312,0.921096503734589,-0.0432164557278156,-0.386928379535675,0.928391218185425,-0.0223751645535231,-0.370930016040802,0.394749373197556,-0.0109785785898566,0.918723285198212,0.097900964319706,0.0406991057097912,0.994363605976105,0.177916780114174,-0.876593232154846,0.447135329246521,0.0191743522882462,-0.489179313182831,0.871972382068634,0.0771704614162445,-0.0508804507553577,0.995718777179718,0.392408967018127,-0.523092985153198,0.7565638422966,0.394749373197556,-0.0109785785898566,0.918723285198212,0.93438184261322,0.0234151110053062,-0.355502933263779,0.469418257474899,-0.863037765026093,-0.186580538749695,0.376925468444824,0.020433621481061,0.926018297672272,0.375230371952057,-0.0404482185840607,0.926048636436462,0.934855103492737,-0.0220861416310072,-0.354341983795166,0.93438184261322,0.0234151110053062,-0.355502933263779,0.376925468444824,0.020433621481061,0.926018297672272,0.30131134390831,0.672747731208801,0.675738096237183,0.949847102165222,-0.00741187715902925,-0.312626838684082,
- 0.389203995466232,-0.0361447520554066,0.920442163944244,0.924407601356506,-0.00701356632634997,-0.381341487169266,0.434520453214645,-0.882997035980225,-0.177505493164063,0.215631097555161,-0.798500180244446,0.562050461769104,-0.83334094285965,-0.071189247071743,0.548156023025513,-0.9599928855896,-0.0508051924407482,0.275376945734024,-0.950699210166931,0.141964927315712,0.275711804628372,0.30131134390831,0.672747731208801,0.675738096237183,0.0770660638809204,-0.0486398227512836,0.995838820934296,0.0675851628184319,0.0939414128661156,0.993281006813049,0.360583573579788,-0.0320380330085754,0.932176470756531,0.090483047068119,-0.0452837944030762,0.994867920875549,0.0406784489750862,-0.133230283856392,0.990249991416931,0.256718248128891,0.593761622905731,0.762589633464813,-0.833485543727875,-0.0824333056807518,0.546357452869415,-0.955631852149963,-0.0918608903884888,0.279873847961426,-0.806874811649323,-0.539889931678772,0.239732936024666,-0.693511068820953,-0.527433276176453,0.490771412849426,0.414105713367462,-0.0357495546340942,0.909526467323303,0.926948070526123,-0.0938132256269455,-0.363271772861481,0.921360731124878,0.167404174804688,-0.350813686847687,0.402836263179779,0.022897956892848,0.914985597133636,0.0406784489750862,-0.133230283856392,0.990249991416931,0.119339048862457,0.0819033533334732,0.989469587802887,0.402836263179779,0.022897956892848,0.914985597133636,0.256718248128891,0.593761622905731,0.762589633464813,-0.0137873580679297,-0.601575613021851,0.798696935176849,0.0426179319620132,0.0263466890901327,0.998744010925293,0.481742799282074,0.245919972658157,0.841098845005035,0.177916780114174,-0.876593232154846,0.447135329246521,0.469418257474899,-0.863037765026093,-0.186580538749695,0.414105713367462,-0.0357495546340942,0.909526467323303,0.0793413072824478,0.0167850665748119,0.996706187725067,0.0374642722308636,0.980054616928101,0.195164948701859,-0.0399400219321251,0.998828828334808,0.0273104757070541,0.0658828467130661,-0.0861886516213417,0.99409806728363,0.091668464243412,-0.453721553087235,0.88641619682312,
- 0.215631097555161,-0.798500180244446,0.562050461769104,0.388137638568878,-0.06538325548172,0.919279217720032,0.047607745975256,0.998698115348816,0.0183180142194033,0.390583425760269,0.0407975912094116,0.919663071632385,0.951011896133423,0.0105078816413879,-0.308975696563721,0.102425642311573,-0.0304523818194866,0.994274437427521,-0.002472362248227,-0.999496400356293,0.0316345877945423,0.0351779796183109,-0.999355673789978,0.00711918389424682,0.375230371952057,-0.0404482185840607,0.926048636436462,0.360583573579788,-0.0320380330085754,0.932176470756531,0.923972487449646,-0.0583862736821175,-0.377976030111313,0.924407601356506,-0.00701356632634997,-0.381341487169266,0.36745685338974,0.0284949336200953,0.92960399389267,0.256718248128891,0.593761622905731,0.762589633464813,0.923972487449646,-0.0583862736821175,-0.377976030111313,0.360583573579788,-0.0320380330085754,0.932176470756531,0.93438184261322,0.0234151110053062,-0.355502933263779,0.920635759830475,0.0328552052378654,-0.389037698507309,0.437324970960617,-0.879879117012024,-0.18590222299099,0.469418257474899,-0.863037765026093,-0.186580538749695,0.402836263179779,0.022897956892848,0.914985597133636,0.921360731124878,0.167404174804688,-0.350813686847687,0.256718248128891,0.593761622905731,0.762589633464813,-0.85487312078476,-0.0341963358223438,0.517708957195282,0.102425642311573,-0.0304523818194866,0.994274437427521,0.097900964319706,0.0406991057097912,0.994363605976105,-0.847929894924164,0.0487182773649693,0.527865052223206,0.934855103492737,-0.0220861416310072,-0.354341983795166,0.92078822851181,-0.0278177205473185,-0.38906991481781,0.920635759830475,0.0328552052378654,-0.389037698507309,0.93438184261322,0.0234151110053062,-0.355502933263779,0.215631097555161,-0.798500180244446,0.562050461769104,0.434520453214645,-0.882997035980225,-0.177505493164063,0.934621512889862,-0.0896272510290146,-0.344165056943893,0.388137638568878,-0.06538325548172,0.919279217720032,0.388137638568878,-0.06538325548172,0.919279217720032,0.934621512889862,-0.0896272510290146,-0.344165056943893,
- 0.944468140602112,0.013436377979815,-0.328328251838684,0.416751861572266,0.0187281593680382,0.908827364444733,0.392408967018127,-0.523092985153198,0.7565638422966,0.512687206268311,-0.605559468269348,0.608645617961884,0.763289570808411,0.616579532623291,-0.192921444773674,0.921096503734589,-0.0432164557278156,-0.386928379535675,0.731428742408752,0.617497205734253,-0.289325624704361,0.929244577884674,0.0253148712217808,-0.368596941232681,0.916530191898346,0.0755648836493492,-0.392762422561646,0.71604585647583,0.629045128822327,-0.302622675895691,0.949847102165222,-0.00741187715902925,-0.312626838684082,0.921362400054932,-0.0195928495377302,-0.388210505247116,0.921432435512543,0.0159147251397371,-0.388212740421295,0.951011896133423,0.0105078816413879,-0.308975696563721,0.047607745975256,0.998698115348816,0.0183180142194033,-0.0399400219321251,0.998828828334808,0.0273104757070541,0.0374642722308636,0.980054616928101,0.195164948701859,0.047607745975256,0.998698115348816,0.0183180142194033,0.0374642722308636,0.980054616928101,0.195164948701859,0.0793413072824478,0.0167850665748119,0.996706187725067,0.390583425760269,0.0407975912094116,0.919663071632385,-0.959844946861267,0.0492991618812084,0.276165425777435,-0.95936119556427,-0.0587309002876282,0.276001214981079,-0.820331275463104,-0.0587363094091415,0.568864285945892,-0.833030223846436,0.0369705744087696,0.551990747451782,-0.813356757164001,-0.531162083148956,0.23731318116188,-0.958993315696716,0.0390930026769638,0.280719637870789,-0.823293268680573,0.0435524508357048,0.565942883491516,0.481742799282074,0.245919972658157,0.841098845005035,0.416751861572266,0.0187281593680382,0.908827364444733,0.944468140602112,0.013436377979815,-0.328328251838684,0.935596108436584,0.0480759851634502,-0.349783778190613,-0.0137873580679297,-0.601575613021851,0.798696935176849,-0.693511068820953,-0.527433276176453,0.490771412849426,-0.841013073921204,0.0332719795405865,0.539990663528442,0.0426179319620132,0.0263466890901327,0.998744010925293,0.091668464243412,-0.453721553087235,0.88641619682312,
- 0.0732558369636536,0.0443248227238655,0.996327638626099,0.215631097555161,-0.798500180244446,0.562050461769104,-0.578403532505035,0.754499852657318,0.310127794742584,-0.834356069564819,0.13589383661747,0.534212410449982,0.0732558369636536,0.0443248227238655,0.996327638626099,0.091668464243412,-0.453721553087235,0.88641619682312,0.412772864103317,-0.894061386585236,-0.173990666866302,0.909925401210785,-0.137122541666031,-0.391450166702271,0.934621512889862,-0.0896272510290146,-0.344165056943893,0.434520453214645,-0.882997035980225,-0.177505493164063,0.924407601356506,-0.00701356632634997,-0.381341487169266,0.215631097555161,-0.798500180244446,0.562050461769104,0.36745685338974,0.0284949336200953,0.92960399389267,-0.83334094285965,-0.071189247071743,0.548156023025513,0.090483047068119,-0.0452837944030762,0.994867920875549,0.0732558369636536,0.0443248227238655,0.996327638626099,-0.834356069564819,0.13589383661747,0.534212410449982,-0.748613238334656,-0.30981981754303,0.586165487766266,-0.842118203639984,0.0332278534770012,0.538268327713013,0.119339048862457,0.0819033533334732,0.989469587802887,0.0406784489750862,-0.133230283856392,0.990249991416931,-0.0137873580679297,-0.601575613021851,0.798696935176849,0.481742799282074,0.245919972658157,0.841098845005035,0.512687206268311,-0.605559468269348,0.608645617961884,0.763289570808411,0.616579532623291,-0.192921444773674,0.512687206268311,-0.605559468269348,0.608645617961884,0.481742799282074,0.245919972658157,0.841098845005035,0.256718248128891,0.593761622905731,0.762589633464813,0.452527046203613,0.872908651828766,-0.18234483897686,0.923972487449646,-0.0583862736821175,-0.377976030111313,0.921360731124878,0.167404174804688,-0.350813686847687,0.452527046203613,0.872908651828766,-0.18234483897686,0.256718248128891,0.593761622905731,0.762589633464813,0.30131134390831,0.672747731208801,0.675738096237183,0.731428742408752,0.617497205734253,-0.289325624704361,0.949847102165222,-0.00741187715902925,-0.312626838684082,0.71604585647583,0.629045128822327,-0.302622675895691,0.921362400054932,-0.0195928495377302,-0.388210505247116,
- 0.949847102165222,-0.00741187715902925,-0.312626838684082,0.731428742408752,0.617497205734253,-0.289325624704361,-0.823293268680573,0.0435524508357048,0.565942883491516,-0.600954830646515,-0.482580870389938,0.637156903743744,-0.813356757164001,-0.531162083148956,0.23731318116188,0.0675851628184319,0.0939414128661156,0.993281006813049,-0.600954830646515,-0.482580870389938,0.637156903743744,-0.823293268680573,0.0435524508357048,0.565942883491516,0.082584410905838,0.0555944032967091,0.99503219127655,-0.813356757164001,-0.531162083148956,0.23731318116188,-0.600954830646515,-0.482580870389938,0.637156903743744,-0.820331275463104,-0.0587363094091415,0.568864285945892,0.0770660638809204,-0.0486398227512836,0.995838820934296,-0.820331275463104,-0.0587363094091415,0.568864285945892,-0.600954830646515,-0.482580870389938,0.637156903743744,0.0675851628184319,0.0939414128661156,0.993281006813049,-0.820331275463104,-0.0587363094091415,0.568864285945892,-0.95936119556427,-0.0587309002876282,0.276001214981079,-0.813356757164001,-0.531162083148956,0.23731318116188,0.731428742408752,0.617497205734253,-0.289325624704361,0.38520810008049,0.0388102494180202,0.922013282775879,0.929244577884674,0.0253148712217808,-0.368596941232681,-0.895840346813202,0.175987154245377,0.408042550086975,-0.860947251319885,0.44197478890419,0.251849472522736,-0.847929894924164,0.0487182773649693,0.527865052223206,-0.833460748195648,-0.0319273471832275,0.551655530929565,-0.959380447864532,-0.0254521276801825,0.280964970588684,-0.860947251319885,0.44197478890419,0.251849472522736,-0.895840346813202,0.175987154245377,0.408042550086975,0.119828164577484,-0.0740885436534882,0.990026295185089,-0.833460748195648,-0.0319273471832275,0.551655530929565,-0.895840346813202,0.175987154245377,0.408042550086975,0.0191743522882462,-0.489179313182831,0.871972382068634,0.0191743522882462,-0.489179313182831,0.871972382068634,-0.895840346813202,0.175987154245377,0.408042550086975,-0.847929894924164,0.0487182773649693,0.527865052223206,0.097900964319706,0.0406991057097912,0.994363605976105,
- 0.102425642311573,-0.0304523818194866,0.994274437427521,0.375230371952057,-0.0404482185840607,0.926048636436462,0.376925468444824,0.020433621481061,0.926018297672272,0.097900964319706,0.0406991057097912,0.994363605976105,0.0191743522882462,-0.489179313182831,0.871972382068634,0.177916780114174,-0.876593232154846,0.447135329246521,0.414105713367462,-0.0357495546340942,0.909526467323303,0.119828164577484,-0.0740885436534882,0.990026295185089,0.376925468444824,0.020433621481061,0.926018297672272,0.469418257474899,-0.863037765026093,-0.186580538749695,0.177916780114174,-0.876593232154846,0.447135329246521,0.414105713367462,-0.0357495546340942,0.909526467323303,0.469418257474899,-0.863037765026093,-0.186580538749695,0.926948070526123,-0.0938132256269455,-0.363271772861481,0.0793413072824478,0.0167850665748119,0.996706187725067,-0.0399400219321251,0.998828828334808,0.0273104757070541,-0.833030223846436,0.0369705744087696,0.551990747451782,0.923972487449646,-0.0583862736821175,-0.377976030111313,0.920611083507538,-0.0570131652057171,-0.386296272277832,0.922077715396881,0.00384581531397998,-0.386985510587692,0.924407601356506,-0.00701356632634997,-0.381341487169266,0.922077715396881,0.00384581531397998,-0.386985510587692,0.412772864103317,-0.894061386585236,-0.173990666866302,0.434520453214645,-0.882997035980225,-0.177505493164063,0.924407601356506,-0.00701356632634997,-0.381341487169266,0.0222484301775694,-0.999700665473938,-0.0101722199469805,0.92078822851181,-0.0278177205473185,-0.38906991481781,0.934855103492737,-0.0220861416310072,-0.354341983795166,0.0351779796183109,-0.999355673789978,0.00711918389424682,0.904629826545715,0.170250669121742,-0.390716761350632,0.484490394592285,0.850806713104248,-0.203462481498718,0.452527046203613,0.872908651828766,-0.18234483897686,0.921360731124878,0.167404174804688,-0.350813686847687,-0.960625171661377,-0.0307500697672367,0.276140838861465,-0.028524586930871,-0.999557912349701,0.00838887598365545,-0.0293029230087996,-0.999495506286621,0.0122580621391535,-0.85487312078476,-0.0341963358223438,0.517708957195282,
- -0.959281027317047,0.0290909390896559,0.280951231718063,-0.959380447864532,-0.0254521276801825,0.280964970588684,-0.833460748195648,-0.0319273471832275,0.551655530929565,-0.842118203639984,0.0332278534770012,0.538268327713013,0.437324970960617,-0.879879117012024,-0.18590222299099,0.912614524364471,-0.107394315302372,-0.394463151693344,0.926948070526123,-0.0938132256269455,-0.363271772861481,0.469418257474899,-0.863037765026093,-0.186580538749695,0.916971802711487,0.0586673691868782,-0.394614726305008,0.742602705955505,0.590129256248474,-0.316683739423752,0.763289570808411,0.616579532623291,-0.192921444773674,0.935596108436584,0.0480759851634502,-0.349783778190613,-0.806874811649323,-0.539889931678772,0.239732936024666,-0.957875430583954,0.0379213578999043,0.284669429063797,-0.841013073921204,0.0332719795405865,0.539990663528442,-0.693511068820953,-0.527433276176453,0.490771412849426,-0.860947251319885,0.44197478890419,0.251849472522736,-0.959274709224701,0.0616275407373905,0.275670349597931,-0.847929894924164,0.0487182773649693,0.527865052223206,-0.959274709224701,0.0616275407373905,0.275670349597931,-0.960625171661377,-0.0307500697672367,0.276140838861465,-0.85487312078476,-0.0341963358223438,0.517708957195282,-0.847929894924164,0.0487182773649693,0.527865052223206,0.742602705955505,0.590129256248474,-0.316683739423752,0.918468117713928,-0.0382865853607655,-0.393637627363205,0.921096503734589,-0.0432164557278156,-0.386928379535675,0.763289570808411,0.616579532623291,-0.192921444773674,0.918468117713928,-0.0382865853607655,-0.393637627363205,0.916530191898346,0.0755648836493492,-0.392762422561646,0.929244577884674,0.0253148712217808,-0.368596941232681,0.928391218185425,-0.0223751645535231,-0.370930016040802,0.921096503734589,-0.0432164557278156,-0.386928379535675,-0.957875430583954,0.0379213578999043,0.284669429063797,-0.957473874092102,-0.0475620627403259,0.284572750329971,-0.837755739688873,-0.0434028953313828,0.544317364692688,-0.841013073921204,0.0332719795405865,0.539990663528442,-0.950699210166931,0.141964927315712,0.275711804628372,
- -0.959281027317047,0.0290909390896559,0.280951231718063,-0.842118203639984,0.0332278534770012,0.538268327713013,-0.748613238334656,-0.30981981754303,0.586165487766266,-0.955406010150909,0.109458334743977,0.274259299039841,-0.9599928855896,-0.0508051924407482,0.275376945734024,-0.83334094285965,-0.071189247071743,0.548156023025513,-0.834356069564819,0.13589383661747,0.534212410449982,-0.955406010150909,0.109458334743977,0.274259299039841,-0.834356069564819,0.13589383661747,0.534212410449982,-0.578403532505035,0.754499852657318,0.310127794742584,-0.638613343238831,0.74667876958847,0.186128214001656,-0.0388690046966076,0.998897254467011,0.0263337884098291,0.0441672466695309,0.9984090924263,0.0350494049489498,0.022117480635643,0.999711930751801,-0.00932294130325317,-0.0433615818619728,0.998963713645935,0.0138288652524352,0.086703822016716,-0.0430081710219383,0.995305299758911,0.395169615745544,-0.0290216132998466,0.918149650096893,0.396778017282486,0.019076531752944,0.917716324329376,0.0900062546133995,0.0331803150475025,0.995388329029083,0.395169615745544,-0.0290216132998466,0.918149650096893,0.947001278400421,-0.0483193136751652,-0.317574769258499,0.948038935661316,0.0565480887889862,-0.313088476657867,0.396778017282486,0.019076531752944,0.917716324329376,-0.829628169536591,-0.0082830311730504,0.558254897594452,-0.0388690046966076,0.998897254467011,0.0263337884098291,-0.0433615818619728,0.998963713645935,0.0138288652524352,-0.959596872329712,-0.00732593797147274,0.281283140182495,-0.817909896373749,-0.0235467962920666,0.574864387512207,0.086703822016716,-0.0430081710219383,0.995305299758911,0.0900062546133995,0.0331803150475025,0.995388329029083,-0.829628169536591,-0.0082830311730504,0.558254897594452,-0.827828884124756,0.0508818812668324,0.558668434619904,-0.960140466690063,0.0483542531728745,0.275303393602371,-0.960219204425812,-0.0462770462036133,0.275386214256287,-0.837380886077881,-0.0431322753429413,0.544915556907654,-0.00713028339669108,-0.901941776275635,0.4317986369133,0.20782396197319,-0.925400197505951,0.316928505897522,
- 0.430870234966278,-0.486609041690826,0.75997531414032,0.0767728686332703,-0.0417219586670399,0.996175289154053,0.430870234966278,-0.486609041690826,0.75997531414032,0.912122786045074,-0.065457247197628,-0.404657274484634,0.386123657226563,-0.00404173554852605,0.922438204288483,0.0787744745612144,0.0475847497582436,0.995756089687347,-0.827828884124756,0.0508818812668324,0.558668434619904,-0.837380886077881,-0.0431322753429413,0.544915556907654,0.0767728686332703,-0.0417219586670399,0.996175289154053,0.948038935661316,0.0565480887889862,-0.313088476657867,0.917540550231934,0.0671438425779343,-0.391932487487793,0.022117480635643,0.999711930751801,-0.00932294130325317,0.0441672466695309,0.9984090924263,0.0350494049489498,0.380315274000168,0.0334380269050598,0.924252271652222,0.0787744745612144,0.0475847497582436,0.995756089687347,0.0767728686332703,-0.0417219586670399,0.996175289154053,0.386123657226563,-0.00404173554852605,0.922438204288483,0.923901438713074,-0.0199078191071749,-0.382112264633179,0.380315274000168,0.0334380269050598,0.924252271652222,0.386123657226563,-0.00404173554852605,0.922438204288483,0.921964824199677,-0.0392926707863808,-0.385275065898895,0.086703822016716,-0.0430081710219383,0.995305299758911,0.342956602573395,0.499726474285126,0.79539567232132,0.395169615745544,-0.0290216132998466,0.918149650096893,0.0767728686332703,-0.0417219586670399,0.996175289154053,-0.837380886077881,-0.0431322753429413,0.544915556907654,-0.434693336486816,-0.856369376182556,0.278699398040771,-0.00713028339669108,-0.901941776275635,0.4317986369133,0.0787744745612144,0.0475847497582436,0.995756089687347,0.380315274000168,0.0334380269050598,0.924252271652222,0.342956602573395,0.499726474285126,0.79539567232132,0.0377759896218777,0.557641685009003,0.829221785068512,0.746568500995636,-0.598597705364227,-0.29037269949913,0.342956602573395,0.499726474285126,0.79539567232132,0.380315274000168,0.0334380269050598,0.924252271652222,0.912122786045074,-0.065457247197628,-0.404657274484634,0.921964824199677,-0.0392926707863808,-0.385275065898895,
- 0.386123657226563,-0.00404173554852605,0.922438204288483,0.0767728686332703,-0.0417219586670399,0.996175289154053,0.430870234966278,-0.486609041690826,0.75997531414032,0.386123657226563,-0.00404173554852605,0.922438204288483,0.342956602573395,0.499726474285126,0.79539567232132,0.947001278400421,-0.0483193136751652,-0.317574769258499,0.395169615745544,-0.0290216132998466,0.918149650096893,0.342956602573395,0.499726474285126,0.79539567232132,0.086703822016716,-0.0430081710219383,0.995305299758911,0.0377759896218777,0.557641685009003,0.829221785068512,-0.837380886077881,-0.0431322753429413,0.544915556907654,-0.960219204425812,-0.0462770462036133,0.275386214256287,-0.541091978549957,-0.826321840286255,0.156243145465851,-0.434693336486816,-0.856369376182556,0.278699398040771,0.0900062546133995,0.0331803150475025,0.995388329029083,0.011148908175528,0.986482322216034,0.163488388061523,-0.0388690046966076,0.998897254467011,0.0263337884098291,0.0441672466695309,0.9984090924263,0.0350494049489498,0.396778017282486,0.019076531752944,0.917716324329376,0.948038935661316,0.0565480887889862,-0.313088476657867,0.430870234966278,-0.486609041690826,0.75997531414032,0.20782396197319,-0.925400197505951,0.316928505897522,0.496760040521622,-0.857523560523987,-0.133726626634598,0.912122786045074,-0.065457247197628,-0.404657274484634,0.746568500995636,-0.598597705364227,-0.29037269949913,0.923901438713074,-0.0199078191071749,-0.382112264633179,0.921274721622467,0.00516556110233068,-0.388878017663956,0.699694573879242,-0.650851786136627,-0.294651448726654,0.947001278400421,-0.0483193136751652,-0.317574769258499,0.916408956050873,-0.0832622945308685,-0.391486883163452,0.917540550231934,0.0671438425779343,-0.391932487487793,0.948038935661316,0.0565480887889862,-0.313088476657867,0.0441672466695309,0.9984090924263,0.0350494049489498,-0.0388690046966076,0.998897254467011,0.0263337884098291,0.011148908175528,0.986482322216034,0.163488388061523,0.0441672466695309,0.9984090924263,0.0350494049489498,0.011148908175528,0.986482322216034,0.163488388061523,
- 0.0900062546133995,0.0331803150475025,0.995388329029083,0.396778017282486,0.019076531752944,0.917716324329376,-0.959596872329712,-0.00732593797147274,0.281283140182495,-0.95936381816864,-0.0222889240831137,0.281290203332901,-0.817909896373749,-0.0235467962920666,0.574864387512207,-0.829628169536591,-0.0082830311730504,0.558254897594452,-0.816883981227875,0.525445401668549,0.237923249602318,-0.960140466690063,0.0483542531728745,0.275303393602371,-0.827828884124756,0.0508818812668324,0.558668434619904,0.342956602573395,0.499726474285126,0.79539567232132,0.746568500995636,-0.598597705364227,-0.29037269949913,0.947001278400421,-0.0483193136751652,-0.317574769258499,0.699694573879242,-0.650851786136627,-0.294651448726654,0.916408956050873,-0.0832622945308685,-0.391486883163452,0.947001278400421,-0.0483193136751652,-0.317574769258499,0.746568500995636,-0.598597705364227,-0.29037269949913,-0.827828884124756,0.0508818812668324,0.558668434619904,-0.502509474754334,0.704681217670441,0.500907778739929,-0.816883981227875,0.525445401668549,0.237923249602318,0.0377759896218777,0.557641685009003,0.829221785068512,-0.502509474754334,0.704681217670441,0.500907778739929,-0.827828884124756,0.0508818812668324,0.558668434619904,0.0787744745612144,0.0475847497582436,0.995756089687347,-0.816883981227875,0.525445401668549,0.237923249602318,-0.502509474754334,0.704681217670441,0.500907778739929,-0.817909896373749,-0.0235467962920666,0.574864387512207,0.086703822016716,-0.0430081710219383,0.995305299758911,-0.817909896373749,-0.0235467962920666,0.574864387512207,-0.502509474754334,0.704681217670441,0.500907778739929,0.0377759896218777,0.557641685009003,0.829221785068512,-0.817909896373749,-0.0235467962920666,0.574864387512207,-0.95936381816864,-0.0222889240831137,0.281290203332901,-0.816883981227875,0.525445401668549,0.237923249602318,0.746568500995636,-0.598597705364227,-0.29037269949913,0.380315274000168,0.0334380269050598,0.924252271652222,0.923901438713074,-0.0199078191071749,-0.382112264633179,0.0900062546133995,0.0331803150475025,0.995388329029083,
- -0.0388690046966076,0.998897254467011,0.0263337884098291,-0.829628169536591,-0.0082830311730504,0.558254897594452,0.540357410907745,-0.810808539390564,-0.224951788783073,0.91930478811264,-0.0660353899002075,-0.387966573238373,0.912122786045074,-0.065457247197628,-0.404657274484634,0.496760040521622,-0.857523560523987,-0.133726626634598,0.91930478811264,-0.0660353899002075,-0.387966573238373,0.921274721622467,0.00516556110233068,-0.388878017663956,0.923901438713074,-0.0199078191071749,-0.382112264633179,0.921964824199677,-0.0392926707863808,-0.385275065898895,0.912122786045074,-0.065457247197628,-0.404657274484634,-0.0910855308175087,0.044880572706461,0.994831204414368,-0.361189126968384,0.031743198633194,0.931952059268951,-0.368052542209625,-0.0282409805804491,0.929376065731049,-0.0739841386675835,-0.0439268834888935,0.99629157781601,0.0285156145691872,0.99955803155899,0.00840640068054199,-0.0222614947706461,0.999700129032135,-0.0101922582834959,-0.0352022685110569,0.999355018138886,0.00709810899570584,0.0024310015141964,0.999496340751648,0.031642708927393,0.0292868465185165,0.999495506286621,0.0122882314026356,0.831469357013702,0.0322636738419533,0.554632842540741,-0.120425514876843,0.0892116129398346,0.988705694675446,-0.121110364794731,-0.098131462931633,0.987776517868042,0.841690897941589,-0.0399789288640022,0.538477599620819,-0.0910855308175087,0.044880572706461,0.994831204414368,0.828884184360504,0.0454008057713509,0.557574808597565,0.756066143512726,0.294346153736115,0.584571957588196,-0.0412910580635071,0.133159935474396,0.990234136581421,-0.924828052520752,0.112341456115246,-0.36341792345047,-0.91001570224762,0.128931611776352,-0.394015431404114,-0.89872020483017,-0.202872395515442,-0.388773381710052,-0.915396392345428,-0.200338661670685,-0.34916165471077,-0.161505043506622,-0.904410123825073,0.394915729761124,-0.0739841386675835,-0.0439268834888935,0.99629157781601,-0.368052542209625,-0.0282409805804491,0.929376065731049,-0.120425514876843,0.0892116129398346,0.988705694675446,-0.4144486784935,0.0430496037006378,0.909053921699524,
- -0.40334352850914,-0.0277176965028048,0.914628684520721,-0.121110364794731,-0.098131462931633,0.987776517868042,-0.102854311466217,0.0325540527701378,0.994163572788239,0.854641795158386,0.0365402363240719,0.517930686473846,0.0292868465185165,0.999495506286621,0.0122882314026356,0.0024310015141964,0.999496340751648,0.031642708927393,-0.178221389651299,0.8765669465065,0.447065502405167,-0.0984890758991241,-0.0434751845896244,0.994187951087952,-0.377639025449753,-0.0218459665775299,0.925695180892944,-0.0352022685110569,0.999355018138886,0.00709810899570584,-0.934622645378113,0.0236224848777056,-0.354855746030808,-0.375639647245407,0.0431243740022182,0.925761997699738,0.95961058139801,0.0537169240415096,0.276155889034271,0.756066143512726,0.294346153736115,0.584571957588196,0.828884184360504,0.0454008057713509,0.557574808597565,-0.923760533332825,0.0578780211508274,-0.378571897745132,-0.452378809452057,-0.872926592826843,-0.182626709342003,-0.484331011772156,-0.850825607776642,-0.203762516379356,-0.920386672019959,0.0565131343901157,-0.386904031038284,-0.0984890758991241,-0.0434751845896244,0.994187951087952,-0.178221389651299,0.8765669465065,0.447065502405167,-0.0197455585002899,0.489169090986252,0.87196546792984,-0.93408215045929,-0.025015402585268,-0.356180965900421,-0.469224452972412,0.863079607486725,-0.186874330043793,-0.377639025449753,-0.0218459665775299,0.925695180892944,-0.375639647245407,0.0431243740022182,0.925761997699738,-0.934622645378113,0.0236224848777056,-0.354855746030808,-0.93408215045929,-0.025015402585268,-0.356180965900421,-0.377639025449753,-0.0218459665775299,0.925695180892944,-0.924159586429596,0.00696405116468668,-0.381943225860596,-0.75283670425415,-0.565618574619293,-0.336619198322296,-0.161505043506622,-0.904410123825073,0.394915729761124,0.95961058139801,0.0537169240415096,0.276155889034271,0.927281260490417,0.255347937345505,0.273764401674271,0.756066143512726,0.294346153736115,0.584571957588196,-0.361189126968384,0.031743198633194,0.931952059268951,-0.0910855308175087,0.044880572706461,0.994831204414368,
- -0.0412910580635071,0.133159935474396,0.990234136581421,-0.257218033075333,-0.593713164329529,0.762458980083466,-0.4144486784935,0.0430496037006378,0.909053921699524,-0.924828052520752,0.112341456115246,-0.36341792345047,-0.915396392345428,-0.200338661670685,-0.34916165471077,-0.40334352850914,-0.0277176965028048,0.914628684520721,-0.0412910580635071,0.133159935474396,0.990234136581421,-0.121110364794731,-0.098131462931633,0.987776517868042,-0.40334352850914,-0.0277176965028048,0.914628684520721,-0.257218033075333,-0.593713164329529,0.762458980083466,-0.178221389651299,0.8765669465065,0.447065502405167,-0.469224452972412,0.863079607486725,-0.186874330043793,-0.4144486784935,0.0430496037006378,0.909053921699524,-0.102854311466217,0.0325540527701378,0.994163572788239,0.0024310015141964,0.999496340751648,0.031642708927393,-0.0352022685110569,0.999355018138886,0.00709810899570584,-0.375639647245407,0.0431243740022182,0.925761997699738,-0.361189126968384,0.031743198633194,0.931952059268951,-0.923760533332825,0.0578780211508274,-0.378571897745132,-0.924159586429596,0.00696405116468668,-0.381943225860596,-0.368052542209625,-0.0282409805804491,0.929376065731049,-0.257218033075333,-0.593713164329529,0.762458980083466,-0.923760533332825,0.0578780211508274,-0.378571897745132,-0.361189126968384,0.031743198633194,0.931952059268951,-0.93408215045929,-0.025015402585268,-0.356180965900421,-0.920310795307159,-0.0351100265979767,-0.389609277248383,-0.437058866024017,0.879964828491211,-0.186121806502342,-0.469224452972412,0.863079607486725,-0.186874330043793,-0.40334352850914,-0.0277176965028048,0.914628684520721,-0.915396392345428,-0.200338661670685,-0.34916165471077,-0.257218033075333,-0.593713164329529,0.762458980083466,0.854641795158386,0.0365402363240719,0.517930686473846,-0.102854311466217,0.0325540527701378,0.994163572788239,-0.0984890758991241,-0.0434751845896244,0.994187951087952,0.846542119979858,-0.0507693774998188,0.529895186424255,-0.934622645378113,0.0236224848777056,-0.354855746030808,-0.920485377311707,0.0296759176999331,-0.389648675918579,
- -0.920310795307159,-0.0351100265979767,-0.389609277248383,-0.93408215045929,-0.025015402585268,-0.356180965900421,-0.0802185758948326,-0.884325265884399,0.459927886724472,-0.0739841386675835,-0.0439268834888935,0.99629157781601,-0.161505043506622,-0.904410123825073,0.394915729761124,0.356431514024735,-0.921666026115417,0.153259098529816,0.82283890247345,-0.140677779912949,0.550586760044098,-0.0739841386675835,-0.0439268834888935,0.99629157781601,-0.0802185758948326,-0.884325265884399,0.459927886724472,-0.924159586429596,0.00696405116468668,-0.381943225860596,-0.161505043506622,-0.904410123825073,0.394915729761124,-0.368052542209625,-0.0282409805804491,0.929376065731049,0.828884184360504,0.0454008057713509,0.557574808597565,-0.0910855308175087,0.044880572706461,0.994831204414368,-0.0739841386675835,-0.0439268834888935,0.99629157781601,0.82283890247345,-0.140677779912949,0.550586760044098,0.756066143512726,0.294346153736115,0.584571957588196,0.841690897941589,-0.0399789288640022,0.538477599620819,-0.121110364794731,-0.098131462931633,0.987776517868042,-0.0412910580635071,0.133159935474396,0.990234136581421,-0.257218033075333,-0.593713164329529,0.762458980083466,-0.452378809452057,-0.872926592826843,-0.182626709342003,-0.923760533332825,0.0578780211508274,-0.378571897745132,-0.915396392345428,-0.200338661670685,-0.34916165471077,-0.452378809452057,-0.872926592826843,-0.182626709342003,-0.257218033075333,-0.593713164329529,0.762458980083466,0.743406772613525,-0.520187556743622,0.420417904853821,0.862710237503052,-0.438501417636871,0.25188809633255,0.846542119979858,-0.0507693774998188,0.529895186424255,0.831469357013702,0.0322636738419533,0.554632842540741,0.959500908851624,0.00470916973426938,0.281666219234467,0.862710237503052,-0.438501417636871,0.25188809633255,0.743406772613525,-0.520187556743622,0.420417904853821,-0.120425514876843,0.0892116129398346,0.988705694675446,0.831469357013702,0.0322636738419533,0.554632842540741,0.743406772613525,-0.520187556743622,0.420417904853821,-0.0197455585002899,0.489169090986252,0.87196546792984,
- -0.0197455585002899,0.489169090986252,0.87196546792984,0.743406772613525,-0.520187556743622,0.420417904853821,0.846542119979858,-0.0507693774998188,0.529895186424255,-0.0984890758991241,-0.0434751845896244,0.994187951087952,-0.102854311466217,0.0325540527701378,0.994163572788239,-0.375639647245407,0.0431243740022182,0.925761997699738,-0.377639025449753,-0.0218459665775299,0.925695180892944,-0.0984890758991241,-0.0434751845896244,0.994187951087952,-0.0197455585002899,0.489169090986252,0.87196546792984,-0.178221389651299,0.8765669465065,0.447065502405167,-0.4144486784935,0.0430496037006378,0.909053921699524,-0.120425514876843,0.0892116129398346,0.988705694675446,-0.377639025449753,-0.0218459665775299,0.925695180892944,-0.469224452972412,0.863079607486725,-0.186874330043793,-0.178221389651299,0.8765669465065,0.447065502405167,-0.4144486784935,0.0430496037006378,0.909053921699524,-0.469224452972412,0.863079607486725,-0.186874330043793,-0.924828052520752,0.112341456115246,-0.36341792345047,-0.923760533332825,0.0578780211508274,-0.378571897745132,-0.920386672019959,0.0565131343901157,-0.386904031038284,-0.921826720237732,-0.00380375259555876,-0.387583553791046,-0.924159586429596,0.00696405116468668,-0.381943225860596,-0.921826720237732,-0.00380375259555876,-0.387583553791046,-0.775320410728455,-0.540935397148132,-0.325986415147781,-0.75283670425415,-0.565618574619293,-0.336619198322296,-0.924159586429596,0.00696405116468668,-0.381943225860596,-0.0222614947706461,0.999700129032135,-0.0101922582834959,-0.920485377311707,0.0296759176999331,-0.389648675918579,-0.934622645378113,0.0236224848777056,-0.354855746030808,-0.0352022685110569,0.999355018138886,0.00709810899570584,-0.89872020483017,-0.202872395515442,-0.388773381710052,-0.484331011772156,-0.850825607776642,-0.203762516379356,-0.452378809452057,-0.872926592826843,-0.182626709342003,-0.915396392345428,-0.200338661670685,-0.34916165471077,0.960381925106049,0.032845251262188,0.276745021343231,0.0285156145691872,0.99955803155899,0.00840640068054199,0.0292868465185165,0.999495506286621,0.0122882314026356,
- 0.854641795158386,0.0365402363240719,0.517930686473846,0.958916902542114,-0.0350154936313629,0.281517833471298,0.959500908851624,0.00470916973426938,0.281666219234467,0.831469357013702,0.0322636738419533,0.554632842540741,0.841690897941589,-0.0399789288640022,0.538477599620819,-0.437058866024017,0.879964828491211,-0.186121806502342,-0.91001570224762,0.128931611776352,-0.394015431404114,-0.924828052520752,0.112341456115246,-0.36341792345047,-0.469224452972412,0.863079607486725,-0.186874330043793,0.862710237503052,-0.438501417636871,0.25188809633255,0.960165977478027,-0.039579376578331,0.276612788438797,0.846542119979858,-0.0507693774998188,0.529895186424255,0.960165977478027,-0.039579376578331,0.276612788438797,0.960381925106049,0.032845251262188,0.276745021343231,0.854641795158386,0.0365402363240719,0.517930686473846,0.846542119979858,-0.0507693774998188,0.529895186424255,0.927281260490417,0.255347937345505,0.273764401674271,0.958916902542114,-0.0350154936313629,0.281517833471298,0.841690897941589,-0.0399789288640022,0.538477599620819,0.756066143512726,0.294346153736115,0.584571957588196,0.953366637229919,-0.12585836648941,0.274320304393768,0.95961058139801,0.0537169240415096,0.276155889034271,0.828884184360504,0.0454008057713509,0.557574808597565,0.82283890247345,-0.140677779912949,0.550586760044098,0.953366637229919,-0.12585836648941,0.274320304393768,0.82283890247345,-0.140677779912949,0.550586760044098,0.356431514024735,-0.921666026115417,0.153259098529816,0.474030435085297,-0.869727730751038,0.137363389134407,0.0388684011995792,-0.998896896839142,0.0263492688536644,-0.0441969633102417,-0.998408913612366,0.0350168570876122,-0.022115271538496,-0.999711751937866,-0.00934048742055893,0.0433633737266064,-0.998963236808777,0.0138585595414042,0.40010604262352,0.871095597743988,0.284793943166733,0.837444067001343,0.0793969705700874,0.540724992752075,0.955037951469421,0.102600514888763,0.278164654970169,0.448807656764984,0.883545100688934,0.133864760398865,-0.10980311781168,0.0644054636359215,0.991864442825317,-0.372070908546448,0.018238877877593,0.928025126457214,
- -0.378729075193405,-0.0188047289848328,0.925316452980042,-0.0944887548685074,-0.034518875181675,0.994927287101746,0.0276326108723879,0.999585151672363,0.00812378991395235,-0.0222452338784933,0.999700784683228,-0.0101750874891877,-0.027276923879981,0.999627828598022,-0.000405679165851325,0.00173334125429392,0.999532341957092,0.0305285528302193,0.0265701878815889,0.999569535255432,0.0124414842575789,0.836360692977905,0.04494434222579,0.546333968639374,-0.108307391405106,0.0574657954275608,0.992455124855042,-0.108410708606243,-0.0934269204735756,0.989706337451935,0.838281035423279,-0.127124667167664,0.530211448669434,-0.0889317765831947,0.0573656260967255,0.994384407997131,-0.395796656608582,0.0387920551002026,0.917518556118011,-0.397440940141678,-0.0256997719407082,0.917267739772797,-0.0927399322390556,-0.0442042909562588,0.994708597660065,-0.10980311781168,0.0644054636359215,0.991864442825317,0.819736957550049,0.00945765618234873,0.572662234306335,0.33372774720192,-0.900906980037689,0.277475237846375,0.00984852202236652,-0.789569139480591,0.613582611083984,-0.395796656608582,0.0387920551002026,0.917518556118011,-0.945617020130157,0.0633793026208878,-0.31904798746109,-0.946934401988983,-0.0754500851035118,-0.312445998191834,-0.397440940141678,-0.0256997719407082,0.917267739772797,-0.929814100265503,0.0762738585472107,-0.360038876533508,-0.917587399482727,0.0720567479729652,-0.390949010848999,-0.918679714202881,-0.0533899068832397,-0.391378432512283,-0.935554146766663,-0.0457669347524643,-0.350205421447754,0.831601321697235,0.0110434517264366,0.555263340473175,0.0388684011995792,-0.998896896839142,0.0263492688536644,0.0433633737266064,-0.998963236808777,0.0138585595414042,0.95939964056015,0.00971737876534462,0.28188282251358,0.815230131149292,0.0315257199108601,0.578278422355652,-0.0889317765831947,0.0573656260967255,0.994384407997131,-0.0927399322390556,-0.0442042909562588,0.994708597660065,0.831601321697235,0.0110434517264366,0.555263340473175,-0.94050532579422,0.0242977421730757,-0.338908970355988,-0.919802963733673,0.0448176674544811,-0.389812618494034,
- -0.916880249977112,-0.0916120186448097,-0.388507068157196,-0.936137437820435,-0.0689774379134178,-0.344802528619766,-0.946176290512085,-0.013201012276113,-0.323382169008255,-0.292780667543411,0.654038846492767,0.697504639625549,-0.0944887548685074,-0.034518875181675,0.994927287101746,-0.378729075193405,-0.0188047289848328,0.925316452980042,-0.41281595826149,0.0336154401302338,0.910193920135498,-0.397771239280701,-0.0828693956136703,0.913734436035156,-0.108410708606243,-0.0934269204735756,0.989706337451935,-0.108307391405106,0.0574657954275608,0.992455124855042,0.826810002326965,-0.0559212863445282,0.559694528579712,0.959725260734558,-0.0531774163246155,0.275861412286758,0.959827303886414,0.0507901422679424,0.275956392288208,0.837235927581787,0.0473388470709324,0.544788897037506,0.837444067001343,0.0793969705700874,0.540724992752075,-0.0588259324431419,0.084877997636795,0.994653344154358,-0.0397283285856247,-0.0253071319311857,0.998889923095703,0.843899548053741,-0.0152260670438409,0.536285042762756,-0.0588259324431419,0.084877997636795,0.994653344154358,-0.379984945058823,0.0855830684304237,0.921025037765503,-0.411246478557587,-0.0184191036969423,0.911338090896606,-0.0397283285856247,-0.0253071319311857,0.998889923095703,0.0810135900974274,0.573855340480804,0.814939737319946,-0.36711710691452,0.769971370697021,0.521890044212341,-0.431358247995377,0.486646741628647,0.759674310684204,-0.0769073441624641,0.0459356196224689,0.99597954750061,-0.411246478557587,-0.0184191036969423,0.911338090896606,-0.476003587245941,-0.25489267706871,0.841694891452789,-0.0397283285856247,-0.0253071319311857,0.998889923095703,-0.102133400738239,0.0263377353549004,0.99442195892334,0.844380974769592,0.0457388870418072,0.533787190914154,0.0265701878815889,0.999569535255432,0.0124414842575789,0.00173334125429392,0.999532341957092,0.0305285528302193,-0.246872469782829,0.728642106056213,0.638854265213013,-0.0983734801411629,-0.0385986603796482,0.994400680065155,-0.377974092960358,-0.01629095710814,0.925672829151154,-0.476003587245941,-0.25489267706871,0.841694891452789,
- -0.936137437820435,-0.0689774379134178,-0.344802528619766,-0.674014389514923,-0.715118885040283,-0.185228452086449,-0.431358247995377,0.486646741628647,0.759674310684204,-0.911728739738464,0.0718600675463676,-0.404458910226822,-0.387656331062317,0.00445031607523561,0.921793282032013,-0.0774492993950844,-0.0524658784270287,0.99561482667923,0.826810002326965,-0.0559212863445282,0.559694528579712,0.837235927581787,0.0473388470709324,0.544788897037506,-0.0769073441624641,0.0459356196224689,0.99597954750061,-0.027276923879981,0.999627828598022,-0.000405679165851325,-0.935319125652313,-0.0118938451632857,-0.353605329990387,-0.375521093606949,0.0413898602128029,0.925889194011688,-0.946934401988983,-0.0754500851035118,-0.312445998191834,-0.915771961212158,-0.0885526761412621,-0.391816645860672,-0.022115271538496,-0.999711751937866,-0.00934048742055893,-0.0441969633102417,-0.998408913612366,0.0350168570876122,-0.38077300786972,-0.0369966737926006,0.923928081989288,-0.0774492993950844,-0.0524658784270287,0.99561482667923,-0.0769073441624641,0.0459356196224689,0.99597954750061,-0.387656331062317,0.00445031607523561,0.921793282032013,-0.923548519611359,0.0218922942876816,-0.382856100797653,-0.38077300786972,-0.0369966737926006,0.923928081989288,-0.387656331062317,0.00445031607523561,0.921793282032013,-0.921605467796326,0.0432208515703678,-0.385714024305344,-0.0889317765831947,0.0573656260967255,0.994384407997131,-0.343499422073364,-0.499661952257156,0.795201897621155,-0.395796656608582,0.0387920551002026,0.917518556118011,0.957607448101044,0.0274789407849312,0.286762714385986,0.33372774720192,-0.900906980037689,0.277475237846375,0.819736957550049,0.00945765618234873,0.572662234306335,-0.0769073441624641,0.0459356196224689,0.99597954750061,0.837235927581787,0.0473388470709324,0.544788897037506,0.731620192527771,0.464147120714188,0.499298840761185,0.0810135900974274,0.573855340480804,0.814939737319946,-0.915916919708252,0.103531219065189,-0.387785315513611,-0.807195484638214,0.479028701782227,-0.344915747642517,-0.770386040210724,0.546414256095886,-0.328537344932556,
- -0.912450909614563,0.104672126471996,-0.395571678876877,-0.0774492993950844,-0.0524658784270287,0.99561482667923,-0.38077300786972,-0.0369966737926006,0.923928081989288,-0.343499422073364,-0.499661952257156,0.795201897621155,-0.0383418537676334,-0.557607233524323,0.829218924045563,-0.746356666088104,0.59863817691803,-0.290833204984665,-0.343499422073364,-0.499661952257156,0.795201897621155,-0.38077300786972,-0.0369966737926006,0.923928081989288,-0.0588259324431419,0.084877997636795,0.994653344154358,0.837444067001343,0.0793969705700874,0.540724992752075,0.40010604262352,0.871095597743988,0.284793943166733,0.0246035717427731,0.859282732009888,0.510908901691437,0.40010604262352,0.871095597743988,0.284793943166733,0.448807656764984,0.883545100688934,0.133864760398865,0.879505693912506,-0.388061970472336,0.275459200143814,0.806571185588837,-0.0190235171467066,0.59083080291748,-0.911728739738464,0.0718600675463676,-0.404458910226822,-0.921605467796326,0.0432208515703678,-0.385714024305344,-0.387656331062317,0.00445031607523561,0.921793282032013,-0.0983734801411629,-0.0385986603796482,0.994400680065155,-0.246872469782829,0.728642106056213,0.638854265213013,-0.0602754168212414,0.344048589468002,0.937015116214752,-0.0769073441624641,0.0459356196224689,0.99597954750061,-0.431358247995377,0.486646741628647,0.759674310684204,-0.387656331062317,0.00445031607523561,0.921793282032013,-0.934259176254272,-0.0254557263106108,-0.355684846639633,-0.739279508590698,0.609283268451691,-0.286774605512619,-0.377974092960358,-0.01629095710814,0.925672829151154,-0.935319125652313,-0.0118938451632857,-0.353605329990387,-0.934259176254272,-0.0254557263106108,-0.355684846639633,-0.377974092960358,-0.01629095710814,0.925672829151154,-0.375521093606949,0.0413898602128029,0.925889194011688,-0.343499422073364,-0.499661952257156,0.795201897621155,-0.945617020130157,0.0633793026208878,-0.31904798746109,-0.395796656608582,0.0387920551002026,0.917518556118011,-0.918632566928864,-0.0523532889783382,-0.391629219055176,-0.694351315498352,-0.665712773799896,-0.27331817150116,
- -0.292780667543411,0.654038846492767,0.697504639625549,0.957607448101044,0.0274789407849312,0.286762714385986,0.517505884170532,-0.841835081577301,0.15330109000206,0.33372774720192,-0.900906980037689,0.277475237846375,-0.343499422073364,-0.499661952257156,0.795201897621155,-0.0889317765831947,0.0573656260967255,0.994384407997131,-0.0383418537676334,-0.557607233524323,0.829218924045563,-0.372070908546448,0.018238877877593,0.928025126457214,-0.10980311781168,0.0644054636359215,0.991864442825317,0.00984852202236652,-0.789569139480591,0.613582611083984,-0.329273879528046,-0.0833736509084702,0.94054639339447,0.837235927581787,0.0473388470709324,0.544788897037506,0.959827303886414,0.0507901422679424,0.275956392288208,0.844850599765778,0.475474119186401,0.245258778333664,0.731620192527771,0.464147120714188,0.499298840761185,-0.929814100265503,0.0762738585472107,-0.360038876533508,-0.935554146766663,-0.0457669347524643,-0.350205421447754,-0.397771239280701,-0.0828693956136703,0.913734436035156,-0.41281595826149,0.0336154401302338,0.910193920135498,0.00984852202236652,-0.789569139480591,0.613582611083984,-0.108410708606243,-0.0934269204735756,0.989706337451935,-0.397771239280701,-0.0828693956136703,0.913734436035156,-0.329273879528046,-0.0833736509084702,0.94054639339447,0.0810135900974274,0.573855340480804,0.814939737319946,-0.0397283285856247,-0.0253071319311857,0.998889923095703,-0.476003587245941,-0.25489267706871,0.841694891452789,-0.246872469782829,0.728642106056213,0.638854265213013,-0.739279508590698,0.609283268451691,-0.286774605512619,-0.41281595826149,0.0336154401302338,0.910193920135498,-0.0927399322390556,-0.0442042909562588,0.994708597660065,-0.0112457741051912,-0.986473262310028,0.163536295294762,0.0388684011995792,-0.998896896839142,0.0263492688536644,-0.0588259324431419,0.084877997636795,0.994653344154358,0.0246035717427731,0.859282732009888,0.510908901691437,-0.292780667543411,0.654038846492767,0.697504639625549,-0.379984945058823,0.0855830684304237,0.921025037765503,-0.0441969633102417,-0.998408913612366,0.0350168570876122,
- -0.397440940141678,-0.0256997719407082,0.917267739772797,-0.946934401988983,-0.0754500851035118,-0.312445998191834,-0.102133400738239,0.0263377353549004,0.99442195892334,0.00173334125429392,0.999532341957092,0.0305285528302193,-0.027276923879981,0.999627828598022,-0.000405679165851325,-0.375521093606949,0.0413898602128029,0.925889194011688,-0.372070908546448,0.018238877877593,0.928025126457214,-0.915916919708252,0.103531219065189,-0.387785315513611,-0.918632566928864,-0.0523532889783382,-0.391629219055176,-0.378729075193405,-0.0188047289848328,0.925316452980042,-0.329273879528046,-0.0833736509084702,0.94054639339447,-0.915916919708252,0.103531219065189,-0.387785315513611,-0.372070908546448,0.018238877877593,0.928025126457214,-0.934259176254272,-0.0254557263106108,-0.355684846639633,-0.920999109745026,-0.0289453156292439,-0.388487637042999,-0.692085981369019,0.659807503223419,-0.292696386575699,-0.739279508590698,0.609283268451691,-0.286774605512619,-0.397771239280701,-0.0828693956136703,0.913734436035156,-0.935554146766663,-0.0457669347524643,-0.350205421447754,-0.329273879528046,-0.0833736509084702,0.94054639339447,-0.0983734801411629,-0.0385986603796482,0.994400680065155,0.83628261089325,-0.0553830824792385,0.545494377613068,0.844380974769592,0.0457388870418072,0.533787190914154,-0.102133400738239,0.0263377353549004,0.99442195892334,-0.934259176254272,-0.0254557263106108,-0.355684846639633,-0.935319125652313,-0.0118938451632857,-0.353605329990387,-0.921320378780365,-0.0122508993372321,-0.388611197471619,-0.920999109745026,-0.0289453156292439,-0.388487637042999,-0.292780667543411,0.654038846492767,0.697504639625549,-0.694351315498352,-0.665712773799896,-0.27331817150116,-0.94050532579422,0.0242977421730757,-0.338908970355988,-0.379984945058823,0.0855830684304237,0.921025037765503,-0.379984945058823,0.0855830684304237,0.921025037765503,-0.94050532579422,0.0242977421730757,-0.338908970355988,-0.946176290512085,-0.013201012276113,-0.323382169008255,-0.411246478557587,-0.0184191036969423,0.911338090896606,-0.431358247995377,0.486646741628647,0.759674310684204,
- -0.36711710691452,0.769971370697021,0.521890044212341,-0.674014389514923,-0.715118885040283,-0.185228452086449,-0.911728739738464,0.0718600675463676,-0.404458910226822,-0.746356666088104,0.59863817691803,-0.290833204984665,-0.923548519611359,0.0218922942876816,-0.382856100797653,-0.921030879020691,-0.0056670131161809,-0.389448374509811,-0.699432253837585,0.650944352149963,-0.295069396495819,-0.945617020130157,0.0633793026208878,-0.31904798746109,-0.913803040981293,0.109839603304863,-0.391023248434067,-0.915771961212158,-0.0885526761412621,-0.391816645860672,-0.946934401988983,-0.0754500851035118,-0.312445998191834,-0.0441969633102417,-0.998408913612366,0.0350168570876122,0.0388684011995792,-0.998896896839142,0.0263492688536644,-0.0112457741051912,-0.986473262310028,0.163536295294762,-0.0441969633102417,-0.998408913612366,0.0350168570876122,-0.0112457741051912,-0.986473262310028,0.163536295294762,-0.0927399322390556,-0.0442042909562588,0.994708597660065,-0.397440940141678,-0.0256997719407082,0.917267739772797,0.95939964056015,0.00971737876534462,0.28188282251358,0.958990573883057,0.0298198517411947,0.281864881515503,0.815230131149292,0.0315257199108601,0.578278422355652,0.831601321697235,0.0110434517264366,0.555263340473175,0.816801011562347,-0.525319159030914,0.238486438989639,0.959725260734558,-0.0531774163246155,0.275861412286758,0.826810002326965,-0.0559212863445282,0.559694528579712,-0.476003587245941,-0.25489267706871,0.841694891452789,-0.411246478557587,-0.0184191036969423,0.911338090896606,-0.946176290512085,-0.013201012276113,-0.323382169008255,-0.936137437820435,-0.0689774379134178,-0.344802528619766,0.0810135900974274,0.573855340480804,0.814939737319946,0.731620192527771,0.464147120714188,0.499298840761185,0.843899548053741,-0.0152260670438409,0.536285042762756,-0.0397283285856247,-0.0253071319311857,0.998889923095703,0.0246035717427731,0.859282732009888,0.510908901691437,-0.0944887548685074,-0.034518875181675,0.994927287101746,-0.292780667543411,0.654038846492767,0.697504639625549,0.40010604262352,0.871095597743988,0.284793943166733,
- 0.806571185588837,-0.0190235171467066,0.59083080291748,-0.0944887548685074,-0.034518875181675,0.994927287101746,0.0246035717427731,0.859282732009888,0.510908901691437,-0.618845343589783,-0.740038573741913,-0.263388156890869,-0.919802963733673,0.0448176674544811,-0.389812618494034,-0.94050532579422,0.0242977421730757,-0.338908970355988,-0.694351315498352,-0.665712773799896,-0.27331817150116,-0.918632566928864,-0.0523532889783382,-0.391629219055176,-0.292780667543411,0.654038846492767,0.697504639625549,-0.378729075193405,-0.0188047289848328,0.925316452980042,0.819736957550049,0.00945765618234873,0.572662234306335,-0.10980311781168,0.0644054636359215,0.991864442825317,-0.0944887548685074,-0.034518875181675,0.994927287101746,0.806571185588837,-0.0190235171467066,0.59083080291748,0.33372774720192,-0.900906980037689,0.277475237846375,0.838281035423279,-0.127124667167664,0.530211448669434,-0.108410708606243,-0.0934269204735756,0.989706337451935,0.00984852202236652,-0.789569139480591,0.613582611083984,0.0810135900974274,0.573855340480804,0.814939737319946,-0.476003587245941,-0.25489267706871,0.841694891452789,-0.36711710691452,0.769971370697021,0.521890044212341,-0.674014389514923,-0.715118885040283,-0.185228452086449,-0.36711710691452,0.769971370697021,0.521890044212341,-0.476003587245941,-0.25489267706871,0.841694891452789,-0.329273879528046,-0.0833736509084702,0.94054639339447,-0.807195484638214,0.479028701782227,-0.344915747642517,-0.915916919708252,0.103531219065189,-0.387785315513611,-0.935554146766663,-0.0457669347524643,-0.350205421447754,-0.807195484638214,0.479028701782227,-0.344915747642517,-0.329273879528046,-0.0833736509084702,0.94054639339447,-0.343499422073364,-0.499661952257156,0.795201897621155,-0.746356666088104,0.59863817691803,-0.290833204984665,-0.945617020130157,0.0633793026208878,-0.31904798746109,-0.699432253837585,0.650944352149963,-0.295069396495819,-0.913803040981293,0.109839603304863,-0.391023248434067,-0.945617020130157,0.0633793026208878,-0.31904798746109,-0.746356666088104,0.59863817691803,-0.290833204984665,
- 0.826810002326965,-0.0559212863445282,0.559694528579712,0.502227902412415,-0.704653918743134,0.501228451728821,0.816801011562347,-0.525319159030914,0.238486438989639,-0.0383418537676334,-0.557607233524323,0.829218924045563,0.502227902412415,-0.704653918743134,0.501228451728821,0.826810002326965,-0.0559212863445282,0.559694528579712,-0.0774492993950844,-0.0524658784270287,0.99561482667923,0.816801011562347,-0.525319159030914,0.238486438989639,0.502227902412415,-0.704653918743134,0.501228451728821,0.815230131149292,0.0315257199108601,0.578278422355652,-0.0889317765831947,0.0573656260967255,0.994384407997131,0.815230131149292,0.0315257199108601,0.578278422355652,0.502227902412415,-0.704653918743134,0.501228451728821,-0.0383418537676334,-0.557607233524323,0.829218924045563,0.815230131149292,0.0315257199108601,0.578278422355652,0.958990573883057,0.0298198517411947,0.281864881515503,0.816801011562347,-0.525319159030914,0.238486438989639,-0.746356666088104,0.59863817691803,-0.290833204984665,-0.38077300786972,-0.0369966737926006,0.923928081989288,-0.923548519611359,0.0218922942876816,-0.382856100797653,0.797354459762573,-0.192967444658279,0.571829915046692,0.955476999282837,-0.0998771041631699,0.277647912502289,0.83628261089325,-0.0553830824792385,0.545494377613068,0.836360692977905,0.04494434222579,0.546333968639374,0.958963394165039,0.0511213913559914,0.278883159160614,0.955476999282837,-0.0998771041631699,0.277647912502289,0.797354459762573,-0.192967444658279,0.571829915046692,-0.108307391405106,0.0574657954275608,0.992455124855042,0.836360692977905,0.04494434222579,0.546333968639374,0.797354459762573,-0.192967444658279,0.571829915046692,-0.0602754168212414,0.344048589468002,0.937015116214752,-0.0602754168212414,0.344048589468002,0.937015116214752,0.797354459762573,-0.192967444658279,0.571829915046692,0.83628261089325,-0.0553830824792385,0.545494377613068,-0.0983734801411629,-0.0385986603796482,0.994400680065155,-0.377974092960358,-0.01629095710814,0.925672829151154,-0.0983734801411629,-0.0385986603796482,0.994400680065155,
- -0.102133400738239,0.0263377353549004,0.99442195892334,-0.375521093606949,0.0413898602128029,0.925889194011688,-0.0602754168212414,0.344048589468002,0.937015116214752,-0.246872469782829,0.728642106056213,0.638854265213013,-0.41281595826149,0.0336154401302338,0.910193920135498,-0.108307391405106,0.0574657954275608,0.992455124855042,-0.377974092960358,-0.01629095710814,0.925672829151154,-0.739279508590698,0.609283268451691,-0.286774605512619,-0.246872469782829,0.728642106056213,0.638854265213013,-0.41281595826149,0.0336154401302338,0.910193920135498,-0.739279508590698,0.609283268451691,-0.286774605512619,-0.929814100265503,0.0762738585472107,-0.360038876533508,-0.0927399322390556,-0.0442042909562588,0.994708597660065,0.0388684011995792,-0.998896896839142,0.0263492688536644,0.831601321697235,0.0110434517264366,0.555263340473175,-0.915916919708252,0.103531219065189,-0.387785315513611,-0.912450909614563,0.104672126471996,-0.395571678876877,-0.913663566112518,-0.0910548493266106,-0.396141201257706,-0.918632566928864,-0.0523532889783382,-0.391629219055176,-0.913663566112518,-0.0910548493266106,-0.396141201257706,-0.618845343589783,-0.740038573741913,-0.263388156890869,-0.694351315498352,-0.665712773799896,-0.27331817150116,-0.918632566928864,-0.0523532889783382,-0.391629219055176,-0.0222452338784933,0.999700784683228,-0.0101750874891877,-0.921320378780365,-0.0122508993372321,-0.388611197471619,-0.935319125652313,-0.0118938451632857,-0.353605329990387,-0.027276923879981,0.999627828598022,-0.000405679165851325,-0.918679714202881,-0.0533899068832397,-0.391378432512283,-0.770386040210724,0.546414256095886,-0.328537344932556,-0.807195484638214,0.479028701782227,-0.344915747642517,-0.935554146766663,-0.0457669347524643,-0.350205421447754,0.96008312702179,0.0533669665455818,0.274576485157013,0.0276326108723879,0.999585151672363,0.00812378991395235,0.0265701878815889,0.999569535255432,0.0124414842575789,0.844380974769592,0.0457388870418072,0.533787190914154,0.838281035423279,-0.127124667167664,0.530211448669434,0.95020854473114,-0.143896237015724,0.276401340961456,
- 0.958963394165039,0.0511213913559914,0.278883159160614,0.836360692977905,0.04494434222579,0.546333968639374,0.958085954189301,0.0190946012735367,0.28584349155426,0.517505884170532,-0.841835081577301,0.15330109000206,0.957607448101044,0.0274789407849312,0.286762714385986,-0.692085981369019,0.659807503223419,-0.292696386575699,-0.917587399482727,0.0720567479729652,-0.390949010848999,-0.929814100265503,0.0762738585472107,-0.360038876533508,-0.739279508590698,0.609283268451691,-0.286774605512619,-0.916880249977112,-0.0916120186448097,-0.388507068157196,-0.63613760471344,-0.724256992340088,-0.266046583652496,-0.674014389514923,-0.715118885040283,-0.185228452086449,-0.936137437820435,-0.0689774379134178,-0.344802528619766,0.448807656764984,0.883545100688934,0.133864760398865,0.958266973495483,-0.00203788769431412,0.28586745262146,0.879505693912506,-0.388061970472336,0.275459200143814,0.844850599765778,0.475474119186401,0.245258778333664,0.96002721786499,-0.0154680153355002,0.279479146003723,0.843899548053741,-0.0152260670438409,0.536285042762756,0.731620192527771,0.464147120714188,0.499298840761185,0.955476999282837,-0.0998771041631699,0.277647912502289,0.960086464881897,-0.0539438650012016,0.274452060461044,0.83628261089325,-0.0553830824792385,0.545494377613068,0.960086464881897,-0.0539438650012016,0.274452060461044,0.96008312702179,0.0533669665455818,0.274576485157013,0.844380974769592,0.0457388870418072,0.533787190914154,0.83628261089325,-0.0553830824792385,0.545494377613068,-0.63613760471344,-0.724256992340088,-0.266046583652496,-0.91865485906601,0.0724752768874168,-0.388356387615204,-0.911728739738464,0.0718600675463676,-0.404458910226822,-0.674014389514923,-0.715118885040283,-0.185228452086449,-0.91865485906601,0.0724752768874168,-0.388356387615204,-0.921030879020691,-0.0056670131161809,-0.389448374509811,-0.923548519611359,0.0218922942876816,-0.382856100797653,-0.921605467796326,0.0432208515703678,-0.385714024305344,-0.911728739738464,0.0718600675463676,-0.404458910226822,0.96002721786499,-0.0154680153355002,0.279479146003723,
- 0.955037951469421,0.102600514888763,0.278164654970169,0.837444067001343,0.0793969705700874,0.540724992752075,0.843899548053741,-0.0152260670438409,0.536285042762756,0.517505884170532,-0.841835081577301,0.15330109000206,0.95020854473114,-0.143896237015724,0.276401340961456,0.838281035423279,-0.127124667167664,0.530211448669434,0.33372774720192,-0.900906980037689,0.277475237846375,0.958266973495483,-0.00203788769431412,0.28586745262146,0.958085954189301,0.0190946012735367,0.28584349155426,0.957607448101044,0.0274789407849312,0.286762714385986,0.819736957550049,0.00945765618234873,0.572662234306335,0.806571185588837,-0.0190235171467066,0.59083080291748,0.958266973495483,-0.00203788769431412,0.28586745262146,0.806571185588837,-0.0190235171467066,0.59083080291748,0.879505693912506,-0.388061970472336,0.275459200143814,0.0390730276703835,-0.99886167049408,0.0273620430380106,-0.0449180193245411,-0.998550355434418,0.0296587701886892,-0.0223664212971926,-0.999704122543335,-0.00955477450042963,0.042688887566328,-0.998992741107941,0.013828213326633,0.914378941059113,-0.0555405803024769,0.401031613349915,0.735400319099426,-0.485833615064621,0.472389549016953,0.858124136924744,-0.472634583711624,0.200597688555717,0.965173244476318,-0.159912496805191,0.207047089934349,-0.04671436175704,-0.142458498477936,0.988697707653046,-0.226700574159622,0.0314339883625507,0.973457038402557,-0.268328130245209,0.0261316020041704,0.962973058223724,-0.117912091314793,-0.178038313984871,0.976933538913727,0.999150097370148,-0.0408734418451786,-0.00532137928530574,0.999895334243774,0.0134341483935714,-0.00536413677036762,0.999805569648743,0.0140439793467522,0.0138460248708725,0.999351620674133,-0.0312540046870708,0.017874289304018,0.998980641365051,-0.0448780991137028,-0.0048664384521544,0.361052453517914,-0.872081875801086,0.330324292182922,-0.0155842872336507,-0.16847288608551,0.985583126544952,-0.102673344314098,-0.188759997487068,0.976641058921814,0.232738465070724,-0.922944366931915,0.30660492181778,-0.403857976198196,-0.0231566168367863,0.914528489112854,
- -0.11890809237957,-0.0405779369175434,0.992075800895691,-0.121108539402485,0.0274419728666544,0.992259860038757,-0.402510434389114,0.0337891392409801,0.914791584014893,-0.04671436175704,-0.142458498477936,0.988697707653046,0.518964648246765,-0.749286890029907,0.411393731832504,-0.45593935251236,-0.882069945335388,0.118625402450562,-0.334587305784225,-0.423281520605087,0.841952562332153,-0.940053641796112,0.124533616006374,-0.317475020885468,-0.947899758815765,0.0302378740161657,-0.317130535840988,-0.403857976198196,-0.0231566168367863,0.914528489112854,-0.402510434389114,0.0337891392409801,0.914791584014893,-0.34895583987236,0.93685108423233,-0.0232322793453932,-0.362463355064392,0.930208623409271,-0.0577255636453629,-0.436276972293854,0.896964251995087,-0.0715381130576134,-0.418537586927414,0.907878160476685,-0.0241559389978647,0.822763681411743,-0.0621893554925919,0.564971148967743,0.0390730276703835,-0.99886167049408,0.0273620430380106,0.042688887566328,-0.998992741107941,0.013828213326633,0.957248091697693,-0.0651321709156036,0.281840026378632,-0.121108539402485,0.0274419728666544,0.992259860038757,-0.11890809237957,-0.0405779369175434,0.992075800895691,0.822763681411743,-0.0621893554925919,0.564971148967743,0.80905419588089,-0.029714172706008,0.586982369422913,-0.7698894739151,0.599339187145233,-0.219232007861137,-0.762100398540497,0.592979311943054,-0.259958684444427,-0.799619674682617,0.534302890300751,-0.274096131324768,-0.793986678123474,0.557922065258026,-0.241470664739609,-0.789705395698547,0.573221683502197,-0.218591719865799,-0.164491236209869,0.174635946750641,0.97079598903656,-0.117912091314793,-0.178038313984871,0.976933538913727,-0.268328130245209,0.0261316020041704,0.962973058223724,-0.132147371768951,0.100983515381813,0.986072719097137,-0.194411978125572,0.0564979985356331,0.979291558265686,-0.102673344314098,-0.188759997487068,0.976641058921814,-0.0155842872336507,-0.16847288608551,0.985583126544952,0.742925822734833,-0.401833057403564,0.535342454910278,0.879900336265564,-0.411006033420563,0.238431185483933,
- 0.935492336750031,-0.247013300657272,0.252663135528564,0.809448599815369,-0.260229110717773,0.52637779712677,-0.055496908724308,-0.107910983264446,0.992610335350037,-0.10352335870266,-0.155049815773964,0.982467591762543,0.679975807666779,-0.564322113990784,0.4681596159935,0.735400319099426,-0.485833615064621,0.472389549016953,-0.358942687511444,0.0286551844328642,0.932919681072235,-0.10352335870266,-0.155049815773964,0.982467591762543,-0.055496908724308,-0.107910983264446,0.992610335350037,-0.295935213565826,0.0585918128490448,0.953409314155579,0.367654114961624,0.335456073284149,0.86735200881958,-0.257845222949982,0.613192915916443,0.746666133403778,-0.208552181720734,0.479456901550293,0.852424144744873,-0.0881201699376106,-0.0142000606283545,0.996008634567261,-0.358942687511444,0.0286551844328642,0.932919681072235,-0.539517343044281,-0.138511151075363,0.830503344535828,-0.10352335870266,-0.155049815773964,0.982467591762543,-0.000993048422969878,-0.188359290361404,0.982099711894989,0.114736080169678,-0.950108349323273,0.290051490068436,0.998980641365051,-0.0448780991137028,-0.0048664384521544,0.999351620674133,-0.0312540046870708,0.017874289304018,0.496660739183426,0.1941007822752,0.845962703227997,-0.0501204915344715,-0.192554697394371,0.980005383491516,-0.0679413452744484,0.0553827658295631,0.99615091085434,-0.539517343044281,-0.138511151075363,0.830503344535828,-0.793986678123474,0.557922065258026,-0.241470664739609,-0.959993124008179,-0.0679504573345184,-0.271654069423676,-0.208552181720734,0.479456901550293,0.852424144744873,-0.867399632930756,0.360257774591446,-0.343266993761063,-0.371096551418304,0.0276373103260994,0.928182899951935,-0.138476803898811,-0.133431181311607,0.981335997581482,0.742925822734833,-0.401833057403564,0.535342454910278,0.809448599815369,-0.260229110717773,0.52637779712677,-0.0881201699376106,-0.0142000606283545,0.996008634567261,0.999805569648743,0.0140439793467522,0.0138460248708725,-0.0909535363316536,0.995400428771973,0.0300922971218824,-0.020675964653492,0.0559755563735962,0.99821799993515,
- -0.947899758815765,0.0302378740161657,-0.317130535840988,-0.919320583343506,0.0177840534597635,-0.393107444047928,-0.0223664212971926,-0.999704122543335,-0.00955477450042963,-0.0449180193245411,-0.998550355434418,0.0296587701886892,-0.371096551418304,0.0276373103260994,0.928182899951935,-0.38154748082161,-0.0263062864542007,0.923974812030792,-0.138476803898811,-0.133431181311607,0.981335997581482,-0.0881201699376106,-0.0142000606283545,0.996008634567261,-0.878584623336792,0.343253791332245,-0.332063227891922,-0.884711742401123,0.326587110757828,-0.332604855298996,-0.38154748082161,-0.0263062864542007,0.923974812030792,-0.371096551418304,0.0276373103260994,0.928182899951935,-0.121108539402485,0.0274419728666544,0.992259860038757,-0.418808400630951,-0.443782597780228,0.792247712612152,-0.402510434389114,0.0337891392409801,0.914791584014893,0.632689774036407,-0.766064167022705,0.113355614244938,-0.45593935251236,-0.882069945335388,0.118625402450562,0.518964648246765,-0.749286890029907,0.411393731832504,-0.0881201699376106,-0.0142000606283545,0.996008634567261,0.809448599815369,-0.260229110717773,0.52637779712677,0.863006472587585,0.0895477831363678,0.497193306684494,0.367654114961624,0.335456073284149,0.86735200881958,-0.530703127384186,0.83729875087738,-0.13147234916687,-0.0536183156073093,0.998440265655518,-0.0155618563294411,-0.0952905714511871,0.995291590690613,-0.0177307147532701,-0.531003355979919,0.83540403842926,-0.141899645328522,-0.138476803898811,-0.133431181311607,0.981335997581482,-0.38154748082161,-0.0263062864542007,0.923974812030792,-0.418808400630951,-0.443782597780228,0.792247712612152,-0.155344575643539,-0.674838125705719,0.721430122852325,-0.534974634647369,0.823823690414429,-0.187394246459007,-0.418808400630951,-0.443782597780228,0.792247712612152,-0.38154748082161,-0.0263062864542007,0.923974812030792,-0.055496908724308,-0.107910983264446,0.992610335350037,0.735400319099426,-0.485833615064621,0.472389549016953,0.914378941059113,-0.0555405803024769,0.401031613349915,0.314364969730377,0.280150771141052,0.907022714614868,
- -0.867399632930756,0.360257774591446,-0.343266993761063,-0.878584623336792,0.343253791332245,-0.332063227891922,-0.371096551418304,0.0276373103260994,0.928182899951935,-0.0501204915344715,-0.192554697394371,0.980005383491516,0.496660739183426,0.1941007822752,0.845962703227997,0.476255863904953,-0.110963717103004,0.872277081012726,-0.0881201699376106,-0.0142000606283545,0.996008634567261,-0.208552181720734,0.479456901550293,0.852424144744873,-0.371096551418304,0.0276373103260994,0.928182899951935,-0.148102432489395,0.98857319355011,0.0280865915119648,-0.321370363235474,0.946844875812531,-0.0143445739522576,-0.0679413452744484,0.0553827658295631,0.99615091085434,-0.0909535363316536,0.995400428771973,0.0300922971218824,-0.148102432489395,0.98857319355011,0.0280865915119648,-0.0679413452744484,0.0553827658295631,0.99615091085434,-0.020675964653492,0.0559755563735962,0.99821799993515,-0.418808400630951,-0.443782597780228,0.792247712612152,-0.940053641796112,0.124533616006374,-0.317475020885468,-0.402510434389114,0.0337891392409801,0.914791584014893,-0.611448287963867,0.775674104690552,-0.156398877501488,-0.954276263713837,0.103418834507465,-0.280466675758362,-0.164491236209869,0.174635946750641,0.97079598903656,0.632689774036407,-0.766064167022705,0.113355614244938,-0.262747377157211,-0.964121699333191,-0.0378576889634132,-0.45593935251236,-0.882069945335388,0.118625402450562,-0.418808400630951,-0.443782597780228,0.792247712612152,-0.121108539402485,0.0274419728666544,0.992259860038757,-0.155344575643539,-0.674838125705719,0.721430122852325,-0.226700574159622,0.0314339883625507,0.973457038402557,-0.04671436175704,-0.142458498477936,0.988697707653046,-0.334587305784225,-0.423281520605087,0.841952562332153,0.0302534010261297,0.136288061738014,0.990207195281982,0.809448599815369,-0.260229110717773,0.52637779712677,0.935492336750031,-0.247013300657272,0.252663135528564,0.959857761859894,0.124494329094887,0.251344710588455,0.863006472587585,0.0895477831363678,0.497193306684494,-0.34895583987236,0.93685108423233,-0.0232322793453932,
- -0.418537586927414,0.907878160476685,-0.0241559389978647,-0.194411978125572,0.0564979985356331,0.979291558265686,-0.132147371768951,0.100983515381813,0.986072719097137,-0.334587305784225,-0.423281520605087,0.841952562332153,-0.102673344314098,-0.188759997487068,0.976641058921814,-0.194411978125572,0.0564979985356331,0.979291558265686,0.0302534010261297,0.136288061738014,0.990207195281982,0.367654114961624,0.335456073284149,0.86735200881958,-0.10352335870266,-0.155049815773964,0.982467591762543,-0.539517343044281,-0.138511151075363,0.830503344535828,0.496660739183426,0.1941007822752,0.845962703227997,-0.321370363235474,0.946844875812531,-0.0143445739522576,-0.132147371768951,0.100983515381813,0.986072719097137,-0.11890809237957,-0.0405779369175434,0.992075800895691,-0.021211901679635,-0.98438960313797,0.174720257520676,0.0390730276703835,-0.99886167049408,0.0273620430380106,-0.055496908724308,-0.107910983264446,0.992610335350037,0.314364969730377,0.280150771141052,0.907022714614868,-0.164491236209869,0.174635946750641,0.97079598903656,-0.295935213565826,0.0585918128490448,0.953409314155579,-0.0449180193245411,-0.998550355434418,0.0296587701886892,-0.403857976198196,-0.0231566168367863,0.914528489112854,-0.947899758815765,0.0302378740161657,-0.317130535840988,-0.000993048422969878,-0.188359290361404,0.982099711894989,0.999351620674133,-0.0312540046870708,0.017874289304018,0.999805569648743,0.0140439793467522,0.0138460248708725,-0.020675964653492,0.0559755563735962,0.99821799993515,-0.530703127384186,0.83729875087738,-0.13147234916687,-0.611448287963867,0.775674104690552,-0.156398877501488,-0.268328130245209,0.0261316020041704,0.962973058223724,-0.226700574159622,0.0314339883625507,0.973457038402557,0.0302534010261297,0.136288061738014,0.990207195281982,-0.530703127384186,0.83729875087738,-0.13147234916687,-0.226700574159622,0.0314339883625507,0.973457038402557,-0.148102432489395,0.98857319355011,0.0280865915119648,-0.156405359506607,0.987655520439148,-0.00859432015568018,-0.224579781293869,0.974178075790405,-0.0232625734061003,
- -0.321370363235474,0.946844875812531,-0.0143445739522576,-0.194411978125572,0.0564979985356331,0.979291558265686,-0.418537586927414,0.907878160476685,-0.0241559389978647,0.0302534010261297,0.136288061738014,0.990207195281982,-0.0501204915344715,-0.192554697394371,0.980005383491516,0.0668067261576653,-0.95007199048996,0.304795175790787,0.114736080169678,-0.950108349323273,0.290051490068436,-0.000993048422969878,-0.188359290361404,0.982099711894989,-0.148102432489395,0.98857319355011,0.0280865915119648,-0.0909535363316536,0.995400428771973,0.0300922971218824,-0.0954900309443474,0.995413899421692,-0.00572490319609642,-0.156405359506607,0.987655520439148,-0.00859432015568018,-0.164491236209869,0.174635946750641,0.97079598903656,-0.954276263713837,0.103418834507465,-0.280466675758362,-0.7698894739151,0.599339187145233,-0.219232007861137,-0.295935213565826,0.0585918128490448,0.953409314155579,-0.789705395698547,0.573221683502197,-0.218591719865799,-0.358942687511444,0.0286551844328642,0.932919681072235,-0.295935213565826,0.0585918128490448,0.953409314155579,-0.7698894739151,0.599339187145233,-0.219232007861137,-0.208552181720734,0.479456901550293,0.852424144744873,-0.257845222949982,0.613192915916443,0.746666133403778,-0.959993124008179,-0.0679504573345184,-0.271654069423676,-0.867399632930756,0.360257774591446,-0.343266993761063,-0.534974634647369,0.823823690414429,-0.187394246459007,-0.884711742401123,0.326587110757828,-0.332604855298996,-0.888562560081482,0.291549175977707,-0.354197323322296,-0.477222889661789,0.856414139270782,-0.197010323405266,-0.940053641796112,0.124533616006374,-0.317475020885468,-0.908539116382599,0.154093161225319,-0.388344883918762,-0.919320583343506,0.0177840534597635,-0.393107444047928,-0.947899758815765,0.0302378740161657,-0.317130535840988,-0.0449180193245411,-0.998550355434418,0.0296587701886892,0.0390730276703835,-0.99886167049408,0.0273620430380106,-0.021211901679635,-0.98438960313797,0.174720257520676,-0.0449180193245411,-0.998550355434418,0.0296587701886892,-0.021211901679635,-0.98438960313797,0.174720257520676,
- -0.11890809237957,-0.0405779369175434,0.992075800895691,-0.403857976198196,-0.0231566168367863,0.914528489112854,0.822763681411743,-0.0621893554925919,0.564971148967743,0.957248091697693,-0.0651321709156036,0.281840026378632,0.95897912979126,-0.0269902274012566,0.282188922166824,0.80905419588089,-0.029714172706008,0.586982369422913,0.4785475730896,-0.866970539093018,0.139119729399681,0.879900336265564,-0.411006033420563,0.238431185483933,0.742925822734833,-0.401833057403564,0.535342454910278,-0.539517343044281,-0.138511151075363,0.830503344535828,-0.358942687511444,0.0286551844328642,0.932919681072235,-0.789705395698547,0.573221683502197,-0.218591719865799,-0.793986678123474,0.557922065258026,-0.241470664739609,0.367654114961624,0.335456073284149,0.86735200881958,0.863006472587585,0.0895477831363678,0.497193306684494,0.679975807666779,-0.564322113990784,0.4681596159935,-0.10352335870266,-0.155049815773964,0.982467591762543,0.314364969730377,0.280150771141052,0.907022714614868,-0.117912091314793,-0.178038313984871,0.976933538913727,-0.164491236209869,0.174635946750641,0.97079598903656,0.914378941059113,-0.0555405803024769,0.401031613349915,0.478075504302979,-0.775201082229614,0.412925034761429,-0.117912091314793,-0.178038313984871,0.976933538913727,0.314364969730377,0.280150771141052,0.907022714614868,-0.954912602901459,0.064922884106636,-0.289701402187347,-0.762100398540497,0.592979311943054,-0.259958684444427,-0.7698894739151,0.599339187145233,-0.219232007861137,-0.954276263713837,0.103418834507465,-0.280466675758362,-0.611448287963867,0.775674104690552,-0.156398877501488,-0.164491236209869,0.174635946750641,0.97079598903656,-0.268328130245209,0.0261316020041704,0.962973058223724,-0.117912091314793,-0.178038313984871,0.976933538913727,0.478075504302979,-0.775201082229614,0.412925034761429,0.518964648246765,-0.749286890029907,0.411393731832504,-0.04671436175704,-0.142458498477936,0.988697707653046,-0.45593935251236,-0.882069945335388,0.118625402450562,0.232738465070724,-0.922944366931915,0.30660492181778,-0.102673344314098,-0.188759997487068,0.976641058921814,
- -0.334587305784225,-0.423281520605087,0.841952562332153,0.367654114961624,0.335456073284149,0.86735200881958,-0.539517343044281,-0.138511151075363,0.830503344535828,-0.257845222949982,0.613192915916443,0.746666133403778,-0.959993124008179,-0.0679504573345184,-0.271654069423676,-0.257845222949982,0.613192915916443,0.746666133403778,-0.539517343044281,-0.138511151075363,0.830503344535828,0.0302534010261297,0.136288061738014,0.990207195281982,-0.0536183156073093,0.998440265655518,-0.0155618563294411,-0.530703127384186,0.83729875087738,-0.13147234916687,-0.418537586927414,0.907878160476685,-0.0241559389978647,-0.0536183156073093,0.998440265655518,-0.0155618563294411,0.0302534010261297,0.136288061738014,0.990207195281982,-0.418808400630951,-0.443782597780228,0.792247712612152,-0.534974634647369,0.823823690414429,-0.187394246459007,-0.940053641796112,0.124533616006374,-0.317475020885468,-0.477222889661789,0.856414139270782,-0.197010323405266,-0.908539116382599,0.154093161225319,-0.388344883918762,-0.940053641796112,0.124533616006374,-0.317475020885468,-0.534974634647369,0.823823690414429,-0.187394246459007,0.742925822734833,-0.401833057403564,0.535342454910278,0.224663257598877,-0.918357729911804,0.325799703598022,0.4785475730896,-0.866970539093018,0.139119729399681,-0.155344575643539,-0.674838125705719,0.721430122852325,0.224663257598877,-0.918357729911804,0.325799703598022,0.742925822734833,-0.401833057403564,0.535342454910278,-0.138476803898811,-0.133431181311607,0.981335997581482,0.4785475730896,-0.866970539093018,0.139119729399681,0.224663257598877,-0.918357729911804,0.325799703598022,0.80905419588089,-0.029714172706008,0.586982369422913,-0.121108539402485,0.0274419728666544,0.992259860038757,0.80905419588089,-0.029714172706008,0.586982369422913,0.224663257598877,-0.918357729911804,0.325799703598022,-0.155344575643539,-0.674838125705719,0.721430122852325,0.80905419588089,-0.029714172706008,0.586982369422913,0.95897912979126,-0.0269902274012566,0.282188922166824,0.4785475730896,-0.866970539093018,0.139119729399681,-0.534974634647369,0.823823690414429,-0.187394246459007,
- -0.38154748082161,-0.0263062864542007,0.923974812030792,-0.884711742401123,0.326587110757828,-0.332604855298996,0.560271382331848,-0.764705121517181,0.318311274051666,0.58628523349762,-0.808761596679688,0.0466293729841709,0.0668067261576653,-0.95007199048996,0.304795175790787,0.361052453517914,-0.872081875801086,0.330324292182922,0.4364373087883,-0.898540377616882,0.0463411137461662,0.58628523349762,-0.808761596679688,0.0466293729841709,0.560271382331848,-0.764705121517181,0.318311274051666,-0.0155842872336507,-0.16847288608551,0.985583126544952,0.361052453517914,-0.872081875801086,0.330324292182922,0.560271382331848,-0.764705121517181,0.318311274051666,0.476255863904953,-0.110963717103004,0.872277081012726,0.476255863904953,-0.110963717103004,0.872277081012726,0.560271382331848,-0.764705121517181,0.318311274051666,0.0668067261576653,-0.95007199048996,0.304795175790787,-0.0501204915344715,-0.192554697394371,0.980005383491516,-0.0679413452744484,0.0553827658295631,0.99615091085434,-0.0501204915344715,-0.192554697394371,0.980005383491516,-0.000993048422969878,-0.188359290361404,0.982099711894989,-0.020675964653492,0.0559755563735962,0.99821799993515,0.476255863904953,-0.110963717103004,0.872277081012726,0.496660739183426,0.1941007822752,0.845962703227997,-0.132147371768951,0.100983515381813,0.986072719097137,-0.0155842872336507,-0.16847288608551,0.985583126544952,-0.0679413452744484,0.0553827658295631,0.99615091085434,-0.321370363235474,0.946844875812531,-0.0143445739522576,0.496660739183426,0.1941007822752,0.845962703227997,-0.132147371768951,0.100983515381813,0.986072719097137,-0.321370363235474,0.946844875812531,-0.0143445739522576,-0.34895583987236,0.93685108423233,-0.0232322793453932,-0.11890809237957,-0.0405779369175434,0.992075800895691,0.0390730276703835,-0.99886167049408,0.0273620430380106,0.822763681411743,-0.0621893554925919,0.564971148967743,-0.531003355979919,0.83540403842926,-0.141899645328522,-0.658126950263977,0.732177555561066,-0.175456926226616,-0.611448287963867,0.775674104690552,-0.156398877501488,
- -0.530703127384186,0.83729875087738,-0.13147234916687,-0.658126950263977,0.732177555561066,-0.175456926226616,-0.954912602901459,0.064922884106636,-0.289701402187347,-0.954276263713837,0.103418834507465,-0.280466675758362,-0.611448287963867,0.775674104690552,-0.156398877501488,0.999895334243774,0.0134341483935714,-0.00536413677036762,-0.0954900309443474,0.995413899421692,-0.00572490319609642,-0.0909535363316536,0.995400428771973,0.0300922971218824,0.999805569648743,0.0140439793467522,0.0138460248708725,-0.436276972293854,0.896964251995087,-0.0715381130576134,-0.0952905714511871,0.995291590690613,-0.0177307147532701,-0.0536183156073093,0.998440265655518,-0.0155618563294411,-0.418537586927414,0.907878160476685,-0.0241559389978647,0.134385034441948,-0.990921914577484,0.0038086618296802,0.999150097370148,-0.0408734418451786,-0.00532137928530574,0.998980641365051,-0.0448780991137028,-0.0048664384521544,0.114736080169678,-0.950108349323273,0.290051490068436,0.232738465070724,-0.922944366931915,0.30660492181778,0.276665687561035,-0.960588812828064,0.0269290506839752,0.4364373087883,-0.898540377616882,0.0463411137461662,0.361052453517914,-0.872081875801086,0.330324292182922,-0.224579781293869,0.974178075790405,-0.0232625734061003,-0.362463355064392,0.930208623409271,-0.0577255636453629,-0.34895583987236,0.93685108423233,-0.0232322793453932,-0.321370363235474,0.946844875812531,-0.0143445739522576,-0.799619674682617,0.534302890300751,-0.274096131324768,-0.935294330120087,-0.00757955480366945,-0.35378959774971,-0.959993124008179,-0.0679504573345184,-0.271654069423676,-0.793986678123474,0.557922065258026,-0.241470664739609,0.959857761859894,0.124494329094887,0.251344710588455,0.79572319984436,-0.575819373130798,0.187767133116722,0.679975807666779,-0.564322113990784,0.4681596159935,0.863006472587585,0.0895477831363678,0.497193306684494,0.58628523349762,-0.808761596679688,0.0466293729841709,0.0872365459799767,-0.996184468269348,0.00251243030652404,0.0668067261576653,-0.95007199048996,0.304795175790787,0.0872365459799767,-0.996184468269348,0.00251243030652404,
- 0.134385034441948,-0.990921914577484,0.0038086618296802,0.114736080169678,-0.950108349323273,0.290051490068436,0.0668067261576653,-0.95007199048996,0.304795175790787,-0.935294330120087,-0.00757955480366945,-0.35378959774971,-0.873854339122772,0.340154439210892,-0.347380995750427,-0.867399632930756,0.360257774591446,-0.343266993761063,-0.959993124008179,-0.0679504573345184,-0.271654069423676,-0.873854339122772,0.340154439210892,-0.347380995750427,-0.888562560081482,0.291549175977707,-0.354197323322296,-0.884711742401123,0.326587110757828,-0.332604855298996,-0.878584623336792,0.343253791332245,-0.332063227891922,-0.867399632930756,0.360257774591446,-0.343266993761063,0.79572319984436,-0.575819373130798,0.187767133116722,0.858124136924744,-0.472634583711624,0.200597688555717,0.735400319099426,-0.485833615064621,0.472389549016953,0.679975807666779,-0.564322113990784,0.4681596159935,-0.262747377157211,-0.964121699333191,-0.0378576889634132,0.276665687561035,-0.960588812828064,0.0269290506839752,0.232738465070724,-0.922944366931915,0.30660492181778,-0.45593935251236,-0.882069945335388,0.118625402450562,0.5859654545784,-0.803183138370514,0.107430584728718,0.632689774036407,-0.766064167022705,0.113355614244938,0.518964648246765,-0.749286890029907,0.411393731832504,0.478075504302979,-0.775201082229614,0.412925034761429,0.5859654545784,-0.803183138370514,0.107430584728718,0.478075504302979,-0.775201082229614,0.412925034761429,0.914378941059113,-0.0555405803024769,0.401031613349915,0.965173244476318,-0.159912496805191,0.207047089934349,-0.999771058559418,-0.0196189973503351,-0.00853601563721895,-0.99982076883316,-0.0184798706322908,0.00409756181761622,-0.998780488967896,0.0491892285645008,0.00424923980608583,-0.997768461704254,0.0580008663237095,-0.0330767072737217,-0.464841514825821,-0.882711172103882,-0.0688722878694534,-0.483208328485489,-0.868025481700897,0.114199705421925,-0.625767290592194,-0.770402193069458,0.12204821407795,-0.68390965461731,-0.719967484474182,-0.117959707975388,-0.466804325580597,-0.167176619172096,-0.868415713310242,
- -0.499019384384155,-0.0771327018737793,-0.863151252269745,-0.275796681642532,0.0431645214557648,-0.960246324539185,-0.272827088832855,-0.0127289723604918,-0.961978852748871,-0.0284387264400721,-0.999559760093689,0.00845816731452942,-0.0307245049625635,-0.999497354030609,0.0078059802763164,-0.0220821052789688,-0.999684035778046,-0.0120129864662886,0.0148195885121822,-0.999467492103577,-0.0290721766650677,0.0209057629108429,-0.999733686447144,-0.00977678131312132,-0.961616635322571,-0.274014741182327,0.0144723244011402,-0.991436123847961,-0.127440914511681,0.0285160485655069,-0.526205480098724,0.00270530069246888,-0.850353121757507,-0.516649305820465,-0.0945225730538368,-0.850963592529297,-0.0824161991477013,0.0638449266552925,-0.994550824165344,-0.013447642326355,0.051214873790741,-0.998597085475922,-0.0517122820019722,-0.250171035528183,-0.966819584369659,-0.11837837100029,-0.226638823747635,-0.966758131980896,-0.466804325580597,-0.167176619172096,-0.868415713310242,-0.733002722263336,0.239694565534592,-0.636595189571381,-0.844149351119995,0.532298684120178,0.063797228038311,-0.881659746170044,-0.470726162195206,-0.0330603495240211,0.176501005887985,0.981177747249603,-0.0783428847789764,-0.013447642326355,0.051214873790741,-0.998597085475922,-0.0824161991477013,0.0638449266552925,-0.994550824165344,0.144302159547806,0.986470639705658,-0.0777976736426353,0.899817228317261,0.181320682168007,-0.396801829338074,0.882338762283325,0.249337792396545,-0.39913535118103,0.891456544399261,0.270269930362701,-0.363674849271774,0.907909572124481,0.194745287299156,-0.371179908514023,-0.195177271962166,-0.944401800632477,-0.264596164226532,-0.186172932386398,-0.982489407062531,0.00734337139874697,-0.99982076883316,-0.0184798706322908,0.00409756181761622,-0.999771058559418,-0.0196189973503351,-0.00853601563721895,-0.0517122820019722,-0.250171035528183,-0.966819584369659,-0.124586679041386,-0.95066899061203,-0.284088909626007,-0.195177271962166,-0.944401800632477,-0.264596164226532,-0.11837837100029,-0.226638823747635,-0.966758131980896,
- 0.688456952571869,0.686691701412201,-0.233412891626358,0.666910707950592,0.707418739795685,-0.234070256352425,0.660491645336151,0.719651937484741,-0.214130461215973,0.648155093193054,0.738996624946594,-0.183790251612663,0.692107677459717,0.694208860397339,-0.197638541460037,-0.109842881560326,-0.117578104138374,-0.986970126628876,-0.275796681642532,0.0431645214557648,-0.960246324539185,-0.499019384384155,-0.0771327018737793,-0.863151252269745,-0.233593165874481,-0.0224731881171465,-0.972074687480927,-0.516649305820465,-0.0945225730538368,-0.850963592529297,-0.526205480098724,0.00270530069246888,-0.850353121757507,-0.271365463733673,0.0551176741719246,-0.960896909236908,-0.508196949958801,-0.832873463630676,-0.219220340251923,-0.47242859005928,-0.859152376651764,-0.196642428636551,-0.437301486730576,-0.897605776786804,0.0554182156920433,-0.469791084527969,-0.880806267261505,0.0589629858732224,-0.379945993423462,-0.220391497015953,-0.898370027542114,-0.68390965461731,-0.719967484474182,-0.117959707975388,-0.74646258354187,-0.655997931957245,-0.111626178026199,-0.423152655363083,-0.163074806332588,-0.891262292861938,-0.197159379720688,0.0779495015740395,-0.977267622947693,-0.179419234395027,0.00273893098346889,-0.983768880367279,-0.379945993423462,-0.220391497015953,-0.898370027542114,-0.423152655363083,-0.163074806332588,-0.891262292861938,-0.409194320440292,-0.379751831293106,-0.829667687416077,-0.220422998070717,-0.247275784611702,-0.943540334701538,0.349186182022095,-0.137127339839935,-0.926965475082397,0.624546051025391,-0.285713583230972,-0.726849436759949,-0.197159379720688,0.0779495015740395,-0.977267622947693,-0.423152655363083,-0.163074806332588,-0.891262292861938,-0.30947807431221,0.313416391611099,-0.897771418094635,-0.567629277706146,-0.0258172750473022,-0.822879433631897,-0.0220821052789688,-0.999684035778046,-0.0120129864662886,-0.0307245049625635,-0.999497354030609,0.0078059802763164,-0.998874425888062,-0.00518413912504911,0.0471484176814556,-0.212983086705208,-0.576781153678894,-0.788645446300507,-0.307221829891205,0.0166535135358572,-0.951492190361023,
- -0.566324889659882,0.0280680414289236,-0.823704123497009,-0.30947807431221,0.313416391611099,-0.897771418094635,0.716850578784943,0.628000319004059,-0.30288752913475,0.660491645336151,0.719651937484741,-0.214130461215973,0.349186182022095,-0.137127339839935,-0.926965475082397,-0.12258867919445,0.0405276380479336,-0.991629779338837,0.506256520748138,0.857626557350159,-0.0904491916298866,-0.299332678318024,-0.171401903033257,-0.938627421855927,-0.220422998070717,-0.247275784611702,-0.943540334701538,-0.47242859005928,-0.859152376651764,-0.196642428636551,-0.508196949958801,-0.832873463630676,-0.219220340251923,0.0148195885121822,-0.999467492103577,-0.0290721766650677,-0.310177087783813,-0.0218903161585331,-0.950426697731018,0.905720770359039,-0.0335763059556484,-0.422542750835419,0.144302159547806,0.986470639705658,-0.0777976736426353,-0.997768461704254,0.0580008663237095,-0.0330767072737217,-0.998780488967896,0.0491892285645008,0.00424923980608583,0.130488559603691,0.991416752338409,-0.00809981301426888,-0.12258867919445,0.0405276380479336,-0.991629779338837,-0.220422998070717,-0.247275784611702,-0.943540334701538,-0.299332678318024,-0.171401903033257,-0.938627421855927,-0.168126210570335,0.0616417862474918,-0.98383629322052,0.471251338720322,0.876630008220673,-0.0971703752875328,-0.12258867919445,0.0405276380479336,-0.991629779338837,-0.168126210570335,0.0616417862474918,-0.98383629322052,0.440684616565704,0.892745912075043,-0.0938177853822708,-0.0517122820019722,-0.250171035528183,-0.966819584369659,-0.013447642326355,0.051214873790741,-0.998597085475922,-0.706307172775269,0.242265716195107,-0.665159642696381,-0.881659746170044,-0.470726162195206,-0.0330603495240211,-0.844149351119995,0.532298684120178,0.063797228038311,-0.845894932746887,0.48104926943779,0.230333238840103,-0.220422998070717,-0.247275784611702,-0.943540334701538,-0.409194320440292,-0.379751831293106,-0.829667687416077,-0.87139505147934,-0.48102656006813,-0.0963532030582428,-0.47242859005928,-0.859152376651764,-0.196642428636551,0.852237224578857,0.41661924123764,-0.316417545080185,
- 0.852940082550049,0.417063891887665,-0.313928186893463,0.929604709148407,0.0541696026921272,-0.364555418491364,0.934311091899872,0.00955916382372379,-0.356330335140228,-0.299332678318024,-0.171401903033257,-0.938627421855927,-0.145302399992943,-0.354329138994217,-0.923763036727905,-0.706307172775269,0.242265716195107,-0.665159642696381,-0.168126210570335,0.0616417862474918,-0.98383629322052,-0.369763016700745,0.928653478622437,0.0296321455389261,-0.168126210570335,0.0616417862474918,-0.98383629322052,-0.706307172775269,0.242265716195107,-0.665159642696381,-0.379945993423462,-0.220391497015953,-0.898370027542114,-0.114406652748585,-0.664664208889008,-0.738331079483032,-0.464841514825821,-0.882711172103882,-0.0688722878694534,-0.68390965461731,-0.719967484474182,-0.117959707975388,0.506256520748138,0.857626557350159,-0.0904491916298866,-0.12258867919445,0.0405276380479336,-0.991629779338837,0.471251338720322,0.876630008220673,-0.0971703752875328,-0.566324889659882,0.0280680414289236,-0.823704123497009,-0.368657380342484,-0.755244970321655,-0.541938006877899,-0.212983086705208,-0.576781153678894,-0.788645446300507,-0.220422998070717,-0.247275784611702,-0.943540334701538,-0.12258867919445,0.0405276380479336,-0.991629779338837,0.349186182022095,-0.137127339839935,-0.926965475082397,0.902993857860565,0.0884295180439949,-0.420454859733582,-0.307221829891205,0.0166535135358572,-0.951492190361023,0.593573033809662,0.761871814727783,-0.259272515773773,0.905720770359039,-0.0335763059556484,-0.422542750835419,-0.310177087783813,-0.0218903161585331,-0.950426697731018,-0.307221829891205,0.0166535135358572,-0.951492190361023,0.902993857860565,0.0884295180439949,-0.420454859733582,-0.706307172775269,0.242265716195107,-0.665159642696381,-0.013447642326355,0.051214873790741,-0.998597085475922,0.176501005887985,0.981177747249603,-0.0783428847789764,0.822913289070129,0.481545746326447,-0.301541864871979,-0.109842881560326,-0.117578104138374,-0.986970126628876,0.444915801286697,0.882982432842255,-0.149639055132866,-0.881659746170044,-0.470726162195206,-0.0330603495240211,
- -0.845894932746887,0.48104926943779,0.230333238840103,-0.835535645484924,-0.506864905357361,0.212056785821915,-0.706307172775269,0.242265716195107,-0.665159642696381,-0.145302399992943,-0.354329138994217,-0.923763036727905,-0.0517122820019722,-0.250171035528183,-0.966819584369659,-0.272827088832855,-0.0127289723604918,-0.961978852748871,-0.206950545310974,-0.252370744943619,-0.94524097442627,-0.733002722263336,0.239694565534592,-0.636595189571381,-0.466804325580597,-0.167176619172096,-0.868415713310242,-0.47242859005928,-0.859152376651764,-0.196642428636551,-0.87139505147934,-0.48102656006813,-0.0963532030582428,-0.810597240924835,-0.570194661617279,0.133454650640488,-0.437301486730576,-0.897605776786804,0.0554182156920433,0.899817228317261,0.181320682168007,-0.396801829338074,-0.233593165874481,-0.0224731881171465,-0.972074687480927,-0.271365463733673,0.0551176741719246,-0.960896909236908,0.882338762283325,0.249337792396545,-0.39913535118103,-0.733002722263336,0.239694565534592,-0.636595189571381,-0.206950545310974,-0.252370744943619,-0.94524097442627,-0.271365463733673,0.0551176741719246,-0.960896909236908,-0.526205480098724,0.00270530069246888,-0.850353121757507,-0.409194320440292,-0.379751831293106,-0.829667687416077,-0.30947807431221,0.313416391611099,-0.897771418094635,-0.423152655363083,-0.163074806332588,-0.891262292861938,-0.212983086705208,-0.576781153678894,-0.788645446300507,-0.233593165874481,-0.0224731881171465,-0.972074687480927,0.593573033809662,0.761871814727783,-0.259272515773773,-0.11837837100029,-0.226638823747635,-0.966758131980896,-0.999771058559418,-0.0196189973503351,-0.00853601563721895,-0.989313960075378,-0.0100811300799251,-0.145451486110687,-0.379945993423462,-0.220391497015953,-0.898370027542114,-0.179419234395027,0.00273893098346889,-0.983768880367279,-0.109842881560326,-0.117578104138374,-0.986970126628876,-0.114406652748585,-0.664664208889008,-0.738331079483032,-0.997768461704254,0.0580008663237095,-0.0330767072737217,0.144302159547806,0.986470639705658,-0.0777976736426353,-0.0824161991477013,0.0638449266552925,-0.994550824165344,
- -0.567629277706146,-0.0258172750473022,-0.822879433631897,-0.310177087783813,-0.0218903161585331,-0.950426697731018,0.0148195885121822,-0.999467492103577,-0.0290721766650677,-0.0220821052789688,-0.999684035778046,-0.0120129864662886,0.852237224578857,0.41661924123764,-0.316417545080185,-0.272827088832855,-0.0127289723604918,-0.961978852748871,-0.275796681642532,0.0431645214557648,-0.960246324539185,0.822913289070129,0.481545746326447,-0.301541864871979,-0.206950545310974,-0.252370744943619,-0.94524097442627,-0.272827088832855,-0.0127289723604918,-0.961978852748871,0.852237224578857,0.41661924123764,-0.316417545080185,0.902993857860565,0.0884295180439949,-0.420454859733582,0.593573033809662,0.761871814727783,-0.259272515773773,0.648452162742615,0.709844052791595,-0.275011628866196,0.91410094499588,0.0991092547774315,-0.393187940120697,-0.271365463733673,0.0551176741719246,-0.960896909236908,-0.206950545310974,-0.252370744943619,-0.94524097442627,0.882338762283325,0.249337792396545,-0.39913535118103,-0.566324889659882,0.0280680414289236,-0.823704123497009,-0.567629277706146,-0.0258172750473022,-0.822879433631897,-0.998874425888062,-0.00518413912504911,0.0471484176814556,-0.99932998418808,0.0159834008663893,0.0329262688755989,0.902993857860565,0.0884295180439949,-0.420454859733582,0.91410094499588,0.0991092547774315,-0.393187940120697,0.918048501014709,-0.0350680984556675,-0.394914209842682,0.905720770359039,-0.0335763059556484,-0.422542750835419,-0.109842881560326,-0.117578104138374,-0.986970126628876,-0.179419234395027,0.00273893098346889,-0.983768880367279,0.688456952571869,0.686691701412201,-0.233412891626358,0.444915801286697,0.882982432842255,-0.149639055132866,0.666910707950592,0.707418739795685,-0.234070256352425,0.688456952571869,0.686691701412201,-0.233412891626358,-0.179419234395027,0.00273893098346889,-0.983768880367279,-0.197159379720688,0.0779495015740395,-0.977267622947693,0.349186182022095,-0.137127339839935,-0.926965475082397,0.506256520748138,0.857626557350159,-0.0904491916298866,0.716850578784943,0.628000319004059,-0.30288752913475,
- 0.624546051025391,-0.285713583230972,-0.726849436759949,-0.369763016700745,0.928653478622437,0.0296321455389261,-0.374768882989883,0.925724923610687,0.050808560103178,0.385920912027359,0.919525504112244,-0.0744170099496841,0.440684616565704,0.892745912075043,-0.0938177853822708,0.176501005887985,0.981177747249603,-0.0783428847789764,0.144302159547806,0.986470639705658,-0.0777976736426353,0.130488559603691,0.991416752338409,-0.00809981301426888,0.179674535989761,0.98366379737854,-0.0110748345032334,-0.997768461704254,0.0580008663237095,-0.0330767072737217,-0.989313960075378,-0.0100811300799251,-0.145451486110687,-0.999771058559418,-0.0196189973503351,-0.00853601563721895,-0.997768461704254,0.0580008663237095,-0.0330767072737217,-0.0824161991477013,0.0638449266552925,-0.994550824165344,-0.11837837100029,-0.226638823747635,-0.966758131980896,-0.989313960075378,-0.0100811300799251,-0.145451486110687,-0.195177271962166,-0.944401800632477,-0.264596164226532,-0.124586679041386,-0.95066899061203,-0.284088909626007,-0.10643332451582,-0.994313478469849,0.00355748180299997,-0.186172932386398,-0.982489407062531,0.00734337139874697,0.419470876455307,-0.907124996185303,-0.0341815017163754,-0.508196949958801,-0.832873463630676,-0.219220340251923,-0.469791084527969,-0.880806267261505,0.0589629858732224,-0.30947807431221,0.313416391611099,-0.897771418094635,0.660491645336151,0.719651937484741,-0.214130461215973,0.666910707950592,0.707418739795685,-0.234070256352425,-0.197159379720688,0.0779495015740395,-0.977267622947693,-0.409194320440292,-0.379751831293106,-0.829667687416077,-0.423152655363083,-0.163074806332588,-0.891262292861938,-0.74646258354187,-0.655997931957245,-0.111626178026199,-0.87139505147934,-0.48102656006813,-0.0963532030582428,-0.114406652748585,-0.664664208889008,-0.738331079483032,-0.109842881560326,-0.117578104138374,-0.986970126628876,-0.499019384384155,-0.0771327018737793,-0.863151252269745,-0.464841514825821,-0.882711172103882,-0.0688722878694534,-0.114406652748585,-0.664664208889008,-0.738331079483032,-0.499019384384155,-0.0771327018737793,-0.863151252269745,
- -0.897192716598511,-0.439784556627274,-0.0404340550303459,0.403645515441895,0.905279338359833,-0.13243767619133,0.444915801286697,0.882982432842255,-0.149639055132866,0.688456952571869,0.686691701412201,-0.233412891626358,0.692107677459717,0.694208860397339,-0.197638541460037,0.822913289070129,0.481545746326447,-0.301541864871979,-0.275796681642532,0.0431645214557648,-0.960246324539185,-0.109842881560326,-0.117578104138374,-0.986970126628876,-0.499019384384155,-0.0771327018737793,-0.863151252269745,-0.466804325580597,-0.167176619172096,-0.868415713310242,-0.881659746170044,-0.470726162195206,-0.0330603495240211,-0.897192716598511,-0.439784556627274,-0.0404340550303459,-0.844149351119995,0.532298684120178,0.063797228038311,-0.733002722263336,0.239694565534592,-0.636595189571381,-0.526205480098724,0.00270530069246888,-0.850353121757507,-0.991436123847961,-0.127440914511681,0.0285160485655069,-0.409194320440292,-0.379751831293106,-0.829667687416077,0.624546051025391,-0.285713583230972,-0.726849436759949,-0.30947807431221,0.313416391611099,-0.897771418094635,0.716850578784943,0.628000319004059,-0.30288752913475,-0.30947807431221,0.313416391611099,-0.897771418094635,0.624546051025391,-0.285713583230972,-0.726849436759949,-0.206950545310974,-0.252370744943619,-0.94524097442627,0.852237224578857,0.41661924123764,-0.316417545080185,0.934311091899872,0.00955916382372379,-0.356330335140228,0.882338762283325,0.249337792396545,-0.39913535118103,-0.206950545310974,-0.252370744943619,-0.94524097442627,0.934311091899872,0.00955916382372379,-0.356330335140228,-0.706307172775269,0.242265716195107,-0.665159642696381,0.176501005887985,0.981177747249603,-0.0783428847789764,-0.369763016700745,0.928653478622437,0.0296321455389261,-0.374768882989883,0.925724923610687,0.050808560103178,-0.369763016700745,0.928653478622437,0.0296321455389261,0.176501005887985,0.981177747249603,-0.0783428847789764,0.179674535989761,0.98366379737854,-0.0110748345032334,-0.508196949958801,-0.832873463630676,-0.219220340251923,0.419470876455307,-0.907124996185303,-0.0341815017163754,
- 0.370495736598969,-0.845087110996246,-0.385435611009598,-0.145302399992943,-0.354329138994217,-0.923763036727905,-0.299332678318024,-0.171401903033257,-0.938627421855927,-0.508196949958801,-0.832873463630676,-0.219220340251923,0.370495736598969,-0.845087110996246,-0.385435611009598,0.419470876455307,-0.907124996185303,-0.0341815017163754,-0.124586679041386,-0.95066899061203,-0.284088909626007,0.370495736598969,-0.845087110996246,-0.385435611009598,-0.0517122820019722,-0.250171035528183,-0.966819584369659,-0.145302399992943,-0.354329138994217,-0.923763036727905,0.370495736598969,-0.845087110996246,-0.385435611009598,-0.124586679041386,-0.95066899061203,-0.284088909626007,-0.124586679041386,-0.95066899061203,-0.284088909626007,0.419470876455307,-0.907124996185303,-0.0341815017163754,-0.10643332451582,-0.994313478469849,0.00355748180299997,-0.369763016700745,0.928653478622437,0.0296321455389261,0.440684616565704,0.892745912075043,-0.0938177853822708,-0.168126210570335,0.0616417862474918,-0.98383629322052,-0.510644614696503,-0.859721779823303,0.0109830414876342,-0.99932998418808,0.0159834008663893,0.0329262688755989,-0.505367696285248,-0.850086390972137,0.148177400231361,-0.961616635322571,-0.274014741182327,0.0144723244011402,-0.510644614696503,-0.859721779823303,0.0109830414876342,-0.505367696285248,-0.850086390972137,0.148177400231361,-0.914921939373016,-0.312540322542191,0.255414217710495,-0.516649305820465,-0.0945225730538368,-0.850963592529297,-0.368657380342484,-0.755244970321655,-0.541938006877899,-0.510644614696503,-0.859721779823303,0.0109830414876342,-0.961616635322571,-0.274014741182327,0.0144723244011402,-0.368657380342484,-0.755244970321655,-0.541938006877899,-0.566324889659882,0.0280680414289236,-0.823704123497009,-0.99932998418808,0.0159834008663893,0.0329262688755989,-0.510644614696503,-0.859721779823303,0.0109830414876342,-0.307221829891205,0.0166535135358572,-0.951492190361023,-0.310177087783813,-0.0218903161585331,-0.950426697731018,-0.567629277706146,-0.0258172750473022,-0.822879433631897,-0.566324889659882,0.0280680414289236,-0.823704123497009,
- -0.368657380342484,-0.755244970321655,-0.541938006877899,-0.516649305820465,-0.0945225730538368,-0.850963592529297,-0.233593165874481,-0.0224731881171465,-0.972074687480927,-0.212983086705208,-0.576781153678894,-0.788645446300507,-0.307221829891205,0.0166535135358572,-0.951492190361023,-0.212983086705208,-0.576781153678894,-0.788645446300507,0.593573033809662,0.761871814727783,-0.259272515773773,-0.233593165874481,-0.0224731881171465,-0.972074687480927,0.899817228317261,0.181320682168007,-0.396801829338074,0.593573033809662,0.761871814727783,-0.259272515773773,-0.11837837100029,-0.226638823747635,-0.966758131980896,-0.195177271962166,-0.944401800632477,-0.264596164226532,-0.999771058559418,-0.0196189973503351,-0.00853601563721895,0.852940082550049,0.417063891887665,-0.313928186893463,0.852237224578857,0.41661924123764,-0.316417545080185,0.822913289070129,0.481545746326447,-0.301541864871979,0.793495833873749,0.534328043460846,-0.291303515434265,0.793495833873749,0.534328043460846,-0.291303515434265,0.822913289070129,0.481545746326447,-0.301541864871979,0.444915801286697,0.882982432842255,-0.149639055132866,0.403645515441895,0.905279338359833,-0.13243767619133,0.0209057629108429,-0.999733686447144,-0.00977678131312132,0.0148195885121822,-0.999467492103577,-0.0290721766650677,0.905720770359039,-0.0335763059556484,-0.422542750835419,0.918048501014709,-0.0350680984556675,-0.394914209842682,0.891456544399261,0.270269930362701,-0.363674849271774,0.882338762283325,0.249337792396545,-0.39913535118103,0.934311091899872,0.00955916382372379,-0.356330335140228,0.929604709148407,0.0541696026921272,-0.364555418491364,-0.959471642971039,0.00142522749956697,0.281801521778107,-0.998874425888062,-0.00518413912504911,0.0471484176814556,-0.0307245049625635,-0.999497354030609,0.0078059802763164,-0.0284387264400721,-0.999559760093689,0.00845816731452942,-0.991436123847961,-0.127440914511681,0.0285160485655069,-0.961616635322571,-0.274014741182327,0.0144723244011402,-0.914921939373016,-0.312540322542191,0.255414217710495,-0.955633401870728,-0.126592427492142,0.265968143939972,
- 0.648452162742615,0.709844052791595,-0.275011628866196,0.593573033809662,0.761871814727783,-0.259272515773773,0.899817228317261,0.181320682168007,-0.396801829338074,0.907909572124481,0.194745287299156,-0.371179908514023,0.648155093193054,0.738996624946594,-0.183790251612663,0.660491645336151,0.719651937484741,-0.214130461215973,0.716850578784943,0.628000319004059,-0.30288752913475,0.754423379898071,0.632864952087402,-0.174147590994835,-0.810597240924835,-0.570194661617279,0.133454650640488,-0.87139505147934,-0.48102656006813,-0.0963532030582428,-0.74646258354187,-0.655997931957245,-0.111626178026199,-0.707217395305634,-0.693579316139221,0.137081101536751,-0.505367696285248,-0.850086390972137,0.148177400231361,-0.99932998418808,0.0159834008663893,0.0329262688755989,-0.959337711334229,0.0165892262011766,0.28177273273468,-0.959337711334229,0.0165892262011766,0.28177273273468,-0.99932998418808,0.0159834008663893,0.0329262688755989,-0.998874425888062,-0.00518413912504911,0.0471484176814556,-0.959471642971039,0.00142522749956697,0.281801521778107,0.754423379898071,0.632864952087402,-0.174147590994835,0.716850578784943,0.628000319004059,-0.30288752913475,0.506256520748138,0.857626557350159,-0.0904491916298866,0.490454256534576,0.866488873958588,-0.0930148363113403,0.490454256534576,0.866488873958588,-0.0930148363113403,0.506256520748138,0.857626557350159,-0.0904491916298866,0.471251338720322,0.876630008220673,-0.0971703752875328,0.440684616565704,0.892745912075043,-0.0938177853822708,0.385920912027359,0.919525504112244,-0.0744170099496841,-0.707217395305634,-0.693579316139221,0.137081101536751,-0.74646258354187,-0.655997931957245,-0.111626178026199,-0.68390965461731,-0.719967484474182,-0.117959707975388,-0.625767290592194,-0.770402193069458,0.12204821407795,-0.845894932746887,0.48104926943779,0.230333238840103,-0.844149351119995,0.532298684120178,0.063797228038311,-0.991436123847961,-0.127440914511681,0.0285160485655069,-0.955633401870728,-0.126592427492142,0.265968143939972,-0.850526690483093,-0.480524152517319,0.213777720928192,
- -0.897192716598511,-0.439784556627274,-0.0404340550303459,-0.881659746170044,-0.470726162195206,-0.0330603495240211,-0.835535645484924,-0.506864905357361,0.212056785821915,-0.850526690483093,-0.480524152517319,0.213777720928192,-0.483208328485489,-0.868025481700897,0.114199705421925,-0.464841514825821,-0.882711172103882,-0.0688722878694534,-0.897192716598511,-0.439784556627274,-0.0404340550303459,-0.0493792593479156,0.998777985572815,0.00205908413045108,-0.0409179963171482,0.999078392982483,0.0129651315510273,0.0228325836360455,0.999693274497986,-0.00959029234945774,0.0255891885608435,0.998640775680542,-0.0454058721661568,-0.688374042510986,0.719676733016968,0.0905902907252312,-0.638613343238831,0.74667876958847,0.186128214001656,-0.957473874092102,-0.0475620627403259,0.284572750329971,-0.997616469860077,-0.0412525199353695,0.0553135201334953,-0.585896253585815,-0.0496807023882866,-0.80886173248291,-0.600343286991119,0.0442731380462646,-0.798515975475311,-0.315896362066269,0.0307886935770512,-0.94829398393631,-0.323990345001221,-0.040980376303196,-0.945172429084778,-0.028524586930871,-0.999557912349701,0.00838887598365545,-0.0325342603027821,-0.999442756175995,0.00745051819831133,-0.022391302511096,-0.999568402767181,-0.0190139878541231,0.0241349432617426,-0.999286353588104,-0.029056690633297,0.0222484301775694,-0.999700665473938,-0.0101722199469805,-0.998771548271179,-0.0295881442725658,0.0397480726242065,-0.998094499111176,0.0314127393066883,0.0531090833246708,-0.57242214679718,0.0848700553178787,-0.815554976463318,-0.570722460746765,-0.0779381617903709,-0.81743597984314,-0.598877608776093,-0.049896527081728,-0.799284696578979,-0.596318781375885,0.0174276232719421,-0.802558541297913,-0.292966157197952,0.0393424816429615,-0.955313086509705,-0.293616116046906,-0.0375733785331249,-0.955184698104858,-0.585896253585815,-0.0496807023882866,-0.80886173248291,-0.636501610279083,-0.0922880470752716,-0.765734076499939,-0.968683183193207,-0.247421965003014,-0.0208608694374561,-0.997186422348022,-0.0675996840000153,0.0323986709117889,
- -0.293616116046906,-0.0375733785331249,-0.955184698104858,-0.292966157197952,0.0393424816429615,-0.955313086509705,0.890570461750031,0.00937910471111536,-0.454748511314392,0.891999423503876,-0.00638240994885564,-0.451991379261017,0.902903616428375,-0.085175633430481,-0.421319484710693,0.892329156398773,0.152828559279442,-0.424725979566574,0.904629826545715,0.170250669121742,-0.390716761350632,0.912614524364471,-0.107394315302372,-0.394463151693344,-0.998874008655548,0.0361977852880955,0.0306660532951355,-0.959844946861267,0.0492991618812084,0.276165425777435,-0.0409179963171482,0.999078392982483,0.0129651315510273,-0.0493792593479156,0.998777985572815,0.00205908413045108,-0.998471736907959,-0.0535927936434746,0.0134910698980093,-0.998874008655548,0.0361977852880955,0.0306660532951355,-0.596318781375885,0.0174276232719421,-0.802558541297913,-0.598877608776093,-0.049896527081728,-0.799284696578979,0.895747065544128,-0.0758410543203354,-0.438047230243683,0.891541242599487,0.011903578415513,-0.452783048152924,0.899232387542725,0.0426196493208408,-0.43539035320282,0.916971802711487,0.0586673691868782,-0.394614726305008,0.909925401210785,-0.137122541666031,-0.391450166702271,-0.190714985132217,-0.810980796813965,-0.553116738796234,-0.315896362066269,0.0307886935770512,-0.94829398393631,-0.600343286991119,0.0442731380462646,-0.798515975475311,-0.570722460746765,-0.0779381617903709,-0.81743597984314,-0.57242214679718,0.0848700553178787,-0.815554976463318,-0.289170891046524,0.0333404541015625,-0.956696748733521,-0.274113565683365,-0.0446969531476498,-0.960658013820648,-0.998852670192719,0.0403150618076324,0.0258443541824818,-0.995994865894318,-0.0779759958386421,0.0437495894730091,-0.955631852149963,-0.0918608903884888,0.279873847961426,-0.958993315696716,0.0390930026769638,0.280719637870789,-0.997616469860077,-0.0412525199353695,0.0553135201334953,-0.997765839099884,0.0316632576286793,0.0588272847235203,-0.644739329814911,0.0278923157602549,-0.76389342546463,-0.618333101272583,-0.0880994722247124,-0.780962646007538,-0.618333101272583,-0.0880994722247124,-0.780962646007538,
- -0.644739329814911,0.0278923157602549,-0.76389342546463,-0.279979974031448,0.0195503644645214,-0.959806799888611,-0.309231013059616,-0.0758189260959625,-0.947959721088409,-0.564206659793854,-0.580569863319397,-0.587034583091736,-0.609445154666901,-0.0545366182923317,-0.790950238704681,-0.15755695104599,-0.582745552062988,-0.797234952449799,0.0350457169115543,-0.595067143440247,-0.802911460399628,-0.279979974031448,0.0195503644645214,-0.959806799888611,-0.644739329814911,0.0278923157602549,-0.76389342546463,-0.144283726811409,0.291113615036011,-0.945745766162872,-0.575899422168732,-0.0331962928175926,-0.816846191883087,-0.022391302511096,-0.999568402767181,-0.0190139878541231,-0.0325342603027821,-0.999442756175995,0.00745051819831133,-0.997608721256256,-0.0316691286861897,0.0614315085113049,-0.147491216659546,-0.883960247039795,-0.443689823150635,-0.305686563253403,0.0231972262263298,-0.951849579811096,-0.580706119537354,0.0413047261536121,-0.813064754009247,-0.144283726811409,0.291113615036011,-0.945745766162872,0.702103555202484,0.583948254585266,-0.407498478889465,0.899232387542725,0.0426196493208408,-0.43539035320282,-0.15755695104599,-0.582745552062988,-0.797234952449799,-0.299632608890533,-0.013695016503334,-0.953956365585327,0.916234731674194,-0.036305733025074,-0.398993521928787,-0.600878119468689,0.0593526661396027,-0.797134101390839,-0.609445154666901,-0.0545366182923317,-0.790950238704681,-0.995994865894318,-0.0779759958386421,0.0437495894730091,-0.998852670192719,0.0403150618076324,0.0258443541824818,0.0241349432617426,-0.999286353588104,-0.029056690633297,-0.306566089391708,-0.045003991574049,-0.950784862041473,0.90822446346283,-0.0184051264077425,-0.418078571557999,0.890570461750031,0.00937910471111536,-0.454748511314392,0.0255891885608435,0.998640775680542,-0.0454058721661568,0.0228325836360455,0.999693274497986,-0.00959029234945774,0.921432435512543,0.0159147251397371,-0.388212740421295,-0.309746146202087,0.0434901416301727,-0.949824094772339,-0.299632608890533,-0.013695016503334,-0.953956365585327,
- -0.609445154666901,-0.0545366182923317,-0.790950238704681,-0.600878119468689,0.0593526661396027,-0.797134101390839,0.909930467605591,0.0207774061709642,-0.414240092039108,0.910828411579132,-0.0183074250817299,-0.412379115819931,-0.299632608890533,-0.013695016503334,-0.953956365585327,-0.309746146202087,0.0434901416301727,-0.949824094772339,-0.598877608776093,-0.049896527081728,-0.799284696578979,-0.293616116046906,-0.0375733785331249,-0.955184698104858,-0.189783692359924,0.712514996528625,-0.675503194332123,-0.997186422348022,-0.0675996840000153,0.0323986709117889,-0.968683183193207,-0.247421965003014,-0.0208608694374561,-0.950699210166931,0.141964927315712,0.275711804628372,-0.609445154666901,-0.0545366182923317,-0.790950238704681,-0.564206659793854,-0.580569863319397,-0.587034583091736,-0.867484986782074,-0.496570914983749,0.029783945530653,-0.995994865894318,-0.0779759958386421,0.0437495894730091,0.919334471225739,-0.0536921620368958,-0.38979634642601,0.920611083507538,-0.0570131652057171,-0.386296272277832,0.484490394592285,0.850806713104248,-0.203462481498718,0.471434086561203,0.858030915260315,-0.203796356916428,-0.600878119468689,0.0593526661396027,-0.797134101390839,-0.629915177822113,0.100479081273079,-0.770136952400208,-0.189783692359924,0.712514996528625,-0.675503194332123,-0.309746146202087,0.0434901416301727,-0.949824094772339,0.746699988842011,0.575664341449738,-0.333241283893585,-0.309746146202087,0.0434901416301727,-0.949824094772339,-0.189783692359924,0.712514996528625,-0.675503194332123,-0.618333101272583,-0.0880994722247124,-0.780962646007538,-0.549935221672058,-0.38570562005043,-0.740812122821808,-0.688374042510986,0.719676733016968,0.0905902907252312,-0.997616469860077,-0.0412525199353695,0.0553135201334953,0.916234731674194,-0.036305733025074,-0.398993521928787,-0.299632608890533,-0.013695016503334,-0.953956365585327,0.910828411579132,-0.0183074250817299,-0.412379115819931,-0.580706119537354,0.0413047261536121,-0.813064754009247,-0.586179792881012,-0.4614597260952,-0.665919065475464,-0.147491216659546,-0.883960247039795,-0.443689823150635,
- -0.609445154666901,-0.0545366182923317,-0.790950238704681,-0.299632608890533,-0.013695016503334,-0.953956365585327,-0.15755695104599,-0.582745552062988,-0.797234952449799,0.90850293636322,0.0226604025810957,-0.417263597249985,-0.305686563253403,0.0231972262263298,-0.951849579811096,0.493542551994324,-0.842222392559052,-0.216972663998604,-0.306566089391708,-0.045003991574049,-0.950784862041473,-0.305686563253403,0.0231972262263298,-0.951849579811096,0.90850293636322,0.0226604025810957,-0.417263597249985,0.90822446346283,-0.0184051264077425,-0.418078571557999,-0.189783692359924,0.712514996528625,-0.675503194332123,-0.293616116046906,-0.0375733785331249,-0.955184698104858,0.891999423503876,-0.00638240994885564,-0.451991379261017,0.921566009521484,-0.00698236096650362,-0.388158738613129,-0.190714985132217,-0.810980796813965,-0.553116738796234,0.44983372092247,-0.871580362319946,-0.194928973913193,-0.997186422348022,-0.0675996840000153,0.0323986709117889,-0.950699210166931,0.141964927315712,0.275711804628372,-0.9599928855896,-0.0508051924407482,0.275376945734024,-0.189783692359924,0.712514996528625,-0.675503194332123,-0.629915177822113,0.100479081273079,-0.770136952400208,-0.598877608776093,-0.049896527081728,-0.799284696578979,-0.323990345001221,-0.040980376303196,-0.945172429084778,-0.295444756746292,0.619203269481659,-0.72752982378006,-0.636501610279083,-0.0922880470752716,-0.765734076499939,-0.585896253585815,-0.0496807023882866,-0.80886173248291,-0.995994865894318,-0.0779759958386421,0.0437495894730091,-0.867484986782074,-0.496570914983749,0.029783945530653,-0.806874811649323,-0.539889931678772,0.239732936024666,-0.955631852149963,-0.0918608903884888,0.279873847961426,-0.274113565683365,-0.0446969531476498,-0.960658013820648,-0.289170891046524,0.0333404541015625,-0.956696748733521,0.892329156398773,0.152828559279442,-0.424725979566574,0.902903616428375,-0.085175633430481,-0.421319484710693,-0.636501610279083,-0.0922880470752716,-0.765734076499939,-0.295444756746292,0.619203269481659,-0.72752982378006,-0.289170891046524,0.0333404541015625,-0.956696748733521,
- -0.57242214679718,0.0848700553178787,-0.815554976463318,-0.564206659793854,-0.580569863319397,-0.587034583091736,-0.144283726811409,0.291113615036011,-0.945745766162872,-0.644739329814911,0.0278923157602549,-0.76389342546463,-0.147491216659546,-0.883960247039795,-0.443689823150635,-0.274113565683365,-0.0446969531476498,-0.960658013820648,0.493542551994324,-0.842222392559052,-0.216972663998604,-0.596318781375885,0.0174276232719421,-0.802558541297913,-0.0493792593479156,0.998777985572815,0.00205908413045108,-0.109536811709404,0.977463006973267,-0.180465459823608,-0.618333101272583,-0.0880994722247124,-0.780962646007538,-0.309231013059616,-0.0758189260959625,-0.947959721088409,-0.190714985132217,-0.810980796813965,-0.553116738796234,-0.549935221672058,-0.38570562005043,-0.740812122821808,0.0255891885608435,0.998640775680542,-0.0454058721661568,0.890570461750031,0.00937910471111536,-0.454748511314392,-0.292966157197952,0.0393424816429615,-0.955313086509705,-0.575899422168732,-0.0331962928175926,-0.816846191883087,-0.306566089391708,-0.045003991574049,-0.950784862041473,0.0241349432617426,-0.999286353588104,-0.029056690633297,-0.022391302511096,-0.999568402767181,-0.0190139878541231,-0.323990345001221,-0.040980376303196,-0.945172429084778,-0.315896362066269,0.0307886935770512,-0.94829398393631,0.921566009521484,-0.00698236096650362,-0.388158738613129,0.919334471225739,-0.0536921620368958,-0.38979634642601,-0.295444756746292,0.619203269481659,-0.72752982378006,-0.323990345001221,-0.040980376303196,-0.945172429084778,0.919334471225739,-0.0536921620368958,-0.38979634642601,0.90850293636322,0.0226604025810957,-0.417263597249985,0.493542551994324,-0.842222392559052,-0.216972663998604,0.437324970960617,-0.879879117012024,-0.18590222299099,0.920635759830475,0.0328552052378654,-0.389037698507309,-0.289170891046524,0.0333404541015625,-0.956696748733521,-0.295444756746292,0.619203269481659,-0.72752982378006,0.892329156398773,0.152828559279442,-0.424725979566574,-0.997608721256256,-0.0316691286861897,0.0614315085113049,-0.997648060321808,0.0447320453822613,0.0519363917410374,
- -0.580706119537354,0.0413047261536121,-0.813064754009247,-0.575899422168732,-0.0331962928175926,-0.816846191883087,0.90822446346283,-0.0184051264077425,-0.418078571557999,0.90850293636322,0.0226604025810957,-0.417263597249985,0.920635759830475,0.0328552052378654,-0.389037698507309,0.92078822851181,-0.0278177205473185,-0.38906991481781,-0.190714985132217,-0.810980796813965,-0.553116738796234,-0.309231013059616,-0.0758189260959625,-0.947959721088409,0.895747065544128,-0.0758410543203354,-0.438047230243683,0.44983372092247,-0.871580362319946,-0.194928973913193,-0.309231013059616,-0.0758189260959625,-0.947959721088409,-0.279979974031448,0.0195503644645214,-0.959806799888611,0.891541242599487,0.011903578415513,-0.452783048152924,0.895747065544128,-0.0758410543203354,-0.438047230243683,-0.15755695104599,-0.582745552062988,-0.797234952449799,0.916234731674194,-0.036305733025074,-0.398993521928787,0.702103555202484,0.583948254585266,-0.407498478889465,0.0350457169115543,-0.595067143440247,-0.802911460399628,0.746699988842011,0.575664341449738,-0.333241283893585,0.71604585647583,0.629045128822327,-0.302622675895691,0.916530191898346,0.0755648836493492,-0.392762422561646,0.909930467605591,0.0207774061709642,-0.414240092039108,0.891999423503876,-0.00638240994885564,-0.451991379261017,0.890570461750031,0.00937910471111536,-0.454748511314392,0.921432435512543,0.0159147251397371,-0.388212740421295,0.921362400054932,-0.0195928495377302,-0.388210505247116,0.0255891885608435,0.998640775680542,-0.0454058721661568,-0.109536811709404,0.977463006973267,-0.180465459823608,-0.0493792593479156,0.998777985572815,0.00205908413045108,0.0255891885608435,0.998640775680542,-0.0454058721661568,-0.292966157197952,0.0393424816429615,-0.955313086509705,-0.596318781375885,0.0174276232719421,-0.802558541297913,-0.109536811709404,0.977463006973267,-0.180465459823608,-0.959844946861267,0.0492991618812084,0.276165425777435,-0.998874008655548,0.0361977852880955,0.0306660532951355,-0.998471736907959,-0.0535927936434746,0.0134910698980093,-0.95936119556427,-0.0587309002876282,0.276001214981079,
- -0.813356757164001,-0.531162083148956,0.23731318116188,-0.998852670192719,0.0403150618076324,0.0258443541824818,-0.958993315696716,0.0390930026769638,0.280719637870789,-0.144283726811409,0.291113615036011,-0.945745766162872,0.899232387542725,0.0426196493208408,-0.43539035320282,0.891541242599487,0.011903578415513,-0.452783048152924,-0.279979974031448,0.0195503644645214,-0.959806799888611,-0.564206659793854,-0.580569863319397,-0.587034583091736,-0.644739329814911,0.0278923157602549,-0.76389342546463,-0.997765839099884,0.0316632576286793,0.0588272847235203,-0.867484986782074,-0.496570914983749,0.029783945530653,-0.549935221672058,-0.38570562005043,-0.740812122821808,-0.190714985132217,-0.810980796813965,-0.553116738796234,-0.600343286991119,0.0442731380462646,-0.798515975475311,-0.688374042510986,0.719676733016968,0.0905902907252312,-0.549935221672058,-0.38570562005043,-0.740812122821808,-0.600343286991119,0.0442731380462646,-0.798515975475311,-0.990401148796082,0.13066691160202,0.0450736060738564,0.412772864103317,-0.894061386585236,-0.173990666866302,0.44983372092247,-0.871580362319946,-0.194928973913193,0.895747065544128,-0.0758410543203354,-0.438047230243683,0.909925401210785,-0.137122541666031,-0.391450166702271,0.921566009521484,-0.00698236096650362,-0.388158738613129,-0.315896362066269,0.0307886935770512,-0.94829398393631,-0.190714985132217,-0.810980796813965,-0.553116738796234,-0.997186422348022,-0.0675996840000153,0.0323986709117889,-0.990401148796082,0.13066691160202,0.0450736060738564,-0.600343286991119,0.0442731380462646,-0.798515975475311,-0.585896253585815,-0.0496807023882866,-0.80886173248291,-0.968683183193207,-0.247421965003014,-0.0208608694374561,-0.636501610279083,-0.0922880470752716,-0.765734076499939,-0.57242214679718,0.0848700553178787,-0.815554976463318,-0.998094499111176,0.0314127393066883,0.0531090833246708,-0.564206659793854,-0.580569863319397,-0.587034583091736,0.0350457169115543,-0.595067143440247,-0.802911460399628,-0.144283726811409,0.291113615036011,-0.945745766162872,0.702103555202484,0.583948254585266,-0.407498478889465,
- -0.144283726811409,0.291113615036011,-0.945745766162872,0.0350457169115543,-0.595067143440247,-0.802911460399628,-0.295444756746292,0.619203269481659,-0.72752982378006,0.919334471225739,-0.0536921620368958,-0.38979634642601,0.471434086561203,0.858030915260315,-0.203796356916428,0.892329156398773,0.152828559279442,-0.424725979566574,-0.295444756746292,0.619203269481659,-0.72752982378006,0.471434086561203,0.858030915260315,-0.203796356916428,-0.189783692359924,0.712514996528625,-0.675503194332123,0.891999423503876,-0.00638240994885564,-0.451991379261017,0.746699988842011,0.575664341449738,-0.333241283893585,0.71604585647583,0.629045128822327,-0.302622675895691,0.746699988842011,0.575664341449738,-0.333241283893585,0.891999423503876,-0.00638240994885564,-0.451991379261017,0.921362400054932,-0.0195928495377302,-0.388210505247116,-0.998852670192719,0.0403150618076324,0.0258443541824818,-0.813356757164001,-0.531162083148956,0.23731318116188,-0.886932849884033,-0.443979799747467,-0.127405419945717,-0.629915177822113,0.100479081273079,-0.770136952400208,-0.600878119468689,0.0593526661396027,-0.797134101390839,-0.998852670192719,0.0403150618076324,0.0258443541824818,-0.886932849884033,-0.443979799747467,-0.127405419945717,-0.813356757164001,-0.531162083148956,0.23731318116188,-0.998471736907959,-0.0535927936434746,0.0134910698980093,-0.886932849884033,-0.443979799747467,-0.127405419945717,-0.598877608776093,-0.049896527081728,-0.799284696578979,-0.629915177822113,0.100479081273079,-0.770136952400208,-0.886932849884033,-0.443979799747467,-0.127405419945717,-0.998471736907959,-0.0535927936434746,0.0134910698980093,-0.998471736907959,-0.0535927936434746,0.0134910698980093,-0.813356757164001,-0.531162083148956,0.23731318116188,-0.95936119556427,-0.0587309002876282,0.276001214981079,0.746699988842011,0.575664341449738,-0.333241283893585,0.909930467605591,0.0207774061709642,-0.414240092039108,-0.309746146202087,0.0434901416301727,-0.949824094772339,-0.97818249464035,0.103210397064686,0.180296123027802,-0.997648060321808,0.0447320453822613,0.0519363917410374,
- -0.860947251319885,0.44197478890419,0.251849472522736,-0.998771548271179,-0.0295881442725658,0.0397480726242065,-0.97818249464035,0.103210397064686,0.180296123027802,-0.860947251319885,0.44197478890419,0.251849472522736,-0.959380447864532,-0.0254521276801825,0.280964970588684,-0.570722460746765,-0.0779381617903709,-0.81743597984314,-0.586179792881012,-0.4614597260952,-0.665919065475464,-0.97818249464035,0.103210397064686,0.180296123027802,-0.998771548271179,-0.0295881442725658,0.0397480726242065,-0.586179792881012,-0.4614597260952,-0.665919065475464,-0.580706119537354,0.0413047261536121,-0.813064754009247,-0.997648060321808,0.0447320453822613,0.0519363917410374,-0.97818249464035,0.103210397064686,0.180296123027802,-0.575899422168732,-0.0331962928175926,-0.816846191883087,-0.580706119537354,0.0413047261536121,-0.813064754009247,-0.305686563253403,0.0231972262263298,-0.951849579811096,-0.306566089391708,-0.045003991574049,-0.950784862041473,-0.586179792881012,-0.4614597260952,-0.665919065475464,-0.570722460746765,-0.0779381617903709,-0.81743597984314,-0.274113565683365,-0.0446969531476498,-0.960658013820648,-0.147491216659546,-0.883960247039795,-0.443689823150635,-0.305686563253403,0.0231972262263298,-0.951849579811096,-0.147491216659546,-0.883960247039795,-0.443689823150635,0.493542551994324,-0.842222392559052,-0.216972663998604,-0.274113565683365,-0.0446969531476498,-0.960658013820648,0.902903616428375,-0.085175633430481,-0.421319484710693,0.493542551994324,-0.842222392559052,-0.216972663998604,-0.596318781375885,0.0174276232719421,-0.802558541297913,-0.998874008655548,0.0361977852880955,0.0306660532951355,-0.0493792593479156,0.998777985572815,0.00205908413045108,0.919334471225739,-0.0536921620368958,-0.38979634642601,0.921566009521484,-0.00698236096650362,-0.388158738613129,0.922077715396881,0.00384581531397998,-0.386985510587692,0.920611083507538,-0.0570131652057171,-0.386296272277832,0.922077715396881,0.00384581531397998,-0.386985510587692,0.921566009521484,-0.00698236096650362,-0.388158738613129,0.44983372092247,-0.871580362319946,-0.194928973913193,
- 0.412772864103317,-0.894061386585236,-0.173990666866302,0.0222484301775694,-0.999700665473938,-0.0101722199469805,0.0241349432617426,-0.999286353588104,-0.029056690633297,0.90822446346283,-0.0184051264077425,-0.418078571557999,0.92078822851181,-0.0278177205473185,-0.38906991481781,0.904629826545715,0.170250669121742,-0.390716761350632,0.892329156398773,0.152828559279442,-0.424725979566574,0.471434086561203,0.858030915260315,-0.203796356916428,0.484490394592285,0.850806713104248,-0.203462481498718,-0.960625171661377,-0.0307500697672367,0.276140838861465,-0.997608721256256,-0.0316691286861897,0.0614315085113049,-0.0325342603027821,-0.999442756175995,0.00745051819831133,-0.028524586930871,-0.999557912349701,0.00838887598365545,-0.959281027317047,0.0290909390896559,0.280951231718063,-0.998094499111176,0.0314127393066883,0.0531090833246708,-0.998771548271179,-0.0295881442725658,0.0397480726242065,-0.959380447864532,-0.0254521276801825,0.280964970588684,0.437324970960617,-0.879879117012024,-0.18590222299099,0.493542551994324,-0.842222392559052,-0.216972663998604,0.902903616428375,-0.085175633430481,-0.421319484710693,0.912614524364471,-0.107394315302372,-0.394463151693344,0.916971802711487,0.0586673691868782,-0.394614726305008,0.899232387542725,0.0426196493208408,-0.43539035320282,0.702103555202484,0.583948254585266,-0.407498478889465,0.742602705955505,0.590129256248474,-0.316683739423752,-0.806874811649323,-0.539889931678772,0.239732936024666,-0.867484986782074,-0.496570914983749,0.029783945530653,-0.997765839099884,0.0316632576286793,0.0588272847235203,-0.957875430583954,0.0379213578999043,0.284669429063797,-0.860947251319885,0.44197478890419,0.251849472522736,-0.997648060321808,0.0447320453822613,0.0519363917410374,-0.959274709224701,0.0616275407373905,0.275670349597931,-0.959274709224701,0.0616275407373905,0.275670349597931,-0.997648060321808,0.0447320453822613,0.0519363917410374,-0.997608721256256,-0.0316691286861897,0.0614315085113049,-0.960625171661377,-0.0307500697672367,0.276140838861465,0.742602705955505,0.590129256248474,-0.316683739423752,
- 0.702103555202484,0.583948254585266,-0.407498478889465,0.916234731674194,-0.036305733025074,-0.398993521928787,0.918468117713928,-0.0382865853607655,-0.393637627363205,0.918468117713928,-0.0382865853607655,-0.393637627363205,0.916234731674194,-0.036305733025074,-0.398993521928787,0.910828411579132,-0.0183074250817299,-0.412379115819931,0.909930467605591,0.0207774061709642,-0.414240092039108,0.916530191898346,0.0755648836493492,-0.392762422561646,-0.957875430583954,0.0379213578999043,0.284669429063797,-0.997765839099884,0.0316632576286793,0.0588272847235203,-0.997616469860077,-0.0412525199353695,0.0553135201334953,-0.957473874092102,-0.0475620627403259,0.284572750329971,-0.950699210166931,0.141964927315712,0.275711804628372,-0.968683183193207,-0.247421965003014,-0.0208608694374561,-0.998094499111176,0.0314127393066883,0.0531090833246708,-0.959281027317047,0.0290909390896559,0.280951231718063,-0.955406010150909,0.109458334743977,0.274259299039841,-0.990401148796082,0.13066691160202,0.0450736060738564,-0.997186422348022,-0.0675996840000153,0.0323986709117889,-0.9599928855896,-0.0508051924407482,0.275376945734024,-0.955406010150909,0.109458334743977,0.274259299039841,-0.638613343238831,0.74667876958847,0.186128214001656,-0.688374042510986,0.719676733016968,0.0905902907252312,-0.990401148796082,0.13066691160202,0.0450736060738564,-0.0483495071530342,0.998828291893005,0.00207405677065253,-0.0433615818619728,0.998963713645935,0.0138288652524352,0.022117480635643,0.999711930751801,-0.00932294130325317,0.0142291598021984,0.998563706874847,-0.0516528934240341,-0.599905133247375,-0.0423365607857704,-0.79895031452179,-0.596291303634644,0.0300457645207644,-0.802205741405487,-0.296586781740189,0.0214132610708475,-0.954765796661377,-0.297268867492676,-0.0323924534022808,-0.954244136810303,-0.297268867492676,-0.0323924534022808,-0.954244136810303,-0.296586781740189,0.0214132610708475,-0.954765796661377,0.887124717235565,0.0498355589807034,-0.458831191062927,0.889186978340149,-0.0409404672682285,-0.455708652734756,-0.999397337436676,-0.00712442863732576,0.0339744761586189,
- -0.959596872329712,-0.00732593797147274,0.281283140182495,-0.0433615818619728,0.998963713645935,0.0138288652524352,-0.0483495071530342,0.998828291893005,0.00207405677065253,-0.999618411064148,-0.0213704574853182,0.0175001285970211,-0.999397337436676,-0.00712442863732576,0.0339744761586189,-0.596291303634644,0.0300457645207644,-0.802205741405487,-0.599905133247375,-0.0423365607857704,-0.79895031452179,-0.998633623123169,0.0469320304691792,0.0229862313717604,-0.998501598834991,-0.0407588817179203,0.03651187941432,-0.960219204425812,-0.0462770462036133,0.275386214256287,-0.960140466690063,0.0483542531728745,0.275303393602371,-0.298877239227295,-0.897483289241791,-0.324339658021927,-0.601708650588989,-0.0443840734660625,-0.79748147726059,-0.122531391680241,-0.551793098449707,-0.824930548667908,-0.01908372156322,-0.924448072910309,-0.38083028793335,-0.122531391680241,-0.551793098449707,-0.824930548667908,-0.298376590013504,-0.00642190873622894,-0.95442658662796,0.926922619342804,-0.0585337281227112,-0.37065914273262,-0.595691382884979,0.0496371500194073,-0.80167818069458,-0.601708650588989,-0.0443840734660625,-0.79748147726059,-0.998501598834991,-0.0407588817179203,0.03651187941432,-0.998633623123169,0.0469320304691792,0.0229862313717604,0.887124717235565,0.0498355589807034,-0.458831191062927,0.0142291598021984,0.998563706874847,-0.0516528934240341,0.022117480635643,0.999711930751801,-0.00932294130325317,0.917540550231934,0.0671438425779343,-0.391932487487793,-0.304504692554474,0.0383243896067142,-0.951739490032196,-0.298376590013504,-0.00642190873622894,-0.95442658662796,-0.601708650588989,-0.0443840734660625,-0.79748147726059,-0.595691382884979,0.0496371500194073,-0.80167818069458,0.920346677303314,-0.0193484779447317,-0.390624791383743,0.921122908592224,-0.0354053750634193,-0.387658506631851,-0.298376590013504,-0.00642190873622894,-0.95442658662796,-0.304504692554474,0.0383243896067142,-0.951739490032196,-0.599905133247375,-0.0423365607857704,-0.79895031452179,-0.297268867492676,-0.0323924534022808,-0.954244136810303,
- -0.235543414950371,0.529894173145294,-0.814697206020355,-0.601708650588989,-0.0443840734660625,-0.79748147726059,-0.298877239227295,-0.897483289241791,-0.324339658021927,-0.549826323986053,-0.834684908390045,0.0314981713891029,-0.998501598834991,-0.0407588817179203,0.03651187941432,-0.595691382884979,0.0496371500194073,-0.80167818069458,-0.521867275238037,0.581185042858124,-0.624402463436127,-0.235543414950371,0.529894173145294,-0.814697206020355,-0.304504692554474,0.0383243896067142,-0.951739490032196,0.739340662956238,-0.585493445396423,-0.332524806261063,-0.304504692554474,0.0383243896067142,-0.951739490032196,-0.235543414950371,0.529894173145294,-0.814697206020355,0.926922619342804,-0.0585337281227112,-0.37065914273262,-0.298376590013504,-0.00642190873622894,-0.95442658662796,0.921122908592224,-0.0354053750634193,-0.387658506631851,-0.601708650588989,-0.0443840734660625,-0.79748147726059,-0.298376590013504,-0.00642190873622894,-0.95442658662796,-0.122531391680241,-0.551793098449707,-0.824930548667908,-0.235543414950371,0.529894173145294,-0.814697206020355,-0.297268867492676,-0.0323924534022808,-0.954244136810303,0.889186978340149,-0.0409404672682285,-0.455708652734756,-0.235543414950371,0.529894173145294,-0.814697206020355,-0.521867275238037,0.581185042858124,-0.624402463436127,-0.599905133247375,-0.0423365607857704,-0.79895031452179,-0.998501598834991,-0.0407588817179203,0.03651187941432,-0.549826323986053,-0.834684908390045,0.0314981713891029,-0.541091978549957,-0.826321840286255,0.156243145465851,-0.960219204425812,-0.0462770462036133,0.275386214256287,-0.596291303634644,0.0300457645207644,-0.802205741405487,-0.0483495071530342,0.998828291893005,0.00207405677065253,-0.112683556973934,0.98268049955368,-0.147110223770142,0.0142291598021984,0.998563706874847,-0.0516528934240341,0.887124717235565,0.0498355589807034,-0.458831191062927,-0.296586781740189,0.0214132610708475,-0.954765796661377,-0.122531391680241,-0.551793098449707,-0.824930548667908,0.926922619342804,-0.0585337281227112,-0.37065914273262,0.496335744857788,-0.825848639011383,-0.267628133296967,
- -0.01908372156322,-0.924448072910309,-0.38083028793335,0.739340662956238,-0.585493445396423,-0.332524806261063,0.699694573879242,-0.650851786136627,-0.294651448726654,0.921274721622467,0.00516556110233068,-0.388878017663956,0.920346677303314,-0.0193484779447317,-0.390624791383743,0.889186978340149,-0.0409404672682285,-0.455708652734756,0.887124717235565,0.0498355589807034,-0.458831191062927,0.917540550231934,0.0671438425779343,-0.391932487487793,0.916408956050873,-0.0832622945308685,-0.391486883163452,0.0142291598021984,0.998563706874847,-0.0516528934240341,-0.112683556973934,0.98268049955368,-0.147110223770142,-0.0483495071530342,0.998828291893005,0.00207405677065253,0.0142291598021984,0.998563706874847,-0.0516528934240341,-0.296586781740189,0.0214132610708475,-0.954765796661377,-0.596291303634644,0.0300457645207644,-0.802205741405487,-0.112683556973934,0.98268049955368,-0.147110223770142,-0.959596872329712,-0.00732593797147274,0.281283140182495,-0.999397337436676,-0.00712442863732576,0.0339744761586189,-0.999618411064148,-0.0213704574853182,0.0175001285970211,-0.95936381816864,-0.0222889240831137,0.281290203332901,-0.816883981227875,0.525445401668549,0.237923249602318,-0.998633623123169,0.0469320304691792,0.0229862313717604,-0.960140466690063,0.0483542531728745,0.275303393602371,-0.235543414950371,0.529894173145294,-0.814697206020355,0.889186978340149,-0.0409404672682285,-0.455708652734756,0.739340662956238,-0.585493445396423,-0.332524806261063,0.699694573879242,-0.650851786136627,-0.294651448726654,0.739340662956238,-0.585493445396423,-0.332524806261063,0.889186978340149,-0.0409404672682285,-0.455708652734756,0.916408956050873,-0.0832622945308685,-0.391486883163452,-0.998633623123169,0.0469320304691792,0.0229862313717604,-0.816883981227875,0.525445401668549,0.237923249602318,-0.751500189304352,0.653612434864044,-0.0896562561392784,-0.521867275238037,0.581185042858124,-0.624402463436127,-0.595691382884979,0.0496371500194073,-0.80167818069458,-0.998633623123169,0.0469320304691792,0.0229862313717604,-0.751500189304352,0.653612434864044,-0.0896562561392784,
- -0.816883981227875,0.525445401668549,0.237923249602318,-0.999618411064148,-0.0213704574853182,0.0175001285970211,-0.751500189304352,0.653612434864044,-0.0896562561392784,-0.599905133247375,-0.0423365607857704,-0.79895031452179,-0.521867275238037,0.581185042858124,-0.624402463436127,-0.751500189304352,0.653612434864044,-0.0896562561392784,-0.999618411064148,-0.0213704574853182,0.0175001285970211,-0.999618411064148,-0.0213704574853182,0.0175001285970211,-0.816883981227875,0.525445401668549,0.237923249602318,-0.95936381816864,-0.0222889240831137,0.281290203332901,0.739340662956238,-0.585493445396423,-0.332524806261063,0.920346677303314,-0.0193484779447317,-0.390624791383743,-0.304504692554474,0.0383243896067142,-0.951739490032196,-0.596291303634644,0.0300457645207644,-0.802205741405487,-0.999397337436676,-0.00712442863732576,0.0339744761586189,-0.0483495071530342,0.998828291893005,0.00207405677065253,0.540357410907745,-0.810808539390564,-0.224951788783073,0.496335744857788,-0.825848639011383,-0.267628133296967,0.926922619342804,-0.0585337281227112,-0.37065914273262,0.91930478811264,-0.0660353899002075,-0.387966573238373,0.91930478811264,-0.0660353899002075,-0.387966573238373,0.926922619342804,-0.0585337281227112,-0.37065914273262,0.921122908592224,-0.0354053750634193,-0.387658506631851,0.920346677303314,-0.0193484779447317,-0.390624791383743,0.921274721622467,0.00516556110233068,-0.388878017663956,0.586470603942871,0.0492481365799904,-0.808471918106079,0.600803017616272,-0.0438707619905472,-0.79819244146347,0.31651383638382,-0.0305018536746502,-0.948097348213196,0.324600577354431,0.0406297668814659,-0.944978177547455,0.0285156145691872,0.99955803155899,0.00840640068054199,0.0325285904109478,0.999443054199219,0.00745663652196527,0.0223897844552994,0.999568343162537,-0.0190184209495783,-0.0241351574659348,0.999285399913788,-0.0290906727313995,-0.0222614947706461,0.999700129032135,-0.0101922582834959,0.998849928379059,0.0293707717210054,0.0378975719213486,0.997833669185638,-0.0378024950623512,0.053840808570385,0.571039617061615,-0.101731032133102,-0.814594745635986,
- 0.57014125585556,0.0938120633363724,-0.816172897815704,0.586470603942871,0.0492481365799904,-0.808471918106079,0.63701057434082,0.0924805030226707,-0.765287458896637,0.971314370632172,0.237246736884117,-0.0161948036402464,0.998943746089935,0.0413740873336792,0.0199883934110403,-0.901296317577362,0.102037720382214,-0.421014457941055,-0.887437224388123,-0.183086261153221,-0.423006623983383,-0.89872020483017,-0.202872395515442,-0.388773381710052,-0.91001570224762,0.128931611776352,-0.394015431404114,0.123266965150833,-0.910908758640289,-0.393764466047287,0.31651383638382,-0.0305018536746502,-0.948097348213196,0.600803017616272,-0.0438707619905472,-0.79819244146347,0.57014125585556,0.0938120633363724,-0.816172897815704,0.571039617061615,-0.101731032133102,-0.814594745635986,0.289869219064713,-0.0402885861694813,-0.95621782541275,0.274711430072784,0.0538218915462494,-0.960019171237946,0.576460123062134,0.0354738160967827,-0.816354930400848,0.0223897844552994,0.999568343162537,-0.0190184209495783,0.0325285904109478,0.999443054199219,0.00745663652196527,0.997481763362885,0.0338370092213154,0.0623316988348961,0.147787168622017,0.883943855762482,-0.443623840808868,0.306162148714066,-0.0248027499765158,-0.951656222343445,0.581163287162781,-0.0441287383437157,-0.812589585781097,-0.0241351574659348,0.999285399913788,-0.0290906727313995,0.307302892208099,0.0479822568595409,-0.950401306152344,-0.907909750938416,0.019668273627758,-0.418704003095627,0.95961058139801,0.0537169240415096,0.276155889034271,0.998943746089935,0.0413740873336792,0.0199883934110403,0.971314370632172,0.237246736884117,-0.0161948036402464,-0.9191033244133,0.0532105751335621,-0.390407145023346,-0.920386672019959,0.0565131343901157,-0.386904031038284,-0.484331011772156,-0.850825607776642,-0.203762516379356,-0.471284955739975,-0.858044624328613,-0.204082950949669,0.581163287162781,-0.0441287383437157,-0.812589585781097,0.586703240871429,0.461175858974457,-0.665654540061951,0.147787168622017,0.883943855762482,-0.443623840808868,-0.908236622810364,-0.0242034383118153,-0.417756348848343,
- 0.306162148714066,-0.0248027499765158,-0.951656222343445,-0.493320614099503,0.842284440994263,-0.217236295342445,0.307302892208099,0.0479822568595409,-0.950401306152344,0.306162148714066,-0.0248027499765158,-0.951656222343445,-0.908236622810364,-0.0242034383118153,-0.417756348848343,-0.907909750938416,0.019668273627758,-0.418704003095627,-0.921318769454956,0.00691953767091036,-0.388746500015259,0.123266965150833,-0.910908758640289,-0.393764466047287,-0.784859716892242,-0.537874400615692,-0.307711601257324,0.95961058139801,0.0537169240415096,0.276155889034271,0.971314370632172,0.237246736884117,-0.0161948036402464,0.927281260490417,0.255347937345505,0.273764401674271,0.324600577354431,0.0406297668814659,-0.944978177547455,0.295902281999588,-0.619232475757599,-0.727319121360779,0.63701057434082,0.0924805030226707,-0.765287458896637,0.586470603942871,0.0492481365799904,-0.808471918106079,0.274711430072784,0.0538218915462494,-0.960019171237946,0.289869219064713,-0.0402885861694813,-0.95621782541275,-0.887437224388123,-0.183086261153221,-0.423006623983383,-0.901296317577362,0.102037720382214,-0.421014457941055,0.63701057434082,0.0924805030226707,-0.765287458896637,0.295902281999588,-0.619232475757599,-0.727319121360779,0.289869219064713,-0.0402885861694813,-0.95621782541275,0.571039617061615,-0.101731032133102,-0.814594745635986,0.147787168622017,0.883943855762482,-0.443623840808868,0.274711430072784,0.0538218915462494,-0.960019171237946,-0.493320614099503,0.842284440994263,-0.217236295342445,0.576460123062134,0.0354738160967827,-0.816354930400848,0.307302892208099,0.0479822568595409,-0.950401306152344,-0.0241351574659348,0.999285399913788,-0.0290906727313995,0.0223897844552994,0.999568343162537,-0.0190184209495783,0.324600577354431,0.0406297668814659,-0.944978177547455,0.31651383638382,-0.0305018536746502,-0.948097348213196,-0.921318769454956,0.00691953767091036,-0.388746500015259,-0.9191033244133,0.0532105751335621,-0.390407145023346,0.295902281999588,-0.619232475757599,-0.727319121360779,0.324600577354431,0.0406297668814659,-0.944978177547455,
- -0.9191033244133,0.0532105751335621,-0.390407145023346,-0.908236622810364,-0.0242034383118153,-0.417756348848343,-0.493320614099503,0.842284440994263,-0.217236295342445,-0.437058866024017,0.879964828491211,-0.186121806502342,-0.920310795307159,-0.0351100265979767,-0.389609277248383,0.289869219064713,-0.0402885861694813,-0.95621782541275,0.295902281999588,-0.619232475757599,-0.727319121360779,-0.887437224388123,-0.183086261153221,-0.423006623983383,0.997481763362885,0.0338370092213154,0.0623316988348961,0.997622549533844,-0.0464243590831757,0.0509327761828899,0.581163287162781,-0.0441287383437157,-0.812589585781097,0.576460123062134,0.0354738160967827,-0.816354930400848,-0.907909750938416,0.019668273627758,-0.418704003095627,-0.908236622810364,-0.0242034383118153,-0.417756348848343,-0.920310795307159,-0.0351100265979767,-0.389609277248383,-0.920485377311707,0.0296759176999331,-0.389648675918579,0.227163061499596,-0.907799005508423,-0.352559059858322,0.123266965150833,-0.910908758640289,-0.393764466047287,0.600803017616272,-0.0438707619905472,-0.79819244146347,0.41478306055069,-0.906089425086975,0.0834085196256638,0.227163061499596,-0.907799005508423,-0.352559059858322,0.600803017616272,-0.0438707619905472,-0.79819244146347,0.990460515022278,-0.135551199316978,0.0247755758464336,-0.921318769454956,0.00691953767091036,-0.388746500015259,0.31651383638382,-0.0305018536746502,-0.948097348213196,0.123266965150833,-0.910908758640289,-0.393764466047287,0.998943746089935,0.0413740873336792,0.0199883934110403,0.990460515022278,-0.135551199316978,0.0247755758464336,0.600803017616272,-0.0438707619905472,-0.79819244146347,0.586470603942871,0.0492481365799904,-0.808471918106079,0.971314370632172,0.237246736884117,-0.0161948036402464,0.63701057434082,0.0924805030226707,-0.765287458896637,0.571039617061615,-0.101731032133102,-0.814594745635986,0.997833669185638,-0.0378024950623512,0.053840808570385,0.295902281999588,-0.619232475757599,-0.727319121360779,-0.9191033244133,0.0532105751335621,-0.390407145023346,-0.471284955739975,-0.858044624328613,-0.204082950949669,
- -0.887437224388123,-0.183086261153221,-0.423006623983383,0.295902281999588,-0.619232475757599,-0.727319121360779,-0.471284955739975,-0.858044624328613,-0.204082950949669,0.880864381790161,-0.463772028684616,0.0948334857821465,0.997622549533844,-0.0464243590831757,0.0509327761828899,0.862710237503052,-0.438501417636871,0.25188809633255,0.998849928379059,0.0293707717210054,0.0378975719213486,0.880864381790161,-0.463772028684616,0.0948334857821465,0.862710237503052,-0.438501417636871,0.25188809633255,0.959500908851624,0.00470916973426938,0.281666219234467,0.57014125585556,0.0938120633363724,-0.816172897815704,0.586703240871429,0.461175858974457,-0.665654540061951,0.880864381790161,-0.463772028684616,0.0948334857821465,0.998849928379059,0.0293707717210054,0.0378975719213486,0.586703240871429,0.461175858974457,-0.665654540061951,0.581163287162781,-0.0441287383437157,-0.812589585781097,0.997622549533844,-0.0464243590831757,0.0509327761828899,0.880864381790161,-0.463772028684616,0.0948334857821465,0.576460123062134,0.0354738160967827,-0.816354930400848,0.581163287162781,-0.0441287383437157,-0.812589585781097,0.306162148714066,-0.0248027499765158,-0.951656222343445,0.307302892208099,0.0479822568595409,-0.950401306152344,0.586703240871429,0.461175858974457,-0.665654540061951,0.57014125585556,0.0938120633363724,-0.816172897815704,0.274711430072784,0.0538218915462494,-0.960019171237946,0.147787168622017,0.883943855762482,-0.443623840808868,0.306162148714066,-0.0248027499765158,-0.951656222343445,0.147787168622017,0.883943855762482,-0.443623840808868,-0.493320614099503,0.842284440994263,-0.217236295342445,0.274711430072784,0.0538218915462494,-0.960019171237946,-0.901296317577362,0.102037720382214,-0.421014457941055,-0.493320614099503,0.842284440994263,-0.217236295342445,-0.9191033244133,0.0532105751335621,-0.390407145023346,-0.921318769454956,0.00691953767091036,-0.388746500015259,-0.921826720237732,-0.00380375259555876,-0.387583553791046,-0.920386672019959,0.0565131343901157,-0.386904031038284,-0.921826720237732,-0.00380375259555876,-0.387583553791046,
- -0.921318769454956,0.00691953767091036,-0.388746500015259,-0.784859716892242,-0.537874400615692,-0.307711601257324,-0.775320410728455,-0.540935397148132,-0.325986415147781,-0.0222614947706461,0.999700129032135,-0.0101922582834959,-0.0241351574659348,0.999285399913788,-0.0290906727313995,-0.907909750938416,0.019668273627758,-0.418704003095627,-0.920485377311707,0.0296759176999331,-0.389648675918579,-0.89872020483017,-0.202872395515442,-0.388773381710052,-0.887437224388123,-0.183086261153221,-0.423006623983383,-0.471284955739975,-0.858044624328613,-0.204082950949669,-0.484331011772156,-0.850825607776642,-0.203762516379356,0.960381925106049,0.032845251262188,0.276745021343231,0.997481763362885,0.0338370092213154,0.0623316988348961,0.0325285904109478,0.999443054199219,0.00745663652196527,0.0285156145691872,0.99955803155899,0.00840640068054199,0.958916902542114,-0.0350154936313629,0.281517833471298,0.997833669185638,-0.0378024950623512,0.053840808570385,0.998849928379059,0.0293707717210054,0.0378975719213486,0.959500908851624,0.00470916973426938,0.281666219234467,-0.437058866024017,0.879964828491211,-0.186121806502342,-0.493320614099503,0.842284440994263,-0.217236295342445,-0.901296317577362,0.102037720382214,-0.421014457941055,-0.91001570224762,0.128931611776352,-0.394015431404114,0.862710237503052,-0.438501417636871,0.25188809633255,0.997622549533844,-0.0464243590831757,0.0509327761828899,0.960165977478027,-0.039579376578331,0.276612788438797,0.960165977478027,-0.039579376578331,0.276612788438797,0.997622549533844,-0.0464243590831757,0.0509327761828899,0.997481763362885,0.0338370092213154,0.0623316988348961,0.960381925106049,0.032845251262188,0.276745021343231,0.927281260490417,0.255347937345505,0.273764401674271,0.971314370632172,0.237246736884117,-0.0161948036402464,0.997833669185638,-0.0378024950623512,0.053840808570385,0.958916902542114,-0.0350154936313629,0.281517833471298,0.953366637229919,-0.12585836648941,0.274320304393768,0.990460515022278,-0.135551199316978,0.0247755758464336,0.998943746089935,0.0413740873336792,0.0199883934110403,
- 0.95961058139801,0.0537169240415096,0.276155889034271,0.953366637229919,-0.12585836648941,0.274320304393768,0.474030435085297,-0.869727730751038,0.137363389134407,0.41478306055069,-0.906089425086975,0.0834085196256638,0.990460515022278,-0.135551199316978,0.0247755758464336,0.0483522415161133,-0.998828053474426,0.00212176633067429,0.0433633737266064,-0.998963236808777,0.0138585595414042,-0.022115271538496,-0.999711751937866,-0.00934048742055893,-0.0142016895115376,-0.998563706874847,-0.0516602285206318,0.519701182842255,0.854202210903168,0.0157847702503204,0.448807656764984,0.883545100688934,0.133864760398865,0.955037951469421,0.102600514888763,0.278164654970169,0.996169030666351,0.0735934153199196,0.0472353063523769,0.587986946105957,0.0637609213590622,-0.806353509426117,0.601568043231964,-0.0311980377882719,-0.798211991786957,0.326986879110336,-0.0210418999195099,-0.944794595241547,0.334834426641464,0.026037909090519,-0.94191712141037,0.0276326108723879,0.999585151672363,0.00812378991395235,0.0301678515970707,0.999527752399445,0.00586088560521603,0.0210888274013996,0.999602615833282,-0.0187041256576777,-0.0213814862072468,0.999574601650238,-0.0198313500732183,-0.0222452338784933,0.999700784683228,-0.0101750874891877,0.998243272304535,0.0426949821412563,0.0410775505006313,0.991186082363129,-0.121165044605732,0.0535642318427563,0.575525462627411,-0.096616268157959,-0.812056481838226,0.575603604316711,0.0612988881766796,-0.815428078174591,0.598839104175568,0.0565005876123905,-0.798873841762543,0.594703853130341,-0.0400217659771442,-0.80294805765152,0.297266602516174,-0.0287340432405472,-0.954362034797668,0.297433108091354,0.0433066859841347,-0.953759908676147,0.587986946105957,0.0637609213590622,-0.806353509426117,0.440355658531189,-0.764450252056122,-0.470852941274643,0.460562318563461,-0.887475371360779,-0.0164282768964767,0.999617338180542,0.00896215252578259,0.0261705536395311,0.297433108091354,0.0433066859841347,-0.953759908676147,0.297266602516174,-0.0287340432405472,-0.954362034797668,-0.885616540908813,-0.0665280744433403,-0.459627270698547,
- -0.888806819915771,0.0537199601531029,-0.455122441053391,-0.906464219093323,0.0723060294985771,-0.416046172380447,-0.904082715511322,-0.0420824363827705,-0.425280511379242,-0.918679714202881,-0.0533899068832397,-0.391378432512283,-0.917587399482727,0.0720567479729652,-0.390949010848999,0.999231398105621,0.00946682319045067,0.038039855659008,0.95939964056015,0.00971737876534462,0.28188282251358,0.0433633737266064,-0.998963236808777,0.0138585595414042,0.0483522415161133,-0.998828053474426,0.00212176633067429,0.999476253986359,0.0286171678453684,0.0151065420359373,0.999231398105621,0.00946682319045067,0.038039855659008,0.594703853130341,-0.0400217659771442,-0.80294805765152,0.598839104175568,0.0565005876123905,-0.798873841762543,-0.899993240833282,0.0199144929647446,-0.435448825359344,-0.894161641597748,-0.0117185115814209,-0.447591006755829,-0.901001513004303,-0.0618181116878986,-0.429388880729675,-0.916880249977112,-0.0916120186448097,-0.388507068157196,-0.919802963733673,0.0448176674544811,-0.389812618494034,0.236235946416855,0.590157210826874,-0.77195018529892,0.326986879110336,-0.0210418999195099,-0.944794595241547,0.601568043231964,-0.0311980377882719,-0.798211991786957,0.268122464418411,0.0406579375267029,-0.962526559829712,0.575603604316711,0.0612988881766796,-0.815428078174591,0.575525462627411,-0.096616268157959,-0.812056481838226,0.285368263721466,-0.093770943582058,-0.953819751739502,0.998403787612915,-0.0515835396945477,0.0229998771101236,0.998288512229919,0.0447367131710052,0.0376661717891693,0.959827303886414,0.0507901422679424,0.275956392288208,0.959725260734558,-0.0531774163246155,0.275861412286758,0.996169030666351,0.0735934153199196,0.0472353063523769,0.998510777950287,-0.0146478926762939,0.0525513179600239,0.638776123523712,-0.0256999041885138,-0.768963277339935,0.615092694759369,0.0862285494804382,-0.783725500106812,0.615092694759369,0.0862285494804382,-0.783725500106812,0.638776123523712,-0.0256999041885138,-0.768963277339935,0.275149166584015,-0.0192369017750025,-0.961209118366241,0.306394129991531,0.0947228297591209,-0.947180151939392,
- 0.608895897865295,0.554812073707581,-0.566947460174561,0.602460324764252,0.0488679334521294,-0.796651422977448,0.123054012656212,0.551795244216919,-0.824851274490356,0.0123435510322452,0.763902366161346,-0.645213723182678,0.275149166584015,-0.0192369017750025,-0.961209118366241,0.638776123523712,-0.0256999041885138,-0.768963277339935,0.138372138142586,-0.299532413482666,-0.943998694419861,0.575124561786652,0.0274765305221081,-0.817604243755341,0.0210888274013996,0.999602615833282,-0.0187041256576777,0.0301678515970707,0.999527752399445,0.00586088560521603,0.99811202287674,0.0430094934999943,0.0438479818403721,0.218825146555901,0.739221811294556,-0.636919796466827,0.304952204227448,-0.0179882850497961,-0.952197730541229,0.579182803630829,-0.0387177541851997,-0.814277648925781,0.138372138142586,-0.299532413482666,-0.943998694419861,-0.628074944019318,-0.700622320175171,-0.33860045671463,-0.901001513004303,-0.0618181116878986,-0.429388880729675,0.123054012656212,0.551795244216919,-0.824851274490356,0.297866612672806,0.00707727018743753,-0.954581201076508,-0.926159203052521,0.0642629414796829,-0.371617257595062,0.597467124462128,-0.0547007471323013,-0.800025641918182,0.602460324764252,0.0488679334521294,-0.796651422977448,0.998288512229919,0.0447367131710052,0.0376661717891693,0.998403787612915,-0.0515835396945477,0.0229998771101236,-0.0213814862072468,0.999574601650238,-0.0198313500732183,0.306608647108078,0.041750680655241,-0.950919568538666,-0.908536016941071,-0.0115600815042853,-0.417646646499634,-0.885616540908813,-0.0665280744433403,-0.459627270698547,-0.0142016895115376,-0.998563706874847,-0.0516602285206318,-0.022115271538496,-0.999711751937866,-0.00934048742055893,-0.915771961212158,-0.0885526761412621,-0.391816645860672,0.305194467306137,-0.0423816926777363,-0.951346516609192,0.297866612672806,0.00707727018743753,-0.954581201076508,0.602460324764252,0.0488679334521294,-0.796651422977448,0.597467124462128,-0.0547007471323013,-0.800025641918182,-0.920107305049896,0.0212901998311281,-0.391087144613266,-0.920718252658844,0.0389508008956909,-0.38827919960022,
- 0.297866612672806,0.00707727018743753,-0.954581201076508,0.305194467306137,-0.0423816926777363,-0.951346516609192,0.598839104175568,0.0565005876123905,-0.798873841762543,0.297433108091354,0.0433066859841347,-0.953759908676147,0.236061573028564,-0.529925346374512,-0.814526796340942,0.95818156003952,0.026448879390955,0.284935921430588,0.999617338180542,0.00896215252578259,0.0261705536395311,0.460562318563461,-0.887475371360779,-0.0164282768964767,0.602460324764252,0.0488679334521294,-0.796651422977448,0.608895897865295,0.554812073707581,-0.566947460174561,0.899554967880249,0.435584306716919,0.0326679870486259,0.998288512229919,0.0447367131710052,0.0376661717891693,-0.912044584751129,0.0947573333978653,-0.398993372917175,-0.912450909614563,0.104672126471996,-0.395571678876877,-0.770386040210724,0.546414256095886,-0.328537344932556,-0.833190739154816,0.427746444940567,-0.350465536117554,0.597467124462128,-0.0547007471323013,-0.800025641918182,0.522269248962402,-0.581133902072906,-0.624114036560059,0.236061573028564,-0.529925346374512,-0.814526796340942,0.305194467306137,-0.0423816926777363,-0.951346516609192,-0.739068508148193,0.58557653427124,-0.332983314990997,0.305194467306137,-0.0423816926777363,-0.951346516609192,0.236061573028564,-0.529925346374512,-0.814526796340942,0.615092694759369,0.0862285494804382,-0.783725500106812,0.374146282672882,0.849147617816925,-0.372777342796326,0.519701182842255,0.854202210903168,0.0157847702503204,0.996169030666351,0.0735934153199196,0.0472353063523769,0.519701182842255,0.854202210903168,0.0157847702503204,0.999809920787811,-0.0179902594536543,0.00751826772466302,0.894654631614685,-0.365674883127213,0.256661146879196,0.448807656764984,0.883545100688934,0.133864760398865,-0.926159203052521,0.0642629414796829,-0.371617257595062,0.297866612672806,0.00707727018743753,-0.954581201076508,-0.920718252658844,0.0389508008956909,-0.38827919960022,0.579182803630829,-0.0387177541851997,-0.814277648925781,0.601815462112427,0.310681581497192,-0.735727608203888,0.218825146555901,0.739221811294556,-0.636919796466827,
- 0.602460324764252,0.0488679334521294,-0.796651422977448,0.297866612672806,0.00707727018743753,-0.954581201076508,0.123054012656212,0.551795244216919,-0.824851274490356,-0.90908271074295,-0.0250656027346849,-0.415861010551453,0.304952204227448,-0.0179882850497961,-0.952197730541229,-0.752393186092377,0.566826999187469,-0.335576683282852,-0.908536016941071,-0.0115600815042853,-0.417646646499634,0.306608647108078,0.041750680655241,-0.950919568538666,0.304952204227448,-0.0179882850497961,-0.952197730541229,-0.90908271074295,-0.0250656027346849,-0.415861010551453,0.236061573028564,-0.529925346374512,-0.814526796340942,0.297433108091354,0.0433066859841347,-0.953759908676147,-0.888806819915771,0.0537199601531029,-0.455122441053391,-0.916069388389587,-0.0423001386225224,-0.398782700300217,0.236235946416855,0.590157210826874,-0.77195018529892,-0.70914351940155,-0.629117965698242,-0.318317472934723,0.95818156003952,0.026448879390955,0.284935921430588,0.460562318563461,-0.887475371360779,-0.0164282768964767,0.517505884170532,-0.841835081577301,0.15330109000206,0.236061573028564,-0.529925346374512,-0.814526796340942,0.522269248962402,-0.581133902072906,-0.624114036560059,0.598839104175568,0.0565005876123905,-0.798873841762543,0.334834426641464,0.026037909090519,-0.94191712141037,0.371360123157501,-0.0797063857316971,-0.925061404705048,0.440355658531189,-0.764450252056122,-0.470852941274643,0.587986946105957,0.0637609213590622,-0.806353509426117,0.998288512229919,0.0447367131710052,0.0376661717891693,0.899554967880249,0.435584306716919,0.0326679870486259,0.844850599765778,0.475474119186401,0.245258778333664,0.959827303886414,0.0507901422679424,0.275956392288208,-0.906464219093323,0.0723060294985771,-0.416046172380447,0.268122464418411,0.0406579375267029,-0.962526559829712,0.285368263721466,-0.093770943582058,-0.953819751739502,-0.904082715511322,-0.0420824363827705,-0.425280511379242,0.440355658531189,-0.764450252056122,-0.470852941274643,0.371360123157501,-0.0797063857316971,-0.925061404705048,0.285368263721466,-0.093770943582058,-0.953819751739502,
- 0.575525462627411,-0.096616268157959,-0.812056481838226,0.608895897865295,0.554812073707581,-0.566947460174561,0.138372138142586,-0.299532413482666,-0.943998694419861,0.638776123523712,-0.0256999041885138,-0.768963277339935,0.218825146555901,0.739221811294556,-0.636919796466827,0.268122464418411,0.0406579375267029,-0.962526559829712,-0.752393186092377,0.566826999187469,-0.335576683282852,0.594703853130341,-0.0400217659771442,-0.80294805765152,0.0483522415161133,-0.998828053474426,0.00212176633067429,0.112829141318798,-0.982664346694946,-0.147106856107712,0.615092694759369,0.0862285494804382,-0.783725500106812,0.306394129991531,0.0947228297591209,-0.947180151939392,0.236235946416855,0.590157210826874,-0.77195018529892,0.374146282672882,0.849147617816925,-0.372777342796326,-0.0142016895115376,-0.998563706874847,-0.0516602285206318,-0.885616540908813,-0.0665280744433403,-0.459627270698547,0.297266602516174,-0.0287340432405472,-0.954362034797668,0.575124561786652,0.0274765305221081,-0.817604243755341,0.306608647108078,0.041750680655241,-0.950919568538666,-0.0213814862072468,0.999574601650238,-0.0198313500732183,0.0210888274013996,0.999602615833282,-0.0187041256576777,0.334834426641464,0.026037909090519,-0.94191712141037,0.326986879110336,-0.0210418999195099,-0.944794595241547,-0.916069388389587,-0.0423001386225224,-0.398782700300217,-0.912044584751129,0.0947573333978653,-0.398993372917175,0.371360123157501,-0.0797063857316971,-0.925061404705048,0.334834426641464,0.026037909090519,-0.94191712141037,-0.912044584751129,0.0947573333978653,-0.398993372917175,-0.90908271074295,-0.0250656027346849,-0.415861010551453,-0.752393186092377,0.566826999187469,-0.335576683282852,-0.692085981369019,0.659807503223419,-0.292696386575699,-0.920999109745026,-0.0289453156292439,-0.388487637042999,0.285368263721466,-0.093770943582058,-0.953819751739502,0.371360123157501,-0.0797063857316971,-0.925061404705048,-0.904082715511322,-0.0420824363827705,-0.425280511379242,0.579182803630829,-0.0387177541851997,-0.814277648925781,0.575124561786652,0.0274765305221081,-0.817604243755341,
- 0.99811202287674,0.0430094934999943,0.0438479818403721,0.998178482055664,-0.0506096482276917,0.0328363738954067,-0.90908271074295,-0.0250656027346849,-0.415861010551453,-0.920999109745026,-0.0289453156292439,-0.388487637042999,-0.921320378780365,-0.0122508993372321,-0.388611197471619,-0.908536016941071,-0.0115600815042853,-0.417646646499634,0.236235946416855,0.590157210826874,-0.77195018529892,0.306394129991531,0.0947228297591209,-0.947180151939392,-0.899993240833282,0.0199144929647446,-0.435448825359344,-0.70914351940155,-0.629117965698242,-0.318317472934723,0.306394129991531,0.0947228297591209,-0.947180151939392,0.275149166584015,-0.0192369017750025,-0.961209118366241,-0.894161641597748,-0.0117185115814209,-0.447591006755829,-0.899993240833282,0.0199144929647446,-0.435448825359344,0.123054012656212,0.551795244216919,-0.824851274490356,-0.926159203052521,0.0642629414796829,-0.371617257595062,-0.628074944019318,-0.700622320175171,-0.33860045671463,0.0123435510322452,0.763902366161346,-0.645213723182678,-0.739068508148193,0.58557653427124,-0.332983314990997,-0.699432253837585,0.650944352149963,-0.295069396495819,-0.921030879020691,-0.0056670131161809,-0.389448374509811,-0.920107305049896,0.0212901998311281,-0.391087144613266,-0.888806819915771,0.0537199601531029,-0.455122441053391,-0.885616540908813,-0.0665280744433403,-0.459627270698547,-0.915771961212158,-0.0885526761412621,-0.391816645860672,-0.913803040981293,0.109839603304863,-0.391023248434067,-0.0142016895115376,-0.998563706874847,-0.0516602285206318,0.112829141318798,-0.982664346694946,-0.147106856107712,0.0483522415161133,-0.998828053474426,0.00212176633067429,-0.0142016895115376,-0.998563706874847,-0.0516602285206318,0.297266602516174,-0.0287340432405472,-0.954362034797668,0.594703853130341,-0.0400217659771442,-0.80294805765152,0.112829141318798,-0.982664346694946,-0.147106856107712,0.95939964056015,0.00971737876534462,0.28188282251358,0.999231398105621,0.00946682319045067,0.038039855659008,0.999476253986359,0.0286171678453684,0.0151065420359373,0.958990573883057,0.0298198517411947,0.281864881515503,
- 0.816801011562347,-0.525319159030914,0.238486438989639,0.998403787612915,-0.0515835396945477,0.0229998771101236,0.959725260734558,-0.0531774163246155,0.275861412286758,0.138372138142586,-0.299532413482666,-0.943998694419861,-0.901001513004303,-0.0618181116878986,-0.429388880729675,-0.894161641597748,-0.0117185115814209,-0.447591006755829,0.275149166584015,-0.0192369017750025,-0.961209118366241,0.608895897865295,0.554812073707581,-0.566947460174561,0.638776123523712,-0.0256999041885138,-0.768963277339935,0.998510777950287,-0.0146478926762939,0.0525513179600239,0.899554967880249,0.435584306716919,0.0326679870486259,0.374146282672882,0.849147617816925,-0.372777342796326,0.236235946416855,0.590157210826874,-0.77195018529892,0.601568043231964,-0.0311980377882719,-0.798211991786957,0.519701182842255,0.854202210903168,0.0157847702503204,0.374146282672882,0.849147617816925,-0.372777342796326,0.601568043231964,-0.0311980377882719,-0.798211991786957,0.999809920787811,-0.0179902594536543,0.00751826772466302,-0.618845343589783,-0.740038573741913,-0.263388156890869,-0.70914351940155,-0.629117965698242,-0.318317472934723,-0.899993240833282,0.0199144929647446,-0.435448825359344,-0.919802963733673,0.0448176674544811,-0.389812618494034,-0.916069388389587,-0.0423001386225224,-0.398782700300217,0.326986879110336,-0.0210418999195099,-0.944794595241547,0.236235946416855,0.590157210826874,-0.77195018529892,0.999617338180542,0.00896215252578259,0.0261705536395311,0.999809920787811,-0.0179902594536543,0.00751826772466302,0.601568043231964,-0.0311980377882719,-0.798211991786957,0.587986946105957,0.0637609213590622,-0.806353509426117,0.460562318563461,-0.887475371360779,-0.0164282768964767,0.440355658531189,-0.764450252056122,-0.470852941274643,0.575525462627411,-0.096616268157959,-0.812056481838226,0.991186082363129,-0.121165044605732,0.0535642318427563,0.608895897865295,0.554812073707581,-0.566947460174561,0.0123435510322452,0.763902366161346,-0.645213723182678,0.138372138142586,-0.299532413482666,-0.943998694419861,-0.628074944019318,-0.700622320175171,-0.33860045671463,
- 0.138372138142586,-0.299532413482666,-0.943998694419861,0.0123435510322452,0.763902366161346,-0.645213723182678,0.371360123157501,-0.0797063857316971,-0.925061404705048,-0.912044584751129,0.0947573333978653,-0.398993372917175,-0.833190739154816,0.427746444940567,-0.350465536117554,-0.904082715511322,-0.0420824363827705,-0.425280511379242,0.371360123157501,-0.0797063857316971,-0.925061404705048,-0.833190739154816,0.427746444940567,-0.350465536117554,0.236061573028564,-0.529925346374512,-0.814526796340942,-0.888806819915771,0.0537199601531029,-0.455122441053391,-0.739068508148193,0.58557653427124,-0.332983314990997,-0.699432253837585,0.650944352149963,-0.295069396495819,-0.739068508148193,0.58557653427124,-0.332983314990997,-0.888806819915771,0.0537199601531029,-0.455122441053391,-0.913803040981293,0.109839603304863,-0.391023248434067,0.998403787612915,-0.0515835396945477,0.0229998771101236,0.816801011562347,-0.525319159030914,0.238486438989639,0.751641690731049,-0.653512895107269,-0.0891945734620094,0.522269248962402,-0.581133902072906,-0.624114036560059,0.597467124462128,-0.0547007471323013,-0.800025641918182,0.998403787612915,-0.0515835396945477,0.0229998771101236,0.751641690731049,-0.653512895107269,-0.0891945734620094,0.816801011562347,-0.525319159030914,0.238486438989639,0.999476253986359,0.0286171678453684,0.0151065420359373,0.751641690731049,-0.653512895107269,-0.0891945734620094,0.598839104175568,0.0565005876123905,-0.798873841762543,0.522269248962402,-0.581133902072906,-0.624114036560059,0.751641690731049,-0.653512895107269,-0.0891945734620094,0.999476253986359,0.0286171678453684,0.0151065420359373,0.999476253986359,0.0286171678453684,0.0151065420359373,0.816801011562347,-0.525319159030914,0.238486438989639,0.958990573883057,0.0298198517411947,0.281864881515503,-0.739068508148193,0.58557653427124,-0.332983314990997,-0.920107305049896,0.0212901998311281,-0.391087144613266,0.305194467306137,-0.0423816926777363,-0.951346516609192,0.990841329097748,-0.133656591176987,0.0192220769822598,0.998178482055664,-0.0506096482276917,0.0328363738954067,
- 0.955476999282837,-0.0998771041631699,0.277647912502289,0.998243272304535,0.0426949821412563,0.0410775505006313,0.990841329097748,-0.133656591176987,0.0192220769822598,0.955476999282837,-0.0998771041631699,0.277647912502289,0.958963394165039,0.0511213913559914,0.278883159160614,0.575603604316711,0.0612988881766796,-0.815428078174591,0.601815462112427,0.310681581497192,-0.735727608203888,0.990841329097748,-0.133656591176987,0.0192220769822598,0.998243272304535,0.0426949821412563,0.0410775505006313,0.601815462112427,0.310681581497192,-0.735727608203888,0.579182803630829,-0.0387177541851997,-0.814277648925781,0.998178482055664,-0.0506096482276917,0.0328363738954067,0.990841329097748,-0.133656591176987,0.0192220769822598,0.304952204227448,-0.0179882850497961,-0.952197730541229,0.306608647108078,0.041750680655241,-0.950919568538666,0.575124561786652,0.0274765305221081,-0.817604243755341,0.579182803630829,-0.0387177541851997,-0.814277648925781,0.601815462112427,0.310681581497192,-0.735727608203888,0.575603604316711,0.0612988881766796,-0.815428078174591,0.268122464418411,0.0406579375267029,-0.962526559829712,0.218825146555901,0.739221811294556,-0.636919796466827,0.304952204227448,-0.0179882850497961,-0.952197730541229,0.218825146555901,0.739221811294556,-0.636919796466827,-0.752393186092377,0.566826999187469,-0.335576683282852,0.268122464418411,0.0406579375267029,-0.962526559829712,-0.906464219093323,0.0723060294985771,-0.416046172380447,-0.752393186092377,0.566826999187469,-0.335576683282852,0.594703853130341,-0.0400217659771442,-0.80294805765152,0.999231398105621,0.00946682319045067,0.038039855659008,0.0483522415161133,-0.998828053474426,0.00212176633067429,-0.912044584751129,0.0947573333978653,-0.398993372917175,-0.916069388389587,-0.0423001386225224,-0.398782700300217,-0.913663566112518,-0.0910548493266106,-0.396141201257706,-0.912450909614563,0.104672126471996,-0.395571678876877,-0.913663566112518,-0.0910548493266106,-0.396141201257706,-0.916069388389587,-0.0423001386225224,-0.398782700300217,-0.70914351940155,-0.629117965698242,-0.318317472934723,
- -0.618845343589783,-0.740038573741913,-0.263388156890869,-0.0222452338784933,0.999700784683228,-0.0101750874891877,-0.0213814862072468,0.999574601650238,-0.0198313500732183,-0.908536016941071,-0.0115600815042853,-0.417646646499634,-0.921320378780365,-0.0122508993372321,-0.388611197471619,-0.918679714202881,-0.0533899068832397,-0.391378432512283,-0.904082715511322,-0.0420824363827705,-0.425280511379242,-0.833190739154816,0.427746444940567,-0.350465536117554,-0.770386040210724,0.546414256095886,-0.328537344932556,0.96008312702179,0.0533669665455818,0.274576485157013,0.99811202287674,0.0430094934999943,0.0438479818403721,0.0301678515970707,0.999527752399445,0.00586088560521603,0.0276326108723879,0.999585151672363,0.00812378991395235,0.991186082363129,-0.121165044605732,0.0535642318427563,0.998243272304535,0.0426949821412563,0.0410775505006313,0.958963394165039,0.0511213913559914,0.278883159160614,0.95020854473114,-0.143896237015724,0.276401340961456,0.958085954189301,0.0190946012735367,0.28584349155426,0.95818156003952,0.026448879390955,0.284935921430588,0.517505884170532,-0.841835081577301,0.15330109000206,-0.692085981369019,0.659807503223419,-0.292696386575699,-0.752393186092377,0.566826999187469,-0.335576683282852,-0.906464219093323,0.0723060294985771,-0.416046172380447,-0.917587399482727,0.0720567479729652,-0.390949010848999,-0.916880249977112,-0.0916120186448097,-0.388507068157196,-0.901001513004303,-0.0618181116878986,-0.429388880729675,-0.628074944019318,-0.700622320175171,-0.33860045671463,-0.63613760471344,-0.724256992340088,-0.266046583652496,0.448807656764984,0.883545100688934,0.133864760398865,0.894654631614685,-0.365674883127213,0.256661146879196,0.958266973495483,-0.00203788769431412,0.28586745262146,0.844850599765778,0.475474119186401,0.245258778333664,0.899554967880249,0.435584306716919,0.0326679870486259,0.998510777950287,-0.0146478926762939,0.0525513179600239,0.96002721786499,-0.0154680153355002,0.279479146003723,0.955476999282837,-0.0998771041631699,0.277647912502289,0.998178482055664,-0.0506096482276917,0.0328363738954067,
- 0.960086464881897,-0.0539438650012016,0.274452060461044,0.960086464881897,-0.0539438650012016,0.274452060461044,0.998178482055664,-0.0506096482276917,0.0328363738954067,0.99811202287674,0.0430094934999943,0.0438479818403721,0.96008312702179,0.0533669665455818,0.274576485157013,-0.63613760471344,-0.724256992340088,-0.266046583652496,-0.628074944019318,-0.700622320175171,-0.33860045671463,-0.926159203052521,0.0642629414796829,-0.371617257595062,-0.91865485906601,0.0724752768874168,-0.388356387615204,-0.91865485906601,0.0724752768874168,-0.388356387615204,-0.926159203052521,0.0642629414796829,-0.371617257595062,-0.920718252658844,0.0389508008956909,-0.38827919960022,-0.920107305049896,0.0212901998311281,-0.391087144613266,-0.921030879020691,-0.0056670131161809,-0.389448374509811,0.96002721786499,-0.0154680153355002,0.279479146003723,0.998510777950287,-0.0146478926762939,0.0525513179600239,0.996169030666351,0.0735934153199196,0.0472353063523769,0.955037951469421,0.102600514888763,0.278164654970169,0.517505884170532,-0.841835081577301,0.15330109000206,0.460562318563461,-0.887475371360779,-0.0164282768964767,0.991186082363129,-0.121165044605732,0.0535642318427563,0.95020854473114,-0.143896237015724,0.276401340961456,0.958266973495483,-0.00203788769431412,0.28586745262146,0.999809920787811,-0.0179902594536543,0.00751826772466302,0.999617338180542,0.00896215252578259,0.0261705536395311,0.95818156003952,0.026448879390955,0.284935921430588,0.958085954189301,0.0190946012735367,0.28584349155426,0.958266973495483,-0.00203788769431412,0.28586745262146,0.894654631614685,-0.365674883127213,0.256661146879196,0.999809920787811,-0.0179902594536543,0.00751826772466302,0.0488122850656509,-0.998805999755859,0.00200908328406513,0.042688887566328,-0.998992741107941,0.013828213326633,-0.0223664212971926,-0.999704122543335,-0.00955477450042963,-0.0173321515321732,-0.998619377613068,-0.0495878607034683,0.996344864368439,-0.068964384496212,0.050406314432621,0.965173244476318,-0.159912496805191,0.207047089934349,0.858124136924744,-0.472634583711624,0.200597688555717,
- 0.891107499599457,-0.45095431804657,-0.0506714694201946,0.394757270812988,-0.131012201309204,-0.909396827220917,0.353717893362045,-0.211377710103989,-0.911154806613922,0.187645316123962,0.0144347827881575,-0.982130765914917,0.22612039744854,0.0421346761286259,-0.973187685012817,0.999150097370148,-0.0408734418451786,-0.00532137928530574,0.999192953109741,-0.0398531816899776,-0.00501161394640803,0.999354243278503,-0.0268738213926554,-0.0238517336547375,0.999688923358917,0.0147943329066038,-0.0200824718922377,0.999895334243774,0.0134341483935714,-0.00536413677036762,0.461789697408676,-0.861342489719391,-0.211753353476524,0.322356551885605,-0.923438549041748,-0.208200797438622,0.180080145597458,-0.228670850396156,-0.956703066825867,0.266025900840759,-0.166746258735657,-0.949434578418732,0.290947109460831,-0.0235946252942085,-0.956448137760162,0.28698194026947,0.0378455370664597,-0.957188069820404,0.567394256591797,0.0268032681196928,-0.82300990819931,0.575785577297211,-0.038553960621357,-0.816691279411316,0.394757270812988,-0.131012201309204,-0.909396827220917,-0.0362852327525616,-0.420140206813812,-0.906733453273773,-0.436723232269287,-0.869709253311157,-0.22995337843895,0.67354953289032,-0.721068382263184,-0.1624546200037,-0.885627090930939,0.109560564160347,-0.451288312673569,0.28698194026947,0.0378455370664597,-0.957188069820404,0.290947109460831,-0.0235946252942085,-0.956448137760162,-0.889050662517548,0.0282520428299904,-0.456936120986938,-0.372311532497406,0.924133479595184,-0.0857982113957405,-0.440312296152115,0.891203880310059,-0.108999468386173,-0.436276972293854,0.896964251995087,-0.0715381130576134,-0.362463355064392,0.930208623409271,-0.0577255636453629,0.997913300991058,-0.05744743719697,0.0294772777706385,0.957248091697693,-0.0651321709156036,0.281840026378632,0.042688887566328,-0.998992741107941,0.013828213326633,0.0488122850656509,-0.998805999755859,0.00200908328406513,0.567394256591797,0.0268032681196928,-0.82300990819931,0.999624133110046,-0.0269416496157646,0.00507658626884222,0.997913300991058,-0.05744743719697,0.0294772777706385,
- 0.575785577297211,-0.038553960621357,-0.816691279411316,-0.772992491722107,0.559374272823334,-0.299304127693176,-0.784081161022186,0.535845398902893,-0.313187777996063,-0.798372745513916,0.520854473114014,-0.302177935838699,-0.799619674682617,0.534302890300751,-0.274096131324768,-0.762100398540497,0.592979311943054,-0.259958684444427,0.327930718660355,0.153162032365799,-0.93220317363739,0.187645316123962,0.0144347827881575,-0.982130765914917,0.353717893362045,-0.211377710103989,-0.911154806613922,0.149004265666008,0.107478313148022,-0.982978165149689,0.266025900840759,-0.166746258735657,-0.949434578418732,0.180080145597458,-0.228670850396156,-0.956703066825867,0.0837073028087616,0.0482305102050304,-0.995322525501251,0.927446305751801,-0.373353838920593,-0.0212185215204954,0.971706032752991,-0.236186757683754,0.001772586023435,0.935492336750031,-0.247013300657272,0.252663135528564,0.879900336265564,-0.411006033420563,0.238431185483933,0.489185839891434,-0.0928748473525047,-0.86722058057785,0.891107499599457,-0.45095431804657,-0.0506714694201946,0.844996929168701,-0.532646179199219,-0.0476256869733334,0.491697728633881,-0.178621724247932,-0.85224860906601,0.209899708628654,0.0258437655866146,-0.977381229400635,0.26360222697258,0.0715003684163094,-0.961977958679199,0.489185839891434,-0.0928748473525047,-0.86722058057785,0.491697728633881,-0.178621724247932,-0.85224860906601,0.828023433685303,0.327176719903946,-0.455337852239609,0.545992493629456,-0.0125307785347104,-0.837696313858032,0.373435348272324,0.551069855690002,-0.746235907077789,0.212988510727882,0.569810628890991,-0.793695032596588,0.209899708628654,0.0258437655866146,-0.977381229400635,0.491697728633881,-0.178621724247932,-0.85224860906601,0.0220309887081385,-0.130999058485031,-0.991137683391571,0.0912486389279366,-0.206704914569855,-0.974138975143433,0.999354243278503,-0.0268738213926554,-0.0238517336547375,0.999192953109741,-0.0398531816899776,-0.00501161394640803,0.147780776023865,-0.956819415092468,-0.250314831733704,0.704046070575714,0.176849707961082,-0.687781393527985,
- 0.0205259844660759,0.0422331504523754,-0.998897016048431,0.0374260507524014,-0.224442169070244,-0.973768353462219,0.0220309887081385,-0.130999058485031,-0.991137683391571,-0.908434212207794,-0.0635783672332764,-0.413164705038071,-0.798372745513916,0.520854473114014,-0.302177935838699,0.373435348272324,0.551069855690002,-0.746235907077789,0.276102155447006,0.0353681780397892,-0.960477352142334,-0.878095328807831,0.327987164258957,-0.348386496305466,0.523418128490448,-0.142257750034332,-0.840116798877716,0.545992493629456,-0.0125307785347104,-0.837696313858032,0.971706032752991,-0.236186757683754,0.001772586023435,0.927446305751801,-0.373353838920593,-0.0212185215204954,0.999688923358917,0.0147943329066038,-0.0200824718922377,0.072126105427742,0.0462052747607231,-0.99632465839386,-0.0999325662851334,0.994278311729431,-0.0377365052700043,-0.889050662517548,0.0282520428299904,-0.456936120986938,-0.0173321515321732,-0.998619377613068,-0.0495878607034683,-0.0223664212971926,-0.999704122543335,-0.00955477450042963,-0.919320583343506,0.0177840534597635,-0.393107444047928,0.276102155447006,0.0353681780397892,-0.960477352142334,0.545992493629456,-0.0125307785347104,-0.837696313858032,0.523418128490448,-0.142257750034332,-0.840116798877716,0.272152721881866,-0.0304107684642076,-0.961773455142975,-0.878309845924377,0.312729090452194,-0.361624449491501,0.276102155447006,0.0353681780397892,-0.960477352142334,0.272152721881866,-0.0304107684642076,-0.961773455142975,-0.881400465965271,0.297936826944351,-0.366560965776443,0.567394256591797,0.0268032681196928,-0.82300990819931,0.28698194026947,0.0378455370664597,-0.957188069820404,0.146248713135719,-0.465115576982498,-0.873085796833038,0.632689774036407,-0.766064167022705,0.113355614244938,0.67354953289032,-0.721068382263184,-0.1624546200037,-0.436723232269287,-0.869709253311157,-0.22995337843895,0.545992493629456,-0.0125307785347104,-0.837696313858032,0.828023433685303,0.327176719903946,-0.455337852239609,0.994957566261292,0.087783470749855,0.0485124066472054,0.971706032752991,-0.236186757683754,0.001772586023435,
- -0.570517003536224,0.807011604309082,-0.152455344796181,-0.531003355979919,0.83540403842926,-0.141899645328522,-0.0952905714511871,0.995291590690613,-0.0177307147532701,-0.0480619557201862,0.998842298984528,0.00202677422203124,0.523418128490448,-0.142257750034332,-0.840116798877716,0.317009747028351,-0.712935566902161,-0.625482022762299,0.146248713135719,-0.465115576982498,-0.873085796833038,0.272152721881866,-0.0304107684642076,-0.961773455142975,-0.529644072055817,0.811384797096252,-0.247248649597168,0.272152721881866,-0.0304107684642076,-0.961773455142975,0.146248713135719,-0.465115576982498,-0.873085796833038,0.489185839891434,-0.0928748473525047,-0.86722058057785,0.781801342964172,0.276336967945099,-0.558949410915375,0.996344864368439,-0.068964384496212,0.050406314432621,0.891107499599457,-0.45095431804657,-0.0506714694201946,-0.878095328807831,0.327987164258957,-0.348386496305466,0.276102155447006,0.0353681780397892,-0.960477352142334,-0.878309845924377,0.312729090452194,-0.361624449491501,0.0374260507524014,-0.224442169070244,-0.973768353462219,0.695156753063202,-0.113308757543564,-0.709872007369995,0.704046070575714,0.176849707961082,-0.687781393527985,0.545992493629456,-0.0125307785347104,-0.837696313858032,0.276102155447006,0.0353681780397892,-0.960477352142334,0.373435348272324,0.551069855690002,-0.746235907077789,-0.158686846494675,0.986498594284058,-0.040485356003046,0.0205259844660759,0.0422331504523754,-0.998897016048431,-0.356389045715332,0.932926297187805,-0.0513357147574425,-0.0999325662851334,0.994278311729431,-0.0377365052700043,0.072126105427742,0.0462052747607231,-0.99632465839386,0.0205259844660759,0.0422331504523754,-0.998897016048431,-0.158686846494675,0.986498594284058,-0.040485356003046,0.146248713135719,-0.465115576982498,-0.873085796833038,0.28698194026947,0.0378455370664597,-0.957188069820404,-0.885627090930939,0.109560564160347,-0.451288312673569,-0.646238625049591,0.743723630905151,-0.171028390526772,0.327930718660355,0.153162032365799,-0.93220317363739,-0.949602127075195,0.116442583501339,-0.291027337312698,
- 0.632689774036407,-0.766064167022705,0.113355614244938,-0.436723232269287,-0.869709253311157,-0.22995337843895,-0.262747377157211,-0.964121699333191,-0.0378576889634132,0.146248713135719,-0.465115576982498,-0.873085796833038,0.317009747028351,-0.712935566902161,-0.625482022762299,0.567394256591797,0.0268032681196928,-0.82300990819931,0.22612039744854,0.0421346761286259,-0.973187685012817,0.402668535709381,0.121374808251858,-0.907262980937958,-0.0362852327525616,-0.420140206813812,-0.906733453273773,0.394757270812988,-0.131012201309204,-0.909396827220917,0.971706032752991,-0.236186757683754,0.001772586023435,0.994957566261292,0.087783470749855,0.0485124066472054,0.959857761859894,0.124494329094887,0.251344710588455,0.935492336750031,-0.247013300657272,0.252663135528564,-0.372311532497406,0.924133479595184,-0.0857982113957405,0.149004265666008,0.107478313148022,-0.982978165149689,0.0837073028087616,0.0482305102050304,-0.995322525501251,-0.440312296152115,0.891203880310059,-0.108999468386173,-0.0362852327525616,-0.420140206813812,-0.906733453273773,0.402668535709381,0.121374808251858,-0.907262980937958,0.0837073028087616,0.0482305102050304,-0.995322525501251,0.180080145597458,-0.228670850396156,-0.956703066825867,0.828023433685303,0.327176719903946,-0.455337852239609,0.0220309887081385,-0.130999058485031,-0.991137683391571,0.491697728633881,-0.178621724247932,-0.85224860906601,0.704046070575714,0.176849707961082,-0.687781393527985,0.149004265666008,0.107478313148022,-0.982978165149689,-0.356389045715332,0.932926297187805,-0.0513357147574425,0.575785577297211,-0.038553960621357,-0.816691279411316,0.0488122850656509,-0.998805999755859,0.00200908328406513,0.112658143043518,-0.980921506881714,-0.158433496952057,0.489185839891434,-0.0928748473525047,-0.86722058057785,0.26360222697258,0.0715003684163094,-0.961977958679199,0.327930718660355,0.153162032365799,-0.93220317363739,0.781801342964172,0.276336967945099,-0.558949410915375,-0.0173321515321732,-0.998619377613068,-0.0495878607034683,-0.889050662517548,0.0282520428299904,-0.456936120986938,
- 0.290947109460831,-0.0235946252942085,-0.956448137760162,0.0912486389279366,-0.206704914569855,-0.974138975143433,0.072126105427742,0.0462052747607231,-0.99632465839386,0.999688923358917,0.0147943329066038,-0.0200824718922377,0.999354243278503,-0.0268738213926554,-0.0238517336547375,-0.570517003536224,0.807011604309082,-0.152455344796181,0.22612039744854,0.0421346761286259,-0.973187685012817,0.187645316123962,0.0144347827881575,-0.982130765914917,-0.646238625049591,0.743723630905151,-0.171028390526772,0.402668535709381,0.121374808251858,-0.907262980937958,0.22612039744854,0.0421346761286259,-0.973187685012817,-0.570517003536224,0.807011604309082,-0.152455344796181,-0.158686846494675,0.986498594284058,-0.040485356003046,-0.356389045715332,0.932926297187805,-0.0513357147574425,-0.224579781293869,0.974178075790405,-0.0232625734061003,-0.156405359506607,0.987655520439148,-0.00859432015568018,0.0837073028087616,0.0482305102050304,-0.995322525501251,0.402668535709381,0.121374808251858,-0.907262980937958,-0.440312296152115,0.891203880310059,-0.108999468386173,0.0374260507524014,-0.224442169070244,-0.973768353462219,0.0912486389279366,-0.206704914569855,-0.974138975143433,0.147780776023865,-0.956819415092468,-0.250314831733704,0.0985465198755264,-0.959192097187042,-0.265026420354843,-0.158686846494675,0.986498594284058,-0.040485356003046,-0.156405359506607,0.987655520439148,-0.00859432015568018,-0.0954900309443474,0.995413899421692,-0.00572490319609642,-0.0999325662851334,0.994278311729431,-0.0377365052700043,0.327930718660355,0.153162032365799,-0.93220317363739,0.26360222697258,0.0715003684163094,-0.961977958679199,-0.772992491722107,0.559374272823334,-0.299304127693176,-0.949602127075195,0.116442583501339,-0.291027337312698,-0.784081161022186,0.535845398902893,-0.313187777996063,-0.772992491722107,0.559374272823334,-0.299304127693176,0.26360222697258,0.0715003684163094,-0.961977958679199,0.209899708628654,0.0258437655866146,-0.977381229400635,0.373435348272324,0.551069855690002,-0.746235907077789,-0.878095328807831,0.327987164258957,-0.348386496305466,
- -0.908434212207794,-0.0635783672332764,-0.413164705038071,0.212988510727882,0.569810628890991,-0.793695032596588,-0.529644072055817,0.811384797096252,-0.247248649597168,-0.477222889661789,0.856414139270782,-0.197010323405266,-0.888562560081482,0.291549175977707,-0.354197323322296,-0.881400465965271,0.297936826944351,-0.366560965776443,-0.885627090930939,0.109560564160347,-0.451288312673569,-0.889050662517548,0.0282520428299904,-0.456936120986938,-0.919320583343506,0.0177840534597635,-0.393107444047928,-0.908539116382599,0.154093161225319,-0.388344883918762,-0.0173321515321732,-0.998619377613068,-0.0495878607034683,0.112658143043518,-0.980921506881714,-0.158433496952057,0.0488122850656509,-0.998805999755859,0.00200908328406513,-0.0173321515321732,-0.998619377613068,-0.0495878607034683,0.290947109460831,-0.0235946252942085,-0.956448137760162,0.575785577297211,-0.038553960621357,-0.816691279411316,0.112658143043518,-0.980921506881714,-0.158433496952057,0.997913300991058,-0.05744743719697,0.0294772777706385,0.999624133110046,-0.0269416496157646,0.00507658626884222,0.95897912979126,-0.0269902274012566,0.282188922166824,0.957248091697693,-0.0651321709156036,0.281840026378632,0.4785475730896,-0.866970539093018,0.139119729399681,0.927446305751801,-0.373353838920593,-0.0212185215204954,0.879900336265564,-0.411006033420563,0.238431185483933,0.0220309887081385,-0.130999058485031,-0.991137683391571,-0.798372745513916,0.520854473114014,-0.302177935838699,-0.784081161022186,0.535845398902893,-0.313187777996063,0.209899708628654,0.0258437655866146,-0.977381229400635,0.828023433685303,0.327176719903946,-0.455337852239609,0.491697728633881,-0.178621724247932,-0.85224860906601,0.844996929168701,-0.532646179199219,-0.0476256869733334,0.994957566261292,0.087783470749855,0.0485124066472054,0.781801342964172,0.276336967945099,-0.558949410915375,0.327930718660355,0.153162032365799,-0.93220317363739,0.353717893362045,-0.211377710103989,-0.911154806613922,0.996344864368439,-0.068964384496212,0.050406314432621,0.781801342964172,0.276336967945099,-0.558949410915375,
- 0.353717893362045,-0.211377710103989,-0.911154806613922,0.635059356689453,-0.756900429725647,-0.154276713728905,-0.954912602901459,0.064922884106636,-0.289701402187347,-0.949602127075195,0.116442583501339,-0.291027337312698,-0.772992491722107,0.559374272823334,-0.299304127693176,-0.762100398540497,0.592979311943054,-0.259958684444427,-0.646238625049591,0.743723630905151,-0.171028390526772,0.187645316123962,0.0144347827881575,-0.982130765914917,0.327930718660355,0.153162032365799,-0.93220317363739,0.353717893362045,-0.211377710103989,-0.911154806613922,0.394757270812988,-0.131012201309204,-0.909396827220917,0.67354953289032,-0.721068382263184,-0.1624546200037,0.635059356689453,-0.756900429725647,-0.154276713728905,-0.436723232269287,-0.869709253311157,-0.22995337843895,-0.0362852327525616,-0.420140206813812,-0.906733453273773,0.180080145597458,-0.228670850396156,-0.956703066825867,0.322356551885605,-0.923438549041748,-0.208200797438622,0.828023433685303,0.327176719903946,-0.455337852239609,0.212988510727882,0.569810628890991,-0.793695032596588,0.0220309887081385,-0.130999058485031,-0.991137683391571,-0.908434212207794,-0.0635783672332764,-0.413164705038071,0.0220309887081385,-0.130999058485031,-0.991137683391571,0.212988510727882,0.569810628890991,-0.793695032596588,0.402668535709381,0.121374808251858,-0.907262980937958,-0.570517003536224,0.807011604309082,-0.152455344796181,-0.0480619557201862,0.998842298984528,0.00202677422203124,-0.440312296152115,0.891203880310059,-0.108999468386173,0.402668535709381,0.121374808251858,-0.907262980937958,-0.0480619557201862,0.998842298984528,0.00202677422203124,0.146248713135719,-0.465115576982498,-0.873085796833038,-0.885627090930939,0.109560564160347,-0.451288312673569,-0.529644072055817,0.811384797096252,-0.247248649597168,-0.477222889661789,0.856414139270782,-0.197010323405266,-0.529644072055817,0.811384797096252,-0.247248649597168,-0.885627090930939,0.109560564160347,-0.451288312673569,-0.908539116382599,0.154093161225319,-0.388344883918762,0.927446305751801,-0.373353838920593,-0.0212185215204954,
- 0.4785475730896,-0.866970539093018,0.139119729399681,0.413978278636932,-0.902199983596802,-0.121066525578499,0.317009747028351,-0.712935566902161,-0.625482022762299,0.523418128490448,-0.142257750034332,-0.840116798877716,0.927446305751801,-0.373353838920593,-0.0212185215204954,0.413978278636932,-0.902199983596802,-0.121066525578499,0.4785475730896,-0.866970539093018,0.139119729399681,0.999624133110046,-0.0269416496157646,0.00507658626884222,0.413978278636932,-0.902199983596802,-0.121066525578499,0.567394256591797,0.0268032681196928,-0.82300990819931,0.317009747028351,-0.712935566902161,-0.625482022762299,0.413978278636932,-0.902199983596802,-0.121066525578499,0.999624133110046,-0.0269416496157646,0.00507658626884222,0.999624133110046,-0.0269416496157646,0.00507658626884222,0.4785475730896,-0.866970539093018,0.139119729399681,0.95897912979126,-0.0269902274012566,0.282188922166824,-0.529644072055817,0.811384797096252,-0.247248649597168,-0.881400465965271,0.297936826944351,-0.366560965776443,0.272152721881866,-0.0304107684642076,-0.961773455142975,0.650137722492218,-0.733382880687714,-0.198671951889992,0.0985465198755264,-0.959192097187042,-0.265026420354843,0.58628523349762,-0.808761596679688,0.0466293729841709,0.461789697408676,-0.861342489719391,-0.211753353476524,0.650137722492218,-0.733382880687714,-0.198671951889992,0.58628523349762,-0.808761596679688,0.0466293729841709,0.4364373087883,-0.898540377616882,0.0463411137461662,0.266025900840759,-0.166746258735657,-0.949434578418732,0.695156753063202,-0.113308757543564,-0.709872007369995,0.650137722492218,-0.733382880687714,-0.198671951889992,0.461789697408676,-0.861342489719391,-0.211753353476524,0.695156753063202,-0.113308757543564,-0.709872007369995,0.0374260507524014,-0.224442169070244,-0.973768353462219,0.0985465198755264,-0.959192097187042,-0.265026420354843,0.650137722492218,-0.733382880687714,-0.198671951889992,0.0205259844660759,0.0422331504523754,-0.998897016048431,0.072126105427742,0.0462052747607231,-0.99632465839386,0.0912486389279366,-0.206704914569855,-0.974138975143433,
- 0.0374260507524014,-0.224442169070244,-0.973768353462219,0.695156753063202,-0.113308757543564,-0.709872007369995,0.266025900840759,-0.166746258735657,-0.949434578418732,0.149004265666008,0.107478313148022,-0.982978165149689,0.704046070575714,0.176849707961082,-0.687781393527985,0.0205259844660759,0.0422331504523754,-0.998897016048431,0.704046070575714,0.176849707961082,-0.687781393527985,-0.356389045715332,0.932926297187805,-0.0513357147574425,0.149004265666008,0.107478313148022,-0.982978165149689,-0.372311532497406,0.924133479595184,-0.0857982113957405,-0.356389045715332,0.932926297187805,-0.0513357147574425,0.575785577297211,-0.038553960621357,-0.816691279411316,0.997913300991058,-0.05744743719697,0.0294772777706385,0.0488122850656509,-0.998805999755859,0.00200908328406513,-0.531003355979919,0.83540403842926,-0.141899645328522,-0.570517003536224,0.807011604309082,-0.152455344796181,-0.646238625049591,0.743723630905151,-0.171028390526772,-0.658126950263977,0.732177555561066,-0.175456926226616,-0.658126950263977,0.732177555561066,-0.175456926226616,-0.646238625049591,0.743723630905151,-0.171028390526772,-0.949602127075195,0.116442583501339,-0.291027337312698,-0.954912602901459,0.064922884106636,-0.289701402187347,0.999895334243774,0.0134341483935714,-0.00536413677036762,0.999688923358917,0.0147943329066038,-0.0200824718922377,-0.0999325662851334,0.994278311729431,-0.0377365052700043,-0.0954900309443474,0.995413899421692,-0.00572490319609642,-0.436276972293854,0.896964251995087,-0.0715381130576134,-0.440312296152115,0.891203880310059,-0.108999468386173,-0.0480619557201862,0.998842298984528,0.00202677422203124,-0.0952905714511871,0.995291590690613,-0.0177307147532701,0.134385034441948,-0.990921914577484,0.0038086618296802,0.147780776023865,-0.956819415092468,-0.250314831733704,0.999192953109741,-0.0398531816899776,-0.00501161394640803,0.999150097370148,-0.0408734418451786,-0.00532137928530574,0.322356551885605,-0.923438549041748,-0.208200797438622,0.461789697408676,-0.861342489719391,-0.211753353476524,0.4364373087883,-0.898540377616882,0.0463411137461662,
- 0.276665687561035,-0.960588812828064,0.0269290506839752,-0.224579781293869,0.974178075790405,-0.0232625734061003,-0.356389045715332,0.932926297187805,-0.0513357147574425,-0.372311532497406,0.924133479595184,-0.0857982113957405,-0.362463355064392,0.930208623409271,-0.0577255636453629,-0.799619674682617,0.534302890300751,-0.274096131324768,-0.798372745513916,0.520854473114014,-0.302177935838699,-0.908434212207794,-0.0635783672332764,-0.413164705038071,-0.935294330120087,-0.00757955480366945,-0.35378959774971,0.959857761859894,0.124494329094887,0.251344710588455,0.994957566261292,0.087783470749855,0.0485124066472054,0.844996929168701,-0.532646179199219,-0.0476256869733334,0.79572319984436,-0.575819373130798,0.187767133116722,0.58628523349762,-0.808761596679688,0.0466293729841709,0.0985465198755264,-0.959192097187042,-0.265026420354843,0.0872365459799767,-0.996184468269348,0.00251243030652404,0.0872365459799767,-0.996184468269348,0.00251243030652404,0.0985465198755264,-0.959192097187042,-0.265026420354843,0.147780776023865,-0.956819415092468,-0.250314831733704,0.134385034441948,-0.990921914577484,0.0038086618296802,-0.935294330120087,-0.00757955480366945,-0.35378959774971,-0.908434212207794,-0.0635783672332764,-0.413164705038071,-0.878095328807831,0.327987164258957,-0.348386496305466,-0.873854339122772,0.340154439210892,-0.347380995750427,-0.873854339122772,0.340154439210892,-0.347380995750427,-0.878095328807831,0.327987164258957,-0.348386496305466,-0.878309845924377,0.312729090452194,-0.361624449491501,-0.881400465965271,0.297936826944351,-0.366560965776443,-0.888562560081482,0.291549175977707,-0.354197323322296,0.79572319984436,-0.575819373130798,0.187767133116722,0.844996929168701,-0.532646179199219,-0.0476256869733334,0.891107499599457,-0.45095431804657,-0.0506714694201946,0.858124136924744,-0.472634583711624,0.200597688555717,-0.262747377157211,-0.964121699333191,-0.0378576889634132,-0.436723232269287,-0.869709253311157,-0.22995337843895,0.322356551885605,-0.923438549041748,-0.208200797438622,0.276665687561035,-0.960588812828064,0.0269290506839752,
- 0.5859654545784,-0.803183138370514,0.107430584728718,0.635059356689453,-0.756900429725647,-0.154276713728905,0.67354953289032,-0.721068382263184,-0.1624546200037,0.632689774036407,-0.766064167022705,0.113355614244938,0.5859654545784,-0.803183138370514,0.107430584728718,0.965173244476318,-0.159912496805191,0.207047089934349,0.996344864368439,-0.068964384496212,0.050406314432621,0.635059356689453,-0.756900429725647,-0.154276713728905,-0.00824361201375723,-0.999960482120514,0.00334669346921146,-0.00824361201375723,-0.999960482120514,0.0033466937020421,-0.00824361108243465,-0.999960482120514,0.00334669346921146,-0.00824361108243465,-0.99996030330658,0.00334669323638082,-0.00824361108243465,-0.999960422515869,0.00334669346921146,-0.00824361108243465,-0.999960422515869,0.00334669323638082,-0.00824361108243465,-0.999960422515869,0.00334669323638082,-0.00824361108243465,-0.999960362911224,0.00334669277071953,-0.00824361201375723,-0.999960422515869,0.00334669323638082,-0.00824361108243465,-0.999960422515869,0.00334669323638082,-0.00249834801070392,-0.999996364116669,-0.00103915564250201,-0.00249834731221199,-0.999996244907379,-0.00103915552608669,-0.00249834777787328,-0.999996304512024,-0.00103915564250201,-0.00249834754504263,-0.999996304512024,-0.00103915552608669,-0.00249834801070392,-0.999996364116669,-0.00103915575891733,-0.00249834824353457,-0.999996423721313,-0.00103915575891733,-0.00249834801070392,-0.999996364116669,-0.00103915575891733,-0.00249834801070392,-0.999996364116669,-0.00103915575891733,-0.00249834801070392,-0.999996364116669,-0.00103915575891733,-0.00249834801070392,-0.999996364116669,-0.00103915564250201
- }
- NormalsW: *5848 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *17544 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.77020591915789e-007,1,1.97589429262734e-007,0,1,0,0,1,0,-6.43963005586556e-007,1,4.30275321150475e-007,-1.03034244602895e-006,1,6.88441616603086e-007,-4.77020591915789e-007,1,1.97589429262734e-007,0,1,0,-2.92071973717611e-007,1,2.92069330498634e-007,1.46036825299234e-007,1,-1.46035489478891e-007,-6.86878195210738e-007,1,4.58949841686263e-007,-2.92071973717611e-007,1,2.92069330498634e-007,0,1,0,0,1,0,1.46036825299234e-007,1,-1.46035489478891e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.09526787639425e-007,1,1.09526297364937e-007,0,1,-0,0,1,-0,1.28789920950112e-007,1,8.60530278146143e-008,3.00511089790234e-007,1,2.00791291149471e-007,1.09526787639425e-007,1,1.09526297364937e-007,1.28789920950112e-007,1,8.60530278146143e-008,4.62655194155559e-008,1,2.24466312204186e-008,9.25311098853854e-008,1,4.48932944152602e-008,3.00511089790234e-007,1,2.00791291149471e-007,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,6.67830249767576e-007,1,-2.76625797823726e-007,7.63233401812613e-007,1,-3.16143285772341e-007,0,1,0,6.67830249767576e-007,1,-2.76625797823726e-007,1.37379220177536e-006,1,-9.17923614451865e-007,0,1,0,7.63233401812613e-007,1,-3.16143285772341e-007,-5.15157637437369e-007,1,3.44211713354525e-007,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,-7.7273864462768e-007,1,5.16319062171533e-007,
- -4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,8.03196826382191e-007,1,8.03193245246803e-007,1.31432193484216e-006,1,1.31431602312659e-006,0,1,-0,8.03196826382191e-007,1,8.03193245246803e-007,1.37376684961055e-006,1,9.17904287689453e-007,1.20204867926077e-006,1,8.03167893081991e-007,1.31432193484216e-006,1,1.31431602312659e-006,1.37376684961055e-006,1,9.17904287689453e-007,-3.9387321529305e-012,1,-1.631484877751e-012,-1.90813850053928e-007,1,-7.90381022852671e-008,1.20204867926077e-006,1,8.03167893081991e-007,-3.9387321529305e-012,1,-1.631484877751e-012,-0.0158597137778997,0.999868929386139,-0.0032488142605871,-0.00633533392101526,0.999979197978973,-0.00126018200535327,-1.90813850053928e-007,1,-7.90381022852671e-008,-0.0158597137778997,0.999868929386139,-0.0032488142605871,-5.63008361496031e-005,1,-8.53142070877944e-011,0.00636540865525603,0.999979734420776,9.81723147219782e-009,-0.00633533392101526,0.999979197978973,-0.00126018200535327,-5.63008361496031e-005,1,-8.53142070877944e-011,0.0135541539639235,0.99990439414978,-0.00277650752104819,-0,1,0,0.00636540865525603,0.999979734420776,9.81723147219782e-009,0.0135541539639235,0.99990439414978,-0.00277650752104819,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-6.6782956764655e-007,1,2.76625513606632e-007,6.67830249767576e-007,1,-2.76625797823726e-007,0,1,0,-6.6782956764655e-007,1,2.76625513606632e-007,3.43448931516832e-007,1,-2.29481500468864e-007,1.37379220177536e-006,1,-9.17923614451865e-007,6.67830249767576e-007,1,-2.76625797823726e-007,
- 2.66166557594261e-006,1,-1.77843901383312e-006,2.19054797412355e-007,1,-2.19052807892695e-007,-4.38108031630691e-007,1,4.38104024169661e-007,-5.15157637437369e-007,1,3.44211713354525e-007,2.19054797412355e-007,1,-2.19052807892695e-007,0,1,0,0,1,0,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.84143151627359e-007,1,5.84140536830091e-007,8.03196826382191e-007,1,8.03193245246803e-007,0,1,-0,5.84143151627359e-007,1,5.84140536830091e-007,1.11618658138468e-006,1,7.45797933632275e-007,1.37376684961055e-006,1,9.17904287689453e-007,8.03196826382191e-007,1,8.03193245246803e-007,1.11618658138468e-006,1,7.45797933632275e-007,0.000513663981109858,0.99999988079071,0.00022696096857544,-3.9387321529305e-012,1,-1.631484877751e-012,1.37376684961055e-006,1,9.17904287689453e-007,0.000513663981109858,0.99999988079071,0.00022696096857544,-0.0144955152645707,0.999889194965363,-0.00338920648209751,-0.0158597137778997,0.999868929386139,-0.0032488142605871,-3.9387321529305e-012,1,-1.631484877751e-012,-0.0144955152645707,0.999889194965363,-0.00338920648209751,4.66110749997029e-009,1,6.86836316445526e-015,-5.63008361496031e-005,1,-8.53142070877944e-011,-0.0158597137778997,0.999868929386139,-0.0032488142605871,4.66110749997029e-009,1,6.86836316445526e-015,0.0193279683589935,0.999803006649017,-0.00451896246522665,0.0135541539639235,0.99990439414978,-0.00277650752104819,-5.63008361496031e-005,1,-8.53142070877944e-011,0.0193279683589935,0.999803006649017,-0.00451896246522665,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0,1,0,0.0135541539639235,0.99990439414978,-0.00277650752104819,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1.04944513168448e-006,1,4.34696687534597e-007,-6.6782956764655e-007,1,2.76625513606632e-007,0,1,0,-1.04944513168448e-006,1,4.34696687534597e-007,-1.88896080999257e-006,1,1.26214263218571e-006,3.43448931516832e-007,1,-2.29481500468864e-007,-6.6782956764655e-007,1,2.76625513606632e-007,4.29300143878208e-006,1,-2.86844510810624e-006,1.60639945079311e-006,1,-1.60638489887788e-006,2.19054797412355e-007,1,-2.19052807892695e-007,2.66166557594261e-006,1,-1.77843901383312e-006,1.60639945079311e-006,1,-1.60638489887788e-006,0,1,0,0,1,0,2.19054797412355e-007,1,-2.19052807892695e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,4.01598498456224e-007,1,4.0159667946682e-007,5.84143151627359e-007,1,5.84140536830091e-007,0,1,-0,4.01598498456224e-007,1,4.0159667946682e-007,8.15675548437866e-007,1,5.45006628271949e-007,1.11618658138468e-006,1,7.45797933632275e-007,5.84143151627359e-007,1,5.84140536830091e-007,8.15675548437866e-007,1,5.45006628271949e-007,0.000436008296674117,0.99999988079071,0.000209233752684668,0.000513663981109858,0.99999988079071,0.00022696096857544,1.11618658138468e-006,1,7.45797933632275e-007,-0.0035191080532968,0.999993205070496,0.00107838748954237,9.04001524304476e-007,1,2.98063923764857e-006,-0.00143919326364994,0.99999874830246,0.000689395761583,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0.00143919326364994,0.99999874830246,0.000689395761583,-0,1,0,-0,1,0,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.29318987471561e-007,1,1.77830699499282e-007,-1.04944513168448e-006,1,4.34696687534597e-007,0,1,0,-4.29318987471561e-007,1,1.77830699499282e-007,-1.20206527753908e-006,1,8.03181251285423e-007,-1.88896080999257e-006,1,1.26214263218571e-006,-1.04944513168448e-006,1,4.34696687534597e-007,1.71719898389711e-006,1,-1.14737690637412e-006,1.56988755861676e-006,1,-1.5698732340752e-006,1.60639945079311e-006,1,-1.60638489887788e-006,4.29300143878208e-006,1,-2.86844510810624e-006,1.56988755861676e-006,1,-1.5698732340752e-006,0,1,0,0,1,0,1.60639945079311e-006,1,-1.60638489887788e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,2.73817136076104e-007,1,2.73815913942599e-007,4.01598498456224e-007,1,4.0159667946682e-007,0,1,-0,2.73817136076104e-007,1,2.73815913942599e-007,5.36627908331866e-007,1,3.58556519586273e-007,8.15675548437866e-007,1,5.45006628271949e-007,4.01598498456224e-007,1,4.0159667946682e-007,5.36627908331866e-007,1,3.58556519586273e-007,1.8506227661419e-007,1,8.97866172522299e-008,0.000436008296674117,0.99999988079071,0.000209233752684668,8.15675548437866e-007,1,5.45006628271949e-007,9.04001524304476e-007,1,2.98063923764857e-006,0,1,-0,-0,1,0,-0.00143919326364994,0.99999874830246,0.000689395761583,-0,1,0,-0,1,0,-0,1,0,-0.00143919326364994,0.99999874830246,0.000689395761583,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.77020591915789e-007,1,1.97589429262734e-007,-4.29318987471561e-007,1,1.77830699499282e-007,0,1,0,-4.77020591915789e-007,1,1.97589429262734e-007,-1.03034244602895e-006,1,6.88441616603086e-007,-1.20206527753908e-006,1,8.03181251285423e-007,
- -4.29318987471561e-007,1,1.77830699499282e-007,-6.86878195210738e-007,1,4.58949841686263e-007,1.46036825299234e-007,1,-1.46035489478891e-007,1.56988755861676e-006,1,-1.5698732340752e-006,1.71719898389711e-006,1,-1.14737690637412e-006,1.46036825299234e-007,1,-1.46035489478891e-007,0,1,0,0,1,0,1.56988755861676e-006,1,-1.5698732340752e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.09526787639425e-007,1,1.09526297364937e-007,2.73817136076104e-007,1,2.73815913942599e-007,0,1,-0,1.09526787639425e-007,1,1.09526297364937e-007,3.00511089790234e-007,1,2.00791291149471e-007,5.36627908331866e-007,1,3.58556519586273e-007,2.73817136076104e-007,1,2.73815913942599e-007,3.00511089790234e-007,1,2.00791291149471e-007,9.25311098853854e-008,1,4.48932944152602e-008,1.8506227661419e-007,1,8.97866172522299e-008,5.36627908331866e-007,1,3.58556519586273e-007,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-5.66066205465177e-007,1,2.34470377336038e-007,-0,1,0,-0,1,0,-5.66066205465177e-007,1,2.34470377336038e-007,-1.22268329505459e-006,1,8.16955889604287e-007,-7.64175979384163e-007,1,5.10596748881653e-007,-0,1,0,-8.15197211068153e-007,1,5.44687395631627e-007,1.73315456208911e-007,1,-1.73317317830879e-007,-3.46628951319872e-007,1,3.46632646142098e-007,-3.46628951319872e-007,1,3.46632646142098e-007,1.73315456208911e-007,1,-1.73317317830879e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 1.29985522789866e-007,1,1.29986943875338e-007,0,1,0,0,1,0,1.29985522789866e-007,1,1.29986943875338e-007,3.5664356801135e-007,1,2.38298142107851e-007,1.5284911114577e-007,1,1.0212902168405e-007,1.5284911114577e-007,1,1.0212902168405e-007,3.5664356801135e-007,1,2.38298142107851e-007,1.09803963255217e-007,1,5.32730695113059e-008,5.49019354423308e-008,1,2.66365081103004e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,9.05706713183463e-007,1,-3.75152922060806e-007,7.92494404322497e-007,1,-3.28259233128847e-007,7.92494404322497e-007,1,-3.28259233128847e-007,9.05706713183463e-007,1,-3.75152922060806e-007,0,1,-0,1.63024708399462e-006,1,-1.08927633846179e-006,-6.11396728800173e-007,1,4.08514779337565e-007,-9.17097679575818e-007,1,6.12773874308914e-007,-0,1,0,-5.19943512244936e-007,1,5.19949082899984e-007,-5.19943512244936e-007,1,5.19949082899984e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1.55982684191258e-006,1,1.55984389493824e-006,9.53227640820842e-007,1,9.53237986323074e-007,9.53227640820842e-007,1,9.53237986323074e-007,1.55982684191258e-006,1,1.55984389493824e-006,1.42655574109085e-006,1,9.53180176566093e-007,1.63036440881115e-006,1,1.08935876141913e-006,1.63036440881115e-006,1,1.08935876141913e-006,1.42655574109085e-006,1,9.53180176566093e-007,-2.26483919618659e-007,1,-9.38119413262939e-008,-4.29322653816566e-011,1,-1.77829799496987e-011,-4.29322653816566e-011,1,-1.77829799496987e-011,-2.26483919618659e-007,1,-9.38119413262939e-008,-2.40403835505276e-007,1,-4.78204214005018e-008,-0.00917147845029831,0.99995619058609,-0.00187878834549338,
- -0.00917147845029831,0.99995619058609,-0.00187878834549338,-2.40403835505276e-007,1,-4.78204214005018e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.00786076672375202,0.999967873096466,-0.00161023589316756,0.00786076672375202,0.999967873096466,-0.00161023589316756,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,7.92494404322497e-007,1,-3.28259233128847e-007,-7.92493494827795e-007,1,3.28258863646624e-007,-7.92493494827795e-007,1,3.28258863646624e-007,7.92494404322497e-007,1,-3.28259233128847e-007,1.63024708399462e-006,1,-1.08927633846179e-006,4.07562879445322e-007,1,-2.72319823579892e-007,3.15890429192223e-006,1,-2.11067367672513e-006,-6.11396728800173e-007,1,4.08514779337565e-007,-5.19943512244936e-007,1,5.19949082899984e-007,2.59972694038879e-007,1,-2.59975479366403e-007,2.59972694038879e-007,1,-2.59975479366403e-007,-5.19943512244936e-007,1,5.19949082899984e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,9.53227640820842e-007,1,9.53237986323074e-007,6.93256481554272e-007,1,6.93263984885562e-007,6.93256481554272e-007,1,6.93263984885562e-007,9.53227640820842e-007,1,9.53237986323074e-007,1.63036440881115e-006,1,1.08935876141913e-006,1.32466584545909e-006,1,8.85100575942488e-007,1.32466584545909e-006,1,8.85100575942488e-007,1.63036440881115e-006,1,1.08935876141913e-006,-4.29322653816566e-011,1,-1.77829799496987e-011,-0.00585177214816213,0.999979615211487,-0.00258190766908228,-0.00585177214816213,0.999979615211487,-0.00258190766908228,-0.0137145323678851,0.999900698661804,-0.00325975357554853,-0.0121518122032285,0.999919414520264,-0.00369120994582772,
- -0.0137145323678851,0.999900698661804,-0.00325975357554853,-0.00917147845029831,0.99995619058609,-0.00187878834549338,0,1,0,4.66028549084285e-009,1,8.17513425526014e-015,4.66028549084285e-009,1,8.17513425526014e-015,0,1,0,0.00786076672375202,0.999967873096466,-0.00161023589316756,0.0182866156101227,0.999823391437531,-0.00434532947838306,0.0182866156101227,0.999823391437531,-0.00434532947838306,-0.00180867733433843,0.999998092651367,0.00079756387276575,-0.00438276492059231,0.999989628791809,0.00132519379258156,-0.00180867733433843,0.999998092651367,0.00079756387276575,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-7.92493494827795e-007,1,3.28258863646624e-007,-1.24534574297286e-006,1,5.15834813086258e-007,-1.24534574297286e-006,1,5.15834813086258e-007,-7.92493494827795e-007,1,3.28258863646624e-007,4.07562879445322e-007,1,-2.72319823579892e-007,-2.2415856619773e-006,1,1.49775223690085e-006,5.09499841427896e-006,1,-3.4043068808387e-006,3.15890429192223e-006,1,-2.11067367672513e-006,2.59972694038879e-007,1,-2.59975479366403e-007,1.90646335340716e-006,1,-1.90648370335111e-006,1.90646335340716e-006,1,-1.90648370335111e-006,2.59972694038879e-007,1,-2.59975479366403e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,6.93256481554272e-007,1,6.93263984885562e-007,4.7661387725384e-007,1,4.76619050004956e-007,4.7661387725384e-007,1,4.76619050004956e-007,6.93256481554272e-007,1,6.93263984885562e-007,1.32466584545909e-006,1,8.85100575942488e-007,9.68022163760907e-007,1,6.46802277515235e-007,9.68022163760907e-007,1,6.46802277515235e-007,1.32466584545909e-006,1,8.85100575942488e-007,
- -0.00585177214816213,0.999979615211487,-0.00258190766908228,-0.0049660662189126,0.999984920024872,-0.00237611751072109,-0.00208931672386825,0.999997317790985,0.000999164534732699,-0.00180867733433843,0.999998092651367,0.00079756387276575,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-1.24534574297286e-006,1,5.15834813086258e-007,-5.0946022156495e-007,1,2.11023603924332e-007,-5.0946022156495e-007,1,2.11023603924332e-007,-1.24534574297286e-006,1,5.15834813086258e-007,-2.2415856619773e-006,1,1.49775223690085e-006,-1.42646285894443e-006,1,9.53114579260728e-007,2.03799731934851e-006,1,-1.36172127440659e-006,5.09499841427896e-006,1,-3.4043068808387e-006,1.90646335340716e-006,1,-1.90648370335111e-006,1.86313150152273e-006,1,-1.86315139671933e-006,1.86313150152273e-006,1,-1.86315139671933e-006,1.90646335340716e-006,1,-1.90648370335111e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,4.7661387725384e-007,1,4.76619050004956e-007,3.24963963294067e-007,1,3.24967516007746e-007,3.24963963294067e-007,1,3.24967516007746e-007,4.7661387725384e-007,1,4.76619050004956e-007,9.68022163760907e-007,1,6.46802277515235e-007,6.36860420399898e-007,1,4.25530316761069e-007,6.36860420399898e-007,1,4.25530316761069e-007,9.68022163760907e-007,1,6.46802277515235e-007,-0.0049660662189126,0.999984920024872,-0.00237611751072109,2.19607954932144e-007,1,1.06546146128039e-007,0,1,0,-7.39021231765946e-007,1,-2.43587533077516e-006,-0.00208931672386825,0.999997317790985,0.000999164534732699,0,1,0,0,1,0,-0.00208931672386825,0.999997317790985,0.000999164534732699,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,0,1,0,0,1,0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-5.0946022156495e-007,1,2.11023603924332e-007,-5.66066205465177e-007,1,2.34470377336038e-007,-5.66066205465177e-007,1,2.34470377336038e-007,-5.0946022156495e-007,1,2.11023603924332e-007,-1.42646285894443e-006,1,9.53114579260728e-007,-1.22268329505459e-006,1,8.16955889604287e-007,-8.15197211068153e-007,1,5.44687395631627e-007,2.03799731934851e-006,1,-1.36172127440659e-006,1.86313150152273e-006,1,-1.86315139671933e-006,1.73315456208911e-007,1,-1.73317317830879e-007,1.73315456208911e-007,1,-1.73317317830879e-007,1.86313150152273e-006,1,-1.86315139671933e-006,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.24963963294067e-007,1,3.24967516007746e-007,1.29985522789866e-007,1,1.29986943875338e-007,1.29985522789866e-007,1,1.29986943875338e-007,3.24963963294067e-007,1,3.24967516007746e-007,6.36860420399898e-007,1,4.25530316761069e-007,3.5664356801135e-007,1,2.38298142107851e-007,3.5664356801135e-007,1,2.38298142107851e-007,6.36860420399898e-007,1,4.25530316761069e-007,2.19607954932144e-007,1,1.06546146128039e-007,1.09803963255217e-007,1,5.32730695113059e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0.980784833431244,-0,0.195092514157295,0.980784714221954,-0,0.195093095302582,0.995181679725647,-0,0.0980479642748833,0.995178818702698,-0,0.0980771481990814,0.980779051780701,-0,0.195121690630913,0.98078179359436,-0,0.195108070969582,0.995181798934937,-0,0.0980476588010788,
- 0.995178818702698,-0,0.098076805472374,0.910832047462463,-0,0.412777274847031,0.98078179359436,-0,0.195108070969582,0.980779051780701,-0,0.195121690630913,0.935946881771088,-0,0.352141350507736,0.812792658805847,-0,0.582553088665009,0.910832047462463,-0,0.412777274847031,0.935946881771088,-0,0.352141350507736,0.849253237247467,-0,0.52798593044281,0.683528959751129,-0,0.72992342710495,0.812792658805847,-0,0.582553088665009,0.849253237247467,-0,0.52798593044281,0.729932844638824,-0,0.683518826961517,0.527973771095276,-0,0.849260747432709,0.683528959751129,-0,0.72992342710495,0.729932844638824,-0,0.683518826961517,0.582546412944794,-0,0.812797427177429,0.352168172597885,-0,0.935936748981476,0.527973771095276,-0,0.849260747432709,0.582546412944794,-0,0.812797427177429,0.412787824869156,-0,0.910827279090881,0.162803262472153,-0,0.986658573150635,0.352168172597885,-0,0.935936748981476,0.412787824869156,-0,0.910827279090881,0.227172896265984,-0,0.973854541778564,0.0980182588100433,-0,0.995184659957886,0.162803262472153,-0,0.986658573150635,0.227172896265984,-0,0.973854541778564,0.098017692565918,-0,0.995184659957886,0.227168038487434,0,-0.973855555057526,0.0980184003710747,0,-0.995184659957886,0.0980185270309448,0,-0.995184600353241,0.162803009152412,0,-0.986658692359924,0.412792682647705,0,-0.91082501411438,0.227168038487434,0,-0.973855555057526,0.162803009152412,0,-0.986658692359924,0.352161973714828,0,-0.935939073562622,0.58254486322403,0,-0.81279855966568,0.412792682647705,0,-0.91082501411438,0.352161973714828,0,-0.935939073562622,0.527984142303467,0,-0.849254310131073,0.729932844638824,0,-0.683518886566162,0.58254486322403,0,-0.81279855966568,0.527984142303467,0,-0.849254310131073,0.683521687984467,0,-0.729930281639099,0.849250435829163,0,-0.527990281581879,0.729932844638824,0,-0.683518886566162,0.683521687984467,0,-0.729930281639099,0.812793970108032,0,-0.58255136013031,0.935952663421631,0,-0.352126121520996,0.849250435829163,0,-0.527990281581879,0.812793970108032,0,-0.58255136013031,0.910833299160004,0,-0.412774354219437,
- 0.98078465461731,0,-0.195093557238579,0.935952663421631,0,-0.352126121520996,0.910833299160004,0,-0.412774354219437,0.980784773826599,0,-0.195093214511871,0.995176017284393,0,-0.0981056392192841,0.995178818702698,0,-0.098076805472374,0.98078465461731,0,-0.195093557238579,0.980784773826599,0,-0.195093214511871,0.910825192928314,-0,0.412792503833771,0.980784714221954,-0,0.195093095302582,0.980784833431244,-0,0.195092514157295,0.935947954654694,-0,0.352138340473175,0.81280130147934,-0,0.582540988922119,0.910825192928314,-0,0.412792503833771,0.935947954654694,-0,0.352138340473175,0.849251747131348,-0,0.527988135814667,0.683520197868347,-0,0.729931652545929,0.81280130147934,-0,0.582540988922119,0.849251747131348,-0,0.527988135814667,0.729934811592102,-0,0.683516800403595,0.5279820561409,-0,0.849255561828613,0.683520197868347,-0,0.729931652545929,0.729934811592102,-0,0.683516800403595,0.58254462480545,-0,0.812798738479614,0.352164298295975,-0,0.93593829870224,0.5279820561409,-0,0.849255561828613,0.58254462480545,-0,0.812798738479614,0.412792086601257,-0,0.910825371742249,0.162802413105965,-0,0.986658692359924,0.352164298295975,-0,0.93593829870224,0.412792086601257,-0,0.910825371742249,0.227168098092079,-0,0.973855555057526,0.0980150923132896,-0,0.995185017585754,0.162802413105965,-0,0.986658692359924,0.227168098092079,-0,0.973855555057526,0.0980149284005165,-0,0.99518495798111,-0.227173820137978,0,0.973854303359985,-0.0980184003710747,0,0.995184659957886,-0.0980185270309448,0,0.995184600353241,-0.162808761000633,0,0.986657679080963,-0.412783056497574,0,0.910829484462738,-0.227173820137978,0,0.973854303359985,-0.162808761000633,0,0.986657679080963,-0.35215750336647,0,0.935940742492676,-0.582556247711182,0,0.812790393829346,-0.412783056497574,0,0.910829484462738,-0.35215750336647,0,0.935940742492676,-0.527986764907837,0,0.849252641201019,-0.729922831058502,0,0.683529555797577,-0.582556247711182,0,0.812790393829346,-0.527986764907837,0,0.849252641201019,-0.683520793914795,0,0.729931116104126,-0.849260091781616,0,0.527974784374237,
- -0.729922831058502,0,0.683529555797577,-0.683520793914795,0,0.729931116104126,-0.812795281410217,0,0.582549452781677,-0.935945808887482,0,0.352144092321396,-0.849260091781616,0,0.527974784374237,-0.812795281410217,0,0.582549452781677,-0.91083288192749,0,0.412775278091431,-0.986653327941895,0,0.162835195660591,-0.935945808887482,0,0.352144092321396,-0.91083288192749,0,0.412775278091431,-0.973852813243866,0,0.227180361747742,-0.995181798934937,0,0.0980476588010788,-0.986653327941895,0,0.162835195660591,-0.973852813243866,0,0.227180361747742,-0.995178818702698,0,0.098076805472374,0.980784833431244,0,0.195092514157295,0.995178818702698,0,0.0980771481990814,0.995181679725647,0,0.0980479642748833,0.980784773826599,0,0.195093110203743,0.980779051780701,0,0.195121690630913,0.995178818702698,0,0.098076805472374,0.995181739330292,0,0.0980476513504982,0.98078179359436,0,0.195108070969582,0.910832047462463,0,0.412777274847031,0.935946881771088,0,0.352141350507736,0.980779051780701,0,0.195121690630913,0.98078179359436,0,0.195108070969582,0.812792718410492,0,0.582553088665009,0.849253177642822,0,0.52798593044281,0.935946881771088,0,0.352141350507736,0.910832047462463,0,0.412777274847031,0.683528959751129,0,0.72992342710495,0.729932844638824,0,0.683518826961517,0.849253177642822,0,0.52798593044281,0.812792718410492,0,0.582553088665009,0.527973711490631,0,0.849260687828064,0.582546412944794,0,0.812797427177429,0.729932844638824,0,0.683518826961517,0.683528959751129,0,0.72992342710495,0.352168172597885,0,0.935936748981476,0.412787824869156,0,0.910827279090881,0.582546412944794,0,0.812797427177429,0.527973711490631,0,0.849260687828064,0.162803262472153,0,0.986658573150635,0.227172896265984,0,0.973854541778564,0.412787824869156,0,0.910827279090881,0.352168172597885,0,0.935936748981476,0.0980182513594627,0,0.995184600353241,0.0980177000164986,0,0.995184719562531,0.227172896265984,0,0.973854541778564,0.162803262472153,0,0.986658573150635,0.227168053388596,-0,-0.97385561466217,0.162803009152412,-0,-0.986658692359924,0.0980185344815254,-0,-0.995184659957886,
- 0.0980183929204941,-0,-0.995184600353241,0.412792682647705,-0,-0.91082501411438,0.352161973714828,-0,-0.935939073562622,0.162803009152412,-0,-0.986658692359924,0.227168053388596,-0,-0.97385561466217,0.58254486322403,-0,-0.81279855966568,0.527984082698822,-0,-0.849254250526428,0.352161973714828,-0,-0.935939073562622,0.412792682647705,-0,-0.91082501411438,0.729932844638824,-0,-0.683518886566162,0.683521687984467,-0,-0.729930281639099,0.527984082698822,-0,-0.849254250526428,0.58254486322403,-0,-0.81279855966568,0.849250435829163,-0,-0.527990281581879,0.812793970108032,-0,-0.58255136013031,0.683521687984467,-0,-0.729930281639099,0.729932844638824,-0,-0.683518886566162,0.935952663421631,-0,-0.352126121520996,0.910833299160004,-0,-0.412774354219437,0.812793970108032,-0,-0.58255136013031,0.849250435829163,-0,-0.527990281581879,0.980784714221954,-0,-0.19509357213974,0.980784714221954,-0,-0.19509319961071,0.910833299160004,-0,-0.412774354219437,0.935952663421631,-0,-0.352126121520996,0.995176017284393,-0,-0.0981056392192841,0.980784714221954,-0,-0.19509319961071,0.980784714221954,-0,-0.19509357213974,0.995178818702698,-0,-0.098076805472374,0.910825133323669,0,0.412792474031448,0.935947954654694,0,0.352138340473175,0.980784833431244,0,0.195092514157295,0.980784773826599,0,0.195093110203743,0.81280130147934,0,0.582540988922119,0.849251806735992,0,0.527988135814667,0.935947954654694,0,0.352138340473175,0.910825133323669,0,0.412792474031448,0.683520197868347,0,0.729931652545929,0.729934811592102,0,0.683516800403595,0.849251806735992,0,0.527988135814667,0.81280130147934,0,0.582540988922119,0.5279820561409,0,0.849255561828613,0.58254462480545,0,0.812798738479614,0.729934811592102,0,0.683516800403595,0.683520197868347,0,0.729931652545929,0.382661074399948,0,0.923888862133026,0.382680416107178,0,0.923880875110626,0.58254462480545,0,0.812798738479614,0.5279820561409,0,0.849255561828613,0.290279507637024,0,0.956941902637482,0.290322959423065,0,0.956928730010986,0.382680416107178,0,0.923880875110626,0.382661074399948,0,0.923888862133026,
- -0.582556307315826,-0,0.81279045343399,-0.527986764907837,-0,0.849252641201019,-0.352147847414017,-0,0.935944497585297,-0.412770479917526,-0,0.910835087299347,-0.729922831058502,-0,0.683529555797577,-0.683520793914795,-0,0.729931116104126,-0.527986764907837,-0,0.849252641201019,-0.582556307315826,-0,0.81279045343399,-0.849260091781616,-0,0.527974724769592,-0.812795281410217,-0,0.582549452781677,-0.683520793914795,-0,0.729931116104126,-0.729922831058502,-0,0.683529555797577,-0.935945808887482,-0,0.352144092321396,-0.91083288192749,-0,0.412775278091431,-0.812795281410217,-0,0.582549452781677,-0.849260091781616,-0,0.527974724769592,-0.986653327941895,-0,0.162835195660591,-0.973852813243866,-0,0.227180361747742,-0.91083288192749,-0,0.412775278091431,-0.935945808887482,-0,0.352144092321396,-0.995181739330292,-0,0.0980476513504982,-0.995178818702698,-0,0.098076805472374,-0.973852813243866,-0,0.227180361747742,-0.986653327941895,-0,0.162835195660591,-0.0049660662189126,0.999984920024872,-0.00237611751072109,-0.00585177214816213,0.999979615211487,-0.00258190766908228,-0.0121518122032285,0.999919414520264,-0.00369120994582772,-1.52730521563171e-007,1,5.03438855048444e-007,1.8506227661419e-007,1,8.97866172522299e-008,0,1,-0,-7.36621700525575e-007,1,2.42865417021676e-006,0.000436008296674117,0.99999988079071,0.000209233752684668,9.25311098853854e-008,1,4.48932944152602e-008,0,1,-0,0,1,-0,1.8506227661419e-007,1,8.97866172522299e-008,4.62655194155559e-008,1,2.24466312204186e-008,0,1,-0,0,1,-0,9.25311098853854e-008,1,4.48932944152602e-008,-0.412770479917526,-0,0.910835087299347,-0.352147847414017,-0,0.935944497585297,-0.290309071540833,-0,0.956932961940765,-0.290278375148773,-0,0.95694226026535,5.49019354423308e-008,1,2.66365081103004e-008,1.09803963255217e-007,1,5.32730695113059e-008,0,1,0,0,1,0,1.09803963255217e-007,1,5.32730695113059e-008,2.19607954932144e-007,1,1.06546146128039e-007,0,1,0,0,1,0,2.19607954932144e-007,1,1.06546146128039e-007,-0.0049660662189126,0.999984920024872,-0.00237611751072109,-1.52730521563171e-007,1,5.03438855048444e-007,
- 0,1,0,0.000436008296674117,0.99999988079071,0.000209233752684668,-7.36621700525575e-007,1,2.42865417021676e-006,0.00106439064256847,0.999999463558197,0.000330699112964794,0.000513663981109858,0.99999988079071,0.00022696096857544,-7.39021231765946e-007,1,-2.43587533077516e-006,-0.00438276492059231,0.999989628791809,0.00132519379258156,-0.00180867733433843,0.999998092651367,0.00079756387276575,-0.00208931672386825,0.999997317790985,0.000999164534732699,0.000513663981109858,0.99999988079071,0.00022696096857544,0.00106439064256847,0.999999463558197,0.000330699112964794,-0.0144955152645707,0.999889194965363,-0.00338920648209751,-0.00585177214816213,0.999979615211487,-0.00258190766908228,-4.29322653816566e-011,1,-1.77829799496987e-011,-0.00917147845029831,0.99995619058609,-0.00187878834549338,-0.0137145323678851,0.999900698661804,-0.00325975357554853,0.0193279683589935,0.999803006649017,-0.00451896246522665,-0.0035191080532968,0.999993205070496,0.00107838748954237,-0.00145372585393488,0.999998807907104,0.000641465361695737,0.0182866156101227,0.999823391437531,-0.00434532947838306,0.00786076672375202,0.999967873096466,-0.00161023589316756,0,1,0,-0.00180867733433843,0.999998092651367,0.00079756387276575,-0.0177752356976271,0.0136200711131096,-0.99974924325943,-0.0471954196691513,0.0195300951600075,-0.998694717884064,-0.00299395271576941,0.0255651529878378,-0.999668657779694,-0.00414719711989164,0.00264838105067611,-0.999987959861755,0.362812995910645,0.149777367711067,0.919746398925781,0.428556799888611,0.182573318481445,0.884876370429993,0.364332914352417,-0.150335341691971,0.919054329395294,0.20424011349678,0.0150787085294724,0.978804767131805,0.986800849437714,0.0290162488818169,-0.159318149089813,0.938860952854156,-0.00653463881462812,-0.344234794378281,0.603118479251862,0.761897087097168,-0.236137628555298,0.477856487035751,0.87781822681427,0.0329894721508026,0.337076991796494,-0.00162359606474638,0.941475689411163,0.296010732650757,-0.00315108941867948,0.955179452896118,0.349420547485352,0.0242082662880421,0.936653316020966,
- 0.275491207838058,0.0211724620312452,0.961070418357849,0.269096344709396,0.00306646758690476,0.963108420372009,0.497108638286591,0.192937448620796,0.84596586227417,0.719521999359131,0.692427635192871,-0.0532171502709389,0.966807901859283,0.221670255064964,-0.127062320709229,0.524151742458344,0.0702337771654129,0.848723948001862,-0.0784773752093315,0.994635820388794,-0.0673874020576477,0.202975049614906,0.957514464855194,0.204859018325806,-0.127423137426376,0.967283606529236,0.219375997781754,-0.0385277010500431,0.997201263904572,-0.064072348177433,0.986800849437714,0.0290162488818169,-0.159318149089813,0.530971765518188,0.0918554216623306,0.842396378517151,0.383751749992371,-0.169230759143829,0.907797157764435,0.956039309501648,-0.209441334009171,0.205239683389664,-0.441914200782776,0.133856683969498,-0.887014329433441,0.0686215907335281,0.0593129694461823,-0.995878100395203,-0.0784773752093315,0.994635820388794,-0.0673874020576477,-0.0385277010500431,0.997201263904572,-0.064072348177433,-0.338455021381378,-0.050558228045702,-0.939623415470123,-0.374279946088791,-0.0220361538231373,-0.927053928375244,-0.367644369602203,-0.0376974157989025,-0.929202079772949,-0.266641855239868,-0.221516326069832,-0.937993943691254,0.164953127503395,0.288564413785934,0.943144261837006,0.00577002530917525,0.474188327789307,0.880404472351074,0.00553834950551391,-0.0786009132862091,0.996890842914581,0.112660892307758,-0.0139222936704755,0.993536055088043,-0.127423137426376,0.967283606529236,0.219375997781754,0.202975049614906,0.957514464855194,0.204859018325806,0.164953127503395,0.288564413785934,0.943144261837006,-0.0944299697875977,0.337423205375671,0.936604797840118,-0.580103754997253,0.39352411031723,-0.713174939155579,-0.310247182846069,0.0388866402208805,-0.949860334396362,-0.121141940355301,-0.138215407729149,-0.982965588569641,-0.0276475697755814,-0.171707451343536,-0.984759926795959,-0.20814323425293,0.0046360194683075,-0.978087425231934,0.386432468891144,0.921921968460083,-0.027017816901207,0.477856487035751,0.87781822681427,0.0329894721508026,
- 0.603118479251862,0.761897087097168,-0.236137628555298,0.899818301200867,0.120526269078255,-0.419285535812378,0.844607293605804,0.384802937507629,-0.372243463993073,0.966807901859283,0.221670255064964,-0.127062320709229,0.719521999359131,0.692427635192871,-0.0532171502709389,0.163609743118286,0.32506987452507,0.931429862976074,0.276878982782364,-0.0835964530706406,0.957261562347412,0.226283609867096,-0.0501835979521275,0.972767949104309,0.353055834770203,0.223887622356415,0.908419549465179,0.751630127429962,0.658775806427002,0.0326602011919022,0.755590260028839,0.647986471652985,0.0959000587463379,0.353125035762787,0.228308662772179,0.907291531562805,0.428556799888611,0.182573318481445,0.884876370429993,0.529247164726257,0.822218298912048,-0.209414452314377,0.755590260028839,0.647986471652985,0.0959000587463379,0.751630127429962,0.658775806427002,0.0326602011919022,0.751383304595947,0.611209750175476,-0.248688504099846,0.706493020057678,0.641357421875,0.299212962388992,0.471350014209747,0.855838775634766,-0.213000535964966,0.724997580051422,0.439162313938141,-0.530579924583435,0.651491463184357,0.752900958061218,0.0932692214846611,0.529247164726257,0.822218298912048,-0.209414452314377,0.448100745677948,0.843119263648987,-0.297246783971787,0.755590260028839,0.647986471652985,0.0959000587463379,0.936345636844635,-0.326917618513107,-0.127991825342178,0.539089262485504,-0.154579073190689,0.827942132949829,0.246268689632416,0.00377464713528752,0.969194352626801,0.976480424404144,-0.0129536939784884,-0.215216517448425,0.844231963157654,0.53234601020813,0.0622914284467697,0.928444445133209,0.348362118005753,-0.12897615134716,0.642944514751434,0.711993157863617,-0.282291054725647,0.448100745677948,0.843119263648987,-0.297246783971787,-0.0276475697755814,-0.171707451343536,-0.984759926795959,-0.0448770709335804,0.0303937569260597,-0.998530149459839,0.724997580051422,0.439162313938141,-0.530579924583435,-0.421034574508667,0.131271034479141,-0.89749538898468,0.674612402915955,0.718952596187592,-0.167348489165306,0.0360555797815323,0.983183920383453,0.179023772478104,
- 0.163609743118286,0.32506987452507,0.931429862976074,0.353055834770203,0.223887622356415,0.908419549465179,0.651491463184357,0.752900958061218,0.0932692214846611,0.0633024796843529,-0.0128813181072474,-0.997911274433136,-0.357374489307404,0.0866984352469444,-0.929928481578827,0.878735423088074,-0.297437250614166,-0.373303174972534,0.0686215907335281,0.0593129694461823,-0.995878100395203,0.0614251382648945,-0.0162381026893854,-0.997979640960693,-0.00154985068365932,0.0547862164676189,-0.998496890068054,-0.0111014377325773,0.486198842525482,-0.873777687549591,0.674612402915955,0.718952596187592,-0.167348489165306,-0.0694189965724945,0.996545493602753,-0.0455866567790508,0.0360555797815323,0.983183920383453,0.179023772478104,0.651491463184357,0.752900958061218,0.0932692214846611,-0.243771135807037,0.0466437041759491,-0.968710482120514,0.19847297668457,-0.150519460439682,-0.968479514122009,-0.0694189965724945,0.996545493602753,-0.0455866567790508,0.674612402915955,0.718952596187592,-0.167348489165306,-0.127423137426376,0.967283606529236,0.219375997781754,-0.469059765338898,0.741486072540283,-0.4797722697258,-0.0385277010500431,0.997201263904572,-0.064072348177433,-0.463795363903046,-0.205192595720291,-0.861852526664734,0.471511662006378,0.472645610570908,0.744501769542694,0.40050533413887,-0.144715279340744,0.904794454574585,0.651491463184357,0.752900958061218,0.0932692214846611,0.353055834770203,0.223887622356415,0.908419549465179,0.360021352767944,0.201954007148743,0.910823404788971,0.706493020057678,0.641357421875,0.299212962388992,-0.44917294383049,0.266514152288437,-0.852768421173096,-0.370771527290344,0.00801112689077854,-0.928689539432526,-0.364906311035156,-0.00361965084448457,-0.931037306785584,-0.370782732963562,0.0607297271490097,-0.926732003688812,0.0360555797815323,0.983183920383453,0.179023772478104,-0.0694189965724945,0.996545493602753,-0.0455866567790508,-0.469059765338898,0.741486072540283,-0.4797722697258,-0.101152330636978,0.930294334888458,0.352591633796692,-0.175890639424324,0.00751213077455759,-0.984381079673767,
- -0.469059765338898,0.741486072540283,-0.4797722697258,-0.0694189965724945,0.996545493602753,-0.0455866567790508,0.751630127429962,0.658775806427002,0.0326602011919022,0.428556799888611,0.182573318481445,0.884876370429993,0.362812995910645,0.149777367711067,0.919746398925781,0.516783773899078,0.709785282611847,0.478685051202774,-0.421034574508667,0.131271034479141,-0.89749538898468,-0.243771135807037,0.0466437041759491,-0.968710482120514,0.674612402915955,0.718952596187592,-0.167348489165306,-0.808659672737122,-0.575832188129425,0.120362356305122,0.549398839473724,-0.494300425052643,-0.673667550086975,0.502858817577362,-0.539861500263214,-0.675042688846588,0.651491463184357,0.752900958061218,0.0932692214846611,0.724997580051422,0.439162313938141,-0.530579924583435,0.674612402915955,0.718952596187592,-0.167348489165306,-0.360296547412872,-0.0255242809653282,-0.932488620281219,-0.142860114574432,-0.179189994931221,-0.973386883735657,0.642944514751434,0.711993157863617,-0.282291054725647,-0.357374489307404,0.0866984352469444,-0.929928481578827,-0.360296547412872,-0.0255242809653282,-0.932488620281219,0.642944514751434,0.711993157863617,-0.282291054725647,0.878735423088074,-0.297437250614166,-0.373303174972534,-0.469059765338898,0.741486072540283,-0.4797722697258,-0.441914200782776,0.133856683969498,-0.887014329433441,-0.0385277010500431,0.997201263904572,-0.064072348177433,0.057596854865551,-0.547085881233215,-0.835092663764954,-0.239938274025917,-0.0264577642083168,-0.970427632331848,0.386432468891144,0.921921968460083,-0.027017816901207,0.530971765518188,0.0918554216623306,0.842396378517151,0.141742393374443,0.174040675163269,0.974483966827393,0.414948463439941,0.322254925966263,0.850864052772522,-0.469059765338898,0.741486072540283,-0.4797722697258,-0.127423137426376,0.967283606529236,0.219375997781754,-0.101152330636978,0.930294334888458,0.352591633796692,0.938860952854156,-0.00653463881462812,-0.344234794378281,0.986800849437714,0.0290162488818169,-0.159318149089813,0.956039309501648,-0.209441334009171,0.205239683389664,
- 0.916913688182831,0.0042891507036984,-0.399062663316727,0.353055834770203,0.223887622356415,0.908419549465179,0.226283609867096,-0.0501835979521275,0.972767949104309,0.211576670408249,-0.0726611390709877,0.974656701087952,0.360021352767944,0.201954007148743,0.910823404788971,-0.338455021381378,-0.050558228045702,-0.939623415470123,-0.266641855239868,-0.221516326069832,-0.937993943691254,0.844607293605804,0.384802937507629,-0.372243463993073,0.899818301200867,0.120526269078255,-0.419285535812378,0.956039309501648,-0.209441334009171,0.205239683389664,0.966807901859283,0.221670255064964,-0.127062320709229,0.844607293605804,0.384802937507629,-0.372243463993073,0.916913688182831,0.0042891507036984,-0.399062663316727,0.706493020057678,0.641357421875,0.299212962388992,0.755590260028839,0.647986471652985,0.0959000587463379,0.448100745677948,0.843119263648987,-0.297246783971787,0.844231963157654,0.53234601020813,0.0622914284467697,-0.142860114574432,-0.179189994931221,-0.973386883735657,0.899818301200867,0.120526269078255,-0.419285535812378,0.202975049614906,0.957514464855194,0.204859018325806,-0.00967011041939259,0.999864757061005,0.0133058410137892,0.00577002530917525,0.474188327789307,0.880404472351074,0.751630127429962,0.658775806427002,0.0326602011919022,0.516783773899078,0.709785282611847,0.478685051202774,0.386432468891144,0.921921968460083,-0.027017816901207,0.751383304595947,0.611209750175476,-0.248688504099846,-0.0111014377325773,0.486198842525482,-0.873777687549591,-0.0784773752093315,0.994635820388794,-0.0673874020576477,0.0686215907335281,0.0593129694461823,-0.995878100395203,0.936345636844635,-0.326917618513107,-0.127991825342178,0.976480424404144,-0.0129536939784884,-0.215216517448425,0.0633024796843529,-0.0128813181072474,-0.997911274433136,0.878735423088074,-0.297437250614166,-0.373303174972534,-0.44917294383049,0.266514152288437,-0.852768421173096,0.057596854865551,-0.547085881233215,-0.835092663764954,0.603118479251862,0.761897087097168,-0.236137628555298,0.938860952854156,-0.00653463881462812,-0.344234794378281,
- 0.916913688182831,0.0042891507036984,-0.399062663316727,-0.44917294383049,0.266514152288437,-0.852768421173096,0.938860952854156,-0.00653463881462812,-0.344234794378281,-0.360296547412872,-0.0255242809653282,-0.932488620281219,-0.390456765890121,-0.0464132353663445,-0.919450581073761,0.233831286430359,-0.529526114463806,-0.815429449081421,-0.142860114574432,-0.179189994931221,-0.973386883735657,0.844607293605804,0.384802937507629,-0.372243463993073,-0.266641855239868,-0.221516326069832,-0.937993943691254,0.916913688182831,0.0042891507036984,-0.399062663316727,0.928444445133209,0.348362118005753,-0.12897615134716,0.557177066802979,0.113043546676636,0.822663307189941,0.539089262485504,-0.154579073190689,0.827942132949829,0.936345636844635,-0.326917618513107,-0.127991825342178,-0.360296547412872,-0.0255242809653282,-0.932488620281219,-0.357374489307404,0.0866984352469444,-0.929928481578827,-0.39272078871727,0.0561935007572174,-0.917939424514771,-0.390456765890121,-0.0464132353663445,-0.919450581073761,0.386432468891144,0.921921968460083,-0.027017816901207,-0.239938274025917,-0.0264577642083168,-0.970427632331848,-0.580103754997253,0.39352411031723,-0.713174939155579,0.751383304595947,0.611209750175476,-0.248688504099846,-0.20814323425293,0.0046360194683075,-0.978087425231934,0.529247164726257,0.822218298912048,-0.209414452314377,0.751383304595947,0.611209750175476,-0.248688504099846,-0.580103754997253,0.39352411031723,-0.713174939155579,0.724997580051422,0.439162313938141,-0.530579924583435,0.471350014209747,0.855838775634766,-0.213000535964966,-0.0448770709335804,0.0303937569260597,-0.998530149459839,-0.421034574508667,0.131271034479141,-0.89749538898468,-0.175890639424324,0.00751213077455759,-0.984381079673767,0.19847297668457,-0.150519460439682,-0.968479514122009,-0.0747274309396744,-0.0492422804236412,-0.99598753452301,-0.0785060599446297,0.0229190476238728,-0.996650159358978,-0.441914200782776,0.133856683969498,-0.887014329433441,-0.233986780047417,0.0317993126809597,-0.971719622612,0.0614251382648945,-0.0162381026893854,-0.997979640960693,
- 0.0686215907335281,0.0593129694461823,-0.995878100395203,-0.0471954196691513,0.0195300951600075,-0.998694717884064,-0.0177752356976271,0.0136200711131096,-0.99974924325943,-0.18439307808876,-0.00782142765820026,-0.982821524143219,-0.0111014377325773,0.486198842525482,-0.873777687549591,-0.00967011041939259,0.999864757061005,0.0133058410137892,0.202975049614906,0.957514464855194,0.204859018325806,-0.0784773752093315,0.994635820388794,-0.0673874020576477,0.164953127503395,0.288564413785934,0.943144261837006,0.112660892307758,-0.0139222936704755,0.993536055088043,-0.0271575637161732,0.00648343283683062,0.999610185623169,-0.0944299697875977,0.337423205375671,0.936604797840118,0.108746774494648,0.0128319058567286,0.99398672580719,0.276878982782364,-0.0835964530706406,0.957261562347412,0.163609743118286,0.32506987452507,0.931429862976074,0.448100745677948,0.843119263648987,-0.297246783971787,0.529247164726257,0.822218298912048,-0.209414452314377,-0.20814323425293,0.0046360194683075,-0.978087425231934,-0.0276475697755814,-0.171707451343536,-0.984759926795959,0.706493020057678,0.641357421875,0.299212962388992,0.360021352767944,0.201954007148743,0.910823404788971,0.353125035762787,0.228308662772179,0.907291531562805,0.755590260028839,0.647986471652985,0.0959000587463379,0.516783773899078,0.709785282611847,0.478685051202774,0.477856487035751,0.87781822681427,0.0329894721508026,0.386432468891144,0.921921968460083,-0.027017816901207,0.362812995910645,0.149777367711067,0.919746398925781,0.402497977018356,0.286697745323181,0.86936742067337,0.477856487035751,0.87781822681427,0.0329894721508026,0.516783773899078,0.709785282611847,0.478685051202774,0.140162572264671,-0.20423136651516,-0.968836426734924,-0.310247182846069,0.0388866402208805,-0.949860334396362,-0.580103754997253,0.39352411031723,-0.713174939155579,-0.239938274025917,-0.0264577642083168,-0.970427632331848,0.057596854865551,-0.547085881233215,-0.835092663764954,0.386432468891144,0.921921968460083,-0.027017816901207,0.603118479251862,0.761897087097168,-0.236137628555298,
- 0.477856487035751,0.87781822681427,0.0329894721508026,0.402497977018356,0.286697745323181,0.86936742067337,0.530971765518188,0.0918554216623306,0.842396378517151,0.986800849437714,0.0290162488818169,-0.159318149089813,0.383751749992371,-0.169230759143829,0.907797157764435,0.524151742458344,0.0702337771654129,0.848723948001862,0.966807901859283,0.221670255064964,-0.127062320709229,0.956039309501648,-0.209441334009171,0.205239683389664,0.706493020057678,0.641357421875,0.299212962388992,0.448100745677948,0.843119263648987,-0.297246783971787,0.471350014209747,0.855838775634766,-0.213000535964966,-0.0448770709335804,0.0303937569260597,-0.998530149459839,0.471350014209747,0.855838775634766,-0.213000535964966,0.448100745677948,0.843119263648987,-0.297246783971787,0.916913688182831,0.0042891507036984,-0.399062663316727,-0.370771527290344,0.00801112689077854,-0.928689539432526,-0.44917294383049,0.266514152288437,-0.852768421173096,-0.266641855239868,-0.221516326069832,-0.937993943691254,-0.370771527290344,0.00801112689077854,-0.928689539432526,0.916913688182831,0.0042891507036984,-0.399062663316727,-0.469059765338898,0.741486072540283,-0.4797722697258,-0.175890639424324,0.00751213077455759,-0.984381079673767,-0.441914200782776,0.133856683969498,-0.887014329433441,-0.0785060599446297,0.0229190476238728,-0.996650159358978,-0.233986780047417,0.0317993126809597,-0.971719622612,-0.441914200782776,0.133856683969498,-0.887014329433441,-0.175890639424324,0.00751213077455759,-0.984381079673767,0.163609743118286,0.32506987452507,0.931429862976074,0.246725216507912,0.438028901815414,0.864440560340881,0.108746774494648,0.0128319058567286,0.99398672580719,-0.101152330636978,0.930294334888458,0.352591633796692,0.246725216507912,0.438028901815414,0.864440560340881,0.163609743118286,0.32506987452507,0.931429862976074,0.0360555797815323,0.983183920383453,0.179023772478104,0.108746774494648,0.0128319058567286,0.99398672580719,0.246725216507912,0.438028901815414,0.864440560340881,-0.0944299697875977,0.337423205375671,0.936604797840118,-0.127423137426376,0.967283606529236,0.219375997781754,
- -0.0944299697875977,0.337423205375671,0.936604797840118,0.246725216507912,0.438028901815414,0.864440560340881,-0.101152330636978,0.930294334888458,0.352591633796692,-0.0944299697875977,0.337423205375671,0.936604797840118,-0.0271575637161732,0.00648343283683062,0.999610185623169,0.108746774494648,0.0128319058567286,0.99398672580719,-0.175890639424324,0.00751213077455759,-0.984381079673767,-0.0694189965724945,0.996545493602753,-0.0455866567790508,0.19847297668457,-0.150519460439682,-0.968479514122009,0.217869699001312,0.205166071653366,0.954169690608978,0.239596664905548,0.0267295427620411,0.970504581928253,0.557177066802979,0.113043546676636,0.822663307189941,0.497108638286591,0.192937448620796,0.84596586227417,0.286563962697983,-0.0573360100388527,0.956343948841095,0.239596664905548,0.0267295427620411,0.970504581928253,0.217869699001312,0.205166071653366,0.954169690608978,0.719521999359131,0.692427635192871,-0.0532171502709389,0.497108638286591,0.192937448620796,0.84596586227417,0.217869699001312,0.205166071653366,0.954169690608978,0.97909152507782,0.185755237936974,0.0829140618443489,0.97909152507782,0.185755237936974,0.0829140618443489,0.217869699001312,0.205166071653366,0.954169690608978,0.557177066802979,0.113043546676636,0.822663307189941,0.928444445133209,0.348362118005753,-0.12897615134716,0.642944514751434,0.711993157863617,-0.282291054725647,0.928444445133209,0.348362118005753,-0.12897615134716,0.936345636844635,-0.326917618513107,-0.127991825342178,0.878735423088074,-0.297437250614166,-0.373303174972534,0.97909152507782,0.185755237936974,0.0829140618443489,0.844231963157654,0.53234601020813,0.0622914284467697,0.899818301200867,0.120526269078255,-0.419285535812378,0.719521999359131,0.692427635192871,-0.0532171502709389,0.642944514751434,0.711993157863617,-0.282291054725647,-0.142860114574432,-0.179189994931221,-0.973386883735657,0.844231963157654,0.53234601020813,0.0622914284467697,0.899818301200867,0.120526269078255,-0.419285535812378,-0.142860114574432,-0.179189994931221,-0.973386883735657,-0.338455021381378,-0.050558228045702,-0.939623415470123,
- 0.202975049614906,0.957514464855194,0.204859018325806,0.00577002530917525,0.474188327789307,0.880404472351074,0.164953127503395,0.288564413785934,0.943144261837006,-0.370782732963562,0.0607297271490097,-0.926732003688812,-0.219601541757584,-0.195018485188484,-0.955899059772491,0.057596854865551,-0.547085881233215,-0.835092663764954,-0.44917294383049,0.266514152288437,-0.852768421173096,-0.219601541757584,-0.195018485188484,-0.955899059772491,0.140162572264671,-0.20423136651516,-0.968836426734924,-0.239938274025917,-0.0264577642083168,-0.970427632331848,0.057596854865551,-0.547085881233215,-0.835092663764954,-0.388144820928574,0.000896037556231022,-0.921598017215729,-0.39272078871727,0.0561935007572174,-0.917939424514771,-0.357374489307404,0.0866984352469444,-0.929928481578827,0.0633024796843529,-0.0128813181072474,-0.997911274433136,-0.367644369602203,-0.0376974157989025,-0.929202079772949,-0.364906311035156,-0.00361965084448457,-0.931037306785584,-0.370771527290344,0.00801112689077854,-0.928689539432526,-0.266641855239868,-0.221516326069832,-0.937993943691254,0.281602531671524,0.0427577905356884,0.958577990531921,-0.978167712688446,0.0295707285404205,0.205702349543571,0.246268689632416,0.00377464713528752,0.969194352626801,0.539089262485504,-0.154579073190689,0.827942132949829,0.524151742458344,0.0702337771654129,0.848723948001862,0.273234724998474,-0.0436728112399578,0.960955560207367,0.286563962697983,-0.0573360100388527,0.956343948841095,0.497108638286591,0.192937448620796,0.84596586227417,0.233831286430359,-0.529526114463806,-0.815429449081421,-0.374279946088791,-0.0220361538231373,-0.927053928375244,-0.338455021381378,-0.050558228045702,-0.939623415470123,-0.142860114574432,-0.179189994931221,-0.973386883735657,-0.121141940355301,-0.138215407729149,-0.982965588569641,-0.218993738293648,-0.00742885377258062,-0.975697994232178,-0.0448770709335804,0.0303937569260597,-0.998530149459839,-0.0276475697755814,-0.171707451343536,-0.984759926795959,0.211576670408249,-0.0726611390709877,0.974656701087952,0.161770224571228,0.0299984514713287,0.986372411251068,
- 0.353125035762787,0.228308662772179,0.907291531562805,0.360021352767944,0.201954007148743,0.910823404788971,0.239596664905548,0.0267295427620411,0.970504581928253,0.280725866556168,-0.0478854477405548,0.958592772483826,0.557177066802979,0.113043546676636,0.822663307189941,0.280725866556168,-0.0478854477405548,0.958592772483826,0.281602531671524,0.0427577905356884,0.958577990531921,0.539089262485504,-0.154579073190689,0.827942132949829,0.557177066802979,0.113043546676636,0.822663307189941,-0.218993738293648,-0.00742885377258062,-0.975697994232178,-0.265904128551483,0.0471498966217041,-0.962845802307129,-0.421034574508667,0.131271034479141,-0.89749538898468,-0.0448770709335804,0.0303937569260597,-0.998530149459839,-0.265904128551483,0.0471498966217041,-0.962845802307129,-0.0747274309396744,-0.0492422804236412,-0.99598753452301,0.19847297668457,-0.150519460439682,-0.968479514122009,-0.243771135807037,0.0466437041759491,-0.968710482120514,-0.421034574508667,0.131271034479141,-0.89749538898468,0.161770224571228,0.0299984514713287,0.986372411251068,0.364332914352417,-0.150335341691971,0.919054329395294,0.428556799888611,0.182573318481445,0.884876370429993,0.353125035762787,0.228308662772179,0.907291531562805,0.414948463439941,0.322254925966263,0.850864052772522,0.273234724998474,-0.0436728112399578,0.960955560207367,0.524151742458344,0.0702337771654129,0.848723948001862,0.383751749992371,-0.169230759143829,0.907797157764435,0.205082327127457,0.0712768882513046,0.97614598274231,0.141742393374443,0.174040675163269,0.974483966827393,0.530971765518188,0.0918554216623306,0.842396378517151,0.402497977018356,0.286697745323181,0.86936742067337,0.205082327127457,0.0712768882513046,0.97614598274231,0.402497977018356,0.286697745323181,0.86936742067337,0.362812995910645,0.149777367711067,0.919746398925781,0.20424011349678,0.0150787085294724,0.978804767131805,-0.327679336071014,0.0127276843413711,-0.944703340530396,-0.324312925338745,0.0328000113368034,-0.945381045341492,-0.31302410364151,-0.00196176720783114,-0.949743151664734,-0.334290027618408,-0.00146058760583401,-0.942469120025635,
- 0.567206919193268,0.0987454205751419,0.817634224891663,-0.540060877799988,0.213035956025124,-0.814217448234558,0.286790102720261,-0.264736980199814,0.920687675476074,0.724820613861084,0.502410233020782,0.471401214599609,0.93303918838501,0.353138208389282,-0.0687858015298843,0.899000763893127,-0.254381656646729,-0.356493443250656,0.90216863155365,-0.253786414861679,-0.348832875490189,0.758362054824829,-0.651283025741577,-0.0267848074436188,0.333625912666321,-0.00160902366042137,0.942704200744629,0.287253171205521,-0.00335352076217532,0.957848906517029,0.345886588096619,0.0188581552356482,0.938086867332459,0.264092177152634,0.0298589617013931,0.964035153388977,0.257637113332748,0.0042967819608748,0.966232180595398,0.5047767162323,-0.450165331363678,0.736581027507782,0.785007655620575,-0.603419661521912,-0.140170529484749,0.918870747089386,0.36838310956955,-0.141317099332809,0.539157152175903,0.0294711478054523,0.841689467430115,0.809200465679169,0.586549758911133,-0.0339735858142376,0.864233732223511,0.360127955675125,-0.351294726133347,0.919884443283081,0.0211830120533705,-0.391617149114609,0.955029010772705,-0.287843286991119,-0.0711762234568596,0.93303918838501,0.353138208389282,-0.0687858015298843,0.496488183736801,0.33952796459198,0.798886954784393,0.593100190162659,0.0822072848677635,0.800920784473419,0.755764126777649,0.65238231420517,0.0567268505692482,0.864233732223511,0.360127955675125,-0.351294726133347,-0.29845717549324,0.276937276124954,-0.913361430168152,-0.302436083555222,-0.175598800182343,-0.93685519695282,0.919884443283081,0.0211830120533705,-0.391617149114609,-0.329022169113159,0.262062340974808,-0.907230913639069,-0.363161742687225,0.230145156383514,-0.902854859828949,-0.391857087612152,-0.0282772406935692,-0.919591546058655,-0.316635817289352,-0.200270399451256,-0.927164256572723,0.545053780078888,-0.116033643484116,0.83033287525177,0.462433129549026,-0.00575158512219787,0.886635482311249,0.154655188322067,-0.00648666312918067,0.987947225570679,0.275507032871246,-0.0198202412575483,0.961094796657562,
- 0.535467207431793,0.270420461893082,0.800092339515686,0.809200465679169,0.586549758911133,-0.0339735858142376,0.955029010772705,-0.287843286991119,-0.0711762234568596,0.545053780078888,-0.116033643484116,0.83033287525177,-0.29675555229187,0.336807489395142,-0.893586575984955,-0.376198470592499,0.124606966972351,-0.918121933937073,-0.384527862071991,-0.133597984910011,-0.913394808769226,-0.318462520837784,-0.312858015298843,-0.894819319248199,-0.326153814792633,-0.0834342315793037,-0.941627621650696,0.0880572870373726,-0.557344913482666,-0.825598239898682,0.758362054824829,-0.651283025741577,-0.0267848074436188,0.90216863155365,-0.253786414861679,-0.348832875490189,0.785007655620575,-0.603419661521912,-0.140170529484749,0.774030804634094,-0.51194965839386,-0.372537314891815,0.695666313171387,0.6419837474823,-0.322343558073044,0.918870747089386,0.36838310956955,-0.141317099332809,0.555888652801514,-0.139764577150345,0.819422781467438,0.270953148603439,-0.164164334535599,0.948490619659424,0.286837249994278,-0.0740123763680458,0.955115973949432,0.527026057243347,0.178405120968819,0.830912351608276,0.539748787879944,-0.216764405369759,0.813439905643463,0.972963333129883,-0.215467885136604,-0.0831633061170578,0.985181391239166,-0.167338088154793,-0.0376248434185982,0.540754497051239,0.0207414068281651,0.840924680233002,0.972963333129883,-0.215467885136604,-0.0831633061170578,0.796090245246887,-0.478758752346039,-0.370176285505295,0.904784321784973,0.087860569357872,-0.416708409786224,0.985181391239166,-0.167338088154793,-0.0376248434185982,0.843732833862305,-0.435650676488876,-0.313565701246262,0.650808274745941,-0.188278943300247,-0.73552680015564,0.918148636817932,0.173637509346008,-0.356164544820786,0.902533054351807,0.427927881479263,-0.0480815693736076,0.904784321784973,0.087860569357872,-0.416708409786224,0.844535231590271,0.125840544700623,-0.520504176616669,0.985181391239166,-0.167338088154793,-0.0376248434185982,0.80913382768631,0.583966076374054,-0.0654677301645279,0.518795967102051,-0.0437719970941544,0.853776752948761,
- 0.544862508773804,-0.00569047499448061,0.838506162166595,0.979565978050232,0.00394137483090162,0.201084718108177,0.280583828687668,-0.39033180475235,-0.876877307891846,0.981303632259369,-0.170314982533455,-0.0896441712975502,0.905246555805206,0.203539058566093,-0.372961908578873,0.844535231590271,0.125840544700623,-0.520504176616669,-0.318462520837784,-0.312858015298843,-0.894819319248199,-0.323016434907913,0.105608150362968,-0.940482497215271,0.918148636817932,0.173637509346008,-0.356164544820786,-0.345190405845642,0.36899670958519,-0.862951457500458,0.881865382194519,-0.276093393564224,-0.382211863994598,0.995617687702179,-0.0485634729266167,-0.0799196735024452,0.555888652801514,-0.139764577150345,0.819422781467438,0.527026057243347,0.178405120968819,0.830912351608276,0.902533054351807,0.427927881479263,-0.0480815693736076,0.293817967176437,0.00353329256176949,-0.955854952335358,-0.332506537437439,0.295361280441284,-0.895656883716583,0.925728142261505,-0.0345394387841225,-0.376609146595001,-0.302436083555222,-0.175598800182343,-0.93685519695282,-0.384632736444473,-0.103958025574684,-0.917196989059448,-0.160110950469971,-0.00581243960186839,-0.98708188533783,0.402320921421051,-0.00238663889467716,-0.915495634078979,0.807671070098877,0.469134092330933,-0.357184320688248,0.995617687702179,-0.0485634729266167,-0.0799196735024452,0.902533054351807,0.427927881479263,-0.0480815693736076,0.881865382194519,-0.276093393564224,-0.382211863994598,-0.359097629785538,-0.172797754406929,-0.917164027690887,0.807671070098877,0.469134092330933,-0.357184320688248,0.881865382194519,-0.276093393564224,-0.382211863994598,-0.369572281837463,0.0486487448215485,-0.927927613258362,0.809200465679169,0.586549758911133,-0.0339735858142376,0.217398405075073,0.641539990901947,-0.735638797283173,0.864233732223511,0.360127955675125,-0.351294726133347,0.496488183736801,0.33952796459198,0.798886954784393,0.307114124298096,0.307627111673355,0.900581240653992,0.593100190162659,0.0822072848677635,0.800920784473419,0.902533054351807,0.427927881479263,-0.0480815693736076,
- 0.527026057243347,0.178405120968819,0.830912351608276,0.717002034187317,-0.438759833574295,0.541662156581879,0.843732833862305,-0.435650676488876,-0.313565701246262,-0.373941838741302,0.0694908276200294,-0.924845099449158,-0.0139205679297447,-0.19753985106945,-0.980195999145508,-0.442823827266693,0.0379417203366756,-0.895805478096008,-0.389427065849304,-0.206684693694115,-0.897567868232727,0.995617687702179,-0.0485634729266167,-0.0799196735024452,0.807671070098877,0.469134092330933,-0.357184320688248,0.217398405075073,0.641539990901947,-0.735638797283173,0.893180727958679,0.437932640314102,-0.102192409336567,-0.180041402578354,-0.234357267618179,-0.955333352088928,0.217398405075073,0.641539990901947,-0.735638797283173,0.807671070098877,0.469134092330933,-0.357184320688248,0.972963333129883,-0.215467885136604,-0.0831633061170578,0.539748787879944,-0.216764405369759,0.813439905643463,0.0864759236574173,-0.321321159601212,0.943013668060303,0.824312269687653,-0.464830696582794,-0.32317453622818,-0.345190405845642,0.36899670958519,-0.862951457500458,-0.369572281837463,0.0486487448215485,-0.927927613258362,0.881865382194519,-0.276093393564224,-0.382211863994598,-0.61398059129715,0.788818538188934,0.0281638205051422,0.978525936603546,0.109540849924088,-0.174608036875725,0.250354796648026,0.846697807312012,0.469494998455048,0.902533054351807,0.427927881479263,-0.0480815693736076,0.918148636817932,0.173637509346008,-0.356164544820786,0.881865382194519,-0.276093393564224,-0.382211863994598,-0.340505063533783,-0.234880015254021,-0.910432696342468,-0.619421184062958,-0.171278119087219,-0.766147136688232,0.905246555805206,0.203539058566093,-0.372961908578873,0.925728142261505,-0.0345394387841225,-0.376609146595001,-0.332506537437439,0.295361280441284,-0.895656883716583,-0.340505063533783,-0.234880015254021,-0.910432696342468,0.905246555805206,0.203539058566093,-0.372961908578873,0.217398405075073,0.641539990901947,-0.735638797283173,-0.29845717549324,0.276937276124954,-0.913361430168152,0.864233732223511,0.360127955675125,-0.351294726133347,
- 0.138925909996033,0.937336802482605,0.319530159235001,-0.0268529541790485,0.184294760227203,-0.98250412940979,0.345389813184738,-0.47601243853569,-0.808775782585144,0.496488183736801,0.33952796459198,0.798886954784393,0.265625298023224,0.146069750189781,0.952946484088898,0.307114124298096,0.307627111673355,0.900581240653992,0.217398405075073,0.641539990901947,-0.735638797283173,0.809200465679169,0.586549758911133,-0.0339735858142376,0.893180727958679,0.437932640314102,-0.102192409336567,0.899000763893127,-0.254381656646729,-0.356493443250656,0.93303918838501,0.353138208389282,-0.0687858015298843,0.755764126777649,0.65238231420517,0.0567268505692482,0.923269748687744,0.0826441943645477,-0.375157386064529,0.527026057243347,0.178405120968819,0.830912351608276,0.286837249994278,-0.0740123763680458,0.955115973949432,0.586552858352661,-0.684103548526764,0.433541297912598,0.717002034187317,-0.438759833574295,0.541662156581879,0.774030804634094,-0.51194965839386,-0.372537314891815,-0.329022169113159,0.262062340974808,-0.907230913639069,-0.316635817289352,-0.200270399451256,-0.927164256572723,0.695666313171387,0.6419837474823,-0.322343558073044,0.755764126777649,0.65238231420517,0.0567268505692482,0.918870747089386,0.36838310956955,-0.141317099332809,0.695666313171387,0.6419837474823,-0.322343558073044,0.923269748687744,0.0826441943645477,-0.375157386064529,0.843732833862305,-0.435650676488876,-0.313565701246262,0.985181391239166,-0.167338088154793,-0.0376248434185982,0.844535231590271,0.125840544700623,-0.520504176616669,0.280583828687668,-0.39033180475235,-0.876877307891846,-0.619421184062958,-0.171278119087219,-0.766147136688232,0.774030804634094,-0.51194965839386,-0.372537314891815,0.955029010772705,-0.287843286991119,-0.0711762234568596,0.995803415775299,-0.0529332384467125,0.0746569186449051,0.462433129549026,-0.00575158512219787,0.886635482311249,0.972963333129883,-0.215467885136604,-0.0831633061170578,0.824312269687653,-0.464830696582794,-0.32317453622818,0.0880572870373726,-0.557344913482666,-0.825598239898682,0.796090245246887,-0.478758752346039,-0.370176285505295,
- 0.402320921421051,-0.00238663889467716,-0.915495634078979,0.919884443283081,0.0211830120533705,-0.391617149114609,-0.302436083555222,-0.175598800182343,-0.93685519695282,0.80913382768631,0.583966076374054,-0.0654677301645279,0.979565978050232,0.00394137483090162,0.201084718108177,0.293817967176437,0.00353329256176949,-0.955854952335358,0.925728142261505,-0.0345394387841225,-0.376609146595001,0.899000763893127,-0.254381656646729,-0.356493443250656,-0.373941838741302,0.0694908276200294,-0.924845099449158,-0.369438141584396,-0.264962375164032,-0.890679776668549,0.90216863155365,-0.253786414861679,-0.348832875490189,0.923269748687744,0.0826441943645477,-0.375157386064529,-0.373941838741302,0.0694908276200294,-0.924845099449158,0.899000763893127,-0.254381656646729,-0.356493443250656,-0.340505063533783,-0.234880015254021,-0.910432696342468,-0.373374313116074,-0.217148765921593,-0.901907980442047,-0.447614431381226,-0.0336775630712509,-0.893592298030853,-0.619421184062958,-0.171278119087219,-0.766147136688232,0.695666313171387,0.6419837474823,-0.322343558073044,-0.316635817289352,-0.200270399451256,-0.927164256572723,0.923269748687744,0.0826441943645477,-0.375157386064529,0.518795967102051,-0.0437719970941544,0.853776752948761,0.80913382768631,0.583966076374054,-0.0654677301645279,0.981303632259369,-0.170314982533455,-0.0896441712975502,0.523090898990631,-0.0845931991934776,0.848068356513977,-0.332506537437439,0.295361280441284,-0.895656883716583,-0.380942791700363,0.150300741195679,-0.912300527095795,-0.373374313116074,-0.217148765921593,-0.901907980442047,-0.340505063533783,-0.234880015254021,-0.910432696342468,0.0880572870373726,-0.557344913482666,-0.825598239898682,-0.208924829959869,0.0928896516561508,-0.973510146141052,-0.29675555229187,0.336807489395142,-0.893586575984955,0.796090245246887,-0.478758752346039,-0.370176285505295,0.796090245246887,-0.478758752346039,-0.370176285505295,-0.29675555229187,0.336807489395142,-0.893586575984955,-0.326153814792633,-0.0834342315793037,-0.941627621650696,0.904784321784973,0.087860569357872,-0.416708409786224,
- 0.918148636817932,0.173637509346008,-0.356164544820786,0.650808274745941,-0.188278943300247,-0.73552680015564,-0.323016434907913,0.105608150362968,-0.940482497215271,-0.345190405845642,0.36899670958519,-0.862951457500458,-0.180041402578354,-0.234357267618179,-0.955333352088928,-0.359097629785538,-0.172797754406929,-0.917164027690887,-0.370674133300781,-0.208398506045341,-0.905080556869507,0.363113582134247,-0.705904960632324,-0.6081503033638,-0.29845717549324,0.276937276124954,-0.913361430168152,-0.380167186260223,0.162749066948891,-0.910486578941345,-0.384632736444473,-0.103958025574684,-0.917196989059448,-0.302436083555222,-0.175598800182343,-0.93685519695282,-0.324312925338745,0.0328000113368034,-0.945381045341492,-0.327679336071014,0.0127276843413711,-0.944703340530396,-0.351967126131058,0.195728331804276,-0.915319383144379,0.402320921421051,-0.00238663889467716,-0.915495634078979,0.995803415775299,-0.0529332384467125,0.0746569186449051,0.955029010772705,-0.287843286991119,-0.0711762234568596,0.919884443283081,0.0211830120533705,-0.391617149114609,0.275507032871246,-0.0198202412575483,0.961094796657562,0.269761800765991,0.0960902124643326,0.958120703697205,0.535467207431793,0.270420461893082,0.800092339515686,0.545053780078888,-0.116033643484116,0.83033287525177,0.292048931121826,-0.0199985448271036,0.956194281578064,0.270953148603439,-0.164164334535599,0.948490619659424,0.555888652801514,-0.139764577150345,0.819422781467438,0.844535231590271,0.125840544700623,-0.520504176616669,0.904784321784973,0.087860569357872,-0.416708409786224,-0.326153814792633,-0.0834342315793037,-0.941627621650696,-0.318462520837784,-0.312858015298843,-0.894819319248199,0.843732833862305,-0.435650676488876,-0.313565701246262,0.717002034187317,-0.438759833574295,0.541662156581879,0.540754497051239,0.0207414068281651,0.840924680233002,0.985181391239166,-0.167338088154793,-0.0376248434185982,0.824312269687653,-0.464830696582794,-0.32317453622818,0.758362054824829,-0.651283025741577,-0.0267848074436188,0.0880572870373726,-0.557344913482666,-0.825598239898682,
- 0.0864759236574173,-0.321321159601212,0.943013668060303,0.44149586558342,-0.415524214506149,0.795249104499817,0.758362054824829,-0.651283025741577,-0.0267848074436188,0.824312269687653,-0.464830696582794,-0.32317453622818,-0.404840260744095,-0.00897009763866663,-0.914343535900116,-0.376198470592499,0.124606966972351,-0.918121933937073,-0.29675555229187,0.336807489395142,-0.893586575984955,-0.208924829959869,0.0928896516561508,-0.973510146141052,-0.369438141584396,-0.264962375164032,-0.890679776668549,0.0880572870373726,-0.557344913482666,-0.825598239898682,0.90216863155365,-0.253786414861679,-0.348832875490189,0.496488183736801,0.33952796459198,0.798886954784393,0.93303918838501,0.353138208389282,-0.0687858015298843,0.758362054824829,-0.651283025741577,-0.0267848074436188,0.44149586558342,-0.415524214506149,0.795249104499817,0.593100190162659,0.0822072848677635,0.800920784473419,0.539157152175903,0.0294711478054523,0.841689467430115,0.918870747089386,0.36838310956955,-0.141317099332809,0.755764126777649,0.65238231420517,0.0567268505692482,-0.0315558798611164,-0.798113167285919,-0.60168069601059,-0.840253889560699,-0.142870187759399,0.523031115531921,0.858498871326447,0.352102279663086,-0.372831970453262,-0.323016434907913,0.105608150362968,-0.940482497215271,0.650808274745941,-0.188278943300247,-0.73552680015564,0.844535231590271,0.125840544700623,-0.520504176616669,0.923269748687744,0.0826441943645477,-0.375157386064529,-0.0139205679297447,-0.19753985106945,-0.980195999145508,-0.373941838741302,0.0694908276200294,-0.924845099449158,0.33401483297348,0.120650693774223,0.934814155101776,0.317752629518509,0.033218577504158,0.947591602802277,0.01490050368011,-0.791370749473572,0.611154854297638,-0.199514448642731,0.737467646598816,-0.645240664482117,0.605708062648773,-0.783214926719666,-0.140328928828239,0.20470105111599,-0.74103170633316,0.639507293701172,0.363113582134247,-0.705904960632324,-0.6081503033638,-0.380167186260223,0.162749066948891,-0.910486578941345,-0.29845717549324,0.276937276124954,-0.913361430168152,
- -0.180041402578354,-0.234357267618179,-0.955333352088928,0.555888652801514,-0.139764577150345,0.819422781467438,0.683570146560669,0.102819800376892,0.722606360912323,0.292048931121826,-0.0199985448271036,0.956194281578064,0.893180727958679,0.437932640314102,-0.102192409336567,0.683570146560669,0.102819800376892,0.722606360912323,0.555888652801514,-0.139764577150345,0.819422781467438,0.995617687702179,-0.0485634729266167,-0.0799196735024452,0.292048931121826,-0.0199985448271036,0.956194281578064,0.683570146560669,0.102819800376892,0.722606360912323,0.535467207431793,0.270420461893082,0.800092339515686,0.809200465679169,0.586549758911133,-0.0339735858142376,0.535467207431793,0.270420461893082,0.800092339515686,0.683570146560669,0.102819800376892,0.722606360912323,0.893180727958679,0.437932640314102,-0.102192409336567,0.535467207431793,0.270420461893082,0.800092339515686,0.269761800765991,0.0960902124643326,0.958120703697205,0.292048931121826,-0.0199985448271036,0.956194281578064,-0.180041402578354,-0.234357267618179,-0.955333352088928,0.807671070098877,0.469134092330933,-0.357184320688248,-0.359097629785538,-0.172797754406929,-0.917164027690887,0.409504771232605,-0.0296232365071774,0.911826908588409,0.322714418172836,0.0918384194374084,0.942030370235443,0.523090898990631,-0.0845931991934776,0.848068356513977,0.5047767162323,-0.450165331363678,0.736581027507782,0.274889558553696,-0.308299273252487,0.910707116127014,0.322714418172836,0.0918384194374084,0.942030370235443,0.409504771232605,-0.0296232365071774,0.911826908588409,0.785007655620575,-0.603419661521912,-0.140170529484749,0.5047767162323,-0.450165331363678,0.736581027507782,0.409504771232605,-0.0296232365071774,0.911826908588409,0.726397097110748,-0.592456221580505,-0.348343044519424,0.726397097110748,-0.592456221580505,-0.348343044519424,0.409504771232605,-0.0296232365071774,0.911826908588409,0.523090898990631,-0.0845931991934776,0.848068356513977,0.981303632259369,-0.170314982533455,-0.0896441712975502,0.80913382768631,0.583966076374054,-0.0654677301645279,0.925728142261505,-0.0345394387841225,-0.376609146595001,
- 0.905246555805206,0.203539058566093,-0.372961908578873,0.981303632259369,-0.170314982533455,-0.0896441712975502,0.726397097110748,-0.592456221580505,-0.348343044519424,0.280583828687668,-0.39033180475235,-0.876877307891846,0.774030804634094,-0.51194965839386,-0.372537314891815,0.785007655620575,-0.603419661521912,-0.140170529484749,-0.603506863117218,-0.752991199493408,0.262266337871552,0.707230091094971,0.494009971618652,-0.505746841430664,0.978525936603546,0.109540849924088,-0.174608036875725,0.774030804634094,-0.51194965839386,-0.372537314891815,-0.619421184062958,-0.171278119087219,-0.766147136688232,-0.329022169113159,0.262062340974808,-0.907230913639069,0.955029010772705,-0.287843286991119,-0.0711762234568596,0.462433129549026,-0.00575158512219787,0.886635482311249,0.545053780078888,-0.116033643484116,0.83033287525177,-0.373941838741302,0.0694908276200294,-0.924845099449158,-0.389427065849304,-0.206684693694115,-0.897567868232727,-0.386979579925537,-0.00221591372974217,-0.922085642814636,-0.369438141584396,-0.264962375164032,-0.890679776668549,0.386939495801926,-0.027508532628417,0.921694695949554,-0.449478834867477,-0.0338004641234875,-0.892651259899139,-0.0268529541790485,0.184294760227203,-0.98250412940979,-0.369438141584396,-0.264962375164032,-0.890679776668549,-0.380160570144653,0.000950800254940987,-0.924920082092285,-0.380942791700363,0.150300741195679,-0.912300527095795,-0.332506537437439,0.295361280441284,-0.895656883716583,0.293817967176437,0.00353329256176949,-0.955854952335358,-0.391857087612152,-0.0282772406935692,-0.919591546058655,-0.392147362232208,0.00332300364971161,-0.919896423816681,-0.0139205679297447,-0.19753985106945,-0.980195999145508,-0.316635817289352,-0.200270399451256,-0.927164256572723,0.277756601572037,-0.0808348432183266,0.957244515419006,0.018127080053091,0.00787365064024925,0.999804675579071,0.544862508773804,-0.00569047499448061,0.838506162166595,0.518795967102051,-0.0437719970941544,0.853776752948761,0.275371372699738,-0.125018402934074,0.95317417383194,0.274889558553696,-0.308299273252487,0.910707116127014,
- 0.5047767162323,-0.450165331363678,0.736581027507782,0.539157152175903,0.0294711478054523,0.841689467430115,-0.39683198928833,-0.00330455601215363,-0.917885363101959,-0.363161742687225,0.230145156383514,-0.902854859828949,-0.329022169113159,0.262062340974808,-0.907230913639069,-0.619421184062958,-0.171278119087219,-0.766147136688232,-0.384527862071991,-0.133597984910011,-0.913394808769226,-0.372970908880234,-0.0283437706530094,-0.927410125732422,-0.323016434907913,0.105608150362968,-0.940482497215271,-0.318462520837784,-0.312858015298843,-0.894819319248199,0.586552858352661,-0.684103548526764,0.433541297912598,0.286369860172272,0.0515322797000408,0.956732392311096,0.540754497051239,0.0207414068281651,0.840924680233002,0.717002034187317,-0.438759833574295,0.541662156581879,0.322714418172836,0.0918384194374084,0.942030370235443,0.268205732107162,-0.1075399518013,0.957340478897095,0.523090898990631,-0.0845931991934776,0.848068356513977,0.268205732107162,-0.1075399518013,0.957340478897095,0.277756601572037,-0.0808348432183266,0.957244515419006,0.518795967102051,-0.0437719970941544,0.853776752948761,0.523090898990631,-0.0845931991934776,0.848068356513977,-0.372970908880234,-0.0283437706530094,-0.927410125732422,-0.388753026723862,0.0955975726246834,-0.916369080543518,-0.345190405845642,0.36899670958519,-0.862951457500458,-0.323016434907913,0.105608150362968,-0.940482497215271,-0.388753026723862,0.0955975726246834,-0.916369080543518,-0.370674133300781,-0.208398506045341,-0.905080556869507,-0.359097629785538,-0.172797754406929,-0.917164027690887,-0.369572281837463,0.0486487448215485,-0.927927613258362,-0.345190405845642,0.36899670958519,-0.862951457500458,0.286369860172272,0.0515322797000408,0.956732392311096,0.286790102720261,-0.264736980199814,0.920687675476074,0.539748787879944,-0.216764405369759,0.813439905643463,0.540754497051239,0.0207414068281651,0.840924680233002,0.307114124298096,0.307627111673355,0.900581240653992,0.275371372699738,-0.125018402934074,0.95317417383194,0.539157152175903,0.0294711478054523,0.841689467430115,
- 0.593100190162659,0.0822072848677635,0.800920784473419,0.281643360853195,0.05863943323493,0.957725763320923,0.265625298023224,0.146069750189781,0.952946484088898,0.496488183736801,0.33952796459198,0.798886954784393,0.44149586558342,-0.415524214506149,0.795249104499817,0.281643360853195,0.05863943323493,0.957725763320923,0.44149586558342,-0.415524214506149,0.795249104499817,0.0864759236574173,-0.321321159601212,0.943013668060303,0.225162416696548,-0.0499789342284203,0.973038554191589,-0.32744899392128,0.0121657131239772,-0.944790601730347,-0.324247479438782,0.0475106239318848,-0.944778501987457,-0.312683701515198,-0.0019402289763093,-0.949855327606201,-0.333614706993103,-0.00143095478415489,-0.942708492279053,0.896922171115875,-0.431468158960342,-0.0967775732278824,0.868669807910919,-0.313255995512009,-0.383775234222412,0.826120615005493,0.428380250930786,-0.36608099937439,0.945909023284912,0.309945791959763,-0.0958639159798622,0.868669807910919,-0.313255995512009,-0.383775234222412,-0.288310468196869,0.308103859424591,-0.906614184379578,-0.305933117866516,-0.10809800028801,-0.945896327495575,0.826120615005493,0.428380250930786,-0.36608099937439,0.558315694332123,-0.0108128907158971,0.829558134078979,0.997807741165161,0.0402122661471367,-0.0525609478354454,0.131499513983727,-0.0080146100372076,0.991283893585205,0.28096941113472,-0.0788353011012077,0.956473350524902,0.573137700557709,-0.120811879634857,0.810504674911499,0.896922171115875,-0.431468158960342,-0.0967775732278824,0.945909023284912,0.309945791959763,-0.0958639159798622,0.558315694332123,-0.0108128907158971,0.829558134078979,0.534257054328918,-0.232202380895615,0.812804698944092,0.265042036771774,-0.155354246497154,0.951639592647552,0.278361231088638,-0.0801182687282562,0.957129180431366,0.53597092628479,0.131026715040207,0.834006726741791,0.892301440238953,0.18917815387249,0.409890204668045,0.758517861366272,-0.0521153137087822,-0.649565100669861,0.801627218723297,-0.180359721183777,-0.569968521595001,0.966450750827789,0.248734176158905,-0.0640645548701286,
- 0.801627218723297,-0.180359721183777,-0.569968521595001,-0.353839665651321,0.372661620378494,-0.857858240604401,0.902804732322693,-0.203607708215714,-0.37879741191864,0.904398620128632,-0.423592984676361,-0.0513046979904175,0.534257054328918,-0.232202380895615,0.812804698944092,0.53597092628479,0.131026715040207,0.834006726741791,0.966450750827789,0.248734176158905,-0.0640645548701286,-0.305933117866516,-0.10809800028801,-0.945896327495575,-0.385337263345718,-0.0931636765599251,-0.918060958385468,-0.366044372320175,-0.000580090098083019,-0.930597245693207,0.0796948298811913,0.0314506627619267,-0.996323049068451,0.922359049320221,0.0596844479441643,-0.381695538759232,0.904398620128632,-0.423592984676361,-0.0513046979904175,0.966450750827789,0.248734176158905,-0.0640645548701286,0.902804732322693,-0.203607708215714,-0.37879741191864,-0.381394296884537,-0.128126710653305,-0.915490090847015,0.922359049320221,0.0596844479441643,-0.381695538759232,0.902804732322693,-0.203607708215714,-0.37879741191864,-0.383230715990067,0.0508073754608631,-0.922254323959351,0.896922171115875,-0.431468158960342,-0.0967775732278824,0.625596761703491,-0.753153026103973,0.20344340801239,0.868669807910919,-0.313255995512009,-0.383775234222412,0.966450750827789,0.248734176158905,-0.0640645548701286,0.53597092628479,0.131026715040207,0.834006726741791,0.495664715766907,0.0308735631406307,0.86796498298645,0.892301440238953,0.18917815387249,0.409890204668045,0.904398620128632,-0.423592984676361,-0.0513046979904175,0.922359049320221,0.0596844479441643,-0.381695538759232,0.625596761703491,-0.753153026103973,0.20344340801239,0.728850603103638,-0.583066463470459,0.358901709318161,-0.49417719244957,-0.206713706254959,-0.844427824020386,0.625596761703491,-0.753153026103973,0.20344340801239,0.922359049320221,0.0596844479441643,-0.381695538759232,-0.353839665651321,0.372661620378494,-0.857858240604401,-0.383230715990067,0.0508073754608631,-0.922254323959351,0.902804732322693,-0.203607708215714,-0.37879741191864,0.966450750827789,0.248734176158905,-0.0640645548701286,
- 0.801627218723297,-0.180359721183777,-0.569968521595001,0.902804732322693,-0.203607708215714,-0.37879741191864,0.625596761703491,-0.753153026103973,0.20344340801239,-0.288310468196869,0.308103859424591,-0.906614184379578,0.868669807910919,-0.313255995512009,-0.383775234222412,0.625596761703491,-0.753153026103973,0.20344340801239,0.896922171115875,-0.431468158960342,-0.0967775732278824,0.728850603103638,-0.583066463470459,0.358901709318161,0.53597092628479,0.131026715040207,0.834006726741791,0.278361231088638,-0.0801182687282562,0.957129180431366,0.315932035446167,-0.0275560319423676,0.948381662368774,0.495664715766907,0.0308735631406307,0.86796498298645,0.945909023284912,0.309945791959763,-0.0958639159798622,0.698520958423615,0.109307497739792,-0.707191944122314,0.997807741165161,0.0402122661471367,-0.0525609478354454,0.0796948298811913,0.0314506627619267,-0.996323049068451,0.826120615005493,0.428380250930786,-0.36608099937439,-0.305933117866516,-0.10809800028801,-0.945896327495575,0.801627218723297,-0.180359721183777,-0.569968521595001,0.758517861366272,-0.0521153137087822,-0.649565100669861,-0.278944253921509,-0.0118474531918764,-0.96023428440094,-0.353839665651321,0.372661620378494,-0.857858240604401,-0.49417719244957,-0.206713706254959,-0.844427824020386,-0.381394296884537,-0.128126710653305,-0.915490090847015,-0.377191454172134,-0.231764554977417,-0.896667122840881,-0.0912806242704391,0.327602237462997,-0.940396070480347,-0.288310468196869,0.308103859424591,-0.906614184379578,-0.377469688653946,0.145439773797989,-0.914529383182526,-0.385337263345718,-0.0931636765599251,-0.918060958385468,-0.305933117866516,-0.10809800028801,-0.945896327495575,-0.324247479438782,0.0475106239318848,-0.944778501987457,-0.32744899392128,0.0121657131239772,-0.944790601730347,-0.353963375091553,0.156805619597435,-0.922020673751831,0.0796948298811913,0.0314506627619267,-0.996323049068451,0.698520958423615,0.109307497739792,-0.707191944122314,0.945909023284912,0.309945791959763,-0.0958639159798622,0.826120615005493,0.428380250930786,-0.36608099937439,
- 0.28096941113472,-0.0788353011012077,0.956473350524902,0.27738493680954,0.108348771929741,0.954629898071289,0.573137700557709,-0.120811879634857,0.810504674911499,0.558315694332123,-0.0108128907158971,0.829558134078979,0.25179249048233,-0.0462639667093754,0.96667492389679,0.265042036771774,-0.155354246497154,0.951639592647552,0.534257054328918,-0.232202380895615,0.812804698944092,0.625596761703491,-0.753153026103973,0.20344340801239,-0.49417719244957,-0.206713706254959,-0.844427824020386,-0.288310468196869,0.308103859424591,-0.906614184379578,-0.0912806242704391,0.327602237462997,-0.940396070480347,-0.377469688653946,0.145439773797989,-0.914529383182526,-0.288310468196869,0.308103859424591,-0.906614184379578,-0.49417719244957,-0.206713706254959,-0.844427824020386,0.534257054328918,-0.232202380895615,0.812804698944092,0.62557989358902,-0.103551536798477,0.773257374763489,0.25179249048233,-0.0462639667093754,0.96667492389679,0.728850603103638,-0.583066463470459,0.358901709318161,0.62557989358902,-0.103551536798477,0.773257374763489,0.534257054328918,-0.232202380895615,0.812804698944092,0.904398620128632,-0.423592984676361,-0.0513046979904175,0.25179249048233,-0.0462639667093754,0.96667492389679,0.62557989358902,-0.103551536798477,0.773257374763489,0.573137700557709,-0.120811879634857,0.810504674911499,0.896922171115875,-0.431468158960342,-0.0967775732278824,0.573137700557709,-0.120811879634857,0.810504674911499,0.62557989358902,-0.103551536798477,0.773257374763489,0.728850603103638,-0.583066463470459,0.358901709318161,0.573137700557709,-0.120811879634857,0.810504674911499,0.27738493680954,0.108348771929741,0.954629898071289,0.25179249048233,-0.0462639667093754,0.96667492389679,-0.226084679365158,0.182215631008148,-0.956913471221924,-0.145243361592293,-0.984786570072174,0.0953934267163277,0.300304770469666,0.656582653522491,0.691893219947815,0.945909023284912,0.309945791959763,-0.0958639159798622,0.997807741165161,0.0402122661471367,-0.0525609478354454,0.558315694332123,-0.0108128907158971,0.829558134078979,-0.403750002384186,-0.0152891129255295,-0.914741635322571,
- -0.382100582122803,0.0862554237246513,-0.92008650302887,-0.353839665651321,0.372661620378494,-0.857858240604401,-0.278944253921509,-0.0118474531918764,-0.96023428440094,-0.382100582122803,0.0862554237246513,-0.92008650302887,-0.377191454172134,-0.231764554977417,-0.896667122840881,-0.381394296884537,-0.128126710653305,-0.915490090847015,-0.383230715990067,0.0508073754608631,-0.922254323959351,-0.353839665651321,0.372661620378494,-0.857858240604401,-0.932982325553894,-0.353150129318237,-0.0694907978177071,-0.898765563964844,0.254508316516876,-0.356996089220047,-0.901884257793427,0.253950089216232,-0.349448412656784,-0.758245885372162,0.651384770870209,-0.0275871697813272,-0.334226697683334,0.0016084301751107,0.942491412162781,-0.287868797779083,0.00335337407886982,0.957664012908936,-0.346504032611847,-0.0188669208437204,0.937858760356903,-0.264713525772095,-0.0298708043992519,0.963864326477051,-0.258250325918198,-0.00431010918691754,0.9660684466362,-0.507622599601746,0.449831128120422,0.734827399253845,-0.794042944908142,0.58909660577774,-0.149869963526726,-0.920658886432648,-0.360921800136566,-0.148737207055092,-0.539678990840912,-0.0301384348422289,0.841331243515015,-0.932982325553894,-0.353150129318237,-0.0694907978177071,-0.513010859489441,-0.335790067911148,0.789977848529816,-0.541542291641235,-0.220242917537689,0.811310708522797,-0.755915224552155,-0.652253746986389,0.0561902746558189,0.32747158408165,-0.25094947218895,-0.910926282405853,0.361445128917694,-0.218746036291122,-0.906370639801025,0.391960144042969,0.025927972048521,-0.919616878032684,0.312567293643951,0.192855790257454,-0.93011200428009,-0.983873009681702,0.178733602166176,0.00695853773504496,-0.758245885372162,0.651384770870209,-0.0275871697813272,-0.901884257793427,0.253950089216232,-0.349448412656784,-0.794042944908142,0.58909660577774,-0.149869963526726,-0.772394597530365,0.511615812778473,-0.376372367143631,-0.696180641651154,-0.639378309249878,-0.326386064291,-0.920658886432648,-0.360921800136566,-0.148737207055092,-0.809646487236023,-0.583345115184784,-0.0646627768874168,
- -0.519139111042023,0.042740810662508,0.85362046957016,-0.545418441295624,0.00567713333293796,0.838144779205322,-0.979675233364105,-0.00396638317033648,0.200551018118858,-0.28023898601532,0.39030796289444,-0.87699818611145,-0.981374800205231,0.169825404882431,-0.0897933840751648,-0.905055224895477,-0.20248681306839,-0.373997509479523,-0.293089538812637,-0.00353334657847881,-0.95607852935791,0.332717776298523,-0.294353067874908,-0.895910263061523,-0.92548930644989,0.0349575616419315,-0.377157419919968,-0.22565084695816,-0.439265906810761,0.869555771350861,-0.541542291641235,-0.220242917537689,0.811310708522797,-0.513010859489441,-0.335790067911148,0.789977848529816,0.374560952186584,-0.0694787502288818,-0.924595534801483,-0.879126489162445,0.402051866054535,0.255912214517593,0.443538069725037,-0.0380341596901417,-0.895448267459869,0.389911323785782,0.206760555505753,-0.89734011888504,0.616397023200989,-0.78698456287384,0.0266489610075951,-0.978397011756897,-0.109487466514111,-0.175361752510071,-0.250604629516602,-0.846715688705444,0.46932914853096,0.340738713741302,0.235683962702751,-0.910137534141541,0.619738221168518,0.171088635921478,-0.765932977199554,-0.905055224895477,-0.20248681306839,-0.373997509479523,-0.92548930644989,0.0349575616419315,-0.377157419919968,0.332717776298523,-0.294353067874908,-0.895910263061523,0.340738713741302,0.235683962702751,-0.910137534141541,-0.905055224895477,-0.20248681306839,-0.373997509479523,0.344054609537125,0.449645429849625,-0.824284851551056,0.233449950814247,0.248718172311783,-0.940021574497223,-0.983873009681702,0.178733602166176,0.00695853773504496,-0.22565084695816,-0.439265906810761,0.869555771350861,-0.263457685709,-0.0744314640760422,0.961795270442963,-0.541542291641235,-0.220242917537689,0.811310708522797,-0.898765563964844,0.254508316516876,-0.356996089220047,-0.932982325553894,-0.353150129318237,-0.0694907978177071,-0.755915224552155,-0.652253746986389,0.0561902746558189,-0.923081576824188,-0.0825057402253151,-0.3756502866745,-0.772394597530365,0.511615812778473,-0.376372367143631,
- 0.32747158408165,-0.25094947218895,-0.910926282405853,0.312567293643951,0.192855790257454,-0.93011200428009,-0.696180641651154,-0.639378309249878,-0.326386064291,-0.755915224552155,-0.652253746986389,0.0561902746558189,-0.920658886432648,-0.360921800136566,-0.148737207055092,-0.696180641651154,-0.639378309249878,-0.326386064291,-0.923081576824188,-0.0825057402253151,-0.3756502866745,-0.28023898601532,0.39030796289444,-0.87699818611145,0.619738221168518,0.171088635921478,-0.765932977199554,-0.772394597530365,0.511615812778473,-0.376372367143631,-0.809646487236023,-0.583345115184784,-0.0646627768874168,-0.979675233364105,-0.00396638317033648,0.200551018118858,-0.293089538812637,-0.00353334657847881,-0.95607852935791,-0.92548930644989,0.0349575616419315,-0.377157419919968,-0.898765563964844,0.254508316516876,-0.356996089220047,0.374560952186584,-0.0694787502288818,-0.924595534801483,0.344054609537125,0.449645429849625,-0.824284851551056,-0.901884257793427,0.253950089216232,-0.349448412656784,-0.923081576824188,-0.0825057402253151,-0.3756502866745,0.374560952186584,-0.0694787502288818,-0.924595534801483,-0.898765563964844,0.254508316516876,-0.356996089220047,0.340738713741302,0.235683962702751,-0.910137534141541,0.373506426811218,0.217182472348213,-0.901845216751099,0.448217630386353,0.0336794890463352,-0.893289864063263,0.619738221168518,0.171088635921478,-0.765932977199554,-0.696180641651154,-0.639378309249878,-0.326386064291,0.312567293643951,0.192855790257454,-0.93011200428009,-0.923081576824188,-0.0825057402253151,-0.3756502866745,-0.519139111042023,0.042740810662508,0.85362046957016,-0.809646487236023,-0.583345115184784,-0.0646627768874168,-0.981374800205231,0.169825404882431,-0.0897933840751648,-0.53148227930069,-0.024728074669838,0.846708416938782,0.332717776298523,-0.294353067874908,-0.895910263061523,0.381338357925415,-0.149613827466965,-0.912248194217682,0.373506426811218,0.217182472348213,-0.901845216751099,0.340738713741302,0.235683962702751,-0.910137534141541,-0.56963449716568,0.419316947460175,0.706887483596802,
- -0.758245885372162,0.651384770870209,-0.0275871697813272,-0.983873009681702,0.178733602166176,0.00695853773504496,-0.207789078354836,0.081729419529438,0.974753320217133,-0.455991715192795,0.414744257926941,0.787438154220581,-0.758245885372162,0.651384770870209,-0.0275871697813272,-0.56963449716568,0.419316947460175,0.706887483596802,0.344054609537125,0.449645429849625,-0.824284851551056,-0.983873009681702,0.178733602166176,0.00695853773504496,-0.901884257793427,0.253950089216232,-0.349448412656784,-0.513010859489441,-0.335790067911148,0.789977848529816,-0.932982325553894,-0.353150129318237,-0.0694907978177071,-0.758245885372162,0.651384770870209,-0.0275871697813272,-0.455991715192795,0.414744257926941,0.787438154220581,-0.541542291641235,-0.220242917537689,0.811310708522797,-0.539678990840912,-0.0301384348422289,0.841331243515015,-0.920658886432648,-0.360921800136566,-0.148737207055092,-0.755915224552155,-0.652253746986389,0.0561902746558189,-0.923081576824188,-0.0825057402253151,-0.3756502866745,-0.879126489162445,0.402051866054535,0.255912214517593,0.374560952186584,-0.0694787502288818,-0.924595534801483,-0.332912802696228,-0.110879197716713,0.93641597032547,-0.3183513879776,-0.0332254469394684,0.94739043712616,-0.0152686890214682,0.791404724121094,0.611101806163788,-0.404891461133957,0.150305405259132,0.901926457881927,-0.326254606246948,-0.102051116526127,0.939757108688354,-0.53148227930069,-0.024728074669838,0.846708416938782,-0.507622599601746,0.449831128120422,0.734827399253845,-0.270059406757355,0.299896568059921,0.914948105812073,-0.326254606246948,-0.102051116526127,0.939757108688354,-0.404891461133957,0.150305405259132,0.901926457881927,-0.794042944908142,0.58909660577774,-0.149869963526726,-0.507622599601746,0.449831128120422,0.734827399253845,-0.404891461133957,0.150305405259132,0.901926457881927,-0.726211190223694,0.592420876026154,-0.348790675401688,-0.726211190223694,0.592420876026154,-0.348790675401688,-0.404891461133957,0.150305405259132,0.901926457881927,-0.53148227930069,-0.024728074669838,0.846708416938782,
- -0.981374800205231,0.169825404882431,-0.0897933840751648,-0.809646487236023,-0.583345115184784,-0.0646627768874168,-0.92548930644989,0.0349575616419315,-0.377157419919968,-0.905055224895477,-0.20248681306839,-0.373997509479523,-0.981374800205231,0.169825404882431,-0.0897933840751648,-0.726211190223694,0.592420876026154,-0.348790675401688,-0.28023898601532,0.39030796289444,-0.87699818611145,-0.772394597530365,0.511615812778473,-0.376372367143631,-0.794042944908142,0.58909660577774,-0.149869963526726,0.60393613576889,0.751997292041779,0.264123618602753,-0.706771969795227,-0.493909955024719,-0.506484270095825,-0.978397011756897,-0.109487466514111,-0.175361752510071,-0.772394597530365,0.511615812778473,-0.376372367143631,0.619738221168518,0.171088635921478,-0.765932977199554,0.32747158408165,-0.25094947218895,-0.910926282405853,0.374560952186584,-0.0694787502288818,-0.924595534801483,0.389911323785782,0.206760555505753,-0.89734011888504,0.387599766254425,-0.0125782517716289,-0.921741902828217,0.344054609537125,0.449645429849625,-0.824284851551056,0.387599766254425,-0.0125782517716289,-0.921741902828217,0.400043249130249,-0.0212159156799316,-0.916250646114349,0.233449950814247,0.248718172311783,-0.940021574497223,0.344054609537125,0.449645429849625,-0.824284851551056,0.380866438150406,-0.000945691135711968,-0.924629688262939,0.381338357925415,-0.149613827466965,-0.912248194217682,0.332717776298523,-0.294353067874908,-0.895910263061523,-0.293089538812637,-0.00353334657847881,-0.95607852935791,0.391960144042969,0.025927972048521,-0.919616878032684,0.392711341381073,-0.00330369221046567,-0.919655978679657,-0.879126489162445,0.402051866054535,0.255912214517593,0.312567293643951,0.192855790257454,-0.93011200428009,-0.278535515069962,0.080353207886219,0.957058787345886,-0.0188916884362698,-0.00786941032856703,0.999790549278259,-0.545418441295624,0.00567713333293796,0.838144779205322,-0.519139111042023,0.042740810662508,0.85362046957016,-0.275259047746658,0.125248119235039,0.953176498413086,-0.270059406757355,0.299896568059921,0.914948105812073,
- -0.507622599601746,0.449831128120422,0.734827399253845,-0.539678990840912,-0.0301384348422289,0.841331243515015,0.397322028875351,0.00324335740879178,-0.917673587799072,0.361445128917694,-0.218746036291122,-0.906370639801025,0.32747158408165,-0.25094947218895,-0.910926282405853,0.619738221168518,0.171088635921478,-0.765932977199554,-0.326254606246948,-0.102051116526127,0.939757108688354,-0.275216400623322,0.0373131446540356,0.960657954216003,-0.53148227930069,-0.024728074669838,0.846708416938782,-0.275216400623322,0.0373131446540356,0.960657954216003,-0.278535515069962,0.080353207886219,0.957058787345886,-0.519139111042023,0.042740810662508,0.85362046957016,-0.53148227930069,-0.024728074669838,0.846708416938782,-0.263457685709,-0.0744314640760422,0.961795270442963,-0.275259047746658,0.125248119235039,0.953176498413086,-0.539678990840912,-0.0301384348422289,0.841331243515015,-0.541542291641235,-0.220242917537689,0.811310708522797,-0.283179134130478,-0.0585838370025158,0.957276105880737,-0.22565084695816,-0.439265906810761,0.869555771350861,-0.513010859489441,-0.335790067911148,0.789977848529816,-0.455991715192795,0.414744257926941,0.787438154220581,-0.283179134130478,-0.0585838370025158,0.957276105880737,-0.455991715192795,0.414744257926941,0.787438154220581,-0.207789078354836,0.081729419529438,0.974753320217133,-0.232806891202927,0.0266535356640816,0.972157657146454,0.328059047460556,-0.0121512422338128,-0.944579064846039,0.324861735105515,-0.0475092828273773,-0.944567501544952,0.313293069601059,0.00194223434664309,-0.949654579162598,0.334216892719269,0.00143263302743435,-0.942495107650757,-0.662382304668427,0.0600999817252159,0.746751487255096,-0.508871078491211,0.474157512187958,0.718487977981567,-0.295274138450623,0.41380500793457,0.861149609088898,0.0438306033611298,-0.171383544802666,0.9842289686203,-0.879129230976105,0.459309667348862,-0.127147600054741,-0.789243638515472,0.519995033740997,-0.326649278402328,-0.905421018600464,-0.199638396501541,-0.374643057584763,-0.904675781726837,-0.414131015539169,-0.100285738706589,
- -0.335491538047791,0.00161822722293437,0.94204193353653,-0.294403076171875,0.00317597249522805,0.955676019191742,-0.347693473100662,-0.00910704769194126,0.937564015388489,-0.273931384086609,-0.0288862586021423,0.961315333843231,-0.267476797103882,-0.00488320970907807,0.963551998138428,-0.54792857170105,0.0986964255571365,0.830682516098022,-0.993137538433075,0.0380627438426018,-0.110585801303387,-0.977308690547943,0.192260280251503,-0.088903583586216,-0.491569876670837,0.244501888751984,0.835809826850891,-0.89875853061676,0.425700962543488,-0.104938082396984,-0.869163990020752,0.306729763746262,-0.387905895709991,-0.823662042617798,-0.430648446083069,-0.368948519229889,-0.945527136325836,-0.309186220169067,-0.101894646883011,-0.879129230976105,0.459309667348862,-0.127147600054741,-0.562986195087433,-0.170438826084137,0.808700978755951,-0.883520901203156,-0.196305990219116,0.425270438194275,-0.865380644798279,0.300716072320938,0.400856971740723,-0.869163990020752,0.306729763746262,-0.387905895709991,0.284753620624542,-0.312834709882736,-0.906117975711823,0.305115938186646,0.0947220474481583,-0.947592735290527,-0.823662042617798,-0.430648446083069,-0.368948519229889,0.364609628915787,0.0578568503260612,-0.929361402988434,0.392737120389938,0.0120000541210175,-0.919572472572327,0.390054523944855,0.0337331108748913,-0.920173704624176,0.326827168464661,0.263669729232788,-0.907558441162109,-0.555363893508911,0.0107852630317211,0.831537485122681,-0.997767567634583,-0.0402305461466312,-0.0533047504723072,-0.131649076938629,0.0080370744690299,0.991263866424561,-0.281779617071152,0.0767929553985596,0.956401169300079,-0.577390849590302,0.121726520359516,0.807342827320099,-0.89875853061676,0.425700962543488,-0.104938082396984,-0.945527136325836,-0.309186220169067,-0.101894646883011,-0.555363893508911,0.0107852630317211,0.831537485122681,0.312863796949387,-0.327140212059021,-0.891681373119354,0.390887379646301,0.0180730540305376,-0.920261085033417,0.37694588303566,0.121460899710655,-0.918236911296844,0.322731047868729,0.220781251788139,-0.920380532741547,
- 0.322485029697418,0.0463013872504234,-0.945441484451294,-0.897584795951843,-0.439427852630615,0.0352792255580425,-0.904675781726837,-0.414131015539169,-0.100285738706589,-0.905421018600464,-0.199638396501541,-0.374643057584763,-0.821394085884094,0.418070018291473,-0.387981295585632,-0.917341709136963,0.0183392222970724,-0.397678315639496,-0.977308690547943,0.192260280251503,-0.088903583586216,-0.993137538433075,0.0380627438426018,-0.110585801303387,-0.534420251846313,0.232263505458832,0.812679886817932,-0.264952003955841,0.155202478170395,0.951689422130585,-0.279329925775528,0.0798027217388153,0.956873297691345,-0.535727977752686,-0.128826960921288,0.834505379199982,-0.508871078491211,0.474157512187958,0.718487977981567,-0.990447163581848,-0.129441976547241,-0.0475313365459442,-0.996706962585449,-0.0697190091013908,-0.0414078533649445,-0.535415530204773,-0.0874613076448441,0.840048134326935,-0.990447163581848,-0.129441976547241,-0.0475313365459442,-0.915526866912842,-0.176881909370422,-0.361280411481857,-0.907304227352142,-0.0878215655684471,-0.411201119422913,-0.996706962585449,-0.0697190091013908,-0.0414078533649445,-0.826811075210571,-0.417912185192108,0.376474559307098,-0.668051540851593,0.172157868742943,-0.72392600774765,-0.801227569580078,0.180400654673576,-0.570517480373383,-0.966941773891449,-0.247023031115532,-0.0632721483707428,-0.907304227352142,-0.0878215655684471,-0.411201119422913,-0.83296924829483,-0.176335826516151,-0.524469196796417,-0.996706962585449,-0.0697190091013908,-0.0414078533649445,-0.79321962594986,-0.605409920215607,-0.0654340833425522,-0.523668050765991,-0.139882311224937,0.8403599858284,-0.403609216213226,-0.000659414567053318,0.914931237697601,-0.853709697723389,-0.0144186001271009,0.520549654960632,-0.198370575904846,0.607299625873566,-0.769309043884277,-0.945732116699219,0.31460052728653,-0.0813472792506218,-0.915543377399445,-0.141955673694611,-0.376336276531219,-0.83296924829483,-0.176335826516151,-0.524469196796417,0.322731047868729,0.220781251788139,-0.920380532741547,-0.217659309506416,0.431862145662308,-0.875282645225525,
- -0.801227569580078,0.180400654673576,-0.570517480373383,0.351815640926361,-0.37171083688736,-0.859102308750153,-0.902097165584564,0.203835412859917,-0.380357325077057,-0.90554141998291,0.421507596969604,-0.0482302829623222,-0.534420251846313,0.232263505458832,0.812679886817932,-0.535727977752686,-0.128826960921288,0.834505379199982,-0.966941773891449,-0.247023031115532,-0.0632721483707428,-0.964423596858978,-0.0262095462530851,0.263059258460999,0.352186143398285,-0.126805678009987,-0.927300035953522,-0.885431468486786,-0.311203896999359,-0.345200598239899,0.305115938186646,0.0947220474481583,-0.947592735290527,0.385243207216263,0.0827097445726395,-0.919101119041443,0.36672654747963,0.000579632876906544,-0.930328667163849,-0.0790647715330124,-0.0314454771578312,-0.996373474597931,-0.922095417976379,-0.0592981725931168,-0.382392168045044,-0.90554141998291,0.421507596969604,-0.0482302829623222,-0.966941773891449,-0.247023031115532,-0.0632721483707428,-0.902097165584564,0.203835412859917,-0.380357325077057,0.382442325353622,0.126030936837196,-0.915343701839447,-0.922095417976379,-0.0592981725931168,-0.382392168045044,-0.902097165584564,0.203835412859917,-0.380357325077057,0.383515417575836,-0.0513475835323334,-0.922105967998505,-0.89875853061676,0.425700962543488,-0.104938082396984,-0.625729918479919,0.753172874450684,0.202959701418877,-0.869163990020752,0.306729763746262,-0.387905895709991,-0.268448352813721,-0.276029616594315,0.92289936542511,-0.883520901203156,-0.196305990219116,0.425270438194275,-0.562986195087433,-0.170438826084137,0.808700978755951,-0.966941773891449,-0.247023031115532,-0.0632721483707428,-0.535727977752686,-0.128826960921288,0.834505379199982,-0.595867335796356,0.0795966908335686,0.799128651618958,-0.826811075210571,-0.417912185192108,0.376474559307098,0.380581140518188,-0.0828730240464211,-0.921026706695557,0.476634442806244,0.18423692882061,-0.859579205513,0.382085859775543,-0.0168482512235641,-0.923973321914673,0.407944619655609,0.157454147934914,-0.899327218532562,-0.90554141998291,0.421507596969604,-0.0482302829623222,
- -0.922095417976379,-0.0592981725931168,-0.382392168045044,-0.625729918479919,0.753172874450684,0.202959701418877,-0.728872537612915,0.583273887634277,0.358519822359085,0.494675934314728,0.20662884414196,-0.844156622886658,-0.625729918479919,0.753172874450684,0.202959701418877,-0.922095417976379,-0.0592981725931168,-0.382392168045044,-0.990447163581848,-0.129441976547241,-0.0475313365459442,-0.508871078491211,0.474157512187958,0.718487977981567,-0.662382304668427,0.0600999817252159,0.746751487255096,-0.951127111911774,-0.137241840362549,0.276625961065292,-0.916078507900238,0.37106642127037,0.152019470930099,-0.887362897396088,0.458339929580688,-0.0501158088445663,0.474336802959442,0.66814649105072,-0.573223352432251,-0.58897477388382,0.0595468878746033,0.80595475435257,0.351815640926361,-0.37171083688736,-0.859102308750153,0.383515417575836,-0.0513475835323334,-0.922105967998505,-0.902097165584564,0.203835412859917,-0.380357325077057,-0.945732116699219,0.31460052728653,-0.0813472792506218,-0.198370575904846,0.607299625873566,-0.769309043884277,-0.938282668590546,0.30076065659523,-0.170788764953613,-0.966941773891449,-0.247023031115532,-0.0632721483707428,-0.801227569580078,0.180400654673576,-0.570517480373383,-0.902097165584564,0.203835412859917,-0.380357325077057,0.353679865598679,0.0611235722899437,-0.933367311954498,0.399255275726318,0.0536455661058426,-0.915269017219543,-0.915543377399445,-0.141955673694611,-0.376336276531219,0.352186143398285,-0.126805678009987,-0.927300035953522,0.353679865598679,0.0611235722899437,-0.933367311954498,-0.915543377399445,-0.141955673694611,-0.376336276531219,-0.885431468486786,-0.311203896999359,-0.345200598239899,-0.625729918479919,0.753172874450684,0.202959701418877,0.284753620624542,-0.312834709882736,-0.906117975711823,-0.869163990020752,0.306729763746262,-0.387905895709991,0.364910989999771,0.267654269933701,-0.891740560531616,0.496003389358521,-0.16753813624382,-0.852004528045654,-0.897584795951843,-0.439427852630615,0.0352792255580425,0.11386626958847,-0.950483977794647,-0.289162069559097,
- -0.837364375591278,-0.535104513168335,-0.11173253506422,-0.930695652961731,-0.361657977104187,-0.0548561066389084,-0.625729918479919,0.753172874450684,0.202959701418877,-0.89875853061676,0.425700962543488,-0.104938082396984,-0.728872537612915,0.583273887634277,0.358519822359085,-0.789243638515472,0.519995033740997,-0.326649278402328,-0.879129230976105,0.459309667348862,-0.127147600054741,-0.865380644798279,0.300716072320938,0.400856971740723,-0.855621099472046,0.447643280029297,-0.2598617374897,-0.535727977752686,-0.128826960921288,0.834505379199982,-0.279329925775528,0.0798027217388153,0.956873297691345,-0.320048600435257,0.0818192362785339,0.943861544132233,-0.595867335796356,0.0795966908335686,0.799128651618958,0.364609628915787,0.0578568503260612,-0.929361402988434,0.326827168464661,0.263669729232788,-0.907558441162109,-0.917341709136963,0.0183392222970724,-0.397678315639496,-0.821394085884094,0.418070018291473,-0.387981295585632,-0.865380644798279,0.300716072320938,0.400856971740723,-0.977308690547943,0.192260280251503,-0.088903583586216,-0.917341709136963,0.0183392222970724,-0.397678315639496,-0.855621099472046,0.447643280029297,-0.2598617374897,-0.826811075210571,-0.417912185192108,0.376474559307098,-0.996706962585449,-0.0697190091013908,-0.0414078533649445,-0.83296924829483,-0.176335826516151,-0.524469196796417,-0.198370575904846,0.607299625873566,-0.769309043884277,0.399255275726318,0.0536455661058426,-0.915269017219543,-0.821394085884094,0.418070018291473,-0.387981295585632,-0.945527136325836,-0.309186220169067,-0.101894646883011,-0.697961091995239,-0.109370648860931,-0.707734763622284,-0.997767567634583,-0.0402305461466312,-0.0533047504723072,-0.990447163581848,-0.129441976547241,-0.0475313365459442,-0.951127111911774,-0.137241840362549,0.276625961065292,-0.897584795951843,-0.439427852630615,0.0352792255580425,-0.915526866912842,-0.176881909370422,-0.361280411481857,-0.0790647715330124,-0.0314454771578312,-0.996373474597931,-0.823662042617798,-0.430648446083069,-0.368948519229889,0.305115938186646,0.0947220474481583,-0.947592735290527,
- -0.79321962594986,-0.605409920215607,-0.0654340833425522,-0.853709697723389,-0.0144186001271009,0.520549654960632,-0.964423596858978,-0.0262095462530851,0.263059258460999,-0.885431468486786,-0.311203896999359,-0.345200598239899,-0.789243638515472,0.519995033740997,-0.326649278402328,0.380581140518188,-0.0828730240464211,-0.921026706695557,0.364910989999771,0.267654269933701,-0.891740560531616,-0.905421018600464,-0.199638396501541,-0.374643057584763,-0.855621099472046,0.447643280029297,-0.2598617374897,0.380581140518188,-0.0828730240464211,-0.921026706695557,-0.789243638515472,0.519995033740997,-0.326649278402328,0.353679865598679,0.0611235722899437,-0.933367311954498,0.386937648057938,0.0476431027054787,-0.920874238014221,0.270317584276199,-0.139072641730309,-0.95267379283905,0.399255275726318,0.0536455661058426,-0.915269017219543,-0.917341709136963,0.0183392222970724,-0.397678315639496,0.326827168464661,0.263669729232788,-0.907558441162109,-0.855621099472046,0.447643280029297,-0.2598617374897,-0.945732116699219,0.31460052728653,-0.0813472792506218,-0.519938468933105,0.235720664262772,0.821035861968994,-0.523668050765991,-0.139882311224937,0.8403599858284,-0.79321962594986,-0.605409920215607,-0.0654340833425522,0.353679865598679,0.0611235722899437,-0.933367311954498,0.352186143398285,-0.126805678009987,-0.927300035953522,0.388645052909851,-0.0576228722929955,-0.919584035873413,0.386937648057938,0.0476431027054787,-0.920874238014221,-0.897584795951843,-0.439427852630615,0.0352792255580425,0.496003389358521,-0.16753813624382,-0.852004528045654,0.312863796949387,-0.327140212059021,-0.891681373119354,-0.915526866912842,-0.176881909370422,-0.361280411481857,-0.915526866912842,-0.176881909370422,-0.361280411481857,0.312863796949387,-0.327140212059021,-0.891681373119354,0.322485029697418,0.0463013872504234,-0.945441484451294,-0.907304227352142,-0.0878215655684471,-0.411201119422913,-0.801227569580078,0.180400654673576,-0.570517480373383,-0.668051540851593,0.172157868742943,-0.72392600774765,-0.217659309506416,0.431862145662308,-0.875282645225525,
- 0.351815640926361,-0.37171083688736,-0.859102308750153,0.494675934314728,0.20662884414196,-0.844156622886658,0.382442325353622,0.126030936837196,-0.915343701839447,0.377713054418564,0.231022909283638,-0.896638989448547,0.0916132479906082,-0.32779386639595,-0.940296828746796,0.284753620624542,-0.312834709882736,-0.906117975711823,0.374926000833511,-0.142096757888794,-0.916099965572357,0.385243207216263,0.0827097445726395,-0.919101119041443,0.305115938186646,0.0947220474481583,-0.947592735290527,0.324861735105515,-0.0475092828273773,-0.944567501544952,0.328059047460556,-0.0121512422338128,-0.944579064846039,0.354568243026733,-0.156853601336479,-0.921780049800873,-0.0790647715330124,-0.0314454771578312,-0.996373474597931,-0.697961091995239,-0.109370648860931,-0.707734763622284,-0.945527136325836,-0.309186220169067,-0.101894646883011,-0.823662042617798,-0.430648446083069,-0.368948519229889,-0.281779617071152,0.0767929553985596,0.956401169300079,-0.277243554592133,-0.10807841271162,0.954701542854309,-0.577390849590302,0.121726520359516,0.807342827320099,-0.555363893508911,0.0107852630317211,0.831537485122681,-0.252406090497971,0.0463231615722179,0.966511964797974,-0.264952003955841,0.155202478170395,0.951689422130585,-0.534420251846313,0.232263505458832,0.812679886817932,-0.83296924829483,-0.176335826516151,-0.524469196796417,-0.907304227352142,-0.0878215655684471,-0.411201119422913,0.322485029697418,0.0463013872504234,-0.945441484451294,0.322731047868729,0.220781251788139,-0.920380532741547,-0.826811075210571,-0.417912185192108,0.376474559307098,-0.595867335796356,0.0795966908335686,0.799128651618958,-0.535415530204773,-0.0874613076448441,0.840048134326935,-0.996706962585449,-0.0697190091013908,-0.0414078533649445,-0.595288574695587,-0.397984623908997,0.698025703430176,0.574095129966736,0.814592838287354,0.0827843025326729,-0.200008153915405,0.671442806720734,-0.71355539560318,-0.916078507900238,0.37106642127037,0.152019470930099,0.493863850831985,0.570970952510834,-0.655812978744507,-0.904675781726837,-0.414131015539169,-0.100285738706589,
- -0.595288574695587,-0.397984623908997,0.698025703430176,0.500137627124786,-0.112651035189629,-0.858587265014648,-0.36771959066391,0.248185604810715,0.896206676959991,0.312863796949387,-0.327140212059021,-0.891681373119354,0.719635725021362,-0.64185756444931,-0.26484614610672,-0.093429759144783,-0.934290766716003,0.344051986932755,-0.200008153915405,0.671442806720734,-0.71355539560318,0.51914918422699,0.823372900485992,0.229219079017639,-0.562986195087433,-0.170438826084137,0.808700978755951,-0.879129230976105,0.459309667348862,-0.127147600054741,-0.904675781726837,-0.414131015539169,-0.100285738706589,-0.58897477388382,0.0595468878746033,0.80595475435257,-0.883520901203156,-0.196305990219116,0.425270438194275,-0.491569876670837,0.244501888751984,0.835809826850891,-0.977308690547943,0.192260280251503,-0.088903583586216,-0.865380644798279,0.300716072320938,0.400856971740723,0.0735620260238647,0.811954855918884,-0.579066395759583,0.840979874134064,0.148022040724754,0.520425140857697,-0.773382484912872,0.0590740144252777,-0.631181299686432,-0.217659309506416,0.431862145662308,-0.875282645225525,-0.668051540851593,0.172157868742943,-0.72392600774765,-0.83296924829483,-0.176335826516151,-0.524469196796417,0.353769689798355,-0.934432685375214,0.0410187654197216,-0.362454682588577,0.0589655190706253,0.930134296417236,-0.377443253993988,0.106408566236496,0.919898867607117,0.326827168464661,0.263669729232788,-0.907558441162109,0.476634442806244,0.18423692882061,-0.859579205513,-0.855621099472046,0.447643280029297,-0.2598617374897,-0.625729918479919,0.753172874450684,0.202959701418877,0.494675934314728,0.20662884414196,-0.844156622886658,0.284753620624542,-0.312834709882736,-0.906117975711823,0.0916132479906082,-0.32779386639595,-0.940296828746796,0.374926000833511,-0.142096757888794,-0.916099965572357,0.284753620624542,-0.312834709882736,-0.906117975711823,0.494675934314728,0.20662884414196,-0.844156622886658,-0.534420251846313,0.232263505458832,0.812679886817932,-0.625650584697723,0.104021459817886,0.773137092590332,-0.252406090497971,0.0463231615722179,0.966511964797974,
- -0.728872537612915,0.583273887634277,0.358519822359085,-0.625650584697723,0.104021459817886,0.773137092590332,-0.534420251846313,0.232263505458832,0.812679886817932,-0.90554141998291,0.421507596969604,-0.0482302829623222,-0.252406090497971,0.0463231615722179,0.966511964797974,-0.625650584697723,0.104021459817886,0.773137092590332,-0.577390849590302,0.121726520359516,0.807342827320099,-0.89875853061676,0.425700962543488,-0.104938082396984,-0.577390849590302,0.121726520359516,0.807342827320099,-0.625650584697723,0.104021459817886,0.773137092590332,-0.728872537612915,0.583273887634277,0.358519822359085,-0.577390849590302,0.121726520359516,0.807342827320099,-0.277243554592133,-0.10807841271162,0.954701542854309,-0.252406090497971,0.0463231615722179,0.966511964797974,0.226848483085632,-0.181999281048775,-0.95677387714386,0.144087567925453,0.984619498252869,0.0988088771700859,-0.300273239612579,-0.662267327308655,0.686467707157135,-0.601406455039978,-0.174992814660072,0.779543399810791,-0.282367378473282,-0.0364268869161606,0.958614528179169,-0.519938468933105,0.235720664262772,0.821035861968994,-0.54792857170105,0.0986964255571365,0.830682516098022,-0.282001227140427,0.0699687227606773,0.956859290599823,-0.282367378473282,-0.0364268869161606,0.958614528179169,-0.601406455039978,-0.174992814660072,0.779543399810791,-0.993137538433075,0.0380627438426018,-0.110585801303387,-0.54792857170105,0.0986964255571365,0.830682516098022,-0.601406455039978,-0.174992814660072,0.779543399810791,-0.938282668590546,0.30076065659523,-0.170788764953613,-0.938282668590546,0.30076065659523,-0.170788764953613,-0.601406455039978,-0.174992814660072,0.779543399810791,-0.519938468933105,0.235720664262772,0.821035861968994,-0.945732116699219,0.31460052728653,-0.0813472792506218,-0.915543377399445,-0.141955673694611,-0.376336276531219,-0.945732116699219,0.31460052728653,-0.0813472792506218,-0.79321962594986,-0.605409920215607,-0.0654340833425522,-0.885431468486786,-0.311203896999359,-0.345200598239899,-0.938282668590546,0.30076065659523,-0.170788764953613,
- -0.198370575904846,0.607299625873566,-0.769309043884277,-0.821394085884094,0.418070018291473,-0.387981295585632,-0.993137538433075,0.0380627438426018,-0.110585801303387,0.666816771030426,0.688819468021393,0.284399598836899,-0.598053812980652,-0.789788007736206,-0.136259138584137,-0.331748962402344,0.555874824523926,-0.762198030948639,-0.821394085884094,0.418070018291473,-0.387981295585632,0.399255275726318,0.0536455661058426,-0.915269017219543,0.364609628915787,0.0578568503260612,-0.929361402988434,-0.945527136325836,-0.309186220169067,-0.101894646883011,-0.997767567634583,-0.0402305461466312,-0.0533047504723072,-0.555363893508911,0.0107852630317211,0.831537485122681,0.380581140518188,-0.0828730240464211,-0.921026706695557,0.407944619655609,0.157454147934914,-0.899327218532562,0.396201014518738,0.0181945599615574,-0.917983591556549,0.364910989999771,0.267654269933701,-0.891740560531616,0.396201014518738,0.0181945599615574,-0.917983591556549,0.399932682514191,-0.00824178755283356,-0.916507482528687,0.496003389358521,-0.16753813624382,-0.852004528045654,0.364910989999771,0.267654269933701,-0.891740560531616,0.331988394260406,-0.00221346784383059,-0.943280875682831,0.388645052909851,-0.0576228722929955,-0.919584035873413,0.352186143398285,-0.126805678009987,-0.927300035953522,-0.964423596858978,-0.0262095462530851,0.263059258460999,0.390054523944855,0.0337331108748913,-0.920173704624176,0.382085859775543,-0.0168482512235641,-0.923973321914673,0.476634442806244,0.18423692882061,-0.859579205513,0.326827168464661,0.263669729232788,-0.907558441162109,-0.272770196199417,-0.0387494899332523,0.961298644542694,-0.0994289293885231,-0.0053381510078907,0.995030343532562,-0.403609216213226,-0.000659414567053318,0.914931237697601,-0.523668050765991,-0.139882311224937,0.8403599858284,-0.491569876670837,0.244501888751984,0.835809826850891,-0.274293094873428,0.0346891470253468,0.961020231246948,-0.282001227140427,0.0699687227606773,0.956859290599823,-0.54792857170105,0.0986964255571365,0.830682516098022,-0.275649160146713,-0.210324615240097,0.937966585159302,
- -0.708358407020569,-0.32097315788269,0.628652930259705,-0.268448352813721,-0.276029616594315,0.92289936542511,0.270317584276199,-0.139072641730309,-0.95267379283905,0.392737120389938,0.0120000541210175,-0.919572472572327,0.364609628915787,0.0578568503260612,-0.929361402988434,0.399255275726318,0.0536455661058426,-0.915269017219543,0.37694588303566,0.121460899710655,-0.918236911296844,0.125051662325859,0.243472784757614,-0.961812496185303,-0.217659309506416,0.431862145662308,-0.875282645225525,0.322731047868729,0.220781251788139,-0.920380532741547,0.0438306033611298,-0.171383544802666,0.9842289686203,-0.285037606954575,0.069659061729908,0.95598179101944,-0.187552601099014,0.249330371618271,0.950083374977112,-0.320048600435257,0.0818192362785339,0.943861544132233,-0.279906809329987,-0.0524341687560081,0.958594262599945,-0.535415530204773,-0.0874613076448441,0.840048134326935,-0.595867335796356,0.0795966908335686,0.799128651618958,-0.282367378473282,-0.0364268869161606,0.958614528179169,-0.272871762514114,0.034896619617939,0.961417317390442,-0.519938468933105,0.235720664262772,0.821035861968994,-0.272871762514114,0.034896619617939,0.961417317390442,-0.272770196199417,-0.0387494899332523,0.961298644542694,-0.523668050765991,-0.139882311224937,0.8403599858284,-0.519938468933105,0.235720664262772,0.821035861968994,0.125051662325859,0.243472784757614,-0.961812496185303,0.381976157426834,-0.0879571288824081,-0.919977068901062,0.351815640926361,-0.37171083688736,-0.859102308750153,-0.217659309506416,0.431862145662308,-0.875282645225525,0.381976157426834,-0.0879571288824081,-0.919977068901062,0.377713054418564,0.231022909283638,-0.896638989448547,0.382442325353622,0.126030936837196,-0.915343701839447,0.383515417575836,-0.0513475835323334,-0.922105967998505,0.351815640926361,-0.37171083688736,-0.859102308750153,-0.279906809329987,-0.0524341687560081,0.958594262599945,-0.295274138450623,0.41380500793457,0.861149609088898,-0.508871078491211,0.474157512187958,0.718487977981567,-0.535415530204773,-0.0874613076448441,0.840048134326935,
- -0.708358407020569,-0.32097315788269,0.628652930259705,-0.274293094873428,0.0346891470253468,0.961020231246948,-0.491569876670837,0.244501888751984,0.835809826850891,-0.883520901203156,-0.196305990219116,0.425270438194275,-0.285037606954575,0.069659061729908,0.95598179101944,-0.275649160146713,-0.210324615240097,0.937966585159302,-0.268448352813721,-0.276029616594315,0.92289936542511,-0.562986195087433,-0.170438826084137,0.808700978755951,-0.58897477388382,0.0595468878746033,0.80595475435257,-0.285037606954575,0.069659061729908,0.95598179101944,-0.58897477388382,0.0595468878746033,0.80595475435257,-0.187552601099014,0.249330371618271,0.950083374977112,0.33244976401329,-0.0128281135112047,-0.943033754825592,0.329272717237473,-0.0428283885121346,-0.943263053894043,0.317709416151047,0.0019542605150491,-0.948186218738556,0.338602721691132,0.00144467118661851,-0.940928339958191,-0.243374869227409,0.716186761856079,0.654098749160767,-0.554248809814453,-0.0301733836531639,0.831804037094116,-0.14334212243557,0.154628321528435,0.977518916130066,-0.246208429336548,-0.287680983543396,0.925538241863251,-0.433631986379623,0.894545674324036,0.108404010534287,-0.19760337471962,0.977207958698273,-0.0775733664631844,-0.867987513542175,0.427037984132767,-0.253449112176895,-0.792582511901855,0.609569549560547,0.0154275372624397,0.00532587664201856,1.13323051209591e-006,0.999985873699188,0.00593312829732895,-0.0426787175238132,0.99907124042511,-0.0138523066416383,0.00035018366179429,0.999904036521912,-0.0198224410414696,-0.0631766840815544,0.99780547618866,0.00199889880605042,-0.0637210160493851,0.997965812683105,-0.0877270326018333,0.320884108543396,0.943046867847443,-0.430160194635391,0.890950798988342,0.145494893193245,0.0639514848589897,0.978546142578125,0.195851355791092,-0.0994764044880867,0.291016966104507,0.951532185077667,-0.854285717010498,-0.348062545061111,-0.386067867279053,-0.982561886310577,-0.139035984873772,-0.123454637825489,-0.806529998779297,0.580003321170807,-0.114480197429657,-0.76426774263382,0.537643551826477,-0.356138199567795,
- -0.433631986379623,0.894545674324036,0.108404010534287,-0.247277021408081,0.329103022813797,0.911342561244965,-0.602336585521698,0.403938353061676,0.688494384288788,-0.159375116229057,0.905993402004242,0.392142504453659,0.256727010011673,-0.354358166456223,-0.899178326129913,0.318521469831467,0.107122346758842,-0.941843330860138,-0.854285717010498,-0.348062545061111,-0.386067867279053,-0.76426774263382,0.537643551826477,-0.356138199567795,0.152762070298195,0.0324063897132874,-0.987731635570526,0.138096779584885,-0.00764963123947382,-0.990389227867126,0.191938027739525,0.0150936096906662,-0.981291055679321,0.198666900396347,0.0655684545636177,-0.977871298789978,-0.560454487800598,0.0766853764653206,0.824627280235291,-0.798431396484375,-0.0147445555776358,0.601905345916748,-0.180906713008881,0.00588302873075008,0.983482718467712,-0.276904612779617,0.0754795670509338,0.957928359508514,-0.806529998779297,0.580003321170807,-0.114480197429657,-0.982561886310577,-0.139035984873772,-0.123454637825489,-0.560454487800598,0.0766853764653206,0.824627280235291,-0.581447303295136,0.105220049619675,0.806751489639282,0.0195629764348269,-0.321202725172043,-0.946808397769928,0.347424745559692,0.0357250422239304,-0.937027096748352,0.396573096513748,0.127099916338921,-0.909161984920502,0.454972118139267,0.28188157081604,-0.844714879989624,0.376780092716217,0.171981856226921,-0.910197198390961,-0.931986391544342,0.294793903827667,-0.210945665836334,-0.792582511901855,0.609569549560547,0.0154275372624397,-0.867987513542175,0.427037984132767,-0.253449112176895,-0.208125606179237,0.969794809818268,-0.127208217978477,-0.197952523827553,0.975540637969971,-0.0955797433853149,0.0639514848589897,0.978546142578125,0.195851355791092,-0.430160194635391,0.890950798988342,0.145494893193245,-0.418001502752304,0.346154540777206,0.839911818504334,-0.211611032485962,0.110328190028667,0.971106886863709,-0.242648378014565,0.0707030221819878,0.967534422874451,-0.518193781375885,0.105032972991467,0.848789393901825,-0.960740089416504,0.276439487934113,-0.0236621052026749,
- -0.98278546333313,0.16791358590126,-0.0770572796463966,-0.528158962726593,0.0659208968281746,0.84658294916153,-0.554248809814453,-0.0301733836531639,0.831804037094116,-0.783805727958679,0.533434987068176,-0.317955583333969,-0.98278546333313,0.16791358590126,-0.0770572796463966,-0.960740089416504,0.276439487934113,-0.0236621052026749,-0.632791101932526,0.735657751560211,-0.241626217961311,-0.888131618499756,-0.149925887584686,0.434447348117828,-0.682327508926392,0.431579381227493,-0.590057969093323,-0.778092622756958,0.446702986955643,-0.441620230674744,-0.89754319190979,0.434806346893311,-0.0732095912098885,-0.783805727958679,0.533434987068176,-0.317955583333969,-0.831730604171753,0.241071373224258,-0.500108778476715,-0.98278546333313,0.16791358590126,-0.0770572796463966,-0.12109212577343,0.974895894527435,0.186855211853981,0.0465226359665394,0.296798497438431,0.953806221485138,0.0031081335619092,-0.0391664616763592,0.999227941036224,0.0228958930820227,0.93480122089386,0.354432702064514,-0.307666182518005,0.950754523277283,-0.0375152230262756,-0.215519905090332,0.960205495357513,0.177642002701759,-0.44762459397316,0.89063173532486,-0.0800459682941437,-0.831730604171753,0.241071373224258,-0.500108778476715,0.454972118139267,0.28188157081604,-0.844714879989624,0.255447298288345,0.184916436672211,-0.948974609375,-0.778092622756958,0.446702986955643,-0.441620230674744,0.227017655968666,-0.327367126941681,-0.917220711708069,-0.745744168758392,0.586724877357483,-0.315625935792923,-0.790525913238525,0.61177134513855,-0.0283696167171001,-0.418001502752304,0.346154540777206,0.839911818504334,-0.518193781375885,0.105032972991467,0.848789393901825,-0.89754319190979,0.434806346893311,-0.0732095912098885,0.00621521146968007,0.441921055316925,-0.89703243970871,-0.0692979395389557,0.0238180607557297,-0.997311651706696,0.0127597916871309,0.998364925384521,-0.0557195022702217,0.318521469831467,0.107122346758842,-0.941843330860138,0.392629146575928,0.108238033950329,-0.913305461406708,0.359147697687149,0.000884695793502033,-0.933280289173126,
- -0.207355245947838,-0.019722867757082,-0.978066921234131,-0.745744168758392,0.586724877357483,-0.315625935792923,-0.923943102359772,0.0404830127954483,-0.38038182258606,-0.790525913238525,0.61177134513855,-0.0283696167171001,-0.89754319190979,0.434806346893311,-0.0732095912098885,0.339948505163193,-0.0388818606734276,-0.939639985561371,0.388631731271744,0.122786790132523,-0.913175165653229,-0.923943102359772,0.0404830127954483,-0.38038182258606,-0.745744168758392,0.586724877357483,-0.315625935792923,-0.806529998779297,0.580003321170807,-0.114480197429657,-0.521062612533569,0.831969022750854,0.190581753849983,-0.76426774263382,0.537643551826477,-0.356138199567795,-0.189285725355148,-0.0110432123765349,0.981859922409058,-0.602336585521698,0.403938353061676,0.688494384288788,-0.247277021408081,0.329103022813797,0.911342561244965,-0.89754319190979,0.434806346893311,-0.0732095912098885,-0.518193781375885,0.105032972991467,0.848789393901825,-0.491857051849365,0.373570561408997,0.786461591720581,-0.888131618499756,-0.149925887584686,0.434447348117828,0.00882714707404375,-0.149650365114212,-0.988699615001678,0.233949586749077,-0.00258999969810247,-0.972245275974274,0.194780096411705,0.00117513176519424,-0.980846285820007,0.137680321931839,-0.0801748335361481,-0.987226486206055,-0.790525913238525,0.61177134513855,-0.0283696167171001,-0.923943102359772,0.0404830127954483,-0.38038182258606,-0.521062612533569,0.831969022750854,0.190581753849983,-0.553974986076355,0.664168477058411,0.501987934112549,0.599901437759399,0.214216679334641,-0.770862936973572,-0.521062612533569,0.831969022750854,0.190581753849983,-0.923943102359772,0.0404830127954483,-0.38038182258606,-0.960740089416504,0.276439487934113,-0.0236621052026749,-0.554248809814453,-0.0301733836531639,0.831804037094116,-0.243374869227409,0.716186761856079,0.654098749160767,-0.914792537689209,0.344678461551666,0.210597604513168,0.227017655968666,-0.327367126941681,-0.917220711708069,0.339948505163193,-0.0388818606734276,-0.939639985561371,-0.745744168758392,0.586724877357483,-0.315625935792923,
- -0.215519905090332,0.960205495357513,0.177642002701759,-0.307666182518005,0.950754523277283,-0.0375152230262756,-0.483426570892334,0.795588433742523,0.365154832601547,-0.89754319190979,0.434806346893311,-0.0732095912098885,-0.778092622756958,0.446702986955643,-0.441620230674744,-0.745744168758392,0.586724877357483,-0.315625935792923,0.111130654811859,0.0448554493486881,-0.992793023586273,0.177145749330521,0.0452308543026447,-0.983144819736481,-0.44762459397316,0.89063173532486,-0.0800459682941437,-0.0692979395389557,0.0238180607557297,-0.997311651706696,0.111130654811859,0.0448554493486881,-0.992793023586273,-0.44762459397316,0.89063173532486,-0.0800459682941437,0.0127597916871309,0.998364925384521,-0.0557195022702217,-0.521062612533569,0.831969022750854,0.190581753849983,0.256727010011673,-0.354358166456223,-0.899178326129913,-0.76426774263382,0.537643551826477,-0.356138199567795,0.715146601200104,0.457117915153503,-0.528780281543732,0.281961679458618,-0.000170124694705009,-0.959425687789917,-0.931986391544342,0.294793903827667,-0.210945665836334,-0.189285725355148,-0.0110432123765349,0.981859922409058,-0.670168936252594,0.154129266738892,0.726028800010681,-0.602336585521698,0.403938353061676,0.688494384288788,-0.521062612533569,0.831969022750854,0.190581753849983,-0.806529998779297,0.580003321170807,-0.114480197429657,-0.553974986076355,0.664168477058411,0.501987934112549,-0.19760337471962,0.977207958698273,-0.0775733664631844,-0.433631986379623,0.894545674324036,0.108404010534287,-0.159375116229057,0.905993402004242,0.392142504453659,-0.293201804161072,0.948290944099426,-0.12156081199646,-0.518193781375885,0.105032972991467,0.848789393901825,-0.242648378014565,0.0707030221819878,0.967534422874451,-0.271468341350555,0.186926901340485,0.944120407104492,-0.491857051849365,0.373570561408997,0.786461591720581,0.152762070298195,0.0324063897132874,-0.987731635570526,0.198666900396347,0.0655684545636177,-0.977871298789978,-0.197952523827553,0.975540637969971,-0.0955797433853149,-0.208125606179237,0.969794809818268,-0.127208217978477,
- -0.159375116229057,0.905993402004242,0.392142504453659,0.0639514848589897,0.978546142578125,0.195851355791092,-0.197952523827553,0.975540637969971,-0.0955797433853149,-0.293201804161072,0.948290944099426,-0.12156081199646,-0.888131618499756,-0.149925887584686,0.434447348117828,-0.98278546333313,0.16791358590126,-0.0770572796463966,-0.831730604171753,0.241071373224258,-0.500108778476715,-0.307666182518005,0.950754523277283,-0.0375152230262756,0.177145749330521,0.0452308543026447,-0.983144819736481,-0.208125606179237,0.969794809818268,-0.127208217978477,-0.982561886310577,-0.139035984873772,-0.123454637825489,-0.928208827972412,-0.0455393940210342,-0.369262158870697,-0.798431396484375,-0.0147445555776358,0.601905345916748,-0.960740089416504,0.276439487934113,-0.0236621052026749,-0.914792537689209,0.344678461551666,0.210597604513168,-0.931986391544342,0.294793903827667,-0.210945665836334,-0.632791101932526,0.735657751560211,-0.241626217961311,-0.207355245947838,-0.019722867757082,-0.978066921234131,-0.854285717010498,-0.348062545061111,-0.386067867279053,0.318521469831467,0.107122346758842,-0.941843330860138,-0.12109212577343,0.974895894527435,0.186855211853981,0.0228958930820227,0.93480122089386,0.354432702064514,0.00621521146968007,0.441921055316925,-0.89703243970871,0.0127597916871309,0.998364925384521,-0.0557195022702217,0.00882714707404375,-0.149650365114212,-0.988699615001678,0.715146601200104,0.457117915153503,-0.528780281543732,-0.867987513542175,0.427037984132767,-0.253449112176895,-0.19760337471962,0.977207958698273,-0.0775733664631844,-0.293201804161072,0.948290944099426,-0.12156081199646,0.00882714707404375,-0.149650365114212,-0.988699615001678,-0.19760337471962,0.977207958698273,-0.0775733664631844,0.111130654811859,0.0448554493486881,-0.992793023586273,0.119486629962921,0.0102829961106181,-0.992782592773438,0.117891311645508,0.00346527248620987,-0.993020474910736,0.177145749330521,0.0452308543026447,-0.983144819736481,0.978367507457733,-0.06080661714077,0.197736650705338,-0.908141732215881,-0.418663054704666,-0.000149508006870747,
- 0.760894536972046,0.639270484447479,-0.111233875155449,-0.215519905090332,0.960205495357513,0.177642002701759,-0.152100503444672,0.292210072278976,0.944181501865387,0.0465226359665394,0.296798497438431,0.953806221485138,-0.12109212577343,0.974895894527435,0.186855211853981,0.111130654811859,0.0448554493486881,-0.992793023586273,-0.0692979395389557,0.0238180607557297,-0.997311651706696,-0.0293294470757246,-0.00856216717511415,-0.999533176422119,0.119486629962921,0.0102829961106181,-0.992782592773438,-0.931986391544342,0.294793903827667,-0.210945665836334,0.281961679458618,-0.000170124694705009,-0.959425687789917,0.0195629764348269,-0.321202725172043,-0.946808397769928,-0.632791101932526,0.735657751560211,-0.241626217961311,0.376780092716217,0.171981856226921,-0.910197198390961,-0.783805727958679,0.533434987068176,-0.317955583333969,-0.632791101932526,0.735657751560211,-0.241626217961311,0.0195629764348269,-0.321202725172043,-0.946808397769928,-0.778092622756958,0.446702986955643,-0.441620230674744,-0.682327508926392,0.431579381227493,-0.590057969093323,0.255447298288345,0.184916436672211,-0.948974609375,0.227017655968666,-0.327367126941681,-0.917220711708069,0.599901437759399,0.214216679334641,-0.770862936973572,0.388631731271744,0.122786790132523,-0.913175165653229,0.421985149383545,0.216568827629089,-0.880355894565582,0.310470223426819,-0.0454187802970409,-0.94949746131897,0.256727010011673,-0.354358166456223,-0.899178326129913,0.363736420869827,-0.165577977895737,-0.916667759418488,0.392629146575928,0.108238033950329,-0.913305461406708,0.318521469831467,0.107122346758842,-0.941843330860138,0.329272717237473,-0.0428283885121346,-0.943263053894043,0.33244976401329,-0.0128281135112047,-0.943033754825592,0.3581822514534,-0.170641660690308,-0.917925357818604,-0.207355245947838,-0.019722867757082,-0.978066921234131,-0.928208827972412,-0.0455393940210342,-0.369262158870697,-0.982561886310577,-0.139035984873772,-0.123454637825489,-0.854285717010498,-0.348062545061111,-0.386067867279053,-0.560454487800598,0.0766853764653206,0.824627280235291,
- -0.276904612779617,0.0754795670509338,0.957928359508514,-0.283410042524338,-0.112877532839775,0.952332615852356,-0.581447303295136,0.105220049619675,0.806751489639282,-0.614590287208557,-0.217565685510635,0.758250594139099,-0.211611032485962,0.110328190028667,0.971106886863709,-0.418001502752304,0.346154540777206,0.839911818504334,-0.831730604171753,0.241071373224258,-0.500108778476715,-0.783805727958679,0.533434987068176,-0.317955583333969,0.376780092716217,0.171981856226921,-0.910197198390961,0.454972118139267,0.28188157081604,-0.844714879989624,-0.888131618499756,-0.149925887584686,0.434447348117828,-0.491857051849365,0.373570561408997,0.786461591720581,-0.528158962726593,0.0659208968281746,0.84658294916153,-0.98278546333313,0.16791358590126,-0.0770572796463966,-0.914792537689209,0.344678461551666,0.210597604513168,-0.792582511901855,0.609569549560547,0.0154275372624397,-0.931986391544342,0.294793903827667,-0.210945665836334,-0.243374869227409,0.716186761856079,0.654098749160767,-0.441256582736969,0.194514065980911,0.876046299934387,-0.792582511901855,0.609569549560547,0.0154275372624397,-0.914792537689209,0.344678461551666,0.210597604513168,0.273570835590363,-0.186641216278076,-0.943569898605347,-0.154360741376877,0.22352434694767,0.962397933006287,0.0195629764348269,-0.321202725172043,-0.946808397769928,0.193190574645996,-0.502606153488159,-0.842653214931488,0.715146601200104,0.457117915153503,-0.528780281543732,-0.931986391544342,0.294793903827667,-0.210945665836334,-0.867987513542175,0.427037984132767,-0.253449112176895,-0.792582511901855,0.609569549560547,0.0154275372624397,-0.441256582736969,0.194514065980911,0.876046299934387,-0.247277021408081,0.329103022813797,0.911342561244965,-0.433631986379623,0.894545674324036,0.108404010534287,-0.602336585521698,0.403938353061676,0.688494384288788,-0.0994764044880867,0.291016966104507,0.951532185077667,0.0639514848589897,0.978546142578125,0.195851355791092,-0.159375116229057,0.905993402004242,0.392142504453659,-0.888131618499756,-0.149925887584686,0.434447348117828,
- -0.831730604171753,0.241071373224258,-0.500108778476715,-0.682327508926392,0.431579381227493,-0.590057969093323,0.255447298288345,0.184916436672211,-0.948974609375,-0.682327508926392,0.431579381227493,-0.590057969093323,-0.831730604171753,0.241071373224258,-0.500108778476715,-0.293201804161072,0.948290944099426,-0.12156081199646,0.233949586749077,-0.00258999969810247,-0.972245275974274,0.00882714707404375,-0.149650365114212,-0.988699615001678,0.198666900396347,0.0655684545636177,-0.977871298789978,0.233949586749077,-0.00258999969810247,-0.972245275974274,-0.293201804161072,0.948290944099426,-0.12156081199646,-0.521062612533569,0.831969022750854,0.190581753849983,0.599901437759399,0.214216679334641,-0.770862936973572,0.256727010011673,-0.354358166456223,-0.899178326129913,0.310470223426819,-0.0454187802970409,-0.94949746131897,0.363736420869827,-0.165577977895737,-0.916667759418488,0.256727010011673,-0.354358166456223,-0.899178326129913,0.599901437759399,0.214216679334641,-0.770862936973572,-0.418001502752304,0.346154540777206,0.839911818504334,-0.674639403820038,0.0946643203496933,0.732052147388458,-0.614590287208557,-0.217565685510635,0.758250594139099,-0.553974986076355,0.664168477058411,0.501987934112549,-0.674639403820038,0.0946643203496933,0.732052147388458,-0.418001502752304,0.346154540777206,0.839911818504334,-0.790525913238525,0.61177134513855,-0.0283696167171001,-0.805350184440613,-0.370245456695557,0.462957352399826,-0.366593897342682,0.230127036571503,0.901471376419067,0.587181806564331,-0.00241909106262028,-0.809451580047607,-0.806529998779297,0.580003321170807,-0.114480197429657,-0.581447303295136,0.105220049619675,0.806751489639282,-0.674639403820038,0.0946643203496933,0.732052147388458,-0.553974986076355,0.664168477058411,0.501987934112549,-0.581447303295136,0.105220049619675,0.806751489639282,-0.283410042524338,-0.112877532839775,0.952332615852356,-0.614590287208557,-0.217565685510635,0.758250594139099,0.195103600621223,-0.0953445062041283,-0.976137399673462,0.349523663520813,0.921271920204163,0.170562133193016,
- -0.435499995946884,-0.833525836467743,0.339962512254715,-0.186785399913788,0.25775134563446,0.947984933853149,-0.110665671527386,-0.0229375772178173,0.993592977523804,-0.152100503444672,0.292210072278976,0.944181501865387,-0.0877270326018333,0.320884108543396,0.943046867847443,-0.0412303507328033,0.0314780063927174,0.998653709888458,-0.110665671527386,-0.0229375772178173,0.993592977523804,-0.186785399913788,0.25775134563446,0.947984933853149,-0.430160194635391,0.890950798988342,0.145494893193245,-0.0877270326018333,0.320884108543396,0.943046867847443,-0.186785399913788,0.25775134563446,0.947984933853149,-0.483426570892334,0.795588433742523,0.365154832601547,-0.483426570892334,0.795588433742523,0.365154832601547,-0.186785399913788,0.25775134563446,0.947984933853149,-0.152100503444672,0.292210072278976,0.944181501865387,-0.215519905090332,0.960205495357513,0.177642002701759,-0.44762459397316,0.89063173532486,-0.0800459682941437,-0.215519905090332,0.960205495357513,0.177642002701759,-0.12109212577343,0.974895894527435,0.186855211853981,0.0127597916871309,0.998364925384521,-0.0557195022702217,-0.483426570892334,0.795588433742523,0.365154832601547,-0.307666182518005,0.950754523277283,-0.0375152230262756,-0.208125606179237,0.969794809818268,-0.127208217978477,-0.430160194635391,0.890950798988342,0.145494893193245,-0.44762459397316,0.89063173532486,-0.0800459682941437,0.177145749330521,0.0452308543026447,-0.983144819736481,-0.307666182518005,0.950754523277283,-0.0375152230262756,-0.208125606179237,0.969794809818268,-0.127208217978477,0.177145749330521,0.0452308543026447,-0.983144819736481,0.152762070298195,0.0324063897132874,-0.987731635570526,-0.982561886310577,-0.139035984873772,-0.123454637825489,-0.798431396484375,-0.0147445555776358,0.601905345916748,-0.560454487800598,0.0766853764653206,0.824627280235291,0.137680321931839,-0.0801748335361481,-0.987226486206055,0.38859286904335,0.130721002817154,-0.912089765071869,0.715146601200104,0.457117915153503,-0.528780281543732,0.00882714707404375,-0.149650365114212,-0.988699615001678,
- 0.38859286904335,0.130721002817154,-0.912089765071869,0.289708584547043,-0.00951108243316412,-0.957067728042603,0.281961679458618,-0.000170124694705009,-0.959425687789917,0.715146601200104,0.457117915153503,-0.528780281543732,-0.00547021068632603,0.00787156261503696,-0.999954104423523,-0.0293294470757246,-0.00856216717511415,-0.999533176422119,-0.0692979395389557,0.0238180607557297,-0.997311651706696,0.00621521146968007,0.441921055316925,-0.89703243970871,0.191938027739525,0.0150936096906662,-0.981291055679321,0.194780096411705,0.00117513176519424,-0.980846285820007,0.233949586749077,-0.00258999969810247,-0.972245275974274,0.198666900396347,0.0655684545636177,-0.977871298789978,-0.0658855065703392,-0.00509998761117458,0.997814178466797,-0.0158242043107748,-0.499583899974823,0.866121053695679,0.0031081335619092,-0.0391664616763592,0.999227941036224,0.0465226359665394,0.296798497438431,0.953806221485138,-0.0994764044880867,0.291016966104507,0.951532185077667,-0.0954849645495415,0.000404538644943386,0.995430886745453,-0.0412303507328033,0.0314780063927174,0.998653709888458,-0.0877270326018333,0.320884108543396,0.943046867847443,0.117891311645508,0.00346527248620987,-0.993020474910736,0.138096779584885,-0.00764963123947382,-0.990389227867126,0.152762070298195,0.0324063897132874,-0.987731635570526,0.177145749330521,0.0452308543026447,-0.983144819736481,0.396573096513748,0.127099916338921,-0.909161984920502,0.353384405374527,0.032394852489233,-0.934917211532593,0.255447298288345,0.184916436672211,-0.948974609375,0.454972118139267,0.28188157081604,-0.844714879989624,-0.271468341350555,0.186926901340485,0.944120407104492,-0.267898201942444,-0.056582547724247,0.961784303188324,-0.528158962726593,0.0659208968281746,0.84658294916153,-0.491857051849365,0.373570561408997,0.786461591720581,-0.110665671527386,-0.0229375772178173,0.993592977523804,-0.00846285000443459,0.00178086163941771,0.999962627887726,-0.152100503444672,0.292210072278976,0.944181501865387,-0.00846285000443459,0.00178086163941771,0.999962627887726,-0.0658855065703392,-0.00509998761117458,0.997814178466797,
- 0.0465226359665394,0.296798497438431,0.953806221485138,-0.152100503444672,0.292210072278976,0.944181501865387,0.353384405374527,0.032394852489233,-0.934917211532593,0.339307695627213,-0.0850466042757034,-0.936823010444641,0.227017655968666,-0.327367126941681,-0.917220711708069,0.255447298288345,0.184916436672211,-0.948974609375,0.339307695627213,-0.0850466042757034,-0.936823010444641,0.421985149383545,0.216568827629089,-0.880355894565582,0.388631731271744,0.122786790132523,-0.913175165653229,0.339948505163193,-0.0388818606734276,-0.939639985561371,0.227017655968666,-0.327367126941681,-0.917220711708069,-0.267898201942444,-0.056582547724247,0.961784303188324,-0.14334212243557,0.154628321528435,0.977518916130066,-0.554248809814453,-0.0301733836531639,0.831804037094116,-0.528158962726593,0.0659208968281746,0.84658294916153,-0.670168936252594,0.154129266738892,0.726028800010681,-0.0954849645495415,0.000404538644943386,0.995430886745453,-0.0994764044880867,0.291016966104507,0.951532185077667,-0.602336585521698,0.403938353061676,0.688494384288788,-0.247211903333664,-0.0509291291236877,0.96762216091156,-0.189285725355148,-0.0110432123765349,0.981859922409058,-0.247277021408081,0.329103022813797,0.911342561244965,-0.441256582736969,0.194514065980911,0.876046299934387,-0.247211903333664,-0.0509291291236877,0.96762216091156,-0.441256582736969,0.194514065980911,0.876046299934387,-0.243374869227409,0.716186761856079,0.654098749160767,-0.246208429336548,-0.287680983543396,0.925538241863251,-0.00880351010710001,0.0135887404903769,0.999868929386139,0.00404943712055683,0.00264083337970078,0.999988377094269,0.00551178911700845,0.0255600716918707,0.999658107757568,-0.0320036634802818,0.0193330217152834,0.99930077791214,-0.134759172797203,0.147416576743126,-0.979851186275482,-0.234918087720871,0.00289280689321458,-0.972010850906372,-0.0329687744379044,-0.130206689238548,-0.990938663482666,0.0199737995862961,0.143146544694901,-0.989499986171722,0.881389319896698,-0.0075172632932663,-0.472330957651138,0.408263385295868,0.85764616727829,-0.312672764062881,
- 0.626961648464203,0.765309989452362,-0.145670652389526,0.952777326107025,0.135015651583672,-0.272003978490829,-0.337076872587204,0.00162359164096415,-0.941475808620453,-0.390545696020126,0.00481578335165977,-0.920571029186249,-0.396503895521164,0.0197876505553722,-0.917819797992706,-0.349445194005966,0.0220649372786283,-0.936696946620941,-0.377099871635437,0.00117173139005899,-0.926171898841858,-0.0580619499087334,0.151645451784134,-0.986728250980377,-0.043856505304575,0.119239203631878,-0.991896510124207,0.825271904468536,0.242724597454071,-0.509912848472595,0.57355797290802,0.699713468551636,-0.425948917865753,-0.0647377371788025,0.99549525976181,0.0692702233791351,-0.00542823504656553,0.998669028282166,0.0512916669249535,-0.138314664363861,0.960578918457031,-0.241158172488213,0.201363414525986,0.947895765304565,-0.24687360227108,0.881389319896698,-0.0075172632932663,-0.472330957651138,0.628112435340881,-0.120741821825504,-0.768697738647461,-0.210306018590927,-0.219330072402954,-0.95271497964859,0.0156251192092896,0.0408998094499111,-0.999041140079498,-0.177590757608414,0.110030137002468,0.977934062480927,-0.00542823504656553,0.998669028282166,0.0512916669249535,-0.0647377371788025,0.99549525976181,0.0692702233791351,0.222066134214401,0.0443319045007229,0.974023342132568,0.408881723880768,-0.0333338752388954,0.911978483200073,0.453728348016739,-0.225548282265663,0.862124562263489,0.383302062749863,-0.0218013972043991,0.923365712165833,0.380167216062546,-0.00957624614238739,0.924868226051331,0.0902927443385124,0.251336544752121,-0.963679015636444,0.0567530617117882,-0.0182151589542627,-0.99822211265564,-0.0026753197889775,-0.0763398110866547,-0.9970782995224,-0.00179606210440397,0.474512219429016,-0.880247116088867,-0.138314664363861,0.960578918457031,-0.241158172488213,-0.259471118450165,0.307572603225708,-0.91546368598938,0.0902927443385124,0.251336544752121,-0.963679015636444,0.201363414525986,0.947895765304565,-0.24687360227108,-0.00428885221481323,0.325674653053284,0.945472240447998,0.416266918182373,-0.0931646004319191,0.904456973075867,
- 0.497698277235031,-0.206098109483719,0.84250819683075,0.375606000423431,-0.100295826792717,0.921336531639099,0.22553576529026,0.0521107092499733,0.972840309143066,0.330619722604752,0.932112812995911,-0.147838607430458,0.626961648464203,0.765309989452362,-0.145670652389526,0.408263385295868,0.85764616727829,-0.312672764062881,0.959107756614685,0.159011527895927,-0.23415333032608,0.57355797290802,0.699713468551636,-0.425948917865753,0.825271904468536,0.242724597454071,-0.509912848472595,0.922814726829529,0.298542618751526,-0.243486106395721,-0.0509248301386833,0.283154457807541,-0.957721352577209,0.0966527238488197,0.171263083815575,-0.980473041534424,-0.0647805407643318,-0.0300222598016262,-0.997447848320007,0.0434188395738602,-0.0897665023803711,-0.995015978813171,0.686072528362274,0.584281146526337,-0.433497428894043,0.0199737995862961,0.143146544694901,-0.989499986171722,-0.0480740144848824,0.220476970076561,-0.974206805229187,0.66994297504425,0.605954706668854,-0.428946733474731,0.681116819381714,0.727861642837524,-0.0793560743331909,0.798851370811462,0.58402144908905,-0.144068092107773,0.686072528362274,0.584281146526337,-0.433497428894043,0.66994297504425,0.605954706668854,-0.428946733474731,0.569055199623108,0.604568839073181,-0.557380139827728,0.64146625995636,0.691972970962524,-0.331201583147049,0.857351124286652,0.445989906787872,0.256986647844315,0.780548572540283,0.197137042880058,0.593195557594299,0.681116819381714,0.727861642837524,-0.0793560743331909,0.66994297504425,0.605954706668854,-0.428946733474731,0.585422277450562,0.806787014007568,0.0798476412892342,0.784200429916382,-0.321260124444962,-0.530868828296661,0.908270359039307,-0.015038481913507,-0.418113529682159,-0.270182728767395,0.000785958138294518,-0.962808847427368,-0.045667689293623,-0.163515761494637,-0.985483229160309,0.552643060684204,0.594526171684265,-0.584058523178101,0.701964259147644,0.679058849811554,-0.214767962694168,0.777704775333405,0.349072188138962,-0.522803962230682,0.585422277450562,0.806787014007568,0.0798476412892342,0.42829567193985,-0.0538364499807358,0.902033507823944,
- 0.497698277235031,-0.206098109483719,0.84250819683075,0.857351124286652,0.445989906787872,0.256986647844315,0.701959609985352,0.709870338439941,-0.0577664524316788,-0.0469303503632545,0.132125660777092,0.990121364593506,0.0163168013095856,0.982669293880463,-0.184647843241692,0.64146625995636,0.691972970962524,-0.331201583147049,0.0966527238488197,0.171263083815575,-0.980473041534424,-0.0509248301386833,0.283154457807541,-0.957721352577209,0.770489633083344,-0.00711642671376467,0.637412786483765,0.919877946376801,-0.259327709674835,-0.294234454631805,0.423777222633362,0.0931075811386108,0.900968313217163,0.222066134214401,0.0443319045007229,0.974023342132568,-0.000715058296918869,0.486075758934021,0.873916447162628,0.00706086307764053,0.0571275018155575,0.998341977596283,0.146214589476585,-0.0111628901213408,0.989189922809601,0.701959609985352,0.709870338439941,-0.0577664524316788,0.64146625995636,0.691972970962524,-0.331201583147049,0.0163168013095856,0.982669293880463,-0.184647843241692,-0.139924362301826,0.986445069313049,0.085716687142849,0.119371488690376,0.0457650907337666,0.991794347763062,0.701959609985352,0.709870338439941,-0.0577664524316788,-0.139924362301826,0.986445069313049,0.085716687142849,0.636783123016357,-0.237236768007278,0.733638882637024,-0.138314664363861,0.960578918457031,-0.241158172488213,-0.00542823504656553,0.998669028282166,0.0512916669249535,-0.50740772485733,0.48194295167923,0.714330732822418,0.0287854932248592,-0.123579576611519,0.991917073726654,-0.0497231632471085,0.0407505817711353,-0.99793142080307,0.0869589447975159,0.55047595500946,-0.830309808254242,0.64146625995636,0.691972970962524,-0.331201583147049,0.569055199623108,0.604568839073181,-0.557380139827728,0.0226094406098127,0.156819507479668,-0.98736846446991,0.0966527238488197,0.171263083815575,-0.980473041534424,0.223539605736732,0.256834417581558,0.94024795293808,0.305918544530869,0.0879248529672623,0.947988986968994,0.365246474742889,-0.00310394028201699,0.930905699729919,0.356224000453949,0.011218074709177,0.934333264827728,
- 0.0163168013095856,0.982669293880463,-0.184647843241692,-0.188361197710037,0.926501989364624,-0.325751632452011,-0.50740772485733,0.48194295167923,0.714330732822418,-0.139924362301826,0.986445069313049,0.085716687142849,0.23646679520607,0.0632161572575569,0.969581007957459,-0.139924362301826,0.986445069313049,0.085716687142849,-0.50740772485733,0.48194295167923,0.714330732822418,0.686072528362274,0.584281146526337,-0.433497428894043,0.237635239958763,0.703324794769287,-0.669972956180573,-0.134759172797203,0.147416576743126,-0.979851186275482,0.0199737995862961,0.143146544694901,-0.989499986171722,-0.0469303503632545,0.132125660777092,0.990121364593506,0.701959609985352,0.709870338439941,-0.0577664524316788,0.119371488690376,0.0457650907337666,0.991794347763062,-0.655655682086945,-0.620915174484253,0.429627895355225,0.795762479305267,-0.557750701904297,0.235958233475685,0.651552617549896,-0.685333907604218,0.325264036655426,0.64146625995636,0.691972970962524,-0.331201583147049,0.701959609985352,0.709870338439941,-0.0577664524316788,0.857351124286652,0.445989906787872,0.256986647844315,0.424397021532059,-0.030970886349678,0.904946506023407,0.701964259147644,0.679058849811554,-0.214767962694168,0.526887357234955,-0.124369010329247,0.840786695480347,0.423777222633362,0.0931075811386108,0.900968313217163,0.919877946376801,-0.259327709674835,-0.294234454631805,0.701964259147644,0.679058849811554,-0.214767962694168,0.424397021532059,-0.030970886349678,0.904946506023407,-0.50740772485733,0.48194295167923,0.714330732822418,-0.00542823504656553,0.998669028282166,0.0512916669249535,-0.177590757608414,0.110030137002468,0.977934062480927,0.561551451683044,-0.608578681945801,0.560617566108704,0.330619722604752,0.932112812995911,-0.147838607430458,0.358169227838516,-0.0222920272499323,0.933390617370605,0.0156251192092896,0.0408998094499111,-0.999041140079498,-0.0731425657868385,0.323152393102646,-0.943516254425049,-0.346121400594711,0.185826316475868,-0.919602394104004,-0.50740772485733,0.48194295167923,0.714330732822418,-0.188361197710037,0.926501989364624,-0.325751632452011,
- -0.138314664363861,0.960578918457031,-0.241158172488213,0.952777326107025,0.135015651583672,-0.272003978490829,0.978341281414032,-0.0489743426442146,-0.201121807098389,0.628112435340881,-0.120741821825504,-0.768697738647461,0.881389319896698,-0.0075172632932663,-0.472330957651138,0.0966527238488197,0.171263083815575,-0.980473041534424,0.0226094406098127,0.156819507479668,-0.98736846446991,-0.110792882740498,-0.0744516775012016,-0.991050958633423,-0.0647805407643318,-0.0300222598016262,-0.997447848320007,0.408881723880768,-0.0333338752388954,0.911978483200073,0.959107756614685,0.159011527895927,-0.23415333032608,0.922814726829529,0.298542618751526,-0.243486106395721,0.453728348016739,-0.225548282265663,0.862124562263489,0.628112435340881,-0.120741821825504,-0.768697738647461,0.978341281414032,-0.0489743426442146,-0.201121807098389,0.922814726829529,0.298542618751526,-0.243486106395721,0.825271904468536,0.242724597454071,-0.509912848472595,0.569055199623108,0.604568839073181,-0.557380139827728,0.585422277450562,0.806787014007568,0.0798476412892342,0.66994297504425,0.605954706668854,-0.428946733474731,0.552643060684204,0.594526171684265,-0.584058523178101,0.959107756614685,0.159011527895927,-0.23415333032608,0.526887357234955,-0.124369010329247,0.840786695480347,0.201363414525986,0.947895765304565,-0.24687360227108,-0.00179606210440397,0.474512219429016,-0.880247116088867,-0.00821994990110397,0.999876618385315,-0.0133912358433008,0.686072528362274,0.584281146526337,-0.433497428894043,0.798851370811462,0.58402144908905,-0.144068092107773,0.330619722604752,0.932112812995911,-0.147838607430458,0.237635239958763,0.703324794769287,-0.669972956180573,-0.000715058296918869,0.486075758934021,0.873916447162628,0.222066134214401,0.0443319045007229,0.974023342132568,-0.0647377371788025,0.99549525976181,0.0692702233791351,0.784200429916382,-0.321260124444962,-0.530868828296661,0.919877946376801,-0.259327709674835,-0.294234454631805,0.770489633083344,-0.00711642671376467,0.637412786483765,0.908270359039307,-0.015038481913507,-0.418113529682159,
- 0.223539605736732,0.256834417581558,0.94024795293808,0.952777326107025,0.135015651583672,-0.272003978490829,0.626961648464203,0.765309989452362,-0.145670652389526,0.561551451683044,-0.608578681945801,0.560617566108704,0.978341281414032,-0.0489743426442146,-0.201121807098389,0.952777326107025,0.135015651583672,-0.272003978490829,0.223539605736732,0.256834417581558,0.94024795293808,0.424397021532059,-0.030970886349678,0.904946506023407,0.526887357234955,-0.124369010329247,0.840786695480347,0.66718852519989,-0.355985879898071,0.654319167137146,0.397795081138611,-0.0312165543437004,0.91694313287735,0.922814726829529,0.298542618751526,-0.243486106395721,0.978341281414032,-0.0489743426442146,-0.201121807098389,0.453728348016739,-0.225548282265663,0.862124562263489,0.777704775333405,0.349072188138962,-0.522803962230682,0.784200429916382,-0.321260124444962,-0.530868828296661,-0.045667689293623,-0.163515761494637,-0.985483229160309,-0.0305240508168936,0.132454931735992,-0.990719020366669,0.424397021532059,-0.030970886349678,0.904946506023407,0.397795081138611,-0.0312165543437004,0.91694313287735,0.396325975656509,0.0545027703046799,0.91649067401886,0.423777222633362,0.0931075811386108,0.900968313217163,0.330619722604752,0.932112812995911,-0.147838607430458,0.798851370811462,0.58402144908905,-0.144068092107773,-0.00428885221481323,0.325674653053284,0.945472240447998,0.358169227838516,-0.0222920272499323,0.933390617370605,0.416266918182373,-0.0931646004319191,0.904456973075867,-0.00428885221481323,0.325674653053284,0.945472240447998,0.798851370811462,0.58402144908905,-0.144068092107773,0.681116819381714,0.727861642837524,-0.0793560743331909,0.857351124286652,0.445989906787872,0.256986647844315,-0.0469303503632545,0.132125660777092,0.990121364593506,0.42829567193985,-0.0538364499807358,0.902033507823944,0.780548572540283,0.197137042880058,0.593195557594299,0.23646679520607,0.0632161572575569,0.969581007957459,0.160894006490707,0.0109692933037877,0.986910820007324,0.246731877326965,-0.0251509733498096,0.968757390975952,0.636783123016357,-0.237236768007278,0.733638882637024,
- -0.177590757608414,0.110030137002468,0.977934062480927,0.222066134214401,0.0443319045007229,0.974023342132568,0.146214589476585,-0.0111628901213408,0.989189922809601,-0.0605353228747845,0.0222925990819931,0.997917115688324,-0.0320036634802818,0.0193330217152834,0.99930077791214,-0.145365968346596,-0.00875776633620262,0.989339232444763,-0.00880351010710001,0.0135887404903769,0.999868929386139,-0.000715058296918869,0.486075758934021,0.873916447162628,-0.0647377371788025,0.99549525976181,0.0692702233791351,0.201363414525986,0.947895765304565,-0.24687360227108,-0.00821994990110397,0.999876618385315,-0.0133912358433008,0.0902927443385124,0.251336544752121,-0.963679015636444,-0.259471118450165,0.307572603225708,-0.91546368598938,-0.151476263999939,0.0126780737191439,-0.988379597663879,0.0567530617117882,-0.0182151589542627,-0.99822211265564,-0.102363422513008,-0.00985331647098064,-0.994698286056519,-0.0509248301386833,0.283154457807541,-0.957721352577209,0.0434188395738602,-0.0897665023803711,-0.995015978813171,0.585422277450562,0.806787014007568,0.0798476412892342,0.497698277235031,-0.206098109483719,0.84250819683075,0.416266918182373,-0.0931646004319191,0.904456973075867,0.681116819381714,0.727861642837524,-0.0793560743331909,0.569055199623108,0.604568839073181,-0.557380139827728,0.66994297504425,0.605954706668854,-0.428946733474731,-0.0480740144848824,0.220476970076561,-0.974206805229187,0.0226094406098127,0.156819507479668,-0.98736846446991,0.237635239958763,0.703324794769287,-0.669972956180573,0.330619722604752,0.932112812995911,-0.147838607430458,0.408263385295868,0.85764616727829,-0.312672764062881,-0.134759172797203,0.147416576743126,-0.979851186275482,0.237635239958763,0.703324794769287,-0.669972956180573,0.408263385295868,0.85764616727829,-0.312672764062881,-0.0874645709991455,0.266679495573044,-0.959808349609375,0.687494575977325,-0.204605966806412,0.69676947593689,0.358169227838516,-0.0222920272499323,0.933390617370605,-0.00428885221481323,0.325674653053284,0.945472240447998,0.22553576529026,0.0521107092499733,0.972840309143066,
- 0.561551451683044,-0.608578681945801,0.560617566108704,0.626961648464203,0.765309989452362,-0.145670652389526,0.330619722604752,0.932112812995911,-0.147838607430458,0.408263385295868,0.85764616727829,-0.312672764062881,0.881389319896698,-0.0075172632932663,-0.472330957651138,0.0156251192092896,0.0408998094499111,-0.999041140079498,-0.0874645709991455,0.266679495573044,-0.959808349609375,-0.210306018590927,-0.219330072402954,-0.95271497964859,0.628112435340881,-0.120741821825504,-0.768697738647461,0.825271904468536,0.242724597454071,-0.509912848472595,-0.043856505304575,0.119239203631878,-0.991896510124207,0.569055199623108,0.604568839073181,-0.557380139827728,0.780548572540283,0.197137042880058,0.593195557594299,0.585422277450562,0.806787014007568,0.0798476412892342,0.42829567193985,-0.0538364499807358,0.902033507823944,0.585422277450562,0.806787014007568,0.0798476412892342,0.780548572540283,0.197137042880058,0.593195557594299,0.978341281414032,-0.0489743426442146,-0.201121807098389,0.223539605736732,0.256834417581558,0.94024795293808,0.356224000453949,0.011218074709177,0.934333264827728,0.453728348016739,-0.225548282265663,0.862124562263489,0.978341281414032,-0.0489743426442146,-0.201121807098389,0.356224000453949,0.011218074709177,0.934333264827728,-0.622728884220123,0.234218433499336,0.746559083461761,0.672841548919678,-0.1783616989851,-0.717963337898254,0.898702502250671,0.365567892789841,-0.242268279194832,0.160894006490707,0.0109692933037877,0.986910820007324,0.23646679520607,0.0632161572575569,0.969581007957459,-0.177590757608414,0.110030137002468,0.977934062480927,-0.0605353228747845,0.0222925990819931,0.997917115688324,-0.0509248301386833,0.283154457807541,-0.957721352577209,-0.102363422513008,-0.00985331647098064,-0.994698286056519,0.169582307338715,0.469536751508713,-0.866473972797394,-0.188361197710037,0.926501989364624,-0.325751632452011,0.0163168013095856,0.982669293880463,-0.184647843241692,-0.0509248301386833,0.283154457807541,-0.957721352577209,0.169582307338715,0.469536751508713,-0.866473972797394,
- -0.102363422513008,-0.00985331647098064,-0.994698286056519,-0.259471118450165,0.307572603225708,-0.91546368598938,0.169582307338715,0.469536751508713,-0.866473972797394,-0.138314664363861,0.960578918457031,-0.241158172488213,-0.188361197710037,0.926501989364624,-0.325751632452011,0.169582307338715,0.469536751508713,-0.866473972797394,-0.259471118450165,0.307572603225708,-0.91546368598938,-0.259471118450165,0.307572603225708,-0.91546368598938,-0.102363422513008,-0.00985331647098064,-0.994698286056519,-0.151476263999939,0.0126780737191439,-0.988379597663879,0.23646679520607,0.0632161572575569,0.969581007957459,0.636783123016357,-0.237236768007278,0.733638882637024,-0.139924362301826,0.986445069313049,0.085716687142849,-0.421850621700287,0.239392772316933,-0.874490261077881,-0.0305240508168936,0.132454931735992,-0.990719020366669,-0.300125986337662,0.0121624115854502,-0.953822135925293,-0.0580619499087334,0.151645451784134,-0.986728250980377,-0.421850621700287,0.239392772316933,-0.874490261077881,-0.300125986337662,0.0121624115854502,-0.953822135925293,-0.257400065660477,-0.035640511661768,-0.965647399425507,0.57355797290802,0.699713468551636,-0.425948917865753,0.750458955764771,0.102223426103592,-0.652963876724243,-0.421850621700287,0.239392772316933,-0.874490261077881,-0.0580619499087334,0.151645451784134,-0.986728250980377,0.750458955764771,0.102223426103592,-0.652963876724243,0.777704775333405,0.349072188138962,-0.522803962230682,-0.0305240508168936,0.132454931735992,-0.990719020366669,-0.421850621700287,0.239392772316933,-0.874490261077881,0.701964259147644,0.679058849811554,-0.214767962694168,0.919877946376801,-0.259327709674835,-0.294234454631805,0.784200429916382,-0.321260124444962,-0.530868828296661,0.777704775333405,0.349072188138962,-0.522803962230682,0.750458955764771,0.102223426103592,-0.652963876724243,0.57355797290802,0.699713468551636,-0.425948917865753,0.959107756614685,0.159011527895927,-0.23415333032608,0.552643060684204,0.594526171684265,-0.584058523178101,0.701964259147644,0.679058849811554,-0.214767962694168,
- 0.552643060684204,0.594526171684265,-0.584058523178101,0.526887357234955,-0.124369010329247,0.840786695480347,0.959107756614685,0.159011527895927,-0.23415333032608,0.408881723880768,-0.0333338752388954,0.911978483200073,0.526887357234955,-0.124369010329247,0.840786695480347,0.201363414525986,0.947895765304565,-0.24687360227108,0.0902927443385124,0.251336544752121,-0.963679015636444,-0.00179606210440397,0.474512219429016,-0.880247116088867,0.305918544530869,0.0879248529672623,0.947988986968994,0.223539605736732,0.256834417581558,0.94024795293808,0.561551451683044,-0.608578681945801,0.560617566108704,0.429180413484573,-0.151951804757118,0.890345454216003,0.429180413484573,-0.151951804757118,0.890345454216003,0.561551451683044,-0.608578681945801,0.560617566108704,0.358169227838516,-0.0222920272499323,0.933390617370605,0.687494575977325,-0.204605966806412,0.69676947593689,0.40125584602356,-0.000566789880394936,0.915965914726257,0.770489633083344,-0.00711642671376467,0.637412786483765,0.423777222633362,0.0931075811386108,0.900968313217163,0.396325975656509,0.0545027703046799,0.91649067401886,0.383302062749863,-0.0218013972043991,0.923365712165833,0.453728348016739,-0.225548282265663,0.862124562263489,0.356224000453949,0.011218074709177,0.934333264827728,0.365246474742889,-0.00310394028201699,0.930905699729919,-0.281486749649048,0.0426746867597103,-0.958615779876709,-0.045667689293623,-0.163515761494637,-0.985483229160309,-0.270182728767395,0.000785958138294518,-0.962808847427368,-0.933859467506409,0.0295854117721319,0.356414467096329,-0.043856505304575,0.119239203631878,-0.991896510124207,-0.0580619499087334,0.151645451784134,-0.986728250980377,-0.257400065660477,-0.035640511661768,-0.965647399425507,-0.263195008039474,-0.0384610556066036,-0.963975667953491,0.66718852519989,-0.355985879898071,0.654319167137146,0.526887357234955,-0.124369010329247,0.840786695480347,0.408881723880768,-0.0333338752388954,0.911978483200073,0.380167216062546,-0.00957624614238739,0.924868226051331,0.375606000423431,-0.100295826792717,0.921336531639099,
- 0.497698277235031,-0.206098109483719,0.84250819683075,0.42829567193985,-0.0538364499807358,0.902033507823944,0.235069110989571,-0.0127808060497046,0.97189462184906,-0.110792882740498,-0.0744516775012016,-0.991050958633423,0.0226094406098127,0.156819507479668,-0.98736846446991,-0.0480740144848824,0.220476970076561,-0.974206805229187,-0.224488139152527,0.0364385023713112,-0.973795294761658,-0.300125986337662,0.0121624115854502,-0.953822135925293,-0.0305240508168936,0.132454931735992,-0.990719020366669,-0.282251298427582,-0.0482439436018467,-0.958126723766327,-0.282251298427582,-0.0482439436018467,-0.958126723766327,-0.0305240508168936,0.132454931735992,-0.990719020366669,-0.045667689293623,-0.163515761494637,-0.985483229160309,-0.281486749649048,0.0426746867597103,-0.958615779876709,0.235069110989571,-0.0127808060497046,0.97189462184906,0.42829567193985,-0.0538364499807358,0.902033507823944,-0.0469303503632545,0.132125660777092,0.990121364593506,0.0991281718015671,0.0505710765719414,0.993788838386536,0.0991281718015671,0.0505710765719414,0.993788838386536,-0.0469303503632545,0.132125660777092,0.990121364593506,0.119371488690376,0.0457650907337666,0.991794347763062,0.636783123016357,-0.237236768007278,0.733638882637024,0.246731877326965,-0.0251509733498096,0.968757390975952,-0.224488139152527,0.0364385023713112,-0.973795294761658,-0.0480740144848824,0.220476970076561,-0.974206805229187,0.0199737995862961,0.143146544694901,-0.989499986171722,-0.0329687744379044,-0.130206689238548,-0.990938663482666,-0.0731425657868385,0.323152393102646,-0.943516254425049,-0.210306018590927,-0.219330072402954,-0.95271497964859,-0.043856505304575,0.119239203631878,-0.991896510124207,-0.263195008039474,-0.0384610556066036,-0.963975667953491,-0.279941767454147,0.0695209801197052,-0.957496523857117,-0.0874645709991455,0.266679495573044,-0.959808349609375,0.0156251192092896,0.0408998094499111,-0.999041140079498,-0.346121400594711,0.185826316475868,-0.919602394104004,-0.279941767454147,0.0695209801197052,-0.957496523857117,-0.234918087720871,0.00289280689321458,-0.972010850906372,
- -0.134759172797203,0.147416576743126,-0.979851186275482,-0.0874645709991455,0.266679495573044,-0.959808349609375,0.352767258882523,0.0155119001865387,0.935582518577576,0.339327037334442,0.00169026874937117,0.940667033195496,0.361435502767563,0.00068966398248449,0.932396948337555,0.359233051538467,0.0332007594406605,0.932657182216644,0.36570280790329,0.452196598052979,-0.813498437404633,0.422809720039368,0.54255473613739,-0.725855588912964,-0.262760072946548,-0.263634502887726,-0.928145527839661,0.0401665456593037,0.304631471633911,0.95162308216095,0.76667308807373,0.289403855800629,-0.573112368583679,0.612086117267609,-0.617186367511749,-0.494400352239609,0.912535905838013,-0.26380118727684,-0.312549531459808,0.936931431293488,-0.152354300022125,-0.314559757709503,-0.333625793457031,0.0016090190038085,-0.942704260349274,-0.395382672548294,0.00602356251329184,-0.91849672794342,-0.401192188262939,0.0264040715992451,-0.915613293647766,-0.346144437789917,0.0189142227172852,-0.937990546226501,-0.379236459732056,0.000975224422290921,-0.925299406051636,-0.022058580070734,-0.452800452709198,-0.891339063644409,-0.051070686429739,0.0624754801392555,-0.996739029884338,0.772023499011993,0.390879213809967,-0.501191735267639,0.659921407699585,-0.635933816432953,-0.400115102529526,0.682792484760284,0.489744484424591,-0.542166888713837,0.781252503395081,-0.217209830880165,-0.585204660892487,0.95581066608429,-0.013479882851243,-0.293673872947693,0.893551588058472,0.344238013029099,-0.288211613893509,0.76667308807373,0.289403855800629,-0.573112368583679,0.606358766555786,0.553685307502747,-0.570755422115326,-0.0143252238631248,0.139563784003258,-0.99010956287384,-0.0528748258948326,0.32791194319725,-0.943227410316467,0.893551588058472,0.344238013029099,-0.288211613893509,0.95581066608429,-0.013479882851243,-0.293673872947693,0.448800593614578,-0.180574104189873,0.87519782781601,0.435759663581848,0.278044462203979,0.856040179729462,0.427516639232636,0.279784768819809,0.859622001647949,0.449091881513596,-0.205855175852776,0.869448184967041,
- 0.398364990949631,-0.0119062885642052,0.917149722576141,0.408769488334656,0.224366441369057,0.884628295898438,-0.0334040001034737,-0.0776302441954613,-0.996422469615936,-0.277525454759598,-0.0231494344770908,-0.960439383983612,-0.401060193777084,-0.00453817890956998,-0.916040420532227,-0.0722591951489449,-0.0015162592753768,-0.997384786605835,-0.0242612417787313,0.205731898546219,-0.978307604789734,-0.0334040001034737,-0.0776302441954613,-0.996422469615936,0.781252503395081,-0.217209830880165,-0.585204660892487,0.682792484760284,0.489744484424591,-0.542166888713837,0.435378730297089,0.348917245864868,0.829880774021149,0.445476412773132,-0.203764751553535,0.871797382831573,0.420842230319977,-0.356067597866058,0.8343306183815,0.398951590061188,-0.133484423160553,0.907204329967499,0.407272130250931,0.116718038916588,0.905817985534668,0.657652497291565,-0.523871660232544,0.541342556476593,0.912535905838013,-0.26380118727684,-0.312549531459808,0.612086117267609,-0.617186367511749,-0.494400352239609,0.659921407699585,-0.635933816432953,-0.400115102529526,0.772023499011993,0.390879213809967,-0.501191735267639,0.758049130439758,0.618281245231628,-0.207580894231796,0.850248217582703,-0.478033781051636,-0.220367595553398,-0.0245191119611263,0.0330274105072021,-0.999153733253479,-0.0532615929841995,0.124412320554256,-0.990800082683563,-0.274545699357986,-0.0665156990289688,-0.959270775318146,-0.283272296190262,-0.165090322494507,-0.94472324848175,-0.0438134893774986,-0.24059097468853,-0.969637215137482,-0.0568397603929043,0.0603822991251946,-0.996555745601654,0.761433899402618,-0.064552865922451,-0.645020484924316,0.770922422409058,-0.261168450117111,-0.580921590328217,0.770922422409058,-0.261168450117111,-0.580921590328217,0.761433899402618,-0.064552865922451,-0.645020484924316,0.959323883056641,0.0433754101395607,-0.278955578804016,0.883285939693451,-0.392276257276535,-0.256759285926819,0.732350170612335,-0.0236126780509949,-0.680518746376038,0.717994570732117,0.385137975215912,-0.579786717891693,0.921789050102234,0.202806413173676,-0.330415546894073,
- 0.851053535938263,-0.403399020433426,0.336120843887329,0.959323883056641,0.0433754101395607,-0.278955578804016,0.761433899402618,-0.064552865922451,-0.645020484924316,0.989427208900452,0.0566422939300537,-0.133512511849403,0.701230525970459,0.493579864501953,-0.514446020126343,0.69161456823349,-0.00175377633422613,-0.72226470708847,0.0477582588791847,-0.0090005099773407,-0.998818457126617,-0.0588173605501652,-0.0777469500899315,-0.995236694812775,0.844843626022339,-0.345852762460709,0.408197492361069,0.944495677947998,0.133749410510063,-0.300065279006958,0.812244951725006,-0.0382277294993401,-0.582062542438507,0.989427208900452,0.0566422939300537,-0.133512511849403,0.49068021774292,0.017956929281354,0.87115478515625,0.420842230319977,-0.356067597866058,0.8343306183815,0.921789050102234,0.202806413173676,-0.330415546894073,0.930626749992371,-0.22442127764225,-0.28908309340477,0.383383750915527,0.368596613407135,0.846849203109741,0.79532265663147,0.144256189465523,-0.58877170085907,0.717994570732117,0.385137975215912,-0.579786717891693,-0.0532615929841995,0.124412320554256,-0.990800082683563,-0.0245191119611263,0.0330274105072021,-0.999153733253479,0.913065433502197,0.0101980604231358,0.407685786485672,0.951604545116425,0.00816856510937214,-0.3072170317173,0.40403351187706,0.298825114965439,0.864558041095734,0.448800593614578,-0.180574104189873,0.87519782781601,0.950229108333588,-0.0101907234638929,0.311385273933411,0.59546023607254,-0.00589321507140994,0.80336320400238,0.387680798768997,-0.104022771120071,0.915905475616455,0.867801904678345,0.421158820390701,-0.263714134693146,0.930626749992371,-0.22442127764225,-0.28908309340477,0.717994570732117,0.385137975215912,-0.579786717891693,0.79532265663147,0.144256189465523,-0.58877170085907,0.410787791013718,-0.183054894208908,0.893165409564972,0.412765473127365,0.0501849614083767,0.909453809261322,0.930626749992371,-0.22442127764225,-0.28908309340477,0.867801904678345,0.421158820390701,-0.263714134693146,0.682792484760284,0.489744484424591,-0.542166888713837,0.893551588058472,0.344238013029099,-0.288211613893509,
- 0.668424248695374,0.597710013389587,0.442664563655853,-0.0528748258948326,0.32791194319725,-0.943227410316467,-0.0143252238631248,0.139563784003258,-0.99010956287384,-0.224552884697914,0.298050045967102,-0.927761912345886,0.717994570732117,0.385137975215912,-0.579786717891693,0.732350170612335,-0.0236126780509949,-0.680518746376038,0.169195041060448,-0.35081821680069,-0.921031892299652,-0.0532615929841995,0.124412320554256,-0.990800082683563,0.392850756645203,0.0693832486867905,0.916981101036072,0.366751253604889,-0.213362649083138,0.905521929264069,0.31262868642807,0.0488276705145836,0.948619604110718,0.67406040430069,-0.201564371585846,0.710643708705902,0.79532265663147,0.144256189465523,-0.58877170085907,0.760257720947266,0.282508671283722,-0.584976077079773,0.668424248695374,0.597710013389587,0.442664563655853,0.867801904678345,0.421158820390701,-0.263714134693146,0.512187242507935,-0.177967980504036,0.840233147144318,0.867801904678345,0.421158820390701,-0.263714134693146,0.668424248695374,0.597710013389587,0.442664563655853,0.770922422409058,-0.261168450117111,-0.580921590328217,0.780741453170776,-0.552464604377747,-0.29193440079689,-0.471620857715607,-0.349183022975922,-0.809719085693359,-0.0438134893774986,-0.24059097468853,-0.969637215137482,0.383383750915527,0.368596613407135,0.846849203109741,0.930626749992371,-0.22442127764225,-0.28908309340477,0.412765473127365,0.0501849614083767,0.909453809261322,-0.626645624637604,0.614871859550476,0.478798359632492,-0.0306373834609985,0.833976328372955,-0.550949037075043,0.854688882827759,0.111847683787346,-0.50694876909256,0.717994570732117,0.385137975215912,-0.579786717891693,0.930626749992371,-0.22442127764225,-0.28908309340477,0.921789050102234,0.202806413173676,-0.330415546894073,0.410294502973557,-0.237745240330696,0.880417883396149,0.944495677947998,0.133749410510063,-0.300065279006958,0.229483112692833,-0.114525035023689,0.966551423072815,0.951604545116425,0.00816856510937214,-0.3072170317173,0.944495677947998,0.133749410510063,-0.300065279006958,0.410294502973557,-0.237745240330696,0.880417883396149,
- 0.40403351187706,0.298825114965439,0.864558041095734,0.668424248695374,0.597710013389587,0.442664563655853,0.893551588058472,0.344238013029099,-0.288211613893509,0.435759663581848,0.278044462203979,0.856040179729462,-0.129341587424278,0.937194168567657,-0.323941290378571,0.900454044342041,-0.368906378746033,0.230414137244225,0.883404731750488,0.466309696435928,-0.0463816188275814,-0.0528748258948326,0.32791194319725,-0.943227410316467,-0.224552884697914,0.298050045967102,-0.927761912345886,-0.279930710792542,0.148686200380325,-0.948436200618744,0.668424248695374,0.597710013389587,0.442664563655853,0.760257720947266,0.282508671283722,-0.584976077079773,0.682792484760284,0.489744484424591,-0.542166888713837,0.936931431293488,-0.152354300022125,-0.314559757709503,0.954952597618103,0.213639840483665,-0.205969899892807,0.606358766555786,0.553685307502747,-0.570755422115326,0.76667308807373,0.289403855800629,-0.573112368583679,-0.0532615929841995,0.124412320554256,-0.990800082683563,0.169195041060448,-0.35081821680069,-0.921031892299652,0.246121376752853,-0.676179051399231,-0.694410681724548,-0.274545699357986,-0.0665156990289688,-0.959270775318146,0.850248217582703,-0.478033781051636,-0.220367595553398,0.758049130439758,0.618281245231628,-0.207580894231796,0.449091881513596,-0.205855175852776,0.869448184967041,0.427516639232636,0.279784768819809,0.859622001647949,0.606358766555786,0.553685307502747,-0.570755422115326,0.954952597618103,0.213639840483665,-0.205969899892807,0.758049130439758,0.618281245231628,-0.207580894231796,0.772023499011993,0.390879213809967,-0.501191735267639,0.732350170612335,-0.0236126780509949,-0.680518746376038,0.989427208900452,0.0566422939300537,-0.133512511849403,0.761433899402618,-0.064552865922451,-0.645020484924316,0.844843626022339,-0.345852762460709,0.408197492361069,0.850248217582703,-0.478033781051636,-0.220367595553398,0.229483112692833,-0.114525035023689,0.966551423072815,0.781252503395081,-0.217209830880165,-0.585204660892487,-0.0722591951489449,-0.0015162592753768,-0.997384786605835,
- 0.763812959194183,-0.033410370349884,-0.64457231760025,0.770922422409058,-0.261168450117111,-0.580921590328217,0.883285939693451,-0.392276257276535,-0.256759285926819,0.657652497291565,-0.523871660232544,0.541342556476593,0.780741453170776,-0.552464604377747,-0.29193440079689,0.950229108333588,-0.0101907234638929,0.311385273933411,0.448800593614578,-0.180574104189873,0.87519782781601,0.95581066608429,-0.013479882851243,-0.293673872947693,0.701230525970459,0.493579864501953,-0.514446020126343,0.951604545116425,0.00816856510937214,-0.3072170317173,0.913065433502197,0.0101980604231358,0.407685786485672,0.69161456823349,-0.00175377633422613,-0.72226470708847,0.936931431293488,-0.152354300022125,-0.314559757709503,0.912535905838013,-0.26380118727684,-0.312549531459808,0.372534841299057,-0.26543989777565,0.889246642589569,0.392850756645203,0.0693832486867905,0.916981101036072,0.954952597618103,0.213639840483665,-0.205969899892807,0.936931431293488,-0.152354300022125,-0.314559757709503,0.392850756645203,0.0693832486867905,0.916981101036072,0.410294502973557,-0.237745240330696,0.880417883396149,0.229483112692833,-0.114525035023689,0.966551423072815,0.318357706069946,-0.0418604984879494,0.947046041488647,0.386576771736145,-0.21622808277607,0.896551132202148,0.758049130439758,0.618281245231628,-0.207580894231796,0.954952597618103,0.213639840483665,-0.205969899892807,0.449091881513596,-0.205855175852776,0.869448184967041,-0.0588173605501652,-0.0777469500899315,-0.995236694812775,-0.0461015142500401,0.122829027473927,-0.991356551647186,0.812244951725006,-0.0382277294993401,-0.582062542438507,0.701230525970459,0.493579864501953,-0.514446020126343,0.40403351187706,0.298825114965439,0.864558041095734,0.410294502973557,-0.237745240330696,0.880417883396149,0.386576771736145,-0.21622808277607,0.896551132202148,0.388658344745636,0.150005504488945,0.909089088439941,0.657652497291565,-0.523871660232544,0.541342556476593,0.883285939693451,-0.392276257276535,-0.256759285926819,0.435378730297089,0.348917245864868,0.829880774021149,0.504528522491455,0.0678932070732117,0.860721528530121,
- 0.883285939693451,-0.392276257276535,-0.256759285926819,0.959323883056641,0.0433754101395607,-0.278955578804016,0.445476412773132,-0.203764751553535,0.871797382831573,0.435378730297089,0.348917245864868,0.829880774021149,0.921789050102234,0.202806413173676,-0.330415546894073,0.383383750915527,0.368596613407135,0.846849203109741,0.49068021774292,0.017956929281354,0.87115478515625,0.851053535938263,-0.403399020433426,0.336120843887329,0.512187242507935,-0.177967980504036,0.840233147144318,0.689776062965393,-0.704171001911163,0.168381124734879,0.399745792150497,-0.205610260367393,0.89326810836792,0.410787791013718,-0.183054894208908,0.893165409564972,0.435759663581848,0.278044462203979,0.856040179729462,0.448800593614578,-0.180574104189873,0.87519782781601,0.387680798768997,-0.104022771120071,0.915905475616455,0.386007070541382,0.163578256964684,0.907877147197723,0.359233051538467,0.0332007594406605,0.932657182216644,0.325525194406509,0.206822171807289,0.92263650894165,0.352767258882523,0.0155119001865387,0.935582518577576,0.950229108333588,-0.0101907234638929,0.311385273933411,0.95581066608429,-0.013479882851243,-0.293673872947693,0.781252503395081,-0.217209830880165,-0.585204660892487,0.763812959194183,-0.033410370349884,-0.64457231760025,-0.277525454759598,-0.0231494344770908,-0.960439383983612,-0.0334040001034737,-0.0776302441954613,-0.996422469615936,-0.0242612417787313,0.205731898546219,-0.978307604789734,-0.280762225389481,0.100718185305595,-0.954478085041046,-0.24974450469017,-0.0496265888214111,-0.967039227485657,-0.0245191119611263,0.0330274105072021,-0.999153733253479,-0.283272296190262,-0.165090322494507,-0.94472324848175,0.989427208900452,0.0566422939300537,-0.133512511849403,0.420842230319977,-0.356067597866058,0.8343306183815,0.445476412773132,-0.203764751553535,0.871797382831573,0.959323883056641,0.0433754101395607,-0.278955578804016,0.732350170612335,-0.0236126780509949,-0.680518746376038,0.761433899402618,-0.064552865922451,-0.645020484924316,-0.0568397603929043,0.0603822991251946,-0.996555745601654,
- 0.169195041060448,-0.35081821680069,-0.921031892299652,0.780741453170776,-0.552464604377747,-0.29193440079689,0.657652497291565,-0.523871660232544,0.541342556476593,0.612086117267609,-0.617186367511749,-0.494400352239609,-0.471620857715607,-0.349183022975922,-0.809719085693359,0.780741453170776,-0.552464604377747,-0.29193440079689,0.612086117267609,-0.617186367511749,-0.494400352239609,-0.0935497209429741,-0.393609136343002,-0.91450560092926,0.376569807529449,-0.0064215362071991,0.926365971565247,0.504528522491455,0.0678932070732117,0.860721528530121,0.435378730297089,0.348917245864868,0.829880774021149,0.407272130250931,0.116718038916588,0.905817985534668,0.372534841299057,-0.26543989777565,0.889246642589569,0.912535905838013,-0.26380118727684,-0.312549531459808,0.657652497291565,-0.523871660232544,0.541342556476593,-0.0528748258948326,0.32791194319725,-0.943227410316467,-0.0935497209429741,-0.393609136343002,-0.91450560092926,0.612086117267609,-0.617186367511749,-0.494400352239609,0.76667308807373,0.289403855800629,-0.573112368583679,-0.0143252238631248,0.139563784003258,-0.99010956287384,0.606358766555786,0.553685307502747,-0.570755422115326,0.772023499011993,0.390879213809967,-0.501191735267639,-0.051070686429739,0.0624754801392555,-0.996739029884338,0.732350170612335,-0.0236126780509949,-0.680518746376038,0.851053535938263,-0.403399020433426,0.336120843887329,0.989427208900452,0.0566422939300537,-0.133512511849403,0.49068021774292,0.017956929281354,0.87115478515625,0.989427208900452,0.0566422939300537,-0.133512511849403,0.851053535938263,-0.403399020433426,0.336120843887329,0.954952597618103,0.213639840483665,-0.205969899892807,0.392850756645203,0.0693832486867905,0.916981101036072,0.67406040430069,-0.201564371585846,0.710643708705902,-0.444552630186081,0.134450227022171,-0.885604977607727,-0.478162169456482,-0.755118250846863,-0.448505610227585,-0.469007670879364,0.0482302308082581,-0.881876230239868,0.468206286430359,0.670417308807373,0.575607180595398,-0.304202288389206,-0.748081028461456,-0.58977609872818,
- 0.41128796339035,-0.79332447052002,-0.448863685131073,0.689776062965393,-0.704171001911163,0.168381124734879,0.512187242507935,-0.177967980504036,0.840233147144318,0.435759663581848,0.278044462203979,0.856040179729462,0.386007070541382,0.163578256964684,0.907877147197723,-0.0245191119611263,0.0330274105072021,-0.999153733253479,-0.24974450469017,-0.0496265888214111,-0.967039227485657,0.171266838908196,-0.0599390640854836,-0.98339980840683,0.760257720947266,0.282508671283722,-0.584976077079773,0.79532265663147,0.144256189465523,-0.58877170085907,-0.0245191119611263,0.0330274105072021,-0.999153733253479,0.171266838908196,-0.0599390640854836,-0.98339980840683,-0.24974450469017,-0.0496265888214111,-0.967039227485657,-0.0242612417787313,0.205731898546219,-0.978307604789734,0.171266838908196,-0.0599390640854836,-0.98339980840683,0.682792484760284,0.489744484424591,-0.542166888713837,0.760257720947266,0.282508671283722,-0.584976077079773,0.171266838908196,-0.0599390640854836,-0.98339980840683,-0.0242612417787313,0.205731898546219,-0.978307604789734,-0.0242612417787313,0.205731898546219,-0.978307604789734,-0.24974450469017,-0.0496265888214111,-0.967039227485657,-0.280762225389481,0.100718185305595,-0.954478085041046,0.512187242507935,-0.177967980504036,0.840233147144318,0.410787791013718,-0.183054894208908,0.893165409564972,0.867801904678345,0.421158820390701,-0.263714134693146,-0.197602421045303,-0.194343522191048,-0.960824608802795,-0.0461015142500401,0.122829027473927,-0.991356551647186,-0.232032760977745,0.0993856564164162,-0.967617332935333,-0.022058580070734,-0.452800452709198,-0.891339063644409,-0.197602421045303,-0.194343522191048,-0.960824608802795,-0.232032760977745,0.0993856564164162,-0.967617332935333,-0.259920656681061,-0.307457894086838,-0.915374755859375,0.659921407699585,-0.635933816432953,-0.400115102529526,0.691766440868378,-0.712921440601349,-0.114901319146156,-0.197602421045303,-0.194343522191048,-0.960824608802795,-0.022058580070734,-0.452800452709198,-0.891339063644409,0.691766440868378,-0.712921440601349,-0.114901319146156,
- 0.812244951725006,-0.0382277294993401,-0.582062542438507,-0.0461015142500401,0.122829027473927,-0.991356551647186,-0.197602421045303,-0.194343522191048,-0.960824608802795,0.701230525970459,0.493579864501953,-0.514446020126343,0.812244951725006,-0.0382277294993401,-0.582062542438507,0.944495677947998,0.133749410510063,-0.300065279006958,0.951604545116425,0.00816856510937214,-0.3072170317173,0.691766440868378,-0.712921440601349,-0.114901319146156,0.659921407699585,-0.635933816432953,-0.400115102529526,0.850248217582703,-0.478033781051636,-0.220367595553398,0.844843626022339,-0.345852762460709,0.408197492361069,-0.785466730594635,-0.571173787117004,0.238332808017731,0.854688882827759,0.111847683787346,-0.50694876909256,0.813738167285919,0.535232365131378,-0.226619809865952,0.850248217582703,-0.478033781051636,-0.220367595553398,0.427516639232636,0.279784768819809,0.859622001647949,0.229483112692833,-0.114525035023689,0.966551423072815,0.781252503395081,-0.217209830880165,-0.585204660892487,-0.0334040001034737,-0.0776302441954613,-0.996422469615936,-0.0722591951489449,-0.0015162592753768,-0.997384786605835,0.392850756645203,0.0693832486867905,0.916981101036072,0.372534841299057,-0.26543989777565,0.889246642589569,0.386903613805771,0.0136892702430487,0.922018647193909,0.366751253604889,-0.213362649083138,0.905521929264069,0.386903613805771,0.0136892702430487,0.922018647193909,0.372534841299057,-0.26543989777565,0.889246642589569,0.504528522491455,0.0678932070732117,0.860721528530121,0.311012119054794,-0.0411929376423359,0.949512898921967,0.398260086774826,-0.000470174476504326,0.917272388935089,0.913065433502197,0.0101980604231358,0.407685786485672,0.40403351187706,0.298825114965439,0.864558041095734,0.388658344745636,0.150005504488945,0.909089088439941,0.398364990949631,-0.0119062885642052,0.917149722576141,0.449091881513596,-0.205855175852776,0.869448184967041,0.67406040430069,-0.201564371585846,0.710643708705902,0.385318636894226,0.0012558699818328,0.922782838344574,-0.273022353649139,-0.0799507424235344,-0.958679735660553,
- -0.0588173605501652,-0.0777469500899315,-0.995236694812775,0.0477582588791847,-0.0090005099773407,-0.998818457126617,-0.518271625041962,0.00761283189058304,-0.855182230472565,-0.282349288463593,-0.12576162815094,-0.951032638549805,-0.051070686429739,0.0624754801392555,-0.996739029884338,-0.022058580070734,-0.452800452709198,-0.891339063644409,-0.259920656681061,-0.307457894086838,-0.915374755859375,0.386167198419571,-0.0029551088809967,0.922424137592316,0.229483112692833,-0.114525035023689,0.966551423072815,0.427516639232636,0.279784768819809,0.859622001647949,0.408769488334656,0.224366441369057,0.884628295898438,0.398951590061188,-0.133484423160553,0.907204329967499,0.420842230319977,-0.356067597866058,0.8343306183815,0.49068021774292,0.017956929281354,0.87115478515625,0.412043929100037,-0.0298044569790363,0.9106764793396,0.246121376752853,-0.676179051399231,-0.694410681724548,0.169195041060448,-0.35081821680069,-0.921031892299652,-0.0568397603929043,0.0603822991251946,-0.996555745601654,-0.282788634300232,0.0482151843607426,-0.957969665527344,-0.232032760977745,0.0993856564164162,-0.967617332935333,-0.0461015142500401,0.122829027473927,-0.991356551647186,-0.281350553035736,-0.121463298797607,-0.951886892318726,-0.281350553035736,-0.121463298797607,-0.951886892318726,-0.0461015142500401,0.122829027473927,-0.991356551647186,-0.0588173605501652,-0.0777469500899315,-0.995236694812775,-0.273022353649139,-0.0799507424235344,-0.958679735660553,0.412043929100037,-0.0298044569790363,0.9106764793396,0.49068021774292,0.017956929281354,0.87115478515625,0.383383750915527,0.368596613407135,0.846849203109741,0.395488977432251,0.0944794341921806,0.913598418235779,0.395488977432251,0.0944794341921806,0.913598418235779,0.383383750915527,0.368596613407135,0.846849203109741,0.412765473127365,0.0501849614083767,0.909453809261322,0.410787791013718,-0.183054894208908,0.893165409564972,0.399745792150497,-0.205610260367393,0.89326810836792,-0.282788634300232,0.0482151843607426,-0.957969665527344,-0.0568397603929043,0.0603822991251946,-0.996555745601654,
- -0.0438134893774986,-0.24059097468853,-0.969637215137482,-0.262760072946548,-0.263634502887726,-0.928145527839661,-0.224552884697914,0.298050045967102,-0.927761912345886,-0.0143252238631248,0.139563784003258,-0.99010956287384,-0.051070686429739,0.0624754801392555,-0.996739029884338,-0.282349288463593,-0.12576162815094,-0.951032638549805,-0.269739478826523,0.0544511005282402,-0.961392641067505,-0.0935497209429741,-0.393609136343002,-0.91450560092926,-0.0528748258948326,0.32791194319725,-0.943227410316467,-0.279930710792542,0.148686200380325,-0.948436200618744,-0.269739478826523,0.0544511005282402,-0.961392641067505,-0.347504615783691,-0.0640167072415352,-0.935490489006042,-0.471620857715607,-0.349183022975922,-0.809719085693359,-0.0935497209429741,-0.393609136343002,-0.91450560092926,0.352529227733612,0.0151216834783554,0.935678660869598,0.338586747646332,0.00167134334333241,0.940933763980865,0.361068308353424,0.000708289386238903,0.932539045810699,0.358995944261551,0.0431119203567505,0.932342946529388,0.733228862285614,-0.428670704364777,-0.527841746807098,0.77153080701828,0.297498375177383,-0.562347710132599,0.882189393043518,0.38903620839119,-0.26531657576561,0.926909804344177,-0.249559879302979,-0.280282109975815,0.926909804344177,-0.249559879302979,-0.280282109975815,0.882189393043518,0.38903620839119,-0.26531657576561,0.461292564868927,-0.127605929970741,0.878023862838745,0.443690240383148,0.320388317108154,0.836953043937683,-0.0339099615812302,-0.00898849871009588,-0.999384522438049,-0.279863923788071,-0.0787330642342567,-0.956805765628815,-0.413095563650131,-0.00532443122938275,-0.910672247409821,0.8271404504776,0.0412025824189186,-0.560482919216156,-0.014466661028564,-0.134660020470619,-0.990786254405975,-0.0339099615812302,-0.00898849871009588,-0.999384522438049,0.77153080701828,0.297498375177383,-0.562347710132599,0.733228862285614,-0.428670704364777,-0.527841746807098,-0.0311546567827463,-0.181519210338593,-0.982893764972687,-0.0361899323761463,-0.00860921759158373,-0.999307930469513,-0.271471500396729,-0.07640590518713,-0.959408938884735,
- -0.279509335756302,-0.158487409353256,-0.946972250938416,0.362273186445236,0.207724839448929,-0.908630132675171,0.793518722057343,0.0804955884814262,-0.603198707103729,0.992345929145813,-0.0552595593035221,-0.110435582697392,0.998838245868683,-0.000770479324273765,-0.0481823086738586,0.992345929145813,-0.0552595593035221,-0.110435582697392,0.941828608512878,-0.164054960012436,-0.293334305286407,0.36509770154953,0.368907868862152,0.854757726192474,0.749778032302856,-0.323598653078079,-0.577162802219391,0.793518722057343,0.0804955884814262,-0.603198707103729,-0.0361899323761463,-0.00860921759158373,-0.999307930469513,-0.0311546567827463,-0.181519210338593,-0.982893764972687,0.461292564868927,-0.127605929970741,0.878023862838745,0.781100869178772,0.021149780601263,0.624046623706818,0.418057203292847,-0.000777445733547211,0.908420443534851,0.396847665309906,-0.0923426523804665,0.913227677345276,0.952298521995544,0.0333478935062885,-0.303340703248978,0.941828608512878,-0.164054960012436,-0.293334305286407,0.793518722057343,0.0804955884814262,-0.603198707103729,0.749778032302856,-0.323598653078079,-0.577162802219391,0.385208666324615,-0.127912253141403,0.913921654224396,0.389067888259888,0.0514914579689503,0.919768989086151,0.941828608512878,-0.164054960012436,-0.293334305286407,0.952298521995544,0.0333478935062885,-0.303340703248978,0.733228862285614,-0.428670704364777,-0.527841746807098,0.926909804344177,-0.249559879302979,-0.280282109975815,0.319530695676804,-0.749455571174622,-0.579841792583466,0.793518722057343,0.0804955884814262,-0.603198707103729,0.362273186445236,0.207724839448929,-0.908630132675171,-0.151019752025604,0.0622504651546478,-0.986568748950958,-0.0361899323761463,-0.00860921759158373,-0.999307930469513,0.749778032302856,-0.323598653078079,-0.577162802219391,0.364239424467087,-0.510076999664307,-0.779199004173279,0.319530695676804,-0.749455571174622,-0.579841792583466,0.952298521995544,0.0333478935062885,-0.303340703248978,0.272551029920578,-0.19135394692421,0.942920804023743,0.952298521995544,0.0333478935062885,-0.303340703248978,
- 0.319530695676804,-0.749455571174622,-0.579841792583466,0.36509770154953,0.368907868862152,0.854757726192474,0.941828608512878,-0.164054960012436,-0.293334305286407,0.389067888259888,0.0514914579689503,0.919768989086151,0.793518722057343,0.0804955884814262,-0.603198707103729,0.941828608512878,-0.164054960012436,-0.293334305286407,0.992345929145813,-0.0552595593035221,-0.110435582697392,0.319530695676804,-0.749455571174622,-0.579841792583466,0.926909804344177,-0.249559879302979,-0.280282109975815,0.443690240383148,0.320388317108154,0.836953043937683,0.319530695676804,-0.749455571174622,-0.579841792583466,0.364239424467087,-0.510076999664307,-0.779199004173279,0.733228862285614,-0.428670704364777,-0.527841746807098,-0.0361899323761463,-0.00860921759158373,-0.999307930469513,-0.151019752025604,0.0622504651546478,-0.986568748950958,-0.239158689975739,-0.0269191674888134,-0.970607280731201,-0.271471500396729,-0.07640590518713,-0.959408938884735,0.77153080701828,0.297498375177383,-0.562347710132599,0.8271404504776,0.0412025824189186,-0.560482919216156,0.990859746932983,0.122180722653866,0.057174913585186,0.781100869178772,0.021149780601263,0.624046623706818,0.461292564868927,-0.127605929970741,0.878023862838745,0.882189393043518,0.38903620839119,-0.26531657576561,0.992345929145813,-0.0552595593035221,-0.110435582697392,0.36509770154953,0.368907868862152,0.854757726192474,0.487241595983505,0.00985583662986755,0.873211622238159,0.998838245868683,-0.000770479324273765,-0.0481823086738586,0.272551029920578,-0.19135394692421,0.942920804023743,0.613157510757446,0.335371971130371,0.715236723423004,0.37954106926918,-0.230123177170753,0.8960981965065,0.385208666324615,-0.127912253141403,0.913921654224396,0.443690240383148,0.320388317108154,0.836953043937683,0.461292564868927,-0.127605929970741,0.878023862838745,0.396847665309906,-0.0923426523804665,0.913227677345276,0.399716734886169,0.140239477157593,0.905847311019897,0.358995944261551,0.0431119203567505,0.932342946529388,0.327981114387512,0.176540151238441,0.928041994571686,0.352529227733612,0.0151216834783554,0.935678660869598,
- 0.781100869178772,0.021149780601263,0.624046623706818,0.882189393043518,0.38903620839119,-0.26531657576561,0.77153080701828,0.297498375177383,-0.562347710132599,0.990859746932983,0.122180722653866,0.057174913585186,-0.279863923788071,-0.0787330642342567,-0.956805765628815,-0.0339099615812302,-0.00898849871009588,-0.999384522438049,-0.014466661028564,-0.134660020470619,-0.990786254405975,-0.282019108533859,0.108539298176765,-0.953249394893646,-0.301193326711655,-0.0367957167327404,-0.9528529047966,-0.0311546567827463,-0.181519210338593,-0.982893764972687,-0.279509335756302,-0.158487409353256,-0.946972250938416,0.319530695676804,-0.749455571174622,-0.579841792583466,0.443690240383148,0.320388317108154,0.836953043937683,0.272551029920578,-0.19135394692421,0.942920804023743,0.613157510757446,0.335371971130371,0.715236723423004,0.272551029920578,-0.19135394692421,0.942920804023743,0.443690240383148,0.320388317108154,0.836953043937683,0.399716734886169,0.140239477157593,0.905847311019897,-0.0311546567827463,-0.181519210338593,-0.982893764972687,-0.301193326711655,-0.0367957167327404,-0.9528529047966,0.0417605713009834,-0.0884972289204597,-0.995200634002686,0.364239424467087,-0.510076999664307,-0.779199004173279,0.749778032302856,-0.323598653078079,-0.577162802219391,-0.0311546567827463,-0.181519210338593,-0.982893764972687,0.0417605713009834,-0.0884972289204597,-0.995200634002686,-0.301193326711655,-0.0367957167327404,-0.9528529047966,-0.014466661028564,-0.134660020470619,-0.990786254405975,0.0417605713009834,-0.0884972289204597,-0.995200634002686,0.733228862285614,-0.428670704364777,-0.527841746807098,0.364239424467087,-0.510076999664307,-0.779199004173279,0.0417605713009834,-0.0884972289204597,-0.995200634002686,-0.014466661028564,-0.134660020470619,-0.990786254405975,-0.014466661028564,-0.134660020470619,-0.990786254405975,-0.301193326711655,-0.0367957167327404,-0.9528529047966,-0.282019108533859,0.108539298176765,-0.953249394893646,0.559290826320648,0.259019911289215,0.787465929985046,-0.282308876514435,0.658361673355103,-0.697754800319672,
- -0.215684816241264,-0.976011157035828,0.0297056138515472,0.77153080701828,0.297498375177383,-0.562347710132599,-0.0339099615812302,-0.00898849871009588,-0.999384522438049,0.8271404504776,0.0412025824189186,-0.560482919216156,0.364165008068085,-0.0156590342521667,0.931202828884125,0.487241595983505,0.00985583662986755,0.873211622238159,0.36509770154953,0.368907868862152,0.854757726192474,0.392476677894592,0.0811999589204788,0.916170656681061,0.392476677894592,0.0811999589204788,0.916170656681061,0.36509770154953,0.368907868862152,0.854757726192474,0.389067888259888,0.0514914579689503,0.919768989086151,0.385208666324615,-0.127912253141403,0.913921654224396,0.37954106926918,-0.230123177170753,0.8960981965065,-0.766336143016815,-0.289454787969589,-0.573537230491638,-0.611837089061737,0.61738109588623,-0.494465410709381,-0.912323772907257,0.263927280902863,-0.313062101602554,-0.936729490756989,0.152226582169533,-0.315222054719925,0.334226548671722,-0.00160842575132847,-0.942491471767426,0.395959854125977,-0.00603633606806397,-0.918248057365417,0.401764869689941,-0.0264155697077513,-0.915361881256104,0.346736073493958,-0.0189254097640514,-0.937771797180176,0.379818618297577,-0.000973419402725995,-0.925060570240021,0.0205160062760115,0.452583760023117,-0.891485810279846,0.0514058992266655,-0.0626708567142487,-0.996709525585175,-0.778025984764099,-0.383634120225906,-0.497494220733643,-0.673073470592499,0.62298709154129,-0.398571461439133,-0.766336143016815,-0.289454787969589,-0.573537230491638,-0.605927348136902,-0.553631544113159,-0.571265399456024,0.0473362952470779,-0.259641230106354,-0.964544355869293,0.0323718227446079,-0.32496589422226,-0.945171594619751,-0.432416528463364,-0.270445555448532,0.860159933567047,-0.454890519380569,0.199824184179306,0.867839217185974,-0.399109899997711,0.0110739544034004,0.916836261749268,-0.413519978523254,-0.214567631483078,0.884851455688477,-0.747578859329224,0.175712123513222,-0.640508532524109,-0.912323772907257,0.263927280902863,-0.313062101602554,-0.611837089061737,0.61738109588623,-0.494465410709381,
- -0.673073470592499,0.62298709154129,-0.398571461439133,-0.778025984764099,-0.383634120225906,-0.497494220733643,-0.761808812618256,-0.614494919776917,-0.205045104026794,-0.852044284343719,0.476323425769806,-0.217109903693199,-0.700587689876556,-0.492740452289581,-0.51612389087677,-0.691136300563812,0.00173010118305683,-0.722722411155701,-0.0469567738473415,0.00898054987192154,-0.998856604099274,0.0595997758209705,0.0764919444918633,-0.995287299156189,-0.845107436180115,0.345872849225998,0.407633990049362,-0.944525122642517,-0.132769078016281,-0.300407648086548,-0.811829030513763,0.0377865582704544,-0.582671344280243,-0.913409054279327,-0.0102151446044445,0.406914830207825,-0.951354384422302,-0.00773671362549067,-0.308001667261124,-0.405079752206802,-0.2979476749897,0.864371299743652,0.270223885774612,-0.449095338582993,-0.851641058921814,0.0323718227446079,-0.32496589422226,-0.945171594619751,0.0473362952470779,-0.259641230106354,-0.964544355869293,-0.393419027328491,-0.069380946457386,0.916737616062164,-0.367434352636337,0.213386207818985,0.905239462852478,-0.313296973705292,-0.0487869381904602,0.948401212692261,-0.593479454517365,0.479687541723251,-0.646283209323883,0.626658260822296,-0.612774729728699,0.481462925672531,0.0317080616950989,-0.834449052810669,-0.550172090530396,-0.8544060587883,-0.11181578785181,-0.507432460784912,-0.411052137613297,0.238579660654068,0.879838585853577,-0.944525122642517,-0.132769078016281,-0.300407648086548,-0.230040460824966,0.114519163966179,0.966419577598572,-0.951354384422302,-0.00773671362549067,-0.308001667261124,-0.944525122642517,-0.132769078016281,-0.300407648086548,-0.411052137613297,0.238579660654068,0.879838585853577,-0.405079752206802,-0.2979476749897,0.864371299743652,-0.344332337379456,0.449835181236267,0.824065268039703,-0.747578859329224,0.175712123513222,-0.640508532524109,-0.504010200500488,0.265204191207886,0.821973502635956,0.270223885774612,-0.449095338582993,-0.851641058921814,0.0473362952470779,-0.259641230106354,-0.964544355869293,0.299693942070007,-0.0680858194828033,-0.951602816581726,
- -0.936729490756989,0.152226582169533,-0.315222054719925,-0.954796314239502,-0.2143674492836,-0.205938652157784,-0.605927348136902,-0.553631544113159,-0.571265399456024,-0.766336143016815,-0.289454787969589,-0.573537230491638,-0.852044284343719,0.476323425769806,-0.217109903693199,-0.761808812618256,-0.614494919776917,-0.205045104026794,-0.454890519380569,0.199824184179306,0.867839217185974,-0.432416528463364,-0.270445555448532,0.860159933567047,-0.605927348136902,-0.553631544113159,-0.571265399456024,-0.954796314239502,-0.2143674492836,-0.205938652157784,-0.761808812618256,-0.614494919776917,-0.205045104026794,-0.778025984764099,-0.383634120225906,-0.497494220733643,-0.845107436180115,0.345872849225998,0.407633990049362,-0.852044284343719,0.476323425769806,-0.217109903693199,-0.230040460824966,0.114519163966179,0.966419577598572,-0.700587689876556,-0.492740452289581,-0.51612389087677,-0.951354384422302,-0.00773671362549067,-0.308001667261124,-0.913409054279327,-0.0102151446044445,0.406914830207825,-0.691136300563812,0.00173010118305683,-0.722722411155701,-0.936729490756989,0.152226582169533,-0.315222054719925,-0.912323772907257,0.263927280902863,-0.313062101602554,-0.344332337379456,0.449835181236267,0.824065268039703,-0.393419027328491,-0.069380946457386,0.916737616062164,-0.954796314239502,-0.2143674492836,-0.205938652157784,-0.936729490756989,0.152226582169533,-0.315222054719925,-0.393419027328491,-0.069380946457386,0.916737616062164,-0.411052137613297,0.238579660654068,0.879838585853577,-0.230040460824966,0.114519163966179,0.966419577598572,-0.318985790014267,0.041832622140646,0.946835875511169,-0.387606620788574,0.216306671500206,0.896087467670441,-0.761808812618256,-0.614494919776917,-0.205045104026794,-0.954796314239502,-0.2143674492836,-0.205938652157784,-0.454890519380569,0.199824184179306,0.867839217185974,0.0595997758209705,0.0764919444918633,-0.995287299156189,0.0405173040926456,-0.202727302908897,-0.978396713733673,-0.811829030513763,0.0377865582704544,-0.582671344280243,-0.700587689876556,-0.492740452289581,-0.51612389087677,
- -0.405079752206802,-0.2979476749897,0.864371299743652,-0.411052137613297,0.238579660654068,0.879838585853577,-0.387606620788574,0.216306671500206,0.896087467670441,-0.389525353908539,-0.149424597620964,0.908813774585724,-0.0901319533586502,0.340871512889862,-0.935779333114624,-0.747578859329224,0.175712123513222,-0.640508532524109,-0.611837089061737,0.61738109588623,-0.494465410709381,0.375323563814163,0.0868647694587708,-0.922814667224884,-0.0901319533586502,0.340871512889862,-0.935779333114624,-0.611837089061737,0.61738109588623,-0.494465410709381,0.0768993049860001,0.394535720348358,-0.915657222270966,-0.344332337379456,0.449835181236267,0.824065268039703,-0.912323772907257,0.263927280902863,-0.313062101602554,-0.747578859329224,0.175712123513222,-0.640508532524109,0.0323718227446079,-0.32496589422226,-0.945171594619751,0.0768993049860001,0.394535720348358,-0.915657222270966,-0.611837089061737,0.61738109588623,-0.494465410709381,-0.766336143016815,-0.289454787969589,-0.573537230491638,0.0473362952470779,-0.259641230106354,-0.964544355869293,-0.605927348136902,-0.553631544113159,-0.571265399456024,-0.778025984764099,-0.383634120225906,-0.497494220733643,0.0514058992266655,-0.0626708567142487,-0.996709525585175,-0.954796314239502,-0.2143674492836,-0.205938652157784,-0.393419027328491,-0.069380946457386,0.916737616062164,-0.593479454517365,0.479687541723251,-0.646283209323883,0.447868525981903,-0.12559886276722,-0.885233819484711,0.47850900888443,0.755083501338959,-0.448194324970245,0.469622194766998,-0.0482692420482636,-0.881546974182129,0.241918638348579,0.268846660852432,-0.932307302951813,0.0405173040926456,-0.202727302908897,-0.978396713733673,0.227552682161331,-0.108206942677498,-0.967735052108765,0.0205160062760115,0.452583760023117,-0.891485810279846,0.241918638348579,0.268846660852432,-0.932307302951813,0.227552682161331,-0.108206942677498,-0.967735052108765,0.267359703779221,0.299783706665039,-0.915777564048767,-0.673073470592499,0.62298709154129,-0.398571461439133,-0.691532671451569,0.713051617145538,-0.115498706698418,
- 0.241918638348579,0.268846660852432,-0.932307302951813,0.0205160062760115,0.452583760023117,-0.891485810279846,-0.691532671451569,0.713051617145538,-0.115498706698418,-0.811829030513763,0.0377865582704544,-0.582671344280243,0.0405173040926456,-0.202727302908897,-0.978396713733673,0.241918638348579,0.268846660852432,-0.932307302951813,-0.700587689876556,-0.492740452289581,-0.51612389087677,-0.811829030513763,0.0377865582704544,-0.582671344280243,-0.944525122642517,-0.132769078016281,-0.300407648086548,-0.951354384422302,-0.00773671362549067,-0.308001667261124,-0.691532671451569,0.713051617145538,-0.115498706698418,-0.673073470592499,0.62298709154129,-0.398571461439133,-0.852044284343719,0.476323425769806,-0.217109903693199,-0.845107436180115,0.345872849225998,0.407633990049362,0.786545395851135,0.569745421409607,0.238194391131401,-0.8544060587883,-0.11181578785181,-0.507432460784912,-0.813727855682373,-0.535120904445648,-0.226920068264008,-0.852044284343719,0.476323425769806,-0.217109903693199,-0.432416528463364,-0.270445555448532,0.860159933567047,-0.230040460824966,0.114519163966179,0.966419577598572,-0.393419027328491,-0.069380946457386,0.916737616062164,-0.344332337379456,0.449835181236267,0.824065268039703,-0.387501358985901,-0.0137714352458715,0.921766340732574,-0.367434352636337,0.213386207818985,0.905239462852478,-0.387501358985901,-0.0137714352458715,0.921766340732574,-0.344332337379456,0.449835181236267,0.824065268039703,-0.504010200500488,0.265204191207886,0.821973502635956,-0.373217642307281,-0.0239726603031158,0.927434027194977,-0.398965269327164,0.000464530719909817,0.916965961456299,-0.913409054279327,-0.0102151446044445,0.406914830207825,-0.405079752206802,-0.2979476749897,0.864371299743652,-0.389525353908539,-0.149424597620964,0.908813774585724,-0.399109899997711,0.0110739544034004,0.916836261749268,-0.454890519380569,0.199824184179306,0.867839217185974,-0.593479454517365,0.479687541723251,-0.646283209323883,-0.385884672403336,-0.00127451121807098,0.922546148300171,0.273517668247223,0.0792937651276588,-0.95859307050705,
- 0.0595997758209705,0.0764919444918633,-0.995287299156189,-0.0469567738473415,0.00898054987192154,-0.998856604099274,0.519128084182739,-0.00762198818847537,-0.854662537574768,0.283678650856018,0.126021489500999,-0.950602531433105,0.0514058992266655,-0.0626708567142487,-0.996709525585175,0.0205160062760115,0.452583760023117,-0.891485810279846,0.267359703779221,0.299783706665039,-0.915777564048767,-0.386659860610962,0.00301338732242584,0.922217547893524,-0.230040460824966,0.114519163966179,0.966419577598572,-0.432416528463364,-0.270445555448532,0.860159933567047,-0.413519978523254,-0.214567631483078,0.884851455688477,0.227552682161331,-0.108206942677498,-0.967735052108765,0.0405173040926456,-0.202727302908897,-0.978396713733673,0.278103649616241,0.0390162095427513,-0.959758341312408,0.278103649616241,0.0390162095427513,-0.959758341312408,0.0405173040926456,-0.202727302908897,-0.978396713733673,0.0595997758209705,0.0764919444918633,-0.995287299156189,0.273517668247223,0.0792937651276588,-0.95859307050705,0.299693942070007,-0.0680858194828033,-0.951602816581726,0.0473362952470779,-0.259641230106354,-0.964544355869293,0.0514058992266655,-0.0626708567142487,-0.996709525585175,0.283678650856018,0.126021489500999,-0.950602531433105,0.269316613674164,-0.0555208958685398,-0.961449980735779,0.0768993049860001,0.394535720348358,-0.915657222270966,0.0323718227446079,-0.32496589422226,-0.945171594619751,0.270223885774612,-0.449095338582993,-0.851641058921814,0.269316613674164,-0.0555208958685398,-0.961449980735779,0.342399775981903,0.0383511893451214,-0.938771426677704,0.375323563814163,0.0868647694587708,-0.922814667224884,0.0768993049860001,0.394535720348358,-0.915657222270966,-0.353132635354996,-0.0151076503098011,0.935451328754425,-0.339187771081924,-0.00167307537049055,0.940717220306396,-0.361667841672897,-0.000710021704435349,0.93230676651001,-0.359598964452744,-0.0431080535054207,0.932110726833344,-0.203519776463509,0.141724184155464,-0.968759059906006,0.574114441871643,-0.170289665460587,-0.800870776176453,0.213928699493408,0.411107420921326,-0.886129379272461,
- 0.00108654808718711,0.529694557189941,-0.848187863826752,-0.737681329250336,0.451207220554352,-0.502233326435089,-0.741278290748596,-0.394185334444046,-0.543253600597382,-0.908486664295197,-0.282322496175766,-0.308133244514465,-0.840849459171295,0.45941036939621,-0.286206960678101,0.335491389036179,-0.00161822303198278,-0.942041993141174,0.388969779014587,-0.00633815955370665,-0.921228766441345,0.394795596599579,-0.0255140587687492,-0.918414652347565,0.348136603832245,-0.0111505268141627,-0.937377512454987,0.37552684545517,-0.00107702240347862,-0.92681097984314,0.0348739698529243,0.13706386089325,-0.989948213100433,0.0502756349742413,-0.0300398655235767,-0.998283565044403,-0.815725386142731,0.00258884206414223,-0.578433692455292,-0.787413597106934,0.31055074930191,-0.532483100891113,-0.739037990570068,0.423317819833755,-0.524046659469604,-0.774529874324799,-0.296215951442719,-0.558891415596008,-0.881979823112488,-0.391115754842758,-0.262945115566254,-0.929206907749176,0.242626875638962,-0.27875941991806,-0.737681329250336,0.451207220554352,-0.502233326435089,-0.314297676086426,0.36000058054924,-0.878417134284973,-0.0957324877381325,-0.0312639884650707,-0.994916081428528,0.0272775869816542,-0.162061735987663,-0.986403584480286,-0.929206907749176,0.242626875638962,-0.27875941991806,-0.881979823112488,-0.391115754842758,-0.262945115566254,-0.4643834233284,0.114941343665123,0.878143787384033,-0.446411669254303,-0.326053410768509,0.833310186862946,-0.412907242774963,0.054688885807991,0.909129738807678,-0.42147770524025,0.252309769392014,0.871031880378723,-0.393324226140976,0.0323844999074936,0.918829321861267,-0.390665173530579,0.0185785125941038,0.920345425605774,0.0379530973732471,0.00918149761855602,-0.999237358570099,0.280348896980286,0.0767525658011436,-0.956824779510498,0.414833575487137,0.00538451829925179,-0.909881472587585,-0.826242983341217,-0.0411909930408001,-0.56180602312088,0.0110884597525001,0.135695666074753,-0.990688562393188,0.0379530973732471,0.00918149761855602,-0.999237358570099,-0.774529874324799,-0.296215951442719,-0.558891415596008,
- -0.739037990570068,0.423317819833755,-0.524046659469604,-0.394518435001373,-0.462056756019592,0.794266223907471,-0.441323459148407,0.191755592823029,0.876620471477509,-0.430046051740646,0.257479786872864,0.865311801433563,-0.398073077201843,0.138005629181862,0.906913697719574,-0.387476086616516,0.0528370812535286,0.920364439487457,-0.452353775501251,-0.636308312416077,-0.624890327453613,-0.908486664295197,-0.282322496175766,-0.308133244514465,-0.741278290748596,-0.394185334444046,-0.543253600597382,-0.900279581546783,0.36623015999794,-0.235313013195992,-0.787413597106934,0.31055074930191,-0.532483100891113,-0.815725386142731,0.00258884206414223,-0.578433692455292,-0.938743591308594,0.173266157507896,-0.297891676425934,0.0320441462099552,0.182022333145142,-0.98277223110199,0.037264496088028,0.00977934431284666,-0.999257683753967,0.271786332130432,0.0761560499668121,-0.959339618682861,0.280861139297485,0.158325970172882,-0.946599125862122,0.00108654808718711,0.529694557189941,-0.848187863826752,0.05057567730546,-0.112586341798306,-0.992354035377502,-0.764496266841888,-0.13377757370472,-0.630594313144684,-0.784533739089966,-0.0320754051208496,-0.61925607919693,-0.784533739089966,-0.0320754051208496,-0.61925607919693,-0.764496266841888,-0.13377757370472,-0.630594313144684,-0.960707068443298,-0.0434979386627674,-0.274134933948517,-0.917391121387482,-0.236125960946083,-0.320371747016907,-0.382334530353546,-0.420954585075378,-0.822567582130432,-0.792773723602295,-0.0790055021643639,-0.604374170303345,-0.99227499961853,0.0552159212529659,-0.111093416810036,-0.981482446193695,0.132610380649567,0.138227701187134,-0.960707068443298,-0.0434979386627674,-0.274134933948517,-0.764496266841888,-0.13377757370472,-0.630594313144684,-0.987301528453827,-0.116819433867931,-0.107652492821217,-0.683722019195557,-0.532612144947052,-0.498847305774689,-0.417724102735519,-0.00818733405321836,-0.908537030220032,0.132702454924583,0.00180654646828771,-0.991154253482819,0.0478590838611126,-0.097156897187233,-0.994117736816406,-0.688836395740509,0.579343557357788,0.435735702514648,
- -0.948220372200012,-0.0989415794610977,-0.301809281110764,-0.781932234764099,0.256046235561371,-0.568350672721863,-0.987301528453827,-0.116819433867931,-0.107652492821217,-0.71539294719696,0.348686784505844,0.605500161647797,-0.430046051740646,0.257479786872864,0.865311801433563,-0.99227499961853,0.0552159212529659,-0.111093416810036,-0.941997170448303,0.164179489016533,-0.292722672224045,-0.368091434240341,-0.368503093719482,0.853647649288177,-0.74810791015625,0.321205019950867,-0.580656409263611,-0.792773723602295,-0.0790055021643639,-0.604374170303345,0.037264496088028,0.00977934431284666,-0.999257683753967,0.0320441462099552,0.182022333145142,-0.98277223110199,-0.564971148967743,-0.0284453574568033,-0.824620306491852,-0.907861590385437,-0.287323206663132,-0.305340379476547,-0.41317293047905,-0.123603470623493,0.902225255966187,-0.4643834233284,0.114941343665123,0.878143787384033,-0.781570017337799,-0.0211387984454632,0.623459339141846,-0.418733239173889,0.000778442365117371,0.908109068870544,-0.398753017187119,0.0824907571077347,0.91334068775177,-0.952111184597015,-0.0329428911209106,-0.303972184658051,-0.941997170448303,0.164179489016533,-0.292722672224045,-0.792773723602295,-0.0790055021643639,-0.604374170303345,-0.74810791015625,0.321205019950867,-0.580656409263611,-0.385605841875076,0.125734969973564,0.914056301116943,-0.389916718006134,-0.0520928204059601,0.919375479221344,-0.941997170448303,0.164179489016533,-0.292722672224045,-0.952111184597015,-0.0329428911209106,-0.303972184658051,-0.739037990570068,0.423317819833755,-0.524046659469604,-0.929206907749176,0.242626875638962,-0.27875941991806,-0.319009631872177,0.749499142169952,-0.580072402954102,0.286133706569672,-0.0748342722654343,-0.955263018608093,0.0272775869816542,-0.162061735987663,-0.986403584480286,-0.0957324877381325,-0.0312639884650707,-0.994916081428528,-0.792773723602295,-0.0790055021643639,-0.604374170303345,-0.382334530353546,-0.420954585075378,-0.822567582130432,0.0411978326737881,-0.0101499287411571,-0.999099433422089,0.037264496088028,0.00977934431284666,-0.999257683753967,
- -0.406510353088379,-0.0806093513965607,0.91008335351944,-0.374369591474533,0.176671460270882,0.910293817520142,-0.408632934093475,-0.0276103317737579,0.912281155586243,-0.333001852035522,0.117866821587086,0.935530424118042,-0.74810791015625,0.321205019950867,-0.580656409263611,-0.363833487033844,0.510062217712402,-0.779398441314697,-0.319009631872177,0.749499142169952,-0.580072402954102,-0.952111184597015,-0.0329428911209106,-0.303972184658051,-0.272814333438873,0.191768318414688,0.942760467529297,-0.952111184597015,-0.0329428911209106,-0.303972184658051,-0.319009631872177,0.749499142169952,-0.580072402954102,-0.784533739089966,-0.0320754051208496,-0.61925607919693,-0.650858163833618,-0.0459029525518417,-0.757810413837433,-0.203519776463509,0.141724184155464,-0.968759059906006,0.00108654808718711,0.529694557189941,-0.848187863826752,-0.203519776463509,0.141724184155464,-0.968759059906006,0.00831511802971363,0.0446365848183632,-0.998968720436096,0.156346723437309,-0.28190079331398,-0.946619153022766,-0.775237739086151,0.459466248750687,-0.433471173048019,-0.368091434240341,-0.368503093719482,0.853647649288177,-0.941997170448303,0.164179489016533,-0.292722672224045,-0.389916718006134,-0.0520928204059601,0.919375479221344,-0.781932234764099,0.256046235561371,-0.568350672721863,-0.782091856002808,0.415801048278809,-0.464157164096832,-0.688836395740509,0.579343557357788,0.435735702514648,-0.792773723602295,-0.0790055021643639,-0.604374170303345,-0.941997170448303,0.164179489016533,-0.292722672224045,-0.99227499961853,0.0552159212529659,-0.111093416810036,-0.416596382856369,0.0643120408058167,0.906813979148865,-0.948220372200012,-0.0989415794610977,-0.301809281110764,-0.401282668113709,0.00958622992038727,0.91590416431427,-0.41317293047905,-0.123603470623493,0.902225255966187,-0.907861590385437,-0.287323206663132,-0.305340379476547,-0.948220372200012,-0.0989415794610977,-0.301809281110764,-0.416596382856369,0.0643120408058167,0.906813979148865,-0.319009631872177,0.749499142169952,-0.580072402954102,-0.929206907749176,0.242626875638962,-0.27875941991806,
- -0.446411669254303,-0.326053410768509,0.833310186862946,-0.374049752950668,0.448652029037476,0.811663866043091,-0.452353775501251,-0.636308312416077,-0.624890327453613,-0.297077476978302,-0.142829060554504,0.944110631942749,0.286133706569672,-0.0748342722654343,-0.955263018608093,-0.0957324877381325,-0.0312639884650707,-0.994916081428528,0.384988605976105,0.0690702721476555,-0.92033314704895,-0.319009631872177,0.749499142169952,-0.580072402954102,-0.363833487033844,0.510062217712402,-0.779398441314697,-0.739037990570068,0.423317819833755,-0.524046659469604,-0.840849459171295,0.45941036939621,-0.286206960678101,-0.735000908374786,0.583535313606262,-0.345340877771378,-0.314297676086426,0.36000058054924,-0.878417134284973,-0.737681329250336,0.451207220554352,-0.502233326435089,0.037264496088028,0.00977934431284666,-0.999257683753967,0.0411978326737881,-0.0101499287411571,-0.999099433422089,0.233686417341232,0.0844157710671425,-0.968640685081482,0.271786332130432,0.0761560499668121,-0.959339618682861,-0.412907242774963,0.054688885807991,0.909129738807678,-0.900279581546783,0.36623015999794,-0.235313013195992,-0.938743591308594,0.173266157507896,-0.297891676425934,-0.42147770524025,0.252309769392014,0.871031880378723,-0.314297676086426,0.36000058054924,-0.878417134284973,-0.735000908374786,0.583535313606262,-0.345340877771378,-0.938743591308594,0.173266157507896,-0.297891676425934,-0.815725386142731,0.00258884206414223,-0.578433692455292,-0.382334530353546,-0.420954585075378,-0.822567582130432,-0.987301528453827,-0.116819433867931,-0.107652492821217,-0.764496266841888,-0.13377757370472,-0.630594313144684,-0.688836395740509,0.579343557357788,0.435735702514648,-0.900279581546783,0.36623015999794,-0.235313013195992,-0.401282668113709,0.00958622992038727,0.91590416431427,-0.774529874324799,-0.296215951442719,-0.558891415596008,-0.826242983341217,-0.0411909930408001,-0.56180602312088,-0.990936398506165,-0.122147724032402,0.0559029616415501,-0.784533739089966,-0.0320754051208496,-0.61925607919693,-0.917391121387482,-0.236125960946083,-0.320371747016907,
- -0.452353775501251,-0.636308312416077,-0.624890327453613,-0.650858163833618,-0.0459029525518417,-0.757810413837433,-0.781570017337799,-0.0211387984454632,0.623459339141846,-0.4643834233284,0.114941343665123,0.878143787384033,-0.881979823112488,-0.391115754842758,-0.262945115566254,-0.683722019195557,-0.532612144947052,-0.498847305774689,-0.907861590385437,-0.287323206663132,-0.305340379476547,-0.564971148967743,-0.0284453574568033,-0.824620306491852,-0.417724102735519,-0.00818733405321836,-0.908537030220032,-0.840849459171295,0.45941036939621,-0.286206960678101,-0.908486664295197,-0.282322496175766,-0.308133244514465,-0.374049752950668,0.448652029037476,0.811663866043091,-0.406510353088379,-0.0806093513965607,0.91008335351944,-0.735000908374786,0.583535313606262,-0.345340877771378,-0.840849459171295,0.45941036939621,-0.286206960678101,-0.406510353088379,-0.0806093513965607,0.91008335351944,-0.416596382856369,0.0643120408058167,0.906813979148865,-0.401282668113709,0.00958622992038727,0.91590416431427,-0.503420054912567,-0.150620058178902,0.850812435150146,-0.389470309019089,0.046485610306263,0.919865250587463,-0.938743591308594,0.173266157507896,-0.297891676425934,-0.735000908374786,0.583535313606262,-0.345340877771378,-0.42147770524025,0.252309769392014,0.871031880378723,-0.781932234764099,0.256046235561371,-0.568350672721863,-0.683722019195557,-0.532612144947052,-0.498847305774689,0.0478590838611126,-0.097156897187233,-0.994117736816406,0.0411635972559452,0.173449367284775,-0.98398220539093,-0.416596382856369,0.0643120408058167,0.906813979148865,-0.389470309019089,0.046485610306263,0.919865250587463,-0.387340366840363,-0.0577321350574493,0.92012745141983,-0.41317293047905,-0.123603470623493,0.902225255966187,-0.452353775501251,-0.636308312416077,-0.624890327453613,-0.917391121387482,-0.236125960946083,-0.320371747016907,-0.394518435001373,-0.462056756019592,0.794266223907471,-0.297077476978302,-0.142829060554504,0.944110631942749,-0.917391121387482,-0.236125960946083,-0.320371747016907,-0.960707068443298,-0.0434979386627674,-0.274134933948517,
- -0.441323459148407,0.191755592823029,0.876620471477509,-0.394518435001373,-0.462056756019592,0.794266223907471,-0.99227499961853,0.0552159212529659,-0.111093416810036,-0.368091434240341,-0.368503093719482,0.853647649288177,-0.71539294719696,0.348686784505844,0.605500161647797,-0.981482446193695,0.132610380649567,0.138227701187134,-0.272814333438873,0.191768318414688,0.942760467529297,-0.612604916095734,-0.333390235900879,0.716635286808014,-0.380243837833405,0.229653686285019,0.895920693874359,-0.385605841875076,0.125734969973564,0.914056301116943,-0.446411669254303,-0.326053410768509,0.833310186862946,-0.4643834233284,0.114941343665123,0.878143787384033,-0.398753017187119,0.0824907571077347,0.91334068775177,-0.403622061014175,-0.138176873326302,0.904431581497192,-0.359598964452744,-0.0431080535054207,0.932110726833344,-0.328570991754532,-0.176622584462166,0.927817642688751,-0.353132635354996,-0.0151076503098011,0.935451328754425,-0.781570017337799,-0.0211387984454632,0.623459339141846,-0.881979823112488,-0.391115754842758,-0.262945115566254,-0.774529874324799,-0.296215951442719,-0.558891415596008,-0.990936398506165,-0.122147724032402,0.0559029616415501,0.280348896980286,0.0767525658011436,-0.956824779510498,0.0379530973732471,0.00918149761855602,-0.999237358570099,0.0110884597525001,0.135695666074753,-0.990688562393188,0.283430248498917,-0.108193680644035,-0.95287013053894,0.301987856626511,0.0370902270078659,-0.952589988708496,0.0320441462099552,0.182022333145142,-0.98277223110199,0.280861139297485,0.158325970172882,-0.946599125862122,-0.987301528453827,-0.116819433867931,-0.107652492821217,-0.430046051740646,0.257479786872864,0.865311801433563,-0.441323459148407,0.191755592823029,0.876620471477509,-0.960707068443298,-0.0434979386627674,-0.274134933948517,-0.382334530353546,-0.420954585075378,-0.822567582130432,-0.764496266841888,-0.13377757370472,-0.630594313144684,0.05057567730546,-0.112586341798306,-0.992354035377502,0.0411978326737881,-0.0101499287411571,-0.999099433422089,-0.14209271967411,-0.344734519720078,-0.927883505821228,
- -0.273385733366013,0.802712500095367,0.530012249946594,0.491408288478851,0.80224871635437,0.338991314172745,-0.801404416561127,0.493815124034882,-0.337487429380417,-0.14209271967411,-0.344734519720078,-0.927883505821228,-0.741278290748596,-0.394185334444046,-0.543253600597382,0.00439745234325528,0.583709239959717,0.811950862407684,-0.268428891897202,-0.115889854729176,0.956303119659424,0.22577141225338,-0.630318820476532,0.742782235145569,-0.394518435001373,-0.462056756019592,0.794266223907471,0.388097912073135,0.250292092561722,-0.886980295181274,-0.374049752950668,0.448652029037476,0.811663866043091,-0.908486664295197,-0.282322496175766,-0.308133244514465,-0.452353775501251,-0.636308312416077,-0.624890327453613,0.0272775869816542,-0.162061735987663,-0.986403584480286,0.00831511802971363,0.0446365848183632,-0.998968720436096,-0.741278290748596,-0.394185334444046,-0.543253600597382,-0.737681329250336,0.451207220554352,-0.502233326435089,-0.0957324877381325,-0.0312639884650707,-0.994916081428528,-0.314297676086426,0.36000058054924,-0.878417134284973,-0.815725386142731,0.00258884206414223,-0.578433692455292,0.0502756349742413,-0.0300398655235767,-0.998283565044403,-0.298600912094116,0.822454214096069,0.484155416488647,-0.920741558074951,-0.242974206805229,-0.305284559726715,0.988647162914276,-0.0145899169147015,0.149546146392822,-0.71539294719696,0.348686784505844,0.605500161647797,-0.987301528453827,-0.116819433867931,-0.107652492821217,-0.981482446193695,0.132610380649567,0.138227701187134,0.85491544008255,-0.359335899353027,0.374162048101425,0.407742112874985,0.105548232793808,-0.906976282596588,0.30245578289032,-0.178065046668053,-0.936383247375488,0.414841592311859,-0.32549250125885,-0.849682927131653,0.85491544008255,-0.359335899353027,0.374162048101425,0.30245578289032,-0.178065046668053,-0.936383247375488,-0.319009631872177,0.749499142169952,-0.580072402954102,-0.446411669254303,-0.326053410768509,0.833310186862946,-0.272814333438873,0.191768318414688,0.942760467529297,-0.612604916095734,-0.333390235900879,0.716635286808014,
- -0.272814333438873,0.191768318414688,0.942760467529297,-0.446411669254303,-0.326053410768509,0.833310186862946,-0.403622061014175,-0.138176873326302,0.904431581497192,0.0320441462099552,0.182022333145142,-0.98277223110199,0.301987856626511,0.0370902270078659,-0.952589988708496,-0.041058711707592,0.0886084660887718,-0.995219945907593,-0.363833487033844,0.510062217712402,-0.779398441314697,-0.74810791015625,0.321205019950867,-0.580656409263611,0.0320441462099552,0.182022333145142,-0.98277223110199,-0.041058711707592,0.0886084660887718,-0.995219945907593,0.301987856626511,0.0370902270078659,-0.952589988708496,0.0110884597525001,0.135695666074753,-0.990688562393188,-0.041058711707592,0.0886084660887718,-0.995219945907593,-0.739037990570068,0.423317819833755,-0.524046659469604,-0.363833487033844,0.510062217712402,-0.779398441314697,-0.041058711707592,0.0886084660887718,-0.995219945907593,0.0110884597525001,0.135695666074753,-0.990688562393188,0.0110884597525001,0.135695666074753,-0.990688562393188,0.301987856626511,0.0370902270078659,-0.952589988708496,0.283430248498917,-0.108193680644035,-0.95287013053894,-0.559874534606934,-0.259093046188354,0.787026941776276,0.279785841703415,-0.663028240203857,-0.6943439245224,0.217674285173416,0.975665271282196,0.0263654105365276,0.00125765614211559,-0.133211627602577,-0.991086900234222,0.0411635972559452,0.173449367284775,-0.98398220539093,0.27507159113884,-0.0389801450073719,-0.960633277893066,0.0348739698529243,0.13706386089325,-0.989948213100433,0.00125765614211559,-0.133211627602577,-0.991086900234222,0.27507159113884,-0.0389801450073719,-0.960633277893066,0.27523872256279,0.0682805925607681,-0.958948075771332,-0.787413597106934,0.31055074930191,-0.532483100891113,-0.782091856002808,0.415801048278809,-0.464157164096832,0.00125765614211559,-0.133211627602577,-0.991086900234222,0.0348739698529243,0.13706386089325,-0.989948213100433,-0.782091856002808,0.415801048278809,-0.464157164096832,-0.781932234764099,0.256046235561371,-0.568350672721863,0.0411635972559452,0.173449367284775,-0.98398220539093,
- 0.00125765614211559,-0.133211627602577,-0.991086900234222,-0.948220372200012,-0.0989415794610977,-0.301809281110764,-0.907861590385437,-0.287323206663132,-0.305340379476547,-0.683722019195557,-0.532612144947052,-0.498847305774689,-0.781932234764099,0.256046235561371,-0.568350672721863,-0.782091856002808,0.415801048278809,-0.464157164096832,-0.787413597106934,0.31055074930191,-0.532483100891113,-0.900279581546783,0.36623015999794,-0.235313013195992,-0.688836395740509,0.579343557357788,0.435735702514648,0.822393000125885,0.509190380573273,0.253761440515518,-0.888057351112366,0.42134365439415,0.183911949396133,-0.437031596899033,-0.810720086097717,-0.389533698558807,-0.900279581546783,0.36623015999794,-0.235313013195992,-0.412907242774963,0.054688885807991,0.909129738807678,-0.401282668113709,0.00958622992038727,0.91590416431427,-0.774529874324799,-0.296215951442719,-0.558891415596008,0.0379530973732471,0.00918149761855602,-0.999237358570099,-0.826242983341217,-0.0411909930408001,-0.56180602312088,-0.406510353088379,-0.0806093513965607,0.91008335351944,-0.374049752950668,0.448652029037476,0.811663866043091,-0.398094713687897,0.00361935840919614,0.917337238788605,-0.374369591474533,0.176671460270882,0.910293817520142,-0.398094713687897,0.00361935840919614,0.917337238788605,-0.374049752950668,0.448652029037476,0.811663866043091,-0.297077476978302,-0.142829060554504,0.944110631942749,-0.385028630495071,-0.00649015605449677,0.922881782054901,-0.452447563409805,-0.000991052016615868,0.891790509223938,-0.564971148967743,-0.0284453574568033,-0.824620306491852,-0.41317293047905,-0.123603470623493,0.902225255966187,-0.387340366840363,-0.0577321350574493,0.92012745141983,-0.393324226140976,0.0323844999074936,0.918829321861267,-0.42147770524025,0.252309769392014,0.871031880378723,-0.333001852035522,0.117866821587086,0.935530424118042,-0.408632934093475,-0.0276103317737579,0.912281155586243,0.276923626661301,-0.0430217944085598,-0.959928333759308,0.0478590838611126,-0.097156897187233,-0.994117736816406,0.132702454924583,0.00180654646828771,-0.991154253482819,
- 0.44649949669838,-0.00507113197818398,-0.894769489765167,0.0502756349742413,-0.0300398655235767,-0.998283565044403,0.0348739698529243,0.13706386089325,-0.989948213100433,0.27523872256279,0.0682805925607681,-0.958948075771332,0.285259217023849,0.044660709798336,-0.957409381866455,0.283291131258011,-0.211620971560478,-0.935394465923309,0.286133706569672,-0.0748342722654343,-0.955263018608093,0.384988605976105,0.0690702721476555,-0.92033314704895,-0.503420054912567,-0.150620058178902,0.850812435150146,-0.401282668113709,0.00958622992038727,0.91590416431427,-0.412907242774963,0.054688885807991,0.909129738807678,-0.390665173530579,0.0185785125941038,0.920345425605774,-0.398073077201843,0.138005629181862,0.906913697719574,-0.430046051740646,0.257479786872864,0.865311801433563,-0.71539294719696,0.348686784505844,0.605500161647797,-0.609811902046204,0.260684341192245,0.748447239398956,0.574114441871643,-0.170289665460587,-0.800870776176453,0.156346723437309,-0.28190079331398,-0.946619153022766,0.285307198762894,0.0697965174913406,-0.95589143037796,0.233686417341232,0.0844157710671425,-0.968640685081482,0.0411978326737881,-0.0101499287411571,-0.999099433422089,0.05057567730546,-0.112586341798306,-0.992354035377502,0.278371930122375,-0.0516601838171482,-0.959083020687103,0.27507159113884,-0.0389801450073719,-0.960633277893066,0.0411635972559452,0.173449367284775,-0.98398220539093,0.276669800281525,0.0390368476510048,-0.960171818733215,0.276669800281525,0.0390368476510048,-0.960171818733215,0.0411635972559452,0.173449367284775,-0.98398220539093,0.0478590838611126,-0.097156897187233,-0.994117736816406,0.276923626661301,-0.0430217944085598,-0.959928333759308,-0.609811902046204,0.260684341192245,0.748447239398956,-0.71539294719696,0.348686784505844,0.605500161647797,-0.368091434240341,-0.368503093719482,0.853647649288177,-0.39357990026474,-0.0828506201505661,0.915549337863922,-0.39357990026474,-0.0828506201505661,0.915549337863922,-0.368091434240341,-0.368503093719482,0.853647649288177,-0.389916718006134,-0.0520928204059601,0.919375479221344,
- -0.385605841875076,0.125734969973564,0.914056301116943,-0.380243837833405,0.229653686285019,0.895920693874359,0.278371930122375,-0.0516601838171482,-0.959083020687103,0.05057567730546,-0.112586341798306,-0.992354035377502,0.00108654808718711,0.529694557189941,-0.848187863826752,0.213928699493408,0.411107420921326,-0.886129379272461,0.384988605976105,0.0690702721476555,-0.92033314704895,-0.0957324877381325,-0.0312639884650707,-0.994916081428528,0.0502756349742413,-0.0300398655235767,-0.998283565044403,0.285259217023849,0.044660709798336,-0.957409381866455,0.285307198762894,0.0697965174913406,-0.95589143037796,0.00831511802971363,0.0446365848183632,-0.998968720436096,0.0272775869816542,-0.162061735987663,-0.986403584480286,0.286133706569672,-0.0748342722654343,-0.955263018608093,0.283291131258011,-0.211620971560478,-0.935394465923309,0.285307198762894,0.0697965174913406,-0.95589143037796,0.156346723437309,-0.28190079331398,-0.946619153022766,0.00831511802971363,0.0446365848183632,-0.998968720436096,-0.357466369867325,-0.0155912935733795,0.933795928955078,-0.343565225601196,-0.00168165843933821,0.939127326011658,-0.366001486778259,-0.000705872662365437,0.930614054203033,-0.3640016913414,-0.0398898161947727,0.930543780326843,0.0756688714027405,0.438737958669662,-0.895423591136932,0.251190334558487,0.345320701599121,-0.904244005680084,0.309500396251678,0.164429366588593,-0.936574876308441,-0.0270328633487225,0.0587117746472359,-0.99790894985199,-0.37623342871666,0.879941999912262,-0.290086835622787,-0.748698174953461,0.519915223121643,-0.41126537322998,-0.854588150978088,0.495322316884995,-0.155997142195702,-0.122433766722679,0.992370545864105,0.0145176909863949,-0.00532587105408311,-9.96209678305604e-007,-0.999985873699188,-0.00754666980355978,-0.0637161359190941,-0.997939586639404,-0.0255167204886675,-0.0634187832474709,-0.997660756111145,-0.0200852230191231,3.74941701011267e-005,-0.999798238277435,-0.00478652212768793,-0.0426651202142239,-0.999077975749969,0.105019524693489,0.290148377418518,-0.951201856136322,0.192627131938934,0.279329836368561,-0.940675139427185,
- -0.038349911570549,0.970231711864471,-0.239123061299324,-0.333258330821991,0.908285319805145,-0.252896338701248,-0.91410768032074,-0.301948606967926,-0.270618557929993,-0.82605367898941,0.515734314918518,-0.227274298667908,-0.687344074249268,0.565804481506348,-0.45543760061264,-0.810172557830811,-0.161247670650482,-0.563577651977539,-0.37623342871666,0.879941999912262,-0.290086835622787,0.276444435119629,0.867704749107361,-0.413118660449982,-0.363983541727066,0.404591917991638,-0.838940739631653,0.0899918228387833,0.298153549432755,-0.950266301631927,-0.456454932689667,-0.38431715965271,0.802464485168457,-0.82605367898941,0.515734314918518,-0.227274298667908,-0.91410768032074,-0.301948606967926,-0.270618557929993,-0.450911313295364,0.118563637137413,0.884659051895142,-0.091623455286026,0.0553952008485794,0.994251847267151,0.0336599349975586,0.137700989842415,0.989901781082153,-0.137165859341621,0.0122794136404991,0.990472018718719,-0.108766928315163,0.0192948766052723,0.993880093097687,0.0328620076179504,0.0588932819664478,-0.997723281383514,0.28640404343605,0.076635479927063,-0.955039203166962,0.380541205406189,0.00346062239259481,-0.924757540225983,-0.333163857460022,-0.0181781426072121,-0.942693769931793,-0.687344074249268,0.565804481506348,-0.45543760061264,0.00826805457472801,0.119704589247704,-0.992775142192841,0.0328620076179504,0.0588932819664478,-0.997723281383514,-0.810172557830811,-0.161247670650482,-0.563577651977539,-0.544436097145081,-0.342699319124222,0.765602111816406,-0.329132467508316,0.0688347145915031,0.941771507263184,-0.160485923290253,0.299622297286987,0.940463125705719,-0.248559474945068,0.121018812060356,0.961026906967163,-0.315569400787354,0.0103967944160104,0.948845624923706,-0.911840736865997,0.309314042329788,-0.269946962594986,-0.854588150978088,0.495322316884995,-0.155997142195702,-0.748698174953461,0.519915223121643,-0.41126537322998,-0.250302940607071,0.965800642967224,0.0676580891013145,-0.333258330821991,0.908285319805145,-0.252896338701248,-0.038349911570549,0.970231711864471,-0.239123061299324,
- -0.567954003810883,0.823022603988647,-0.00788396969437599,0.120225936174393,0.351419419050217,-0.928466618061066,0.0341735519468784,0.133161097764969,-0.990505039691925,0.27910777926445,0.0780689045786858,-0.957081139087677,0.314321756362915,0.127163663506508,-0.940761089324951,-0.837585866451263,0.227233111858368,-0.49680483341217,-0.0270328633487225,0.0587117746472359,-0.99790894985199,-0.0509366393089294,0.0084875114262104,-0.998665809631348,-0.835610866546631,0.178502142429352,-0.519510746002197,-0.88688588142395,0.425815552473068,-0.179205819964409,-0.753065168857574,0.638469755649567,-0.158900558948517,-0.837585866451263,0.227233111858368,-0.49680483341217,-0.835610866546631,0.178502142429352,-0.519510746002197,-0.447626948356628,-0.103309243917465,-0.88823276758194,-0.752393543720245,0.432470887899399,-0.496863126754761,-0.908904194831848,0.378280341625214,-0.175491467118263,-0.944381415843964,0.328376889228821,-0.0176765024662018,-0.88688588142395,0.425815552473068,-0.179205819964409,-0.835610866546631,0.178502142429352,-0.519510746002197,-0.968663454055786,0.242527633905411,-0.053586408495903,-0.106813989579678,0.970544874668121,-0.215947657823563,0.0168909784406424,0.937238156795502,-0.348280727863312,-0.00634322594851255,-0.033356998115778,-0.999423384666443,0.0826021656394005,0.264150172472,-0.960937857627869,-0.579790055751801,0.702398121356964,-0.412892878055573,-0.422011971473694,0.906105816364288,0.0296381823718548,-0.242444276809692,0.943298041820526,-0.226737290620804,-0.968663454055786,0.242527633905411,-0.053586408495903,-0.41767156124115,0.178846016526222,0.890822470188141,-0.160485923290253,0.299622297286987,0.940463125705719,-0.908904194831848,0.378280341625214,-0.175491467118263,-0.82818865776062,0.515856802463531,-0.219078317284584,-0.455339908599854,-0.349076718091965,0.819030523300171,-0.68617832660675,0.514171302318573,-0.514574885368347,-0.752393543720245,0.432470887899399,-0.496863126754761,0.0341735519468784,0.133161097764969,-0.990505039691925,0.120225936174393,0.351419419050217,-0.928466618061066,
- 0.0116055980324745,0.43678805232048,0.899489641189575,0.0383737124502659,0.998058259487152,0.0490636304020882,-0.13109715282917,0.0244384109973907,0.991068303585052,-0.450911313295364,0.118563637137413,0.884659051895142,-0.859567821025848,-0.0104514397680759,0.510914742946625,-0.433124423027039,0.00107572239357978,0.901333570480347,-0.388948321342468,0.110593296587467,0.91459733247757,-0.82818865776062,0.515856802463531,-0.219078317284584,-0.752393543720245,0.432470887899399,-0.496863126754761,-0.68617832660675,0.514171302318573,-0.514574885368347,-0.960192620754242,0.0568071119487286,-0.273501604795456,-0.402108043432236,-0.0740568563342094,0.912592351436615,-0.82818865776062,0.515856802463531,-0.219078317284584,-0.960192620754242,0.0568071119487286,-0.273501604795456,-0.305744796991348,0.231700271368027,0.923490762710571,-0.687344074249268,0.565804481506348,-0.45543760061264,-0.82605367898941,0.515734314918518,-0.227274298667908,-0.249897196888924,0.83658093214035,-0.487528204917908,0.157667174935341,-0.0158849637955427,-0.987364530563354,0.0899918228387833,0.298153549432755,-0.950266301631927,-0.363983541727066,0.404591917991638,-0.838940739631653,-0.752393543720245,0.432470887899399,-0.496863126754761,-0.447626948356628,-0.103309243917465,-0.88823276758194,0.032034620642662,0.180213168263435,-0.983105778694153,0.0341735519468784,0.133161097764969,-0.990505039691925,-0.475407600402832,-0.17314025759697,0.862560272216797,-0.272560447454453,-0.00982818752527237,0.962088465690613,-0.208400502800941,-0.00252915732562542,0.978040337562561,-0.162320509552956,-0.00981259718537331,0.986689269542694,-0.68617832660675,0.514171302318573,-0.514574885368347,-0.191139444708824,0.59794020652771,-0.77841717004776,-0.249897196888924,0.83658093214035,-0.487528204917908,-0.960192620754242,0.0568071119487286,-0.273501604795456,-0.153780326247215,0.194807380437851,0.968711376190186,-0.960192620754242,0.0568071119487286,-0.273501604795456,-0.249897196888924,0.83658093214035,-0.487528204917908,-0.837585866451263,0.227233111858368,-0.49680483341217,
- -0.568455696105957,-0.0524712800979614,-0.821038901805878,0.0756688714027405,0.438737958669662,-0.895423591136932,-0.0270328633487225,0.0587117746472359,-0.99790894985199,-0.455339908599854,-0.349076718091965,0.819030523300171,-0.82818865776062,0.515856802463531,-0.219078317284584,-0.402108043432236,-0.0740568563342094,0.912592351436615,0.259105861186981,-0.938945591449738,0.226374477148056,0.32882085442543,0.928255081176758,0.173837795853615,-0.600659847259521,0.664963901042938,-0.443881630897522,-0.752393543720245,0.432470887899399,-0.496863126754761,-0.82818865776062,0.515856802463531,-0.219078317284584,-0.908904194831848,0.378280341625214,-0.175491467118263,-0.00878698378801346,0.0395922213792801,0.99917733669281,-0.422011971473694,0.906105816364288,0.0296381823718548,-0.0274024996906519,0.0444833151996136,0.998634338378906,-0.13109715282917,0.0244384109973907,0.991068303585052,0.0383737124502659,0.998058259487152,0.0490636304020882,-0.422011971473694,0.906105816364288,0.0296381823718548,-0.00878698378801346,0.0395922213792801,0.99917733669281,-0.249897196888924,0.83658093214035,-0.487528204917908,-0.82605367898941,0.515734314918518,-0.227274298667908,-0.456454932689667,-0.38431715965271,0.802464485168457,0.257982552051544,0.423826217651367,0.868225991725922,-0.911840736865997,0.309314042329788,-0.269946962594986,-0.293019652366638,8.57934355735779e-006,0.956106424331665,0.157667174935341,-0.0158849637955427,-0.987364530563354,-0.363983541727066,0.404591917991638,-0.838940739631653,-0.427755951881409,0.151564478874207,-0.891096591949463,-0.249897196888924,0.83658093214035,-0.487528204917908,-0.191139444708824,0.59794020652771,-0.77841717004776,-0.687344074249268,0.565804481506348,-0.45543760061264,-0.122433766722679,0.992370545864105,0.0145176909863949,-0.280007094144821,0.959988951683044,0.00415362464264035,0.276444435119629,0.867704749107361,-0.413118660449982,-0.37623342871666,0.879941999912262,-0.290086835622787,0.0341735519468784,0.133161097764969,-0.990505039691925,0.032034620642662,0.180213168263435,-0.983105778694153,
- 0.225319415330887,0.191438272595406,-0.955291867256165,0.27910777926445,0.0780689045786858,-0.957081139087677,-0.091623455286026,0.0553952008485794,0.994251847267151,-0.250302940607071,0.965800642967224,0.0676580891013145,-0.567954003810883,0.823022603988647,-0.00788396969437599,0.0336599349975586,0.137700989842415,0.989901781082153,0.276444435119629,0.867704749107361,-0.413118660449982,-0.280007094144821,0.959988951683044,0.00415362464264035,-0.567954003810883,0.823022603988647,-0.00788396969437599,-0.038349911570549,0.970231711864471,-0.239123061299324,-0.447626948356628,-0.103309243917465,-0.88823276758194,-0.968663454055786,0.242527633905411,-0.053586408495903,-0.835610866546631,0.178502142429352,-0.519510746002197,-0.579790055751801,0.702398121356964,-0.412892878055573,-0.250302940607071,0.965800642967224,0.0676580891013145,-0.0274024996906519,0.0444833151996136,0.998634338378906,-0.810172557830811,-0.161247670650482,-0.563577651977539,-0.333163857460022,-0.0181781426072121,-0.942693769931793,-0.954024016857147,-0.0622123591601849,-0.293202668428421,-0.837585866451263,0.227233111858368,-0.49680483341217,-0.753065168857574,0.638469755649567,-0.158900558948517,-0.911840736865997,0.309314042329788,-0.269946962594986,-0.568455696105957,-0.0524712800979614,-0.821038901805878,-0.859567821025848,-0.0104514397680759,0.510914742946625,-0.450911313295364,0.118563637137413,0.884659051895142,-0.91410768032074,-0.301948606967926,-0.270618557929993,-0.106813989579678,0.970544874668121,-0.215947657823563,0.0383737124502659,0.998058259487152,0.0490636304020882,0.0116055980324745,0.43678805232048,0.899489641189575,0.0168909784406424,0.937238156795502,-0.348280727863312,-0.475407600402832,-0.17314025759697,0.862560272216797,-0.122433766722679,0.992370545864105,0.0145176909863949,-0.854588150978088,0.495322316884995,-0.155997142195702,0.257982552051544,0.423826217651367,0.868225991725922,-0.280007094144821,0.959988951683044,0.00415362464264035,-0.122433766722679,0.992370545864105,0.0145176909863949,-0.475407600402832,-0.17314025759697,0.862560272216797,
- -0.00878698378801346,0.0395922213792801,0.99917733669281,-0.0274024996906519,0.0444833151996136,0.998634338378906,-0.0883214846253395,0.00342474272474647,0.996086120605469,-0.0297563355416059,0.00398559682071209,0.999549269676209,-0.567954003810883,0.823022603988647,-0.00788396969437599,-0.280007094144821,0.959988951683044,0.00415362464264035,0.0336599349975586,0.137700989842415,0.989901781082153,-0.242444276809692,0.943298041820526,-0.226737290620804,-0.106813989579678,0.970544874668121,-0.215947657823563,0.0826021656394005,0.264150172472,-0.960937857627869,-0.0697417408227921,0.259010940790176,-0.963353276252747,-0.00878698378801346,0.0395922213792801,0.99917733669281,-0.0297563355416059,0.00398559682071209,0.999549269676209,-0.0807300135493279,-0.00201193336397409,0.996733963489532,-0.13109715282917,0.0244384109973907,0.991068303585052,-0.911840736865997,0.309314042329788,-0.269946962594986,-0.753065168857574,0.638469755649567,-0.158900558948517,-0.544436097145081,-0.342699319124222,0.765602111816406,-0.293019652366638,8.57934355735779e-006,0.956106424331665,-0.329132467508316,0.0688347145915031,0.941771507263184,-0.544436097145081,-0.342699319124222,0.765602111816406,-0.753065168857574,0.638469755649567,-0.158900558948517,-0.88688588142395,0.425815552473068,-0.179205819964409,-0.908904194831848,0.378280341625214,-0.175491467118263,-0.455339908599854,-0.349076718091965,0.819030523300171,-0.41767156124115,0.178846016526222,0.890822470188141,-0.944381415843964,0.328376889228821,-0.0176765024662018,-0.153780326247215,0.194807380437851,0.968711376190186,-0.454979181289673,-0.0489879958331585,0.889153718948364,-0.346216648817062,0.0803803205490112,0.934704840183258,-0.305744796991348,0.231700271368027,0.923490762710571,-0.456454932689667,-0.38431715965271,0.802464485168457,-0.450911313295364,0.118563637137413,0.884659051895142,-0.388948321342468,0.110593296587467,0.91459733247757,-0.409294635057449,-0.141674056649208,0.901335895061493,-0.3640016913414,-0.0398898161947727,0.930543780326843,-0.332014501094818,-0.187446102499962,0.924462199211121,
- -0.357466369867325,-0.0155912935733795,0.933795928955078,-0.859567821025848,-0.0104514397680759,0.510914742946625,-0.91410768032074,-0.301948606967926,-0.270618557929993,-0.810172557830811,-0.161247670650482,-0.563577651977539,-0.954024016857147,-0.0622123591601849,-0.293202668428421,0.0328620076179504,0.0588932819664478,-0.997723281383514,0.00826805457472801,0.119704589247704,-0.992775142192841,0.277588278055191,-0.112433686852455,-0.954098284244537,0.28640404343605,0.076635479927063,-0.955039203166962,-0.120484799146652,-0.221776261925697,-0.967625379562378,0.120225936174393,0.351419419050217,-0.928466618061066,0.314321756362915,0.127163663506508,-0.940761089324951,-0.968663454055786,0.242527633905411,-0.053586408495903,-0.160485923290253,0.299622297286987,0.940463125705719,-0.329132467508316,0.0688347145915031,0.941771507263184,-0.88688588142395,0.425815552473068,-0.179205819964409,-0.447626948356628,-0.103309243917465,-0.88823276758194,-0.835610866546631,0.178502142429352,-0.519510746002197,-0.0509366393089294,0.0084875114262104,-0.998665809631348,0.032034620642662,0.180213168263435,-0.983105778694153,-0.568455696105957,-0.0524712800979614,-0.821038901805878,-0.911840736865997,0.309314042329788,-0.269946962594986,-0.748698174953461,0.519915223121643,-0.41126537322998,0.0756688714027405,0.438737958669662,-0.895423591136932,-0.568455696105957,-0.0524712800979614,-0.821038901805878,-0.748698174953461,0.519915223121643,-0.41126537322998,-0.0712583363056183,0.141466051340103,-0.987375140190125,-0.296858578920364,-0.195300132036209,0.934736728668213,-0.308878660202026,-0.505719900131226,0.805506825447083,-0.544436097145081,-0.342699319124222,0.765602111816406,0.420045882463455,0.147275358438492,-0.895472705364227,0.257982552051544,0.423826217651367,0.868225991725922,-0.854588150978088,0.495322316884995,-0.155997142195702,-0.911840736865997,0.309314042329788,-0.269946962594986,-0.748698174953461,0.519915223121643,-0.41126537322998,-0.37623342871666,0.879941999912262,-0.290086835622787,0.0899918228387833,0.298153549432755,-0.950266301631927,
- -0.0712583363056183,0.141466051340103,-0.987375140190125,-0.363983541727066,0.404591917991638,-0.838940739631653,0.276444435119629,0.867704749107361,-0.413118660449982,-0.038349911570549,0.970231711864471,-0.239123061299324,0.192627131938934,0.279329836368561,-0.940675139427185,-0.447626948356628,-0.103309243917465,-0.88823276758194,-0.944381415843964,0.328376889228821,-0.0176765024662018,-0.968663454055786,0.242527633905411,-0.053586408495903,-0.41767156124115,0.178846016526222,0.890822470188141,-0.968663454055786,0.242527633905411,-0.053586408495903,-0.944381415843964,0.328376889228821,-0.0176765024662018,-0.280007094144821,0.959988951683044,0.00415362464264035,-0.475407600402832,-0.17314025759697,0.862560272216797,-0.162320509552956,-0.00981259718537331,0.986689269542694,0.0336599349975586,0.137700989842415,0.989901781082153,-0.280007094144821,0.959988951683044,0.00415362464264035,-0.162320509552956,-0.00981259718537331,0.986689269542694,-0.249897196888924,0.83658093214035,-0.487528204917908,-0.456454932689667,-0.38431715965271,0.802464485168457,-0.153780326247215,0.194807380437851,0.968711376190186,-0.454979181289673,-0.0489879958331585,0.889153718948364,-0.153780326247215,0.194807380437851,0.968711376190186,-0.456454932689667,-0.38431715965271,0.802464485168457,-0.409294635057449,-0.141674056649208,0.901335895061493,0.120225936174393,0.351419419050217,-0.928466618061066,-0.120484799146652,-0.221776261925697,-0.967625379562378,-0.168941602110863,0.0545393042266369,-0.984116017818451,-0.191139444708824,0.59794020652771,-0.77841717004776,-0.68617832660675,0.514171302318573,-0.514574885368347,0.120225936174393,0.351419419050217,-0.928466618061066,-0.168941602110863,0.0545393042266369,-0.984116017818451,-0.574795484542847,-0.429083079099655,-0.696776866912842,-0.00769393052905798,-0.0979530289769173,0.995161354541779,0.103967048227787,0.178989797830582,-0.978342294692993,-0.687344074249268,0.565804481506348,-0.45543760061264,-0.191139444708824,0.59794020652771,-0.77841717004776,-0.168941602110863,0.0545393042266369,-0.984116017818451,
- 0.00826805457472801,0.119704589247704,-0.992775142192841,0.00826805457472801,0.119704589247704,-0.992775142192841,-0.120484799146652,-0.221776261925697,-0.967625379562378,0.277588278055191,-0.112433686852455,-0.954098284244537,-0.604602873325348,-0.156685143709183,0.780964255332947,0.0781555771827698,-0.673328936100006,-0.735200643539429,0.460462778806686,0.881751120090485,0.102416507899761,-0.0219949707388878,0.243198782205582,-0.969727158546448,-0.0697417408227921,0.259010940790176,-0.963353276252747,0.00232844986021519,-0.0558771081268787,-0.998434960842133,0.105019524693489,0.290148377418518,-0.951201856136322,-0.0219949707388878,0.243198782205582,-0.969727158546448,0.00232844986021519,-0.0558771081268787,-0.998434960842133,0.158869832754135,0.0262652151286602,-0.986950218677521,-0.333258330821991,0.908285319805145,-0.252896338701248,-0.311675637960434,0.842347621917725,-0.439669072628021,-0.0219949707388878,0.243198782205582,-0.969727158546448,0.105019524693489,0.290148377418518,-0.951201856136322,-0.311675637960434,0.842347621917725,-0.439669072628021,-0.242444276809692,0.943298041820526,-0.226737290620804,-0.0697417408227921,0.259010940790176,-0.963353276252747,-0.0219949707388878,0.243198782205582,-0.969727158546448,-0.422011971473694,0.906105816364288,0.0296381823718548,0.0383737124502659,0.998058259487152,0.0490636304020882,-0.106813989579678,0.970544874668121,-0.215947657823563,-0.242444276809692,0.943298041820526,-0.226737290620804,-0.311675637960434,0.842347621917725,-0.439669072628021,-0.333258330821991,0.908285319805145,-0.252896338701248,-0.250302940607071,0.965800642967224,0.0676580891013145,-0.579790055751801,0.702398121356964,-0.412892878055573,-0.422011971473694,0.906105816364288,0.0296381823718548,-0.579790055751801,0.702398121356964,-0.412892878055573,-0.0274024996906519,0.0444833151996136,0.998634338378906,-0.250302940607071,0.965800642967224,0.0676580891013145,-0.091623455286026,0.0553952008485794,0.994251847267151,-0.0274024996906519,0.0444833151996136,0.998634338378906,-0.810172557830811,-0.161247670650482,-0.563577651977539,
- 0.0328620076179504,0.0588932819664478,-0.997723281383514,-0.333163857460022,-0.0181781426072121,-0.942693769931793,-0.272560447454453,-0.00982818752527237,0.962088465690613,-0.475407600402832,-0.17314025759697,0.862560272216797,0.257982552051544,0.423826217651367,0.868225991725922,-0.0975154116749763,0.148183658719063,0.984140455722809,-0.0975154116749763,0.148183658719063,0.984140455722809,0.257982552051544,0.423826217651367,0.868225991725922,-0.293019652366638,8.57934355735779e-006,0.956106424331665,-0.291029185056686,-0.0118156261742115,0.956641316413879,0.00519742909818888,0.0124136060476303,0.999909520149231,0.0116055980324745,0.43678805232048,0.899489641189575,-0.13109715282917,0.0244384109973907,0.991068303585052,-0.0807300135493279,-0.00201193336397409,0.996733963489532,-0.137165859341621,0.0122794136404991,0.990472018718719,0.0336599349975586,0.137700989842415,0.989901781082153,-0.162320509552956,-0.00981259718537331,0.986689269542694,-0.208400502800941,-0.00252915732562542,0.978040337562561,-0.0346148200333118,-0.00853544007986784,-0.999364256858826,0.0826021656394005,0.264150172472,-0.960937857627869,-0.00634322594851255,-0.033356998115778,-0.999423384666443,-0.0248434767127037,-0.494159430265427,-0.869016289710999,0.192627131938934,0.279329836368561,-0.940675139427185,0.105019524693489,0.290148377418518,-0.951201856136322,0.158869832754135,0.0262652151286602,-0.986950218677521,0.170625239610672,0.0215267147868872,-0.985100865364075,-0.0883214846253395,0.00342474272474647,0.996086120605469,-0.0274024996906519,0.0444833151996136,0.998634338378906,-0.091623455286026,0.0553952008485794,0.994251847267151,-0.108766928315163,0.0192948766052723,0.993880093097687,-0.248559474945068,0.121018812060356,0.961026906967163,-0.160485923290253,0.299622297286987,0.940463125705719,-0.41767156124115,0.178846016526222,0.890822470188141,-0.353840231895447,0.0331698767840862,0.93471759557724,0.225319415330887,0.191438272595406,-0.955291867256165,0.032034620642662,0.180213168263435,-0.983105778694153,-0.0509366393089294,0.0084875114262104,-0.998665809631348,
- 0.209842503070831,-0.0287083648145199,-0.977313697338104,0.00232844986021519,-0.0558771081268787,-0.998434960842133,-0.0697417408227921,0.259010940790176,-0.963353276252747,0.0879248231649399,0.00518738431856036,-0.996113717556,0.0879248231649399,0.00518738431856036,-0.996113717556,-0.0697417408227921,0.259010940790176,-0.963353276252747,0.0826021656394005,0.264150172472,-0.960937857627869,-0.0346148200333118,-0.00853544007986784,-0.999364256858826,-0.353840231895447,0.0331698767840862,0.93471759557724,-0.41767156124115,0.178846016526222,0.890822470188141,-0.455339908599854,-0.349076718091965,0.819030523300171,-0.391471117734909,-0.0685586407780647,0.917632877826691,-0.391471117734909,-0.0685586407780647,0.917632877826691,-0.455339908599854,-0.349076718091965,0.819030523300171,-0.402108043432236,-0.0740568563342094,0.912592351436615,-0.305744796991348,0.231700271368027,0.923490762710571,-0.346216648817062,0.0803803205490112,0.934704840183258,0.209842503070831,-0.0287083648145199,-0.977313697338104,-0.0509366393089294,0.0084875114262104,-0.998665809631348,-0.0270328633487225,0.0587117746472359,-0.99790894985199,0.309500396251678,0.164429366588593,-0.936574876308441,-0.427755951881409,0.151564478874207,-0.891096591949463,-0.363983541727066,0.404591917991638,-0.838940739631653,0.192627131938934,0.279329836368561,-0.940675139427185,0.170625239610672,0.0215267147868872,-0.985100865364075,0.123467683792114,-0.0425342954695225,-0.991436719894409,-0.0712583363056183,0.141466051340103,-0.987375140190125,0.0899918228387833,0.298153549432755,-0.950266301631927,0.157667174935341,-0.0158849637955427,-0.987364530563354,0.123467683792114,-0.0425342954695225,-0.991436719894409,0.251190334558487,0.345320701599121,-0.904244005680084,0.0403203852474689,-0.140531733632088,-0.989254891872406,-0.0712583363056183,0.141466051340103,-0.987375140190125,0.332626044750214,0.000414104841183871,0.943058729171753,0.332220911979675,0.000417923089116812,0.94320160150528,0.325346648693085,0.000482603907585144,0.945594787597656,0.333295971155167,0.000407790852477774,0.942822277545929,
- 0.33806049823761,0.000362829799996689,0.941124379634857,0.340685576200485,0.000338018609909341,0.940177202224731,0.33159327507019,0.000423836114350706,0.943422436714172,0.334578692913055,0.000395694834878668,0.942367851734161,0.338075429201126,0.000362688442692161,0.941119015216827,0.336015105247498,0.000382142083253711,0.941856503486633,-0.328087717294693,-0.000161958858370781,0.944647252559662,-0.338727593421936,-0.000131466615130194,0.940884470939636,-0.347385585308075,-0.00010654995276127,0.937722444534302,-0.348153680562973,-0.000104334787465632,0.937437474727631,-0.33534187078476,-0.000141184835229069,0.942096531391144,-0.348176330327988,-0.000104269405710511,0.937429010868073,-0.347400367259979,-0.000106507330201566,0.937716901302338,-0.339313894510269,-0.000129782303702086,0.940673232078552,-0.328947871923447,-0.000159499060828239,0.944348096847534,-0.336376875638962,-0.000138215371407568,0.941727459430695
- }
- BinormalsW: *5848 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *17544 {
- a: -0.195093840360641,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474542617798,0,-0.555562913417816,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474542617798,0,-0.555562913417816,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785071849823,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785071849823,0,-0.195091173052788,-1,0,-3.91374133101863e-009,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,-3.91374133101863e-009,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,0,0.382685154676437,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,0,0.382685154676437,-0.831473886966705,-7.74484021803801e-007,0.555564045906067,-0.831473767757416,-1.23917607197654e-006,0.555564045906067,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.831473827362061,0,0.555563986301422,-0.707110047340393,-4.1305028730676e-007,0.707103610038757,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.831473767757416,-8.26097164008388e-007,0.555563986301422,-0.707110047340393,-4.1305028730676e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,
- -0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477284431458,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477284431458,0.707108378410339,0,0.707105278968811,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,0,0.707105278968811,0.831474542617798,-1.5489339943997e-007,0.555562913417816,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.831474542617798,-1.5489339943997e-007,0.555562913417816,0.89970064163208,-5.14232390003144e-008,0.436507523059845,0.89970064163208,-1.0284655616033e-007,0.436507523059845,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.956954777240753,-0,-0.290237456560135,0.956954658031464,-0,-0.290237426757813,0.899700701236725,0,-0.43650758266449,0.89970064163208,0,-0.436507552862167,0.899700701236725,0,-0.43650758266449,0.831473767757416,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.89970064163208,0,-0.436507552862167,0.831473767757416,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560410022736,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560410022736,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,
- 0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.195093557238579,0,-0.98078465461731,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.195093557238579,0,-0.98078465461731,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093840360641,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093840360641,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474542617798,0,-0.555562913417816,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474542617798,0,-0.555562913417816,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785071849823,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,3.91374133101863e-009,-0.980785071849823,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089757442474,-1,0,3.91374133101863e-009,-0.980785489082336,0,0.195089742541313,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.923878848552704,8.2611853713388e-007,0.382685124874115,-0.980785489082336,0,0.195089757442474,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.831473767757416,1.65223741532827e-006,0.555564045906067,-0.831473886966705,-0,0.555564045906067,-0.923878848552704,8.2611853713388e-007,0.382685124874115,-0.831473767757416,-6.1957166508364e-007,0.555563986301422,
- -0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.707110047340393,0,0.707103610038757,-0.831473827362061,-9.29360169266147e-007,0.555563986301422,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,0,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477284431458,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.707108378410339,-1.85872784186358e-006,0.707105278968811,0.555558919906616,0,0.831477284431458,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.831474542617798,-1.44568309679016e-006,0.555562913417816,0.707108378410339,-1.85872784186358e-006,0.707105278968811,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.923878848552704,2.06535588631596e-007,0.382685154676437,0.831474542617798,-1.44568309679016e-006,0.555562913417816,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.979528605937958,0.0161890517920256,0.200653463602066,0.98076456785202,0.00645945034921169,0.195087119936943,0.923878848552704,2.06535588631596e-007,0.382685154676437,0.979528605937958,0.0161890517920256,0.200653463602066,
- 1,5.63008361496031e-005,1.51532753989159e-006,0.999979734420776,-0.00636540865525603,1.54224699144834e-006,0.98076456785202,0.00645945034921169,0.195087119936943,1,5.63008361496031e-005,1.51532753989159e-006,0.979563415050507,-0.0138356070965528,-0.200659185647964,0.980785489082336,0,-0.195089757442474,0.999979734420776,-0.00636540865525603,1.54224699144834e-006,0.979563415050507,-0.0138356070965528,-0.200659185647964,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785489082336,0,-0.195089757442474,0.923878312110901,0,-0.382686465978622,0.831473827362061,0,-0.555563986301422,0.831473767757416,0,-0.555563986301422,0.923878312110901,0,-0.382686465978622,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473767757416,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.195093557238579,0,-0.98078465461731,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.195093557238579,0,-0.98078465461731,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093840360641,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,
- -0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.831473767757416,4.13060433857027e-007,0.555564045906067,-0.831473767757416,1.65223741532827e-006,0.555564045906067,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.831473767757416,3.20114168061991e-006,0.555563986301422,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.831473767757416,-6.1957166508364e-007,0.555563986301422,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,
- 0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.915080428123474,-0.00056157069047913,0.403271019458771,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.915080428123474,-0.00056157069047913,0.403271019458771,0.973621368408203,0.0148864593356848,0.227683708071709,0.979528605937958,0.0161890517920256,0.200653463602066,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.973621368408203,0.0148864593356848,0.227683708071709,1,-4.66110749997029e-009,1.47354751334206e-006,1,5.63008361496031e-005,1.51532753989159e-006,0.979528605937958,0.0161890517920256,0.200653463602066,1,-4.66110749997029e-009,1.47354751334206e-006,0.973537623882294,-0.0198492165654898,-0.227663204073906,0.979563415050507,-0.0138356070965528,-0.200659185647964,1,5.63008361496031e-005,1.51532753989159e-006,0.973537623882294,-0.0198492165654898,-0.227663204073906,0.91507887840271,0.00158896064385772,-0.403271734714508,0.923878312110901,0,-0.382686465978622,0.979563415050507,-0.0138356070965528,-0.200659185647964,0.91507887840271,0.00158896064385772,-0.403271734714508,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.923878312110901,0,-0.382686465978622,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,
- 0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.831473767757416,-2.27182226808509e-006,0.555564045906067,-0.831473767757416,4.13060433857027e-007,0.555564045906067,
- -0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.831473767757416,5.16312275067321e-006,0.555563986301422,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.831473767757416,3.20114168061991e-006,0.555563986301422,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.902050018310547,-0.000483613170217723,0.431631296873093,0.915080428123474,-0.00056157069047913,0.403271019458771,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.956938683986664,0.00368061615154147,-0.290267139673233,0.95695024728775,5.30082193417325e-011,-0.290252327919006,
- 0.902048885822296,0.00159578933380544,-0.431630998849869,0.91507887840271,0.00158896064385772,-0.403271734714508,0.902048885822296,0.00159578933380544,-0.431630998849869,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.91507887840271,0.00158896064385772,-0.403271734714508,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,
- -0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.831473767757416,-1.44570435622882e-006,0.555564045906067,-0.831473767757416,-2.27182226808509e-006,0.555564045906067,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.831473767757416,2.06524714485568e-006,0.555563986301422,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.831473767757416,5.16312275067321e-006,0.555563986301422,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.27178179557086e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-3.8723501916138e-007,0.707105219364166,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-3.8723501916138e-007,0.707105219364166,
- 0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.89970064163208,-2.05693169164078e-007,0.436507552862167,0.902050018310547,-0.000483613170217723,0.431631296873093,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.95695024728775,5.30082193417325e-011,-0.290252327919006,0.956954777240753,-0,-0.290237456560135,0.899700582027435,0,-0.436507552862167,0.902048885822296,0.00159578933380544,-0.431630998849869,0.899700582027435,0,-0.436507552862167,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.902048885822296,0.00159578933380544,-0.431630998849869,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,
- -0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.831473767757416,-1.23917607197654e-006,0.555564045906067,-0.831473767757416,-1.44570435622882e-006,0.555564045906067,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.831473767757416,-8.26097164008388e-007,0.555563986301422,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.831473767757416,2.06524714485568e-006,0.555563986301422,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,
- 0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.707108378410339,-3.8723501916138e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.707108378410339,-3.8723501916138e-007,0.707105219364166,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.89970064163208,-1.0284655616033e-007,0.436507523059845,0.89970064163208,-2.05693169164078e-007,0.436507552862167,0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.956954777240753,-0,-0.290237456560135,0.956954777240753,-0,-0.290237456560135,0.89970064163208,0,-0.436507552862167,0.899700582027435,0,-0.436507552862167,0.89970064163208,0,-0.436507552862167,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.899700582027435,0,-0.436507552862167,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,0.195091545581818,0,0.980785071849823,
- 0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.83146870136261,0.555571675300598,0,0.83146870136261,0.555571675300598,0,0.831468760967255,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088922977448,0.980785667896271,0,0.195088922977448,0.980785667896271,0,0.195088908076286,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094734430313,0.980784356594086,0,-0.195094734430313,0.980784356594086,0,-0.195094719529152,0.923880696296692,6.12704980085255e-007,-0.382680743932724,0.923880696296692,0,-0.382680743932724,0.923880696296692,0,-0.382680743932724,0.923880696296692,6.12704980085255e-007,-0.382680743932724,0.831474304199219,1.4705003650306e-006,-0.55556321144104,0.831474304199219,9.19061449167202e-007,-0.55556321144104,0.831474304199219,0,-0.55556321144104,0.831474304199219,9.80423806140607e-007,-0.55556321144104,0.70710301399231,-2.45106377860793e-007,-0.707110583782196,0.70710301399231,4.90209970394062e-007,-0.707110583782196,0.70710301399231,4.90209970394062e-007,-0.707110583782196,0.70710301399231,-2.45106377860793e-007,-0.707110583782196,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.83146870136261,0.555571675300598,0,-0.83146870136261,0.555571675300598,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.38266259431839,0,-0.923888146877289,0.38266259431839,0,-0.923888146877289,0.382662534713745,0,-0.923888206481934,
- 0.195120856165886,0,-0.98077917098999,0.195120856165886,0,-0.98077917098999,0.195120856165886,0,-0.98077917098999,0.195120856165886,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.195120453834534,0,-0.980779349803925,-0.195120453834534,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.83146870136261,-0.555571675300598,0,-0.83146870136261,-0.555571675300598,0,-0.831468760967255,-0.707102954387665,1.8382829125585e-007,-0.707110643386841,-0.707102954387665,0,-0.707110643386841,-0.707102954387665,0,-0.707110643386841,-0.707102954387665,1.8382829125585e-007,-0.707110643386841,-0.831473350524902,4.28929638474074e-007,-0.555564641952515,-0.831473350524902,1.83829229172261e-007,-0.555564641952515,-0.831473350524902,1.83829229172261e-007,-0.555564641952515,-0.831473350524902,4.28929638474074e-007,-0.555564641952515,-0.899702191352844,1.2204479560296e-007,-0.436504304409027,-0.899702250957489,6.10223480634886e-008,-0.43650421500206,-0.956928730010986,0,0.290322929620743,-0.956928730010986,0,0.290322959423065,-0.899691820144653,0,0.436525702476501,-0.899691820144653,0,0.436525672674179,-0.899691820144653,0,0.436525672674179,-0.899691820144653,0,0.436525702476501,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.83146870136261,-0.555571675300598,0,0.83146870136261,-0.555571675300598,0,0.831468760967255,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888802528381,-0.382661193609238,0,0.923888802528381,-0.382661193609238,0,0.923888683319092,
- -0.19509157538414,0,0.980785071849823,-0.19509157538414,0,0.980785071849823,-0.19509157538414,0,0.980785071849823,-0.19509157538414,0,0.980785071849823,0,0,1,0,0,1,0,0,1,0,0,1,0.19509157538414,0,0.980785071849823,0.195091545581818,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.555571675300598,0,0.83146870136261,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.83146870136261,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682263851166,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682263851166,0.980785667896271,0,0.195088922977448,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088922977448,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094734430313,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094734430313,0.923880696296692,-9.80328763944271e-007,-0.382680743932724,0.923880696296692,-8.5778879110876e-007,-0.382680743932724,0.923880696296692,-8.5778879110876e-007,-0.382680743932724,0.923880696296692,-9.80328763944271e-007,-0.382680743932724,0.831474304199219,-0,-0.55556321144104,0.831474304199219,-1.96067048818804e-006,-0.55556321144104,0.831474304199219,7.35316461941693e-007,-0.55556321144104,0.831474304199219,1.10297776245716e-006,-0.55556321144104,0.70710301399231,0,-0.707110583782196,0.70710301399231,7.3531509769964e-007,-0.707110583782196,0.70710301399231,7.3531509769964e-007,-0.707110583782196,0.70710301399231,0,-0.707110583782196,
- 0.555571615695953,0,-0.83146870136261,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571615695953,0,-0.83146870136261,0.38266259431839,0,-0.923888146877289,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.38266259431839,0,-0.923888146877289,0.195120856165886,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120856165886,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120453834534,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120453834534,0,-0.980779349803925,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.555571675300598,0,-0.83146870136261,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.83146870136261,-0.707102954387665,2.20594029087806e-006,-0.707110643386841,-0.707102954387665,1.34807476115384e-006,-0.707110643386841,-0.707102954387665,1.34807476115384e-006,-0.707110643386841,-0.707102954387665,2.20594029087806e-006,-0.707110643386841,-0.831473350524902,1.7156962712761e-006,-0.555564641952515,-0.831473350524902,1.96081373360357e-006,-0.555564641952515,-0.831473350524902,1.96081373360357e-006,-0.555564641952515,-0.831473350524902,1.7156962712761e-006,-0.555564641952515,-0.923880696296692,-2.45144150312626e-007,-0.382680743932724,-0.923880696296692,-4.64694949187106e-011,-0.382680743932724,-0.923880696296692,-4.64694949187106e-011,-0.382680743932724,-0.923880696296692,-2.45144150312626e-007,-0.382680743932724,-0.980784356594086,-2.45113852770373e-007,-0.195094734430313,-0.979613125324249,-0.0093619367107749,-0.200674891471863,-0.979613125324249,-0.0093619367107749,-0.200674891471863,-0.980784356594086,-2.45113852770373e-007,-0.195094734430313,-1,0,-1.8302869193576e-006,-1,0,-1.7966018504012e-006,-1,0,-1.7966018504012e-006,-1,0,-1.8302869193576e-006,-0.980785667896271,0,0.195088908076286,
- -0.979625821113586,0.00802399590611458,0.20067110657692,-0.979625821113586,0.00802399590611458,0.20067110657692,-0.980785667896271,0,0.195088908076286,-0.923880040645599,0,0.382682323455811,-0.923880040645599,0,0.382682293653488,-0.923880040645599,0,0.382682293653488,-0.923880040645599,0,0.382682323455811,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.555571615695953,0,0.83146870136261,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571615695953,0,0.83146870136261,-0.382661193609238,0,0.923888802528381,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888802528381,-0.195091545581818,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091545581818,0,0.980785071849823,0,0,1,0,0,1,0,0,1,0,0,1,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.980785667896271,0,0.195088908076286,
- 0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880696296692,-8.5778879110876e-007,-0.382680743932724,0.923880696296692,8.57787824770639e-007,-0.382680743932724,0.923880696296692,8.57787824770639e-007,-0.382680743932724,0.923880696296692,-8.5778879110876e-007,-0.382680743932724,0.831474304199219,-1.96067048818804e-006,-0.55556321144104,0.831474304199219,-4.90168929445645e-007,-0.55556321144104,0.831474304199219,-3.79916036763461e-006,-0.55556321144104,0.831474304199219,7.35316461941693e-007,-0.55556321144104,0.70710301399231,7.3531509769964e-007,-0.707110583782196,0.70710301399231,-3.67658856248454e-007,-0.707110583782196,0.70710301399231,-3.67658856248454e-007,-0.707110583782196,0.70710301399231,7.3531509769964e-007,-0.707110583782196,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.707102954387665,1.34807476115384e-006,-0.707110643386841,-0.707102954387665,9.80418008111883e-007,-0.707110643386841,
- -0.707102954387665,9.80418008111883e-007,-0.707110643386841,-0.707102954387665,1.34807476115384e-006,-0.707110643386841,-0.831473350524902,1.96081373360357e-006,-0.555564641952515,-0.831473350524902,1.59315493419854e-006,-0.555564641952515,-0.831473350524902,1.59315493419854e-006,-0.555564641952515,-0.831473350524902,1.96081373360357e-006,-0.555564641952515,-0.923880696296692,-4.64694949187106e-011,-0.382680743932724,-0.914907574653625,-0.00639605196192861,-0.403612703084946,-0.914907574653625,-0.00639605196192861,-0.403612703084946,-0.972813189029694,-0.0140966083854437,-0.231162130832672,-0.956855237483978,-0.0127000594511628,-0.290287435054779,-0.972813189029694,-0.0140966083854437,-0.231162130832672,-0.979613125324249,-0.0093619367107749,-0.200674891471863,-1,0,-1.7966018504012e-006,-1,4.66028549084285e-009,-1.75421314452251e-006,-1,4.66028549084285e-009,-1.75421314452251e-006,-1,0,-1.7966018504012e-006,-0.979625821113586,0.00802399590611458,0.20067110657692,-0.972739815711975,0.0187958031892776,0.231136232614517,-0.972739815711975,0.0187958031892776,0.231136232614517,-0.914921998977661,-0.00197671982459724,0.403625935316086,-0.956927061080933,-0.00457872729748487,0.290292233228683,-0.914921998977661,-0.00197671982459724,0.403625935316086,-0.923880040645599,0,0.382682293653488,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,
- 0,0,1,0,0,1,0,0,1,0,0,1,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880696296692,8.57787824770639e-007,-0.382680743932724,0.923880696296692,1.34795095618756e-006,-0.382680743932724,0.923880696296692,1.34795095618756e-006,-0.382680743932724,0.923880696296692,8.57787824770639e-007,-0.382680743932724,0.831474304199219,-4.90168929445645e-007,-0.55556321144104,0.831474304199219,2.6959169190377e-006,-0.55556321144104,0.831474304199219,-6.1276678025024e-006,-0.55556321144104,0.831474304199219,-3.79916036763461e-006,-0.55556321144104,0.70710301399231,-3.67658856248454e-007,-0.707110583782196,0.70710301399231,-2.69616066361777e-006,-0.707110583782196,0.70710301399231,-2.69616066361777e-006,-0.707110583782196,0.70710301399231,-3.67658856248454e-007,-0.707110583782196,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,
- 0.555571675300598,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.707102954387665,9.80418008111883e-007,-0.707110643386841,-0.707102954387665,6.74037437420338e-007,-0.707110643386841,-0.707102954387665,6.74037437420338e-007,-0.707110643386841,-0.707102954387665,9.80418008111883e-007,-0.707110643386841,-0.831473350524902,1.59315493419854e-006,-0.555564641952515,-0.831473350524902,1.16422506835079e-006,-0.555564641952515,-0.831473350524902,1.16422506835079e-006,-0.555564641952515,-0.831473350524902,1.59315493419854e-006,-0.555564641952515,-0.914907574653625,-0.00639605196192861,-0.403612703084946,-0.902037858963013,-0.00550524704158306,-0.431621700525284,-0.902041554450989,-0.00231593893840909,0.431642889976501,-0.914921998977661,-0.00197671982459724,0.403625935316086,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661193609238,0,0.923888683319092,
- -0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,0,0,1,0,0,1,0,0,1,0,0,1,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880696296692,1.34795095618756e-006,-0.382680743932724,0.923880696296692,5.51435164197756e-007,-0.382680743932724,0.923880696296692,5.51435164197756e-007,-0.382680743932724,0.923880696296692,1.34795095618756e-006,-0.382680743932724,0.831474304199219,2.6959169190377e-006,-0.55556321144104,0.831474304199219,1.71558258443838e-006,-0.55556321144104,0.831474304199219,-2.4510645744158e-006,-0.55556321144104,0.831474304199219,-6.1276678025024e-006,-0.55556321144104,0.70710301399231,-2.69616066361777e-006,-0.707110583782196,
- 0.70710301399231,-2.63487982010702e-006,-0.707110583782196,0.70710301399231,-2.63487982010702e-006,-0.707110583782196,0.70710301399231,-2.69616066361777e-006,-0.707110583782196,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.707102954387665,6.74037437420338e-007,-0.707110643386841,-0.707102954387665,4.59570941302445e-007,-0.707110643386841,-0.707102954387665,4.59570941302445e-007,-0.707110643386841,-0.707102954387665,6.74037437420338e-007,-0.707110643386841,-0.831473350524902,1.16422506835079e-006,-0.555564641952515,-0.831473350524902,7.65942047564749e-007,-0.555564641952515,-0.831473350524902,7.65942047564749e-007,-0.555564641952515,-0.831473350524902,1.16422506835079e-006,-0.555564641952515,-0.902037858963013,-0.00550524704158306,-0.431621700525284,-0.899702191352844,2.4408961962763e-007,-0.436504304409027,-0.956928730010986,0,0.290322959423065,-0.956933259963989,-3.98181036753709e-011,0.290307998657227,-0.902041554450989,-0.00231593893840909,0.431642889976501,-0.899691820144653,0,0.436525702476501,-0.899691820144653,0,0.436525702476501,-0.902041554450989,-0.00231593893840909,0.431642889976501,-0.831473350524902,0,0.555564641952515,
- -0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,0,0,1,0,0,1,0,0,1,0,0,1,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.382661193609238,0,0.923888802528381,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.555571675300598,0,0.831468760967255,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.923880040645599,0,0.382682293653488,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,0.980785667896271,0,0.195088908076286,1,0,0,1,0,0,1,0,0,1,0,0,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.980784356594086,0,-0.195094719529152,0.923880696296692,5.51435164197756e-007,-0.382680743932724,
- 0.923880696296692,6.12704980085255e-007,-0.382680743932724,0.923880696296692,6.12704980085255e-007,-0.382680743932724,0.923880696296692,5.51435164197756e-007,-0.382680743932724,0.831474304199219,1.71558258443838e-006,-0.55556321144104,0.831474304199219,1.4705003650306e-006,-0.55556321144104,0.831474304199219,9.80423806140607e-007,-0.55556321144104,0.831474304199219,-2.4510645744158e-006,-0.55556321144104,0.70710301399231,-2.63487982010702e-006,-0.707110583782196,0.70710301399231,-2.45106377860793e-007,-0.707110583782196,0.70710301399231,-2.45106377860793e-007,-0.707110583782196,0.70710301399231,-2.63487982010702e-006,-0.707110583782196,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.555571675300598,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.195120841264725,0,-0.98077917098999,0.195120856165886,0,-0.98077917098999,0.195120856165886,0,-0.98077917098999,0.195120841264725,0,-0.98077917098999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.195120483636856,0,-0.980779349803925,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.382661193609238,0,-0.923888802528381,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.555571675300598,0,-0.831468760967255,-0.707102954387665,4.59570941302445e-007,-0.707110643386841,-0.707102954387665,1.8382829125585e-007,-0.707110643386841,-0.707102954387665,1.8382829125585e-007,-0.707110643386841,-0.707102954387665,4.59570941302445e-007,-0.707110643386841,-0.831473350524902,7.65942047564749e-007,-0.555564641952515,-0.831473350524902,4.28929638474074e-007,-0.555564641952515,-0.831473350524902,4.28929638474074e-007,-0.555564641952515,-0.831473350524902,7.65942047564749e-007,-0.555564641952515,
- -0.899702191352844,2.4408961962763e-007,-0.436504304409027,-0.899702191352844,1.2204479560296e-007,-0.436504304409027,-0.956928730010986,0,0.290322959423065,-0.956928730010986,0,0.290322959423065,-0.899691820144653,0,0.436525702476501,-0.899691820144653,0,0.436525702476501,-0.899691820144653,0,0.436525702476501,-0.899691820144653,0,0.436525702476501,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.831473350524902,0,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.555571675300598,0,0.831468760967255,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.195091590285301,0,0.980785071849823,-0.19509157538414,0,0.980785071849823,-0.19509157538414,0,0.980785071849823,-0.195091590285301,0,0.980785071849823,0,0,1,0,0,1,0,0,1,0,0,1,0.19509157538414,0,0.980785071849823,0.19509157538414,0,0.980785071849823,-0.195092514157295,-0,0.980784833431244,-0.195093095302582,-0,0.980784714221954,-0.0980479642748833,-0,0.995181679725647,-0.0980771481990814,-0,0.995178818702698,-0.195121675729752,0,0.980778992176056,-0.195108070969582,0,0.98078179359436,-0.0980476513504982,-0,0.995181739330292,-0.0980768203735352,0,0.995178937911987,-0.412777274847031,0,0.910832047462463,-0.195108070969582,0,0.98078179359436,-0.195121675729752,0,0.980778992176056,-0.352141350507736,0,0.935946822166443,-0.582553088665009,0,0.812792658805847,-0.412777274847031,0,0.910832047462463,-0.352141350507736,0,0.935946822166443,-0.52798593044281,0,0.849253177642822,-0.72992342710495,0,0.683528959751129,-0.582553088665009,0,0.812792658805847,-0.52798593044281,0,0.849253177642822,-0.683518826961517,0,0.729932844638824,-0.849260747432709,0,0.527973771095276,-0.72992342710495,0,0.683528959751129,
- -0.683518826961517,0,0.729932844638824,-0.812797546386719,0,0.582546472549438,-0.935936748981476,-0,0.352168172597885,-0.849260747432709,0,0.527973771095276,-0.812797546386719,0,0.582546472549438,-0.910827279090881,0,0.412787824869156,-0.986658573150635,0,0.162803262472153,-0.935936748981476,-0,0.352168172597885,-0.910827279090881,0,0.412787824869156,-0.973854422569275,0,0.227172866463661,-0.995184719562531,-0,0.0980182662606239,-0.986658573150635,0,0.162803262472153,-0.973854422569275,0,0.227172866463661,-0.995184659957886,0,0.098017692565918,0.97385561466217,-0,0.227168053388596,0.995184600353241,-0,0.0980183929204941,0.995184600353241,-0,0.0980185270309448,0.986658573150635,-0,0.162802994251251,0.91082501411438,-0,0.412792682647705,0.97385561466217,-0,0.227168053388596,0.986658573150635,-0,0.162802994251251,0.935939073562622,-0,0.352161973714828,0.81279855966568,-0,0.58254486322403,0.91082501411438,-0,0.412792682647705,0.935939073562622,-0,0.352161973714828,0.849254190921783,-0,0.527984082698822,0.683518886566162,-0,0.729932844638824,0.81279855966568,-0,0.58254486322403,0.849254190921783,-0,0.527984082698822,0.729930222034454,-0,0.683521628379822,0.527990281581879,-0,0.849250435829163,0.683518886566162,-0,0.729932844638824,0.729930222034454,-0,0.683521628379822,0.58255136013031,-0,0.812793970108032,0.352126091718674,-0,0.935952544212341,0.527990281581879,-0,0.849250435829163,0.58255136013031,-0,0.812793970108032,0.412774354219437,-0,0.910833299160004,0.195093557238579,-0,0.98078465461731,0.352126091718674,-0,0.935952544212341,0.412774354219437,-0,0.910833299160004,0.19509319961071,-0,0.980784714221954,0.0981056392192841,-0,0.995176017284393,0.0980768203735352,-0,0.995178937911987,0.195093557238579,-0,0.98078465461731,0.19509319961071,-0,0.980784714221954,-0.412792444229126,-0,0.910825073719025,-0.195093095302582,-0,0.980784714221954,-0.195092514157295,-0,0.980784833431244,-0.352138340473175,-0,0.935947895050049,-0.582540988922119,-0,0.81280130147934,-0.412792444229126,-0,0.910825073719025,-0.352138340473175,-0,0.935947895050049,
- -0.527988135814667,-0,0.849251747131348,-0.729931592941284,-0,0.683520138263702,-0.582540988922119,-0,0.81280130147934,-0.527988135814667,-0,0.849251747131348,-0.683516800403595,-0,0.729934811592102,-0.849255561828613,-0,0.5279820561409,-0.729931592941284,-0,0.683520138263702,-0.683516800403595,-0,0.729934811592102,-0.812798678874969,-0,0.58254462480545,-0.93593817949295,-0,0.352164268493652,-0.849255561828613,-0,0.5279820561409,-0.812798678874969,-0,0.58254462480545,-0.910825312137604,-0,0.412792056798935,-0.98665863275528,-0,0.162802413105965,-0.93593817949295,-0,0.352164268493652,-0.910825312137604,-0,0.412792056798935,-0.973855555057526,-0,0.227168098092079,-0.99518495798111,-0,0.098015084862709,-0.98665863275528,-0,0.162802413105965,-0.973855555057526,-0,0.227168098092079,-0.99518495798111,-0,0.0980149284005165,-0.973854184150696,0,-0.227173790335655,-0.995184600353241,0,-0.0980183929204941,-0.995184600353241,0,-0.0980185270309448,-0.986657679080963,0,-0.162808761000633,-0.910829365253448,0,-0.412782996892929,-0.973854184150696,0,-0.227173790335655,-0.986657679080963,0,-0.162808761000633,-0.935940682888031,0,-0.35215750336647,-0.812790334224701,0,-0.582556247711182,-0.910829365253448,0,-0.412782996892929,-0.935940682888031,0,-0.35215750336647,-0.849252641201019,0,-0.527986764907837,-0.683529615402222,0,-0.729922890663147,-0.812790334224701,0,-0.582556247711182,-0.849252641201019,0,-0.527986764907837,-0.729931116104126,0,-0.683520793914795,-0.527974784374237,0,-0.849260091781616,-0.683529615402222,0,-0.729922890663147,-0.729931116104126,0,-0.683520793914795,-0.582549452781677,0,-0.812795281410217,-0.352144092321396,0,-0.935945808887482,-0.527974784374237,0,-0.849260091781616,-0.582549452781677,0,-0.812795281410217,-0.412775278091431,0,-0.91083288192749,-0.16283518075943,0,-0.986653208732605,-0.352144092321396,0,-0.935945808887482,-0.412775278091431,0,-0.91083288192749,-0.227180331945419,0,-0.973852694034576,-0.0980476513504982,0,-0.995181739330292,-0.16283518075943,0,-0.986653208732605,-0.227180331945419,0,-0.973852694034576,
- -0.0980768203735352,0,-0.995178937911987,-0.195092514157295,0,0.980784833431244,-0.0980771481990814,0,0.995178818702698,-0.0980479642748833,0,0.995181679725647,-0.195093095302582,0,0.980784714221954,-0.195121675729752,0,0.980778992176056,-0.0980768203735352,0,0.995178937911987,-0.0980476513504982,0,0.995181739330292,-0.195108070969582,0,0.98078179359436,-0.412777274847031,0,0.910832047462463,-0.352141350507736,0,0.935946822166443,-0.195121675729752,0,0.980778992176056,-0.195108070969582,0,0.98078179359436,-0.582553088665009,0,0.812792658805847,-0.52798593044281,0,0.849253177642822,-0.352141350507736,0,0.935946822166443,-0.412777274847031,0,0.910832047462463,-0.72992342710495,0,0.683528959751129,-0.683518826961517,0,0.729932844638824,-0.52798593044281,0,0.849253177642822,-0.582553088665009,0,0.812792658805847,-0.849260747432709,0,0.527973771095276,-0.812797546386719,0,0.582546472549438,-0.683518826961517,0,0.729932844638824,-0.72992342710495,0,0.683528959751129,-0.935936748981476,0,0.352168172597885,-0.910827279090881,0,0.412787824869156,-0.812797546386719,0,0.582546472549438,-0.849260747432709,0,0.527973771095276,-0.986658573150635,0,0.162803262472153,-0.973854422569275,0,0.227172866463661,-0.910827279090881,0,0.412787824869156,-0.935936748981476,0,0.352168172597885,-0.995184719562531,0,0.0980182662606239,-0.995184659957886,0,0.098017692565918,-0.973854422569275,0,0.227172866463661,-0.986658573150635,0,0.162803262472153,0.97385561466217,0,0.227168053388596,0.986658573150635,0,0.162802994251251,0.995184600353241,0,0.0980185270309448,0.995184600353241,0,0.0980183929204941,0.91082501411438,0,0.412792682647705,0.935939073562622,0,0.352161973714828,0.986658573150635,0,0.162802994251251,0.97385561466217,0,0.227168053388596,0.81279855966568,0,0.58254486322403,0.849254190921783,0,0.527984082698822,0.935939073562622,0,0.352161973714828,0.91082501411438,0,0.412792682647705,0.683518886566162,0,0.729932844638824,0.729930222034454,0,0.683521628379822,0.849254190921783,0,0.527984082698822,0.81279855966568,0,0.58254486322403,0.527990281581879,0,0.849250435829163,
- 0.58255136013031,0,0.812793970108032,0.729930222034454,0,0.683521628379822,0.683518886566162,0,0.729932844638824,0.352126091718674,0,0.935952544212341,0.412774354219437,0,0.910833299160004,0.58255136013031,0,0.812793970108032,0.527990281581879,0,0.849250435829163,0.195093557238579,0,0.98078465461731,0.19509319961071,0,0.980784714221954,0.412774354219437,0,0.910833299160004,0.352126091718674,0,0.935952544212341,0.0981056392192841,0,0.995176017284393,0.19509319961071,0,0.980784714221954,0.195093557238579,0,0.98078465461731,0.0980768203735352,0,0.995178937911987,-0.412792444229126,0,0.910825073719025,-0.352138340473175,0,0.935947895050049,-0.195092514157295,0,0.980784833431244,-0.195093095302582,0,0.980784714221954,-0.582540988922119,0,0.81280130147934,-0.527988135814667,0,0.849251747131348,-0.352138340473175,0,0.935947895050049,-0.412792444229126,0,0.910825073719025,-0.729931592941284,0,0.683520138263702,-0.683516800403595,0,0.729934811592102,-0.527988135814667,0,0.849251747131348,-0.582540988922119,0,0.81280130147934,-0.849255561828613,0,0.5279820561409,-0.812798678874969,0,0.58254462480545,-0.683516800403595,0,0.729934811592102,-0.729931592941284,0,0.683520138263702,-0.923888862133026,0,0.382661074399948,-0.923880755901337,0,0.382680356502533,-0.812798678874969,0,0.58254462480545,-0.849255561828613,0,0.5279820561409,-0.956941902637482,0,0.290279507637024,-0.956928730010986,0,0.290322959423065,-0.923880755901337,0,0.382680356502533,-0.923888862133026,0,0.382661074399948,-0.812790334224701,0,-0.582556247711182,-0.849252641201019,0,-0.527986764907837,-0.935944378376007,0,-0.352147817611694,-0.910835087299347,0,-0.412770479917526,-0.683529615402222,0,-0.729922890663147,-0.729931116104126,0,-0.683520793914795,-0.849252641201019,0,-0.527986764907837,-0.812790334224701,0,-0.582556247711182,-0.527974724769592,0,-0.849260091781616,-0.582549452781677,0,-0.812795281410217,-0.729931116104126,0,-0.683520793914795,-0.683529615402222,0,-0.729922890663147,-0.352144092321396,0,-0.935945808887482,-0.412775278091431,0,-0.91083288192749,
- -0.582549452781677,0,-0.812795281410217,-0.527974724769592,0,-0.849260091781616,-0.16283518075943,0,-0.986653208732605,-0.227180331945419,0,-0.973852694034576,-0.412775278091431,0,-0.91083288192749,-0.352144092321396,0,-0.935945808887482,-0.0980476513504982,0,-0.995181739330292,-0.0980768203735352,0,-0.995178937911987,-0.227180331945419,0,-0.973852694034576,-0.16283518075943,0,-0.986653208732605,-0.902037858963013,-0.00550524704158306,-0.431621700525284,-0.914907574653625,-0.00639605196192861,-0.403612703084946,-0.956855237483978,-0.0127000594511628,-0.290287435054779,-0.95693176984787,2.1211190356224e-012,-0.290312945842743,0.89970064163208,-2.05693169164078e-007,0.436507552862167,0.956951260566711,0,0.290248602628708,0.956947565078735,-3.49794672394044e-011,0.290260910987854,0.902050018310547,-0.000483613170217723,0.431631296873093,0.89970064163208,-1.0284655616033e-007,0.436507523059845,0.956951260566711,0,0.290248602628708,0.956951260566711,0,0.290248602628708,0.89970064163208,-2.05693169164078e-007,0.436507552862167,0.89970064163208,-5.14232390003144e-008,0.436507523059845,0.956951379776001,0,0.290248662233353,0.956951260566711,0,0.290248602628708,0.89970064163208,-1.0284655616033e-007,0.436507523059845,-0.910835087299347,0,-0.412770479917526,-0.935944378376007,0,-0.352147817611694,-0.956932961940765,0,-0.290309071540833,-0.95694226026535,0,-0.290278375148773,-0.899702250957489,6.10223480634886e-008,-0.43650421500206,-0.899702191352844,1.2204479560296e-007,-0.436504304409027,-0.956932783126831,0,-0.290309637784958,-0.956932783126831,0,-0.290309637784958,-0.899702191352844,1.2204479560296e-007,-0.436504304409027,-0.899702191352844,2.4408961962763e-007,-0.436504304409027,-0.956932783126831,0,-0.290309637784958,-0.956932783126831,0,-0.290309637784958,-0.899702191352844,2.4408961962763e-007,-0.436504304409027,-0.902037858963013,-0.00550524704158306,-0.431621700525284,-0.95693176984787,2.1211190356224e-012,-0.290312945842743,-0.956932783126831,0,-0.290309637784958,0.902050018310547,-0.000483613170217723,0.431631296873093,
- 0.956947565078735,-3.49794672394044e-011,0.290260910987854,0.956942975521088,-0.00111455505248159,0.290273696184158,0.915080428123474,-0.00056157069047913,0.403271019458771,-0.956933259963989,-3.98181036753709e-011,0.290307998657227,-0.956927061080933,-0.00457872729748487,0.290292233228683,-0.914921998977661,-0.00197671982459724,0.403625935316086,-0.902041554450989,-0.00231593893840909,0.431642889976501,0.915080428123474,-0.00056157069047913,0.403271019458771,0.956942975521088,-0.00111455505248159,0.290273696184158,0.973621368408203,0.0148864593356848,0.227683708071709,-0.914907574653625,-0.00639605196192861,-0.403612703084946,-0.923880696296692,-4.64694949187106e-011,-0.382680743932724,-0.979613125324249,-0.0093619367107749,-0.200674891471863,-0.972813189029694,-0.0140966083854437,-0.231162130832672,0.973537623882294,-0.0198492165654898,-0.227663204073906,0.956938683986664,0.00368061615154147,-0.290267139673233,0.91507887840271,0.00158896064385772,-0.403271734714508,-0.972739815711975,0.0187958031892776,0.231136232614517,-0.979625821113586,0.00802399590611458,0.20067110657692,-0.923880040645599,0,0.382682293653488,-0.914921998977661,-0.00197671982459724,0.403625935316086,-0.0200776644051075,0.999700665473938,0.0139763848856092,0.0650100558996201,0.997749269008636,0.0164394192397594,0.0492815673351288,0.998462319374084,0.025386705994606,-0.0184687934815884,0.999825716018677,0.00272454600781202,0.865502238273621,-0.419954866170883,-0.273027122020721,0.7318155169487,-0.644521474838257,-0.221445709466934,0.6896932721138,-0.619580388069153,-0.374757796525955,0.851349413394928,-0.496290683746338,-0.169999450445175,0.00385662564076483,-0.987748146057129,-0.15600873529911,-0.00952364038676023,-0.999930143356323,-0.00699287885800004,0.72703742980957,-0.646864354610443,-0.230180725455284,0.873509168624878,-0.470867484807968,-0.123553588986397,0.941047489643097,-0.0296254232525826,-0.336974769830704,0.954955816268921,0.0228627882897854,-0.295866012573242,0.936497628688812,0.0225820522755384,-0.349946111440659,0.961271107196808,-0.0142916608601809,-0.275233894586563,
- 0.962704062461853,-0.0300007443875074,-0.268887847661972,0.352866381406784,-0.93565422296524,0.00604020291939378,0.675879538059235,-0.715813934803009,-0.175491541624069,0.21975664794445,-0.975121676921844,-0.0290644653141499,0.158795759081841,-0.987175583839417,-0.0163775458931923,0.996162950992584,0.0756120383739471,-0.0440707877278328,0.979182124137878,-0.198086068034172,-0.0443196333944798,0.989793181419373,0.138240978121758,-0.0346240103244781,0.993991255760193,0.0316714718937874,-0.10477788746357,0.00385662564076483,-0.987748146057129,-0.15600873529911,0.470094501972198,-0.859040141105652,-0.202635481953621,-0.567148804664612,-0.818999767303467,0.0870727524161339,-0.250347107648849,-0.947409689426422,0.199351921677589,0.880811035633087,-0.122587256133556,-0.457322955131531,0.988086700439453,-0.141874641180038,0.0596348829567432,0.996162950992584,0.0756120383739471,-0.0440707877278328,0.993991255760193,0.0316714718937874,-0.10477788746357,0.20666640996933,-0.978168427944183,-0.0218096077442169,0.188718780875206,-0.980606257915497,-0.0528824366629124,0.264845013618469,-0.962046384811401,-0.0657576099038124,0.328675448894501,-0.935788452625275,0.127563491463661,0.975023925304413,-0.191900134086609,-0.11181502789259,0.026187201961875,-0.880188882350922,0.473900586366653,0.0181004963815212,-0.996734857559204,-0.0786891803145409,0.976036429405212,-0.185796901583672,-0.113280095160007,0.989793181419373,0.138240978121758,-0.0346240103244781,0.979182124137878,-0.198086068034172,-0.0443196333944798,0.975023925304413,-0.191900134086609,-0.11181502789259,0.992217719554901,-0.0447994992136955,0.116176515817642,0.454012453556061,-0.570719242095947,-0.684216558933258,0.651715874671936,-0.718722403049469,-0.242290064692497,0.751810908317566,-0.65937876701355,6.15203389315866e-005,0.768784165382385,-0.633307039737701,0.0888424813747406,0.724379181861877,-0.671208500862122,-0.157333955168724,0.819793403148651,-0.356752157211304,-0.447958409786224,0.873509168624878,-0.470867484807968,-0.123553588986397,0.72703742980957,-0.646864354610443,-0.230180725455284,
- 0.101100772619247,-0.992526352405548,-0.0683380961418152,0.370029091835022,-0.922051191329956,-0.11357819288969,0.21975664794445,-0.975121676921844,-0.0290644653141499,0.675879538059235,-0.715813934803009,-0.175491541624069,0.906761586666107,-0.421467542648315,-0.0121841030195355,0.8382328748703,-0.466038554906845,-0.283149600028992,0.870381057262421,-0.437933057546616,-0.225058823823929,0.865131378173828,-0.447808593511581,-0.225865751504898,0.64790016412735,-0.728129982948303,-0.223723649978638,0.654115080833435,-0.738592207431793,-0.163141012191772,0.716912508010864,-0.689115941524506,-0.10562052577734,0.7318155169487,-0.644521474838257,-0.221445709466934,0.802142024040222,-0.565310657024384,-0.192333489656448,0.654115080833435,-0.738592207431793,-0.163141012191772,0.64790016412735,-0.728129982948303,-0.223723649978638,0.583053350448608,-0.791436731815338,-0.183512002229691,0.707357347011566,-0.653450787067413,-0.269532173871994,0.370152205228806,-0.411180675029755,-0.833017230033875,0.249852389097214,-0.885570645332336,-0.391584515571594,0.75180447101593,-0.624224901199341,-0.212446212768555,0.802142024040222,-0.565310657024384,-0.192333489656448,0.881414473056793,-0.472222536802292,-0.0106894662603736,0.654115080833435,-0.738592207431793,-0.163141012191772,-0.327479183673859,-0.944701194763184,0.0172337517142296,-0.0793509483337402,-0.987962901592255,-0.132788434624672,0.96879506111145,-0.0299200545996428,-0.246050700545311,-0.215460941195488,-0.0220165643841028,-0.976264238357544,0.420737743377686,-0.586224019527435,-0.692330300807953,0.349169284105301,-0.936904788017273,-0.0170407891273499,0.66034859418869,-0.702026784420013,-0.266642451286316,0.881414473056793,-0.472222536802292,-0.0106894662603736,0.768784165382385,-0.633307039737701,0.0888424813747406,0.650916516780853,-0.757345259189606,-0.0523066781461239,0.249852389097214,-0.885570645332336,-0.391584515571594,0.775799810886383,-0.460553079843521,-0.431306749582291,0.712306380271912,-0.693511724472046,-0.10798629373312,0.999264240264893,-0.033125814050436,-0.0193286314606667,
- 0.906761586666107,-0.421467542648315,-0.0121841030195355,0.865131378173828,-0.447808593511581,-0.225865751504898,0.75180447101593,-0.624224901199341,-0.212446212768555,-0.9975546002388,-0.0304969549179077,-0.062886193394661,-0.0667422935366631,-0.99550724029541,-0.0671631544828415,-0.281507045030594,-0.95455127954483,0.0979067608714104,0.988086700439453,-0.141874641180038,0.0596348829567432,0.989545285701752,-0.129727408289909,0.063016802072525,0.0493479706346989,0.997285783290863,0.0546431690454483,0.0795642286539078,0.87149041891098,0.483915269374847,0.712306380271912,-0.693511724472046,-0.10798629373312,0.986688077449799,0.061852227896452,-0.150402262806892,0.999264240264893,-0.033125814050436,-0.0193286314606667,0.75180447101593,-0.624224901199341,-0.212446212768555,0.864381372928619,-0.442501991987228,-0.238823845982552,0.890882909297943,-0.38422030210495,0.242285773158073,0.986688077449799,0.061852227896452,-0.150402262806892,0.712306380271912,-0.693511724472046,-0.10798629373312,0.989793181419373,0.138240978121758,-0.0346240103244781,0.755791902542114,0.618058919906616,0.216291144490242,0.993991255760193,0.0316714718937874,-0.10477788746357,0.536482572555542,-0.83921605348587,-0.0888982713222504,0.249275952577591,0.738375127315521,-0.626628816127777,0.555444419384003,0.823685169219971,-0.114123836159706,0.75180447101593,-0.624224901199341,-0.212446212768555,0.865131378173828,-0.447808593511581,-0.225865751504898,0.54819244146347,-0.83576363325119,-0.0313729047775269,0.707357347011566,-0.653450787067413,-0.269532173871994,0.30594676733017,-0.850884139537811,-0.427074521780014,-0.0134974215179682,-0.999903738498688,-0.0032367070671171,0.0517535284161568,-0.998525202274323,-0.0164020024240017,0.367441654205322,-0.906846046447754,-0.206438899040222,0.999264240264893,-0.033125814050436,-0.0193286314606667,0.986688077449799,0.061852227896452,-0.150402262806892,0.755791902542114,0.618058919906616,0.216291144490242,0.992051422595978,0.120982430875301,-0.0346036441624165,0.926800489425659,0.33832722902298,-0.163020178675652,
- 0.755791902542114,0.618058919906616,0.216291144490242,0.986688077449799,0.061852227896452,-0.150402262806892,0.64790016412735,-0.728129982948303,-0.223723649978638,0.7318155169487,-0.644521474838257,-0.221445709466934,0.865502238273621,-0.419954866170883,-0.273027122020721,0.811505734920502,-0.227991834282875,-0.538031756877899,0.775799810886383,-0.460553079843521,-0.431306749582291,0.864381372928619,-0.442501991987228,-0.238823845982552,0.712306380271912,-0.693511724472046,-0.10798629373312,0.574454486370087,-0.817045867443085,-0.0493775270879269,0.766752064228058,0.618641912937164,0.171386808156967,0.860118508338928,0.389878213405609,0.328924238681793,0.75180447101593,-0.624224901199341,-0.212446212768555,0.249852389097214,-0.885570645332336,-0.391584515571594,0.712306380271912,-0.693511724472046,-0.10798629373312,0.0981131941080093,-0.995118021965027,-0.0106705604121089,0.807619571685791,-0.589619278907776,-0.0099885705858469,0.66034859418869,-0.702026784420013,-0.266642451286316,-0.0667422935366631,-0.99550724029541,-0.0671631544828415,0.0981131941080093,-0.995118021965027,-0.0106705604121089,0.66034859418869,-0.702026784420013,-0.266642451286316,-0.281507045030594,-0.95455127954483,0.0979067608714104,0.755791902542114,0.618058919906616,0.216291144490242,0.880811035633087,-0.122587256133556,-0.457322955131531,0.993991255760193,0.0316714718937874,-0.10477788746357,0.594768345355988,-0.653028249740601,0.468833386898041,0.87709903717041,-0.434354603290558,-0.205020517110825,0.819793403148651,-0.356752157211304,-0.447958409786224,0.470094501972198,-0.859040141105652,-0.202635481953621,0.530838191509247,-0.844273507595062,0.0735729485750198,-0.335081487894058,-0.815317869186401,0.47220441699028,0.755791902542114,0.618058919906616,0.216291144490242,0.989793181419373,0.138240978121758,-0.0346240103244781,0.992051422595978,0.120982430875301,-0.0346036441624165,-0.00952364038676023,-0.999930143356323,-0.00699287885800004,0.00385662564076483,-0.987748146057129,-0.15600873529911,-0.250347107648849,-0.947409689426422,0.199351921677589,
- -0.0868087187409401,-0.973856151103973,-0.20992474257946,0.865131378173828,-0.447808593511581,-0.225865751504898,0.870381057262421,-0.437933057546616,-0.225058823823929,0.54604709148407,-0.818289935588837,-0.179538816213608,0.54819244146347,-0.83576363325119,-0.0313729047775269,0.20666640996933,-0.978168427944183,-0.0218096077442169,0.328675448894501,-0.935788452625275,0.127563491463661,0.370029091835022,-0.922051191329956,-0.11357819288969,0.101100772619247,-0.992526352405548,-0.0683380961418152,-0.250347107648849,-0.947409689426422,0.199351921677589,0.21975664794445,-0.975121676921844,-0.0290644653141499,0.370029091835022,-0.922051191329956,-0.11357819288969,-0.0868087187409401,-0.973856151103973,-0.20992474257946,0.707357347011566,-0.653450787067413,-0.269532173871994,0.654115080833435,-0.738592207431793,-0.163141012191772,0.881414473056793,-0.472222536802292,-0.0106894662603736,0.420737743377686,-0.586224019527435,-0.692330300807953,0.807619571685791,-0.589619278907776,-0.0099885705858469,0.101100772619247,-0.992526352405548,-0.0683380961418152,0.979182124137878,-0.198086068034172,-0.0443196333944798,0.184611618518829,-0.011292583309114,0.982746720314026,0.026187201961875,-0.880188882350922,0.473900586366653,0.64790016412735,-0.728129982948303,-0.223723649978638,0.811505734920502,-0.227991834282875,-0.538031756877899,0.819793403148651,-0.356752157211304,-0.447958409786224,0.583053350448608,-0.791436731815338,-0.183512002229691,0.0795642286539078,0.87149041891098,0.483915269374847,0.996162950992584,0.0756120383739471,-0.0440707877278328,0.988086700439453,-0.141874641180038,0.0596348829567432,-0.327479183673859,-0.944701194763184,0.0172337517142296,-0.215460941195488,-0.0220165643841028,-0.976264238357544,-0.9975546002388,-0.0304969549179077,-0.062886193394661,-0.281507045030594,-0.95455127954483,0.0979067608714104,0.30594676733017,-0.850884139537811,-0.427074521780014,0.594768345355988,-0.653028249740601,0.468833386898041,0.72703742980957,-0.646864354610443,-0.230180725455284,-0.00952364038676023,-0.999930143356323,-0.00699287885800004,
- -0.0868087187409401,-0.973856151103973,-0.20992474257946,0.30594676733017,-0.850884139537811,-0.427074521780014,-0.00952364038676023,-0.999930143356323,-0.00699287885800004,0.0981131941080093,-0.995118021965027,-0.0106705604121089,0.109375305473804,-0.993993580341339,0.00372845493257046,0.724457561969757,-0.464456051588058,0.509354293346405,0.807619571685791,-0.589619278907776,-0.0099885705858469,0.370029091835022,-0.922051191329956,-0.11357819288969,0.328675448894501,-0.935788452625275,0.127563491463661,-0.0868087187409401,-0.973856151103973,-0.20992474257946,0.349169284105301,-0.936904788017273,-0.0170407891273499,0.048890333622694,-0.993437826633453,0.10339730232954,-0.0793509483337402,-0.987962901592255,-0.132788434624672,-0.327479183673859,-0.944701194763184,0.0172337517142296,0.0981131941080093,-0.995118021965027,-0.0106705604121089,-0.0667422935366631,-0.99550724029541,-0.0671631544828415,-0.054381962865591,-0.997803866863251,-0.0378164015710354,0.109375305473804,-0.993993580341339,0.00372845493257046,0.819793403148651,-0.356752157211304,-0.447958409786224,0.87709903717041,-0.434354603290558,-0.205020517110825,0.454012453556061,-0.570719242095947,-0.684216558933258,0.583053350448608,-0.791436731815338,-0.183512002229691,0.724379181861877,-0.671208500862122,-0.157333955168724,0.802142024040222,-0.565310657024384,-0.192333489656448,0.583053350448608,-0.791436731815338,-0.183512002229691,0.454012453556061,-0.570719242095947,-0.684216558933258,0.249852389097214,-0.885570645332336,-0.391584515571594,0.370152205228806,-0.411180675029755,-0.833017230033875,0.650916516780853,-0.757345259189606,-0.0523066781461239,0.775799810886383,-0.460553079843521,-0.431306749582291,0.926800489425659,0.33832722902298,-0.163020178675652,0.890882909297943,-0.38422030210495,0.242285773158073,0.919500410556793,-0.389933377504349,-0.0497101508080959,0.923788547515869,0.377501964569092,-0.0640856847167015,0.880811035633087,-0.122587256133556,-0.457322955131531,0.955493092536926,-0.177184596657753,-0.235877811908722,0.989545285701752,-0.129727408289909,0.063016802072525,
- 0.988086700439453,-0.141874641180038,0.0596348829567432,0.0650100558996201,0.997749269008636,0.0164394192397594,-0.0200776644051075,0.999700665473938,0.0139763848856092,-0.0131971100345254,0.9998978972435,-0.00548133393749595,0.0795642286539078,0.87149041891098,0.483915269374847,0.184611618518829,-0.011292583309114,0.982746720314026,0.979182124137878,-0.198086068034172,-0.0443196333944798,0.996162950992584,0.0756120383739471,-0.0440707877278328,0.975023925304413,-0.191900134086609,-0.11181502789259,0.976036429405212,-0.185796901583672,-0.113280095160007,0.993948936462402,-0.106295220553875,0.0276931840926409,0.992217719554901,-0.0447994992136955,0.116176515817642,0.901231586933136,0.420665562152863,-0.104029521346092,0.8382328748703,-0.466038554906845,-0.283149600028992,0.906761586666107,-0.421467542648315,-0.0121841030195355,0.881414473056793,-0.472222536802292,-0.0106894662603736,0.802142024040222,-0.565310657024384,-0.192333489656448,0.724379181861877,-0.671208500862122,-0.157333955168724,0.768784165382385,-0.633307039737701,0.0888424813747406,0.707357347011566,-0.653450787067413,-0.269532173871994,0.54819244146347,-0.83576363325119,-0.0313729047775269,0.716912508010864,-0.689115941524506,-0.10562052577734,0.654115080833435,-0.738592207431793,-0.163141012191772,0.811505734920502,-0.227991834282875,-0.538031756877899,0.873509168624878,-0.470867484807968,-0.123553588986397,0.819793403148651,-0.356752157211304,-0.447958409786224,0.865502238273621,-0.419954866170883,-0.273027122020721,0.554438292980194,-0.832036793231964,0.0176942106336355,0.873509168624878,-0.470867484807968,-0.123553588986397,0.811505734920502,-0.227991834282875,-0.538031756877899,0.904116034507751,-0.37250217795372,0.20932312309742,0.651715874671936,-0.718722403049469,-0.242290064692497,0.454012453556061,-0.570719242095947,-0.684216558933258,0.87709903717041,-0.434354603290558,-0.205020517110825,0.594768345355988,-0.653028249740601,0.468833386898041,0.819793403148651,-0.356752157211304,-0.447958409786224,0.72703742980957,-0.646864354610443,-0.230180725455284,
- 0.873509168624878,-0.470867484807968,-0.123553588986397,0.554438292980194,-0.832036793231964,0.0176942106336355,0.470094501972198,-0.859040141105652,-0.202635481953621,0.00385662564076483,-0.987748146057129,-0.15600873529911,-0.567148804664612,-0.818999767303467,0.0870727524161339,0.158795759081841,-0.987175583839417,-0.0163775458931923,0.21975664794445,-0.975121676921844,-0.0290644653141499,-0.250347107648849,-0.947409689426422,0.199351921677589,0.707357347011566,-0.653450787067413,-0.269532173871994,0.881414473056793,-0.472222536802292,-0.0106894662603736,0.370152205228806,-0.411180675029755,-0.833017230033875,0.650916516780853,-0.757345259189606,-0.0523066781461239,0.370152205228806,-0.411180675029755,-0.833017230033875,0.881414473056793,-0.472222536802292,-0.0106894662603736,-0.0868087187409401,-0.973856151103973,-0.20992474257946,-0.0134974215179682,-0.999903738498688,-0.0032367070671171,0.30594676733017,-0.850884139537811,-0.427074521780014,0.328675448894501,-0.935788452625275,0.127563491463661,-0.0134974215179682,-0.999903738498688,-0.0032367070671171,-0.0868087187409401,-0.973856151103973,-0.20992474257946,0.755791902542114,0.618058919906616,0.216291144490242,0.926800489425659,0.33832722902298,-0.163020178675652,0.880811035633087,-0.122587256133556,-0.457322955131531,0.923788547515869,0.377501964569092,-0.0640856847167015,0.955493092536926,-0.177184596657753,-0.235877811908722,0.880811035633087,-0.122587256133556,-0.457322955131531,0.926800489425659,0.33832722902298,-0.163020178675652,0.906761586666107,-0.421467542648315,-0.0121841030195355,0.884793937206268,0.262047708034515,-0.385319083929062,0.901231586933136,0.420665562152863,-0.104029521346092,0.992051422595978,0.120982430875301,-0.0346036441624165,0.884793937206268,0.262047708034515,-0.385319083929062,0.906761586666107,-0.421467542648315,-0.0121841030195355,0.999264240264893,-0.033125814050436,-0.0193286314606667,0.901231586933136,0.420665562152863,-0.104029521346092,0.884793937206268,0.262047708034515,-0.385319083929062,0.992217719554901,-0.0447994992136955,0.116176515817642,
- 0.989793181419373,0.138240978121758,-0.0346240103244781,0.992217719554901,-0.0447994992136955,0.116176515817642,0.884793937206268,0.262047708034515,-0.385319083929062,0.992051422595978,0.120982430875301,-0.0346036441624165,0.992217719554901,-0.0447994992136955,0.116176515817642,0.993948936462402,-0.106295220553875,0.0276931840926409,0.901231586933136,0.420665562152863,-0.104029521346092,0.926800489425659,0.33832722902298,-0.163020178675652,0.986688077449799,0.061852227896452,-0.150402262806892,0.890882909297943,-0.38422030210495,0.242285773158073,0.895315945148468,-0.431194961071014,-0.111715607345104,0.828973054885864,-0.525964975357056,-0.190169513225555,0.048890333622694,-0.993437826633453,0.10339730232954,0.352866381406784,-0.93565422296524,0.00604020291939378,0.284251540899277,-0.948172450065613,-0.142020732164383,0.828973054885864,-0.525964975357056,-0.190169513225555,0.895315945148468,-0.431194961071014,-0.111715607345104,0.675879538059235,-0.715813934803009,-0.175491541624069,0.352866381406784,-0.93565422296524,0.00604020291939378,0.895315945148468,-0.431194961071014,-0.111715607345104,0.184527993202209,-0.639492213726044,-0.746323883533478,0.184527993202209,-0.639492213726044,-0.746323883533478,0.895315945148468,-0.431194961071014,-0.111715607345104,0.048890333622694,-0.993437826633453,0.10339730232954,0.349169284105301,-0.936904788017273,-0.0170407891273499,0.66034859418869,-0.702026784420013,-0.266642451286316,0.349169284105301,-0.936904788017273,-0.0170407891273499,-0.327479183673859,-0.944701194763184,0.0172337517142296,-0.281507045030594,-0.95455127954483,0.0979067608714104,0.184527993202209,-0.639492213726044,-0.746323883533478,0.420737743377686,-0.586224019527435,-0.692330300807953,0.101100772619247,-0.992526352405548,-0.0683380961418152,0.675879538059235,-0.715813934803009,-0.175491541624069,0.66034859418869,-0.702026784420013,-0.266642451286316,0.807619571685791,-0.589619278907776,-0.0099885705858469,0.420737743377686,-0.586224019527435,-0.692330300807953,0.101100772619247,-0.992526352405548,-0.0683380961418152,
- 0.807619571685791,-0.589619278907776,-0.0099885705858469,0.20666640996933,-0.978168427944183,-0.0218096077442169,0.979182124137878,-0.198086068034172,-0.0443196333944798,0.026187201961875,-0.880188882350922,0.473900586366653,0.975023925304413,-0.191900134086609,-0.11181502789259,0.367441654205322,-0.906846046447754,-0.206438899040222,0.567573428153992,-0.822472512722015,0.0374070256948471,0.594768345355988,-0.653028249740601,0.468833386898041,0.30594676733017,-0.850884139537811,-0.427074521780014,0.567573428153992,-0.822472512722015,0.0374070256948471,0.904116034507751,-0.37250217795372,0.20932312309742,0.87709903717041,-0.434354603290558,-0.205020517110825,0.594768345355988,-0.653028249740601,0.468833386898041,-0.921361267566681,-0.0230614691972733,0.388022691011429,-0.054381962865591,-0.997803866863251,-0.0378164015710354,-0.0667422935366631,-0.99550724029541,-0.0671631544828415,-0.9975546002388,-0.0304969549179077,-0.062886193394661,0.264845013618469,-0.962046384811401,-0.0657576099038124,0.0517535284161568,-0.998525202274323,-0.0164020024240017,-0.0134974215179682,-0.999903738498688,-0.0032367070671171,0.328675448894501,-0.935788452625275,0.127563491463661,0.0106830205768347,-0.999084413051605,0.0414262339472771,0.205861940979958,0.00242364802397788,0.978578150272369,0.96879506111145,-0.0299200545996428,-0.246050700545311,-0.0793509483337402,-0.987962901592255,-0.132788434624672,0.158795759081841,-0.987175583839417,-0.0163775458931923,0.110034048557281,-0.990992963314056,-0.0763246268033981,0.284251540899277,-0.948172450065613,-0.142020732164383,0.352866381406784,-0.93565422296524,0.00604020291939378,0.724457561969757,-0.464456051588058,0.509354293346405,0.188718780875206,-0.980606257915497,-0.0528824366629124,0.20666640996933,-0.978168427944183,-0.0218096077442169,0.807619571685791,-0.589619278907776,-0.0099885705858469,0.751810908317566,-0.65937876701355,6.15203389315866e-005,0.618778765201569,-0.774226665496826,-0.132988959550858,0.650916516780853,-0.757345259189606,-0.0523066781461239,0.768784165382385,-0.633307039737701,0.0888424813747406,
- 0.54604709148407,-0.818289935588837,-0.179538816213608,0.688239753246307,-0.719755411148071,-0.0909850522875786,0.716912508010864,-0.689115941524506,-0.10562052577734,0.54819244146347,-0.83576363325119,-0.0313729047775269,0.828973054885864,-0.525964975357056,-0.190169513225555,-0.0293951332569122,-0.998715043067932,-0.0412812829017639,0.048890333622694,-0.993437826633453,0.10339730232954,-0.0293951332569122,-0.998715043067932,-0.0412812829017639,0.0106830205768347,-0.999084413051605,0.0414262339472771,-0.0793509483337402,-0.987962901592255,-0.132788434624672,0.048890333622694,-0.993437826633453,0.10339730232954,0.618778765201569,-0.774226665496826,-0.132988959550858,0.829909563064575,-0.496964693069458,-0.253527820110321,0.775799810886383,-0.460553079843521,-0.431306749582291,0.650916516780853,-0.757345259189606,-0.0523066781461239,0.829909563064575,-0.496964693069458,-0.253527820110321,0.919500410556793,-0.389933377504349,-0.0497101508080959,0.890882909297943,-0.38422030210495,0.242285773158073,0.864381372928619,-0.442501991987228,-0.238823845982552,0.775799810886383,-0.460553079843521,-0.431306749582291,0.688239753246307,-0.719755411148071,-0.0909850522875786,0.6896932721138,-0.619580388069153,-0.374757796525955,0.7318155169487,-0.644521474838257,-0.221445709466934,0.716912508010864,-0.689115941524506,-0.10562052577734,-0.335081487894058,-0.815317869186401,0.47220441699028,0.110034048557281,-0.990992963314056,-0.0763246268033981,0.158795759081841,-0.987175583839417,-0.0163775458931923,-0.567148804664612,-0.818999767303467,0.0870727524161339,0.484299123287201,-0.874080240726471,-0.0379241220653057,0.530838191509247,-0.844273507595062,0.0735729485750198,0.470094501972198,-0.859040141105652,-0.202635481953621,0.554438292980194,-0.832036793231964,0.0176942106336355,0.484299123287201,-0.874080240726471,-0.0379241220653057,0.554438292980194,-0.832036793231964,0.0176942106336355,0.865502238273621,-0.419954866170883,-0.273027122020721,0.851349413394928,-0.496290683746338,-0.169999450445175,0.943944334983826,0.0466805435717106,-0.326787173748016,
- 0.944751083850861,-0.0390666872262955,-0.325452238321304,0.949470698833466,-0.0246870815753937,-0.312883317470551,0.941581606864929,0.0428980626165867,-0.334041714668274,0.586281359195709,0.64882892370224,-0.48507234454155,-0.0806196182966232,-0.976079821586609,-0.201912403106689,-0.0315471328794956,-0.963146984577179,-0.267119079828262,0.258472710847855,0.435952484607697,-0.862054109573364,0.348210960626602,-0.934474587440491,-0.0742045789957047,-0.248549982905388,-0.966573119163513,0.0629235878586769,-0.225980892777443,-0.966840505599976,0.118962749838829,-0.647704124450684,-0.757539331912994,0.081324614584446,0.942273914813995,-0.0296889953315258,-0.333524286746979,0.957596302032471,0.0242326315492392,-0.287092596292496,0.937616646289825,0.0305375661700964,-0.346327126026154,0.964494347572327,-0.0107378931716084,-0.263885378837585,0.965797364711761,-0.0314715653657913,-0.257381200790405,-0.224819123744965,-0.892374277114868,-0.391311287879944,-0.607786357402802,-0.793974637985229,0.0141465486958623,0.376078218221664,-0.926059305667877,0.0312960892915726,-0.0121041685342789,-0.999013245105743,0.0427332408726215,0.582456529140472,-0.808451354503632,-0.0845624580979347,0.318779498338699,-0.932202398777008,-0.171400770545006,0.0354582630097866,-0.998942911624908,0.029255323112011,-0.285700440406799,-0.957530379295349,0.0388680808246136,0.348210960626602,-0.934474587440491,-0.0742045789957047,0.242986410856247,-0.937898099422455,0.247597932815552,0.296328216791153,-0.947234690189362,-0.122212745249271,0.653579235076904,-0.746087789535522,-0.127228602766991,0.318779498338699,-0.932202398777008,-0.171400770545006,-0.0933477655053139,-0.960859417915344,-0.260835945606232,0.0641001090407372,-0.984405696392059,0.163818567991257,0.0354582630097866,-0.998942911624908,0.029255323112011,-0.180310055613518,-0.960480272769928,-0.212051510810852,-0.18774525821209,-0.96721225976944,-0.171032279729843,0.167609468102455,-0.984995067119598,-0.0411335006356239,0.225468724966049,-0.965332806110382,0.131515100598335,-0.094747394323349,-0.992557048797607,-0.0765085741877556,
- -0.8857541680336,-0.0480414368212223,0.461661815643311,-0.987120807170868,-0.0424299351871014,0.154247239232063,-0.0528547763824463,-0.998587429523468,-0.00544210756197572,0.200827047228813,-0.960948884487152,0.190382942557335,0.582456529140472,-0.808451354503632,-0.0845624580979347,-0.285700440406799,-0.957530379295349,0.0388680808246136,-0.094747394323349,-0.992557048797607,-0.0765085741877556,-0.196007087826729,-0.937298119068146,-0.28819015622139,-0.174672514200211,-0.982685387134552,-0.0617977939546108,0.106306232511997,-0.989297568798065,0.0999463200569153,0.152451902627945,-0.948582410812378,0.277398347854614,0.0400458760559559,-0.996422648429871,0.0744186416268349,-0.972496390342712,-0.227517291903496,0.0498671121895313,-0.647704124450684,-0.757539331912994,0.081324614584446,-0.225980892777443,-0.966840505599976,0.118962749838829,-0.607786357402802,-0.793974637985229,0.0141465486958623,-0.478949725627899,-0.858271181583405,0.184329971671104,0.594786882400513,-0.766376316547394,-0.242685005068779,0.376078218221664,-0.926059305667877,0.0312960892915726,-0.114786639809608,-0.989226520061493,-0.0908569321036339,-0.0831635147333145,-0.985658049583435,-0.146840125322342,0.0670236423611641,-0.993017554283142,-0.0970777049660683,0.165967911481857,-0.980498015880585,0.105253547430038,-0.0826829522848129,-0.975258708000183,-0.20502233505249,-0.221363916993141,-0.972699880599976,-0.0696627572178841,-0.166136607527733,-0.985547423362732,0.0330878458917141,-0.0167790949344635,-0.999231100082397,0.035435788333416,-0.221363916993141,-0.972699880599976,-0.0696627572178841,-0.464316189289093,-0.875508427619934,0.133773356676102,0.0876542702317238,-0.995956718921661,-0.0196711160242558,-0.166136607527733,-0.985547423362732,0.0330878458917141,-0.536586284637451,-0.669563412666321,-0.513575732707977,-0.56000030040741,-0.773206949234009,-0.297574818134308,-0.054939329624176,-0.834400296211243,-0.54841411113739,0.423649430274963,-0.90237957239151,-0.0789446905255318,0.0876542702317238,-0.995956718921661,-0.0196711160242558,0.233846694231033,-0.961086690425873,0.147065281867981,
- -0.166136607527733,-0.985547423362732,0.0330878458917141,0.578628897666931,-0.811206638813019,-0.0844531506299973,0.00653488002717495,-0.998456120491028,-0.0551604256033897,0.838013231754303,-0.0312495157122612,-0.544754266738892,0.201108157634735,-0.0314853638410568,-0.979062974452972,-0.943195879459381,-0.281470060348511,-0.176511347293854,-0.165706589818001,-0.98454886674881,0.0566121786832809,0.196101754903793,-0.978853523731232,-0.0582216866314411,0.233846694231033,-0.961086690425873,0.147065281867981,0.152451902627945,-0.948582410812378,0.277398347854614,0.559508144855499,-0.780177414417267,-0.279774934053421,-0.054939329624176,-0.834400296211243,-0.54841411113739,-0.180068969726563,-0.928425431251526,-0.324963629245758,-0.257849544286728,-0.961068093776703,0.0993060544133186,-0.0438791252672672,-0.997271716594696,0.059361357241869,-0.114786639809608,-0.989226520061493,-0.0908569321036339,0.165967911481857,-0.980498015880585,0.105253547430038,0.423649430274963,-0.90237957239151,-0.0789446905255318,-0.955213844776154,-0.0357168391346931,-0.293752938508987,-0.12444044649601,-0.955130219459534,-0.268776178359985,-0.0472183749079704,-0.998584508895874,-0.0244838204234838,0.0641001090407372,-0.984405696392059,0.163818567991257,0.0549547523260117,-0.994454383850098,0.089668981730938,0.98683500289917,-0.024073388427496,-0.159929156303406,0.914260029792786,-0.0509544536471367,0.401910781860352,0.446410328149796,-0.882273852825165,-0.149368360638618,-0.0438791252672672,-0.997271716594696,0.059361357241869,0.423649430274963,-0.90237957239151,-0.0789446905255318,-0.257849544286728,-0.961068093776703,0.0993060544133186,0.0869105830788612,-0.984632074832916,0.151480883359909,0.446410328149796,-0.882273852825165,-0.149368360638618,-0.257849544286728,-0.961068093776703,0.0993060544133186,-0.0388078168034554,-0.998565316200256,-0.036895826458931,0.582456529140472,-0.808451354503632,-0.0845624580979347,0.928412258625031,-0.368560671806335,-0.0470490083098412,0.318779498338699,-0.932202398777008,-0.171400770545006,0.242986410856247,-0.937898099422455,0.247597932815552,
- -0.0430345200002193,-0.94085681438446,0.336060285568237,0.296328216791153,-0.947234690189362,-0.122212745249271,0.423649430274963,-0.90237957239151,-0.0789446905255318,0.165967911481857,-0.980498015880585,0.105253547430038,0.0703599825501442,-0.727532684803009,-0.682455599308014,-0.536586284637451,-0.669563412666321,-0.513575732707977,-0.0802641361951828,-0.995872616767883,-0.0423745475709438,0.891641974449158,-0.446103692054749,0.0772407725453377,-0.754437744617462,0.524107217788696,0.395139932632446,0.0286683887243271,-0.976745069026947,0.212478637695313,-0.0438791252672672,-0.997271716594696,0.059361357241869,0.446410328149796,-0.882273852825165,-0.149368360638618,0.928412258625031,-0.368560671806335,-0.0470490083098412,0.444590270519257,-0.894086122512817,0.0543089285492897,0.657721698284149,-0.750848352909088,0.0602403618395329,0.928412258625031,-0.368560671806335,-0.0470490083098412,0.446410328149796,-0.882273852825165,-0.149368360638618,-0.221363916993141,-0.972699880599976,-0.0696627572178841,-0.0826829522848129,-0.975258708000183,-0.20502233505249,-0.811154067516327,-0.572261273860931,-0.120607323944569,-0.558664679527283,-0.760308623313904,-0.331397920846939,-0.180068969726563,-0.928425431251526,-0.324963629245758,-0.0388078168034554,-0.998565316200256,-0.036895826458931,-0.257849544286728,-0.961068093776703,0.0993060544133186,-0.783226311206818,-0.6132772564888,0.102214574813843,0.104080595076084,0.468599230051041,0.87725818157196,-0.967964291572571,0.209300085902214,0.138703465461731,0.423649430274963,-0.90237957239151,-0.0789446905255318,-0.054939329624176,-0.834400296211243,-0.54841411113739,-0.257849544286728,-0.961068093776703,0.0993060544133186,0.104818396270275,-0.971742272377014,0.211494654417038,-0.62925660610199,-0.475215345621109,0.614984929561615,0.196101754903793,-0.978853523731232,-0.0582216866314411,-0.0472183749079704,-0.998584508895874,-0.0244838204234838,-0.12444044649601,-0.955130219459534,-0.268776178359985,0.104818396270275,-0.971742272377014,0.211494654417038,0.196101754903793,-0.978853523731232,-0.0582216866314411,
- 0.928412258625031,-0.368560671806335,-0.0470490083098412,-0.0933477655053139,-0.960859417915344,-0.260835945606232,0.318779498338699,-0.932202398777008,-0.171400770545006,0.355204373598099,-0.348354309797287,0.867455542087555,0.900261640548706,0.431684732437134,0.0563687682151794,0.913350462913513,0.368523687124252,0.173150718212128,0.242986410856247,-0.937898099422455,0.247597932815552,0.0886388719081879,-0.987968862056732,0.126730769872665,-0.0430345200002193,-0.94085681438446,0.336060285568237,0.928412258625031,-0.368560671806335,-0.0470490083098412,0.582456529140472,-0.808451354503632,-0.0845624580979347,0.444590270519257,-0.894086122512817,0.0543089285492897,-0.248549982905388,-0.966573119163513,0.0629235878586769,0.348210960626602,-0.934474587440491,-0.0742045789957047,0.653579235076904,-0.746087789535522,-0.127228602766991,0.285777688026428,-0.800385475158691,0.526985943317413,0.165967911481857,-0.980498015880585,0.105253547430038,0.0670236423611641,-0.993017554283142,-0.0970777049660683,0.0700620859861374,-0.490429818630219,-0.868659794330597,0.0703599825501442,-0.727532684803009,-0.682455599308014,-0.478949725627899,-0.858271181583405,0.184329971671104,-0.180310055613518,-0.960480272769928,-0.212051510810852,0.225468724966049,-0.965332806110382,0.131515100598335,0.594786882400513,-0.766376316547394,-0.242685005068779,0.653579235076904,-0.746087789535522,-0.127228602766991,0.376078218221664,-0.926059305667877,0.0312960892915726,0.594786882400513,-0.766376316547394,-0.242685005068779,0.285777688026428,-0.800385475158691,0.526985943317413,-0.536586284637451,-0.669563412666321,-0.513575732707977,-0.166136607527733,-0.985547423362732,0.0330878458917141,0.233846694231033,-0.961086690425873,0.147065281867981,-0.943195879459381,-0.281470060348511,-0.176511347293854,-0.62925660610199,-0.475215345621109,0.614984929561615,-0.478949725627899,-0.858271181583405,0.184329971671104,-0.285700440406799,-0.957530379295349,0.0388680808246136,-0.0834985747933388,-0.191548958420753,0.977924883365631,-0.8857541680336,-0.0480414368212223,0.461661815643311,
- -0.221363916993141,-0.972699880599976,-0.0696627572178841,-0.558664679527283,-0.760308623313904,-0.331397920846939,-0.972496390342712,-0.227517291903496,0.0498671121895313,-0.464316189289093,-0.875508427619934,0.133773356676102,0.914260029792786,-0.0509544536471367,0.401910781860352,0.0354582630097866,-0.998942911624908,0.029255323112011,0.0641001090407372,-0.984405696392059,0.163818567991257,0.578628897666931,-0.811206638813019,-0.0844531506299973,0.201108157634735,-0.0314853638410568,-0.979062974452972,-0.955213844776154,-0.0357168391346931,-0.293752938508987,-0.0472183749079704,-0.998584508895874,-0.0244838204234838,-0.248549982905388,-0.966573119163513,0.0629235878586769,-0.0802641361951828,-0.995872616767883,-0.0423745475709438,0.0947943031787872,-0.964233160018921,0.247524306178093,-0.225980892777443,-0.966840505599976,0.118962749838829,0.285777688026428,-0.800385475158691,0.526985943317413,-0.0802641361951828,-0.995872616767883,-0.0423745475709438,-0.248549982905388,-0.966573119163513,0.0629235878586769,0.104818396270275,-0.971742272377014,0.211494654417038,0.114111423492432,-0.975585341453552,0.187647596001625,0.779992401599884,0.474002778530121,-0.408574610948563,-0.62925660610199,-0.475215345621109,0.614984929561615,0.594786882400513,-0.766376316547394,-0.242685005068779,0.225468724966049,-0.965332806110382,0.131515100598335,0.285777688026428,-0.800385475158691,0.526985943317413,0.00653488002717495,-0.998456120491028,-0.0551604256033897,0.578628897666931,-0.811206638813019,-0.0844531506299973,-0.165706589818001,-0.98454886674881,0.0566121786832809,-0.0859701335430145,-0.995223879814148,-0.0462450608611107,-0.12444044649601,-0.955130219459534,-0.268776178359985,-0.0838555321097374,-0.988248884677887,-0.127798214554787,0.114111423492432,-0.975585341453552,0.187647596001625,0.104818396270275,-0.971742272377014,0.211494654417038,-0.972496390342712,-0.227517291903496,0.0498671121895313,-0.876094996929169,-0.460095375776291,0.144117563962936,-0.196007087826729,-0.937298119068146,-0.28819015622139,-0.464316189289093,-0.875508427619934,0.133773356676102,
- -0.464316189289093,-0.875508427619934,0.133773356676102,-0.196007087826729,-0.937298119068146,-0.28819015622139,0.0400458760559559,-0.996422648429871,0.0744186416268349,0.0876542702317238,-0.995956718921661,-0.0196711160242558,-0.054939329624176,-0.834400296211243,-0.54841411113739,-0.56000030040741,-0.773206949234009,-0.297574818134308,0.559508144855499,-0.780177414417267,-0.279774934053421,-0.180068969726563,-0.928425431251526,-0.324963629245758,0.657721698284149,-0.750848352909088,0.0602403618395329,0.0869105830788612,-0.984632074832916,0.151480883359909,0.15024346113205,-0.975120544433594,0.162993565201759,0.596174299716949,-0.325579345226288,0.73387622833252,-0.0933477655053139,-0.960859417915344,-0.260835945606232,-0.0810199528932571,-0.986472904682159,-0.142502307891846,0.0549547523260117,-0.994454383850098,0.089668981730938,0.0641001090407372,-0.984405696392059,0.163818567991257,0.944751083850861,-0.0390666872262955,-0.325452238321304,0.943944334983826,0.0466805435717106,-0.326787173748016,0.935262322425842,0.0343998670578003,-0.352279812097549,0.914260029792786,-0.0509544536471367,0.401910781860352,-0.0834985747933388,-0.191548958420753,0.977924883365631,-0.285700440406799,-0.957530379295349,0.0388680808246136,0.0354582630097866,-0.998942911624908,0.029255323112011,-0.0528547763824463,-0.998587429523468,-0.00544210756197572,0.0827923640608788,-0.993638396263123,0.0763418525457382,0.200827047228813,-0.960948884487152,0.190382942557335,-0.094747394323349,-0.992557048797607,-0.0765085741877556,0.503148138523102,-0.847034156322479,-0.171391248703003,-0.0831635147333145,-0.985658049583435,-0.146840125322342,-0.114786639809608,-0.989226520061493,-0.0908569321036339,0.233846694231033,-0.961086690425873,0.147065281867981,0.0876542702317238,-0.995956718921661,-0.0196711160242558,0.0400458760559559,-0.996422648429871,0.0744186416268349,0.152451902627945,-0.948582410812378,0.277398347854614,-0.536586284637451,-0.669563412666321,-0.513575732707977,0.0703599825501442,-0.727532684803009,-0.682455599308014,-0.0167790949344635,-0.999231100082397,0.035435788333416,
- -0.166136607527733,-0.985547423362732,0.0330878458917141,-0.558664679527283,-0.760308623313904,-0.331397920846939,-0.647704124450684,-0.757539331912994,0.081324614584446,-0.972496390342712,-0.227517291903496,0.0498671121895313,-0.811154067516327,-0.572261273860931,-0.120607323944569,-0.330047577619553,-0.899373412132263,-0.286698579788208,-0.647704124450684,-0.757539331912994,0.081324614584446,-0.558664679527283,-0.760308623313904,-0.331397920846939,-0.815918505191803,-0.447854578495026,0.365654617547989,-0.174672514200211,-0.982685387134552,-0.0617977939546108,-0.196007087826729,-0.937298119068146,-0.28819015622139,-0.876094996929169,-0.460095375776291,0.144117563962936,0.0947943031787872,-0.964233160018921,0.247524306178093,-0.972496390342712,-0.227517291903496,0.0498671121895313,-0.225980892777443,-0.966840505599976,0.118962749838829,0.242986410856247,-0.937898099422455,0.247597932815552,0.348210960626602,-0.934474587440491,-0.0742045789957047,-0.647704124450684,-0.757539331912994,0.081324614584446,-0.330047577619553,-0.899373412132263,-0.286698579788208,0.296328216791153,-0.947234690189362,-0.122212745249271,-0.0121041685342789,-0.999013245105743,0.0427332408726215,0.376078218221664,-0.926059305667877,0.0312960892915726,0.653579235076904,-0.746087789535522,-0.127228602766991,0.99940699338913,-0.0334990695118904,-0.00797950848937035,0.248791739344597,-0.95870304107666,0.137808501720428,0.0114667825400829,0.713667392730713,0.700390934944153,0.559508144855499,-0.780177414417267,-0.279774934053421,-0.56000030040741,-0.773206949234009,-0.297574818134308,0.233846694231033,-0.961086690425873,0.147065281867981,0.285777688026428,-0.800385475158691,0.526985943317413,0.891641974449158,-0.446103692054749,0.0772407725453377,-0.0802641361951828,-0.995872616767883,-0.0423745475709438,0.19881771504879,-0.978478014469147,0.055247325450182,0.833218276500702,-0.486751437187195,-0.262336760759354,0.966371536254883,-0.14553165435791,-0.21200667321682,-0.932419240474701,0.0595988146960735,0.356430292129517,-0.313256770372391,-0.0726061537861824,-0.946888983249664,
- -0.236406370997429,-0.671429216861725,-0.702349603176117,0.596174299716949,-0.325579345226288,0.73387622833252,-0.0810199528932571,-0.986472904682159,-0.142502307891846,-0.0933477655053139,-0.960859417915344,-0.260835945606232,0.657721698284149,-0.750848352909088,0.0602403618395329,-0.114786639809608,-0.989226520061493,-0.0908569321036339,0.414228320121765,-0.869795262813568,-0.268087804317474,0.503148138523102,-0.847034156322479,-0.171391248703003,0.444590270519257,-0.894086122512817,0.0543089285492897,0.414228320121765,-0.869795262813568,-0.268087804317474,-0.114786639809608,-0.989226520061493,-0.0908569321036339,-0.0438791252672672,-0.997271716594696,0.059361357241869,0.503148138523102,-0.847034156322479,-0.171391248703003,0.414228320121765,-0.869795262813568,-0.268087804317474,0.200827047228813,-0.960948884487152,0.190382942557335,0.582456529140472,-0.808451354503632,-0.0845624580979347,0.200827047228813,-0.960948884487152,0.190382942557335,0.414228320121765,-0.869795262813568,-0.268087804317474,0.444590270519257,-0.894086122512817,0.0543089285492897,0.200827047228813,-0.960948884487152,0.190382942557335,0.0827923640608788,-0.993638396263123,0.0763418525457382,0.503148138523102,-0.847034156322479,-0.171391248703003,0.657721698284149,-0.750848352909088,0.0602403618395329,0.446410328149796,-0.882273852825165,-0.149368360638618,0.0869105830788612,-0.984632074832916,0.151480883359909,-0.172557339072227,-0.983946621417999,0.0455298759043217,-0.39322417974472,-0.892313778400421,0.221699655056,-0.0859701335430145,-0.995223879814148,-0.0462450608611107,-0.224819123744965,-0.892374277114868,-0.391311287879944,-0.0634418502449989,-0.95094883441925,-0.302772790193558,-0.39322417974472,-0.892313778400421,0.221699655056,-0.172557339072227,-0.983946621417999,0.0455298759043217,-0.607786357402802,-0.793974637985229,0.0141465486958623,-0.224819123744965,-0.892374277114868,-0.391311287879944,-0.172557339072227,-0.983946621417999,0.0455298759043217,-0.687007665634155,-0.640077471733093,-0.343978494405746,-0.687007665634155,-0.640077471733093,-0.343978494405746,
- -0.172557339072227,-0.983946621417999,0.0455298759043217,-0.0859701335430145,-0.995223879814148,-0.0462450608611107,-0.165706589818001,-0.98454886674881,0.0566121786832809,0.578628897666931,-0.811206638813019,-0.0844531506299973,-0.0472183749079704,-0.998584508895874,-0.0244838204234838,0.196101754903793,-0.978853523731232,-0.0582216866314411,-0.165706589818001,-0.98454886674881,0.0566121786832809,-0.687007665634155,-0.640077471733093,-0.343978494405746,-0.943195879459381,-0.281470060348511,-0.176511347293854,-0.478949725627899,-0.858271181583405,0.184329971671104,-0.607786357402802,-0.793974637985229,0.0141465486958623,0.702642500400543,-0.657713174819946,-0.271490067243576,0.528651237487793,0.10545140504837,0.842263519763947,0.104080595076084,0.468599230051041,0.87725818157196,-0.478949725627899,-0.858271181583405,0.184329971671104,-0.62925660610199,-0.475215345621109,0.614984929561615,-0.180310055613518,-0.960480272769928,-0.212051510810852,-0.285700440406799,-0.957530379295349,0.0388680808246136,-0.8857541680336,-0.0480414368212223,0.461661815643311,-0.094747394323349,-0.992557048797607,-0.0765085741877556,-0.0802641361951828,-0.995872616767883,-0.0423745475709438,0.0286683887243271,-0.976745069026947,0.212478637695313,0.00440369639545679,-0.999990224838257,0.000554993515834212,0.0947943031787872,-0.964233160018921,0.247524306178093,-0.00710066640749574,-0.999614238739014,-0.0268531367182732,0.792204260826111,0.446667283773422,-0.415813684463501,0.900261640548706,0.431684732437134,0.0563687682151794,0.0947943031787872,-0.964233160018921,0.247524306178093,-0.924652993679047,-0.0244451928883791,0.380025655031204,-0.0838555321097374,-0.988248884677887,-0.127798214554787,-0.12444044649601,-0.955130219459534,-0.268776178359985,-0.955213844776154,-0.0357168391346931,-0.293752938508987,0.167609468102455,-0.984995067119598,-0.0411335006356239,0.781977951526642,-0.525468230247498,-0.335251599550247,0.891641974449158,-0.446103692054749,0.0772407725453377,0.225468724966049,-0.965332806110382,0.131515100598335,0.0071134977042675,-0.996253073215485,-0.0861930102109909,
- 0.999428808689117,-0.0286710429936647,-0.0178944747895002,0.838013231754303,-0.0312495157122612,-0.544754266738892,0.00653488002717495,-0.998456120491028,-0.0551604256033897,-0.0628528147935867,-0.991727888584137,-0.111916974186897,-0.0634418502449989,-0.95094883441925,-0.302772790193558,-0.224819123744965,-0.892374277114868,-0.391311287879944,-0.0121041685342789,-0.999013245105743,0.0427332408726215,-0.807013809680939,-0.475186109542847,0.350609332323074,-0.18774525821209,-0.96721225976944,-0.171032279729843,-0.180310055613518,-0.960480272769928,-0.212051510810852,-0.62925660610199,-0.475215345621109,0.614984929561615,0.106306232511997,-0.989297568798065,0.0999463200569153,0.55626779794693,-0.806811094284058,-0.19905287027359,0.559508144855499,-0.780177414417267,-0.279774934053421,0.152451902627945,-0.948582410812378,0.277398347854614,0.0700620859861374,-0.490429818630219,-0.868659794330597,-0.0216108709573746,-0.997951149940491,0.0602210201323032,-0.0167790949344635,-0.999231100082397,0.035435788333416,0.0703599825501442,-0.727532684803009,-0.682455599308014,-0.39322417974472,-0.892313778400421,0.221699655056,-0.0886440277099609,-0.992288947105408,-0.0866315364837646,-0.0859701335430145,-0.995223879814148,-0.0462450608611107,-0.0886440277099609,-0.992288947105408,-0.0866315364837646,0.0071134977042675,-0.996253073215485,-0.0861930102109909,0.00653488002717495,-0.998456120491028,-0.0551604256033897,-0.0859701335430145,-0.995223879814148,-0.0462450608611107,0.55626779794693,-0.806811094284058,-0.19905287027359,-0.0727153941988945,-0.994683504104614,-0.0729193091392517,-0.180068969726563,-0.928425431251526,-0.324963629245758,0.559508144855499,-0.780177414417267,-0.279774934053421,-0.0727153941988945,-0.994683504104614,-0.0729193091392517,0.15024346113205,-0.975120544433594,0.162993565201759,0.0869105830788612,-0.984632074832916,0.151480883359909,-0.0388078168034554,-0.998565316200256,-0.036895826458931,-0.180068969726563,-0.928425431251526,-0.324963629245758,-0.0216108709573746,-0.997951149940491,0.0602210201323032,
- -0.0315471328794956,-0.963146984577179,-0.267119079828262,-0.0826829522848129,-0.975258708000183,-0.20502233505249,-0.0167790949344635,-0.999231100082397,0.035435788333416,-0.0430345200002193,-0.94085681438446,0.336060285568237,-0.0628528147935867,-0.991727888584137,-0.111916974186897,-0.0121041685342789,-0.999013245105743,0.0427332408726215,0.296328216791153,-0.947234690189362,-0.122212745249271,-0.0887486711144447,-0.992260158061981,0.0868526846170425,0.0886388719081879,-0.987968862056732,0.126730769872665,0.242986410856247,-0.937898099422455,0.247597932815552,-0.330047577619553,-0.899373412132263,-0.286698579788208,-0.0887486711144447,-0.992260158061981,0.0868526846170425,-0.330047577619553,-0.899373412132263,-0.286698579788208,-0.811154067516327,-0.572261273860931,-0.120607323944569,-0.735849738121033,-0.663304448127747,0.136206790804863,0.944069087505341,0.0453460365533829,-0.326615035533905,0.944940567016602,-0.0303635783493519,-0.325830012559891,0.949599742889404,-0.0239235386252403,-0.312550693750381,0.941711843013763,0.0454908460378647,-0.333331048488617,-0.433604836463928,-0.901102423667908,-0.0011650980450213,-0.298753619194031,-0.949225127696991,0.0985790640115738,0.400115072727203,-0.90339720249176,-0.154212325811386,0.311697244644165,-0.950175166130066,0.00348850362934172,-0.298753619194031,-0.949225127696991,0.0985790640115738,-0.141653046011925,-0.950124859809875,-0.277843743562698,0.0873329415917397,-0.992530703544617,0.0851811468601227,0.400115072727203,-0.90339720249176,-0.154212325811386,0.000834908161778003,-0.999907255172729,-0.0135952262207866,0.0535619296133518,-0.0242331176996231,0.998270452022552,-0.990367412567139,-0.0448023676872253,0.131015703082085,-0.0151679739356041,-0.99686074256897,-0.077708475291729,-0.0503656603395939,-0.992396116256714,-0.112308770418167,-0.433604836463928,-0.901102423667908,-0.0011650980450213,0.311697244644165,-0.950175166130066,0.00348850362934172,0.000834908161778003,-0.999907255172729,-0.0135952262207866,-0.171081140637398,-0.971335709095001,-0.165039837360382,
- -0.0887854546308517,-0.986674726009369,-0.136345982551575,0.0222295895218849,-0.995710492134094,-0.089812807738781,0.107371032238007,-0.99044007062912,0.0866016522049904,0.451383948326111,-0.388217180967331,-0.803454995155334,-0.617624461650848,-0.375391095876694,-0.691101670265198,-0.414420753717422,-0.854799389839172,-0.312367409467697,0.24510994553566,-0.967672824859619,-0.0594182536005974,-0.414420753717422,-0.854799389839172,-0.312367409467697,-0.206953167915344,-0.925655841827393,-0.316751778125763,-0.189346522092819,-0.979044198989868,0.0749688670039177,-0.41935396194458,-0.90460193157196,0.076403945684433,-0.171081140637398,-0.971335709095001,-0.165039837360382,0.107371032238007,-0.99044007062912,0.0866016522049904,0.24510994553566,-0.967672824859619,-0.0594182536005974,0.0873329415917397,-0.992530703544617,0.0851811468601227,0.0981559678912163,-0.993384182453156,0.0596084371209145,0.930334508419037,-0.0239950530230999,-0.365926086902618,0.99584037065506,-0.0467981435358524,0.0781789571046829,0.0679266303777695,-0.997657179832459,0.00814293883740902,-0.41935396194458,-0.90460193157196,0.076403945684433,0.24510994553566,-0.967672824859619,-0.0594182536005974,-0.189346522092819,-0.979044198989868,0.0749688670039177,0.030733386054635,-0.991557955741882,0.125969171524048,0.0679266303777695,-0.997657179832459,0.00814293883740902,-0.189346522092819,-0.979044198989868,0.0749688670039177,-0.055812656879425,-0.997935116291046,-0.0317844413220882,-0.433604836463928,-0.901102423667908,-0.0011650980450213,-0.70072066783905,-0.427824586629868,0.570926129817963,-0.298753619194031,-0.949225127696991,0.0985790640115738,0.24510994553566,-0.967672824859619,-0.0594182536005974,0.107371032238007,-0.99044007062912,0.0866016522049904,0.751903057098389,-0.515439987182617,-0.411051541566849,0.451383948326111,-0.388217180967331,-0.803454995155334,-0.41935396194458,-0.90460193157196,0.076403945684433,0.0679266303777695,-0.997657179832459,0.00814293883740902,-0.70072066783905,-0.427824586629868,0.570926129817963,-0.683629930019379,-0.590820848941803,0.42846342921257,
- -0.445448577404022,-0.773918688297272,0.450139284133911,-0.70072066783905,-0.427824586629868,0.570926129817963,0.0679266303777695,-0.997657179832459,0.00814293883740902,-0.206953167915344,-0.925655841827393,-0.316751778125763,-0.055812656879425,-0.997935116291046,-0.0317844413220882,-0.189346522092819,-0.979044198989868,0.0749688670039177,0.24510994553566,-0.967672824859619,-0.0594182536005974,-0.414420753717422,-0.854799389839172,-0.312367409467697,-0.189346522092819,-0.979044198989868,0.0749688670039177,-0.70072066783905,-0.427824586629868,0.570926129817963,-0.141653046011925,-0.950124859809875,-0.277843743562698,-0.298753619194031,-0.949225127696991,0.0985790640115738,-0.70072066783905,-0.427824586629868,0.570926129817963,-0.433604836463928,-0.901102423667908,-0.0011650980450213,-0.683629930019379,-0.590820848941803,0.42846342921257,0.107371032238007,-0.99044007062912,0.0866016522049904,0.0222295895218849,-0.995710492134094,-0.089812807738781,0.779362916946411,-0.562523782253265,-0.275971829891205,0.751903057098389,-0.515439987182617,-0.411051541566849,0.311697244644165,-0.950175166130066,0.00348850362934172,0.715502738952637,-0.122084386646748,0.687859833240509,0.0535619296133518,-0.0242331176996231,0.998270452022552,0.99584037065506,-0.0467981435358524,0.0781789571046829,0.400115072727203,-0.90339720249176,-0.154212325811386,0.0873329415917397,-0.992530703544617,0.0851811468601227,-0.414420753717422,-0.854799389839172,-0.312367409467697,-0.617624461650848,-0.375391095876694,-0.691101670265198,-0.821839094161987,-0.514308214187622,0.245086580514908,-0.206953167915344,-0.925655841827393,-0.316751778125763,-0.445448577404022,-0.773918688297272,0.450139284133911,0.030733386054635,-0.991557955741882,0.125969171524048,0.0947599932551384,-0.972758173942566,0.211570382118225,-0.708587050437927,-0.684885740280151,-0.169811263680458,-0.141653046011925,-0.950124859809875,-0.277843743562698,-0.133083641529083,-0.985857367515564,-0.101853303611279,0.0981559678912163,-0.993384182453156,0.0596084371209145,0.0873329415917397,-0.992530703544617,0.0851811468601227,
- 0.944940567016602,-0.0303635783493519,-0.325830012559891,0.944069087505341,0.0453460365533829,-0.326615035533905,0.935192823410034,0.0475893802940845,-0.350926786661148,0.99584037065506,-0.0467981435358524,0.0781789571046829,0.715502738952637,-0.122084386646748,0.687859833240509,0.311697244644165,-0.950175166130066,0.00348850362934172,0.400115072727203,-0.90339720249176,-0.154212325811386,-0.0151679739356041,-0.99686074256897,-0.077708475291729,0.0517551302909851,-0.993862986564636,0.0977632701396942,-0.0503656603395939,-0.992396116256714,-0.112308770418167,0.000834908161778003,-0.999907255172729,-0.0135952262207866,-0.51894211769104,-0.849568545818329,0.0945108905434608,-0.0887854546308517,-0.986674726009369,-0.136345982551575,-0.171081140637398,-0.971335709095001,-0.165039837360382,-0.70072066783905,-0.427824586629868,0.570926129817963,-0.445448577404022,-0.773918688297272,0.450139284133911,-0.141653046011925,-0.950124859809875,-0.277843743562698,-0.708587050437927,-0.684885740280151,-0.169811263680458,-0.133083641529083,-0.985857367515564,-0.101853303611279,-0.141653046011925,-0.950124859809875,-0.277843743562698,-0.445448577404022,-0.773918688297272,0.450139284133911,-0.171081140637398,-0.971335709095001,-0.165039837360382,-0.596769630908966,-0.701926946640015,0.388798713684082,-0.51894211769104,-0.849568545818329,0.0945108905434608,-0.683629930019379,-0.590820848941803,0.42846342921257,-0.596769630908966,-0.701926946640015,0.388798713684082,-0.171081140637398,-0.971335709095001,-0.165039837360382,-0.41935396194458,-0.90460193157196,0.076403945684433,-0.51894211769104,-0.849568545818329,0.0945108905434608,-0.596769630908966,-0.701926946640015,0.388798713684082,-0.0503656603395939,-0.992396116256714,-0.112308770418167,-0.433604836463928,-0.901102423667908,-0.0011650980450213,-0.0503656603395939,-0.992396116256714,-0.112308770418167,-0.596769630908966,-0.701926946640015,0.388798713684082,-0.683629930019379,-0.590820848941803,0.42846342921257,-0.0503656603395939,-0.992396116256714,-0.112308770418167,0.0517551302909851,-0.993862986564636,0.0977632701396942,
- -0.51894211769104,-0.849568545818329,0.0945108905434608,0.625716507434845,0.780050218105316,0.000702705758158118,0.913380920886993,-0.170521065592766,-0.369672685861588,0.23711434006691,-0.753991305828094,0.612596035003662,0.311697244644165,-0.950175166130066,0.00348850362934172,0.0535619296133518,-0.0242331176996231,0.998270452022552,0.000834908161778003,-0.999907255172729,-0.0135952262207866,-0.738241016864777,-0.585111737251282,0.335625559091568,-0.0942224711179733,-0.994082152843475,-0.0540628656744957,-0.206953167915344,-0.925655841827393,-0.316751778125763,-0.821839094161987,-0.514308214187622,0.245086580514908,-0.0942224711179733,-0.994082152843475,-0.0540628656744957,0.0947599932551384,-0.972758173942566,0.211570382118225,0.030733386054635,-0.991557955741882,0.125969171524048,-0.055812656879425,-0.997935116291046,-0.0317844413220882,-0.206953167915344,-0.925655841827393,-0.316751778125763,-0.348205983638763,0.934489548206329,-0.0740396603941917,0.24852180480957,0.966549515724182,0.0633958503603935,0.226146370172501,0.966804921627045,0.118937015533447,0.647757291793823,0.757474899291992,0.0814994648098946,-0.942061364650726,0.0296853687614203,-0.334124863147736,-0.957411110401154,-0.0242530629038811,-0.28770786523819,-0.937387704849243,-0.0305552333593369,-0.346944689750671,-0.964324116706848,0.0107194082811475,-0.264507591724396,-0.965634047985077,0.0314665399491787,-0.257993817329407,0.225782871246338,0.892530679702759,-0.390398561954498,0.59581333398819,0.803122937679291,0.000104370235931128,-0.371105909347534,0.927418887615204,0.0466342605650425,0.0174066461622715,0.998745799064636,0.0469430312514305,-0.348205983638763,0.934489548206329,-0.0740396603941917,-0.223093748092651,0.940842092037201,0.255039930343628,-0.367553979158401,0.929974973201752,0.00711732311174273,-0.653366088867188,0.746212720870972,-0.127589926123619,0.193534225225449,0.961459219455719,-0.195296511054039,0.203048974275589,0.967226386070251,-0.152460664510727,-0.196644991636276,0.978861808776855,-0.0562159083783627,-0.253675252199173,0.960557699203491,0.113920174539089,
- 0.0768780782818794,0.387423038482666,0.918690979480743,0.647757291793823,0.757474899291992,0.0814994648098946,0.226146370172501,0.966804921627045,0.118937015533447,0.59581333398819,0.803122937679291,0.000104370235931128,0.481288969516754,0.858135223388672,0.178787186741829,-0.593840420246124,0.768392503261566,-0.238592550158501,-0.371105909347534,0.927418887615204,0.0466342605650425,-0.577835381031036,0.811571776866913,-0.0863568410277367,-0.00905472598969936,0.998417854309082,-0.0554975569248199,-0.837652087211609,0.0312488488852978,-0.545309484004974,-0.200575485825539,0.0314870625734329,-0.979172050952911,0.943240821361542,0.281584978103638,-0.176087021827698,0.164934605360031,0.984514772891998,0.0593914650380611,-0.195611372590065,0.979041278362274,-0.0566951297223568,0.955436646938324,0.0357364788651466,-0.293024867773056,0.125616446137428,0.955404758453369,-0.267249405384064,0.048627033829689,0.998457968235016,-0.0267796497792006,-0.168015643954277,0.896749675273895,0.409402936697006,-0.367553979158401,0.929974973201752,0.00711732311174273,-0.223093748092651,0.940842092037201,0.255039930343628,0.0798164308071136,0.995903074741364,-0.0425028838217258,0.149967312812805,-0.276320993900299,0.949292719364166,0.754120469093323,-0.524069607257843,0.395794689655304,-0.0292850509285927,0.976758062839508,0.212334737181664,0.781251966953278,0.615439116954803,0.104307517409325,-0.104768231511116,-0.468660801649094,0.877143442630768,0.967888236045837,-0.209251493215561,0.139306798577309,-0.10671354830265,0.971507787704468,0.211624458432198,0.629089057445526,0.475207686424255,0.615162372589111,-0.195611372590065,0.979041278362274,-0.0566951297223568,0.048627033829689,0.998457968235016,-0.0267796497792006,0.125616446137428,0.955404758453369,-0.267249405384064,-0.10671354830265,0.971507787704468,0.211624458432198,-0.195611372590065,0.979041278362274,-0.0566951297223568,-0.165998637676239,0.893180012702942,0.417940139770508,-0.615416944026947,0.786266446113586,0.0552005246281624,0.0768780782818794,0.387423038482666,0.918690979480743,
- -0.168015643954277,0.896749675273895,0.409402936697006,-0.265969157218933,0.96398001909256,0.00174551107920706,-0.367553979158401,0.929974973201752,0.00711732311174273,0.24852180480957,0.966549515724182,0.0633958503603935,-0.348205983638763,0.934489548206329,-0.0740396603941917,-0.653366088867188,0.746212720870972,-0.127589926123619,-0.285935908555985,0.800435543060303,0.526824116706848,0.481288969516754,0.858135223388672,0.178787186741829,0.193534225225449,0.961459219455719,-0.195296511054039,-0.253675252199173,0.960557699203491,0.113920174539089,-0.593840420246124,0.768392503261566,-0.238592550158501,-0.653366088867188,0.746212720870972,-0.127589926123619,-0.371105909347534,0.927418887615204,0.0466342605650425,-0.593840420246124,0.768392503261566,-0.238592550158501,-0.285935908555985,0.800435543060303,0.526824116706848,0.943240821361542,0.281584978103638,-0.176087021827698,0.629089057445526,0.475207686424255,0.615162372589111,0.481288969516754,0.858135223388672,0.178787186741829,-0.577835381031036,0.811571776866913,-0.0863568410277367,-0.200575485825539,0.0314870625734329,-0.979172050952911,0.955436646938324,0.0357364788651466,-0.293024867773056,0.048627033829689,0.998457968235016,-0.0267796497792006,0.24852180480957,0.966549515724182,0.0633958503603935,0.0798164308071136,0.995903074741364,-0.0425028838217258,-0.165998637676239,0.893180012702942,0.417940139770508,0.226146370172501,0.966804921627045,0.118937015533447,-0.285935908555985,0.800435543060303,0.526824116706848,0.0798164308071136,0.995903074741364,-0.0425028838217258,0.24852180480957,0.966549515724182,0.0633958503603935,-0.10671354830265,0.971507787704468,0.211624458432198,-0.116280071437359,0.975499391555786,0.186761558055878,-0.779795289039612,-0.473843067884445,-0.409135729074478,0.629089057445526,0.475207686424255,0.615162372589111,-0.593840420246124,0.768392503261566,-0.238592550158501,-0.253675252199173,0.960557699203491,0.113920174539089,-0.285935908555985,0.800435543060303,0.526824116706848,-0.00905472598969936,0.998417854309082,-0.0554975569248199,
- -0.577835381031036,0.811571776866913,-0.0863568410277367,0.164934605360031,0.984514772891998,0.0593914650380611,0.0298835691064596,0.998404204845428,0.0479163788259029,0.125616446137428,0.955404758453369,-0.267249405384064,0.0853685885667801,0.988299071788788,-0.126400768756866,-0.116280071437359,0.975499391555786,0.186761558055878,-0.10671354830265,0.971507787704468,0.211624458432198,0.817974030971527,0.205285280942917,0.537379205226898,0.647757291793823,0.757474899291992,0.0814994648098946,0.0768780782818794,0.387423038482666,0.918690979480743,0.910922825336456,0.379278391599655,0.162381201982498,0.339127838611603,0.898997724056244,-0.277119755744934,0.647757291793823,0.757474899291992,0.0814994648098946,0.817974030971527,0.205285280942917,0.537379205226898,-0.165998637676239,0.893180012702942,0.417940139770508,0.0768780782818794,0.387423038482666,0.918690979480743,0.226146370172501,0.966804921627045,0.118937015533447,-0.223093748092651,0.940842092037201,0.255039930343628,-0.348205983638763,0.934489548206329,-0.0740396603941917,0.647757291793823,0.757474899291992,0.0814994648098946,0.339127838611603,0.898997724056244,-0.277119755744934,-0.367553979158401,0.929974973201752,0.00711732311174273,0.0174066461622715,0.998745799064636,0.0469430312514305,-0.371105909347534,0.927418887615204,0.0466342605650425,-0.653366088867188,0.746212720870972,-0.127589926123619,-0.285935908555985,0.800435543060303,0.526824116706848,0.149967312812805,-0.276320993900299,0.949292719364166,0.0798164308071136,0.995903074741364,-0.0425028838217258,-0.226315096020699,0.973432183265686,0.0348031185567379,-0.83307021856308,0.486718833446503,-0.262866914272308,-0.966232776641846,0.145544618368149,-0.212628766894341,0.53236198425293,0.840721786022186,0.0988814309239388,0.386379361152649,0.89291775226593,0.231103658676147,0.0298835691064596,0.998404204845428,0.0479163788259029,0.225782871246338,0.892530679702759,-0.390398561954498,0.0801620781421661,0.953960120677948,-0.289022773504257,0.386379361152649,0.89291775226593,0.231103658676147,0.53236198425293,0.840721786022186,0.0988814309239388,
- 0.59581333398819,0.803122937679291,0.000104370235931128,0.225782871246338,0.892530679702759,-0.390398561954498,0.53236198425293,0.840721786022186,0.0988814309239388,0.687188029289246,0.640118062496185,-0.343542337417603,0.687188029289246,0.640118062496185,-0.343542337417603,0.53236198425293,0.840721786022186,0.0988814309239388,0.0298835691064596,0.998404204845428,0.0479163788259029,0.164934605360031,0.984514772891998,0.0593914650380611,-0.577835381031036,0.811571776866913,-0.0863568410277367,0.048627033829689,0.998457968235016,-0.0267796497792006,-0.195611372590065,0.979041278362274,-0.0566951297223568,0.164934605360031,0.984514772891998,0.0593914650380611,0.687188029289246,0.640118062496185,-0.343542337417603,0.943240821361542,0.281584978103638,-0.176087021827698,0.481288969516754,0.858135223388672,0.178787186741829,0.59581333398819,0.803122937679291,0.000104370235931128,-0.701890230178833,0.65880411863327,-0.270790010690689,-0.529435336589813,-0.105577275156975,0.841755092144012,-0.104768231511116,-0.468660801649094,0.877143442630768,0.481288969516754,0.858135223388672,0.178787186741829,0.629089057445526,0.475207686424255,0.615162372589111,0.193534225225449,0.961459219455719,-0.195296511054039,0.0798164308071136,0.995903074741364,-0.0425028838217258,-0.0292850509285927,0.976758062839508,0.212334737181664,0.00136903987731785,0.99991375207901,-0.0130693065002561,-0.165998637676239,0.893180012702942,0.417940139770508,0.00136903987731785,0.99991375207901,-0.0130693065002561,-0.488716304302216,0.840796530246735,-0.232846692204475,-0.615416944026947,0.786266446113586,0.0552005246281624,-0.165998637676239,0.893180012702942,0.417940139770508,0.924362063407898,0.0244656894356012,0.380731195211411,0.0853685885667801,0.988299071788788,-0.126400768756866,0.125616446137428,0.955404758453369,-0.267249405384064,0.955436646938324,0.0357364788651466,-0.293024867773056,-0.196644991636276,0.978861808776855,-0.0562159083783627,-0.781793653964996,0.525437712669373,-0.335728913545609,0.149967312812805,-0.276320993900299,0.949292719364166,
- -0.253675252199173,0.960557699203491,0.113920174539089,-0.00919744744896889,0.996225237846375,-0.0863183215260506,-0.999414801597595,0.0286683924496174,-0.0186589360237122,-0.837652087211609,0.0312488488852978,-0.545309484004974,-0.00905472598969936,0.998417854309082,-0.0554975569248199,0.0686355158686638,0.991507351398468,-0.110464200377464,0.0801620781421661,0.953960120677948,-0.289022773504257,0.225782871246338,0.892530679702759,-0.390398561954498,0.0174066461622715,0.998745799064636,0.0469430312514305,0.806916832923889,0.475027650594711,0.351046949625015,0.203048974275589,0.967226386070251,-0.152460664510727,0.193534225225449,0.961459219455719,-0.195296511054039,0.629089057445526,0.475207686424255,0.615162372589111,0.386379361152649,0.89291775226593,0.231103658676147,0.0483435764908791,0.998519480228424,-0.024933909997344,0.0298835691064596,0.998404204845428,0.0479163788259029,0.0483435764908791,0.998519480228424,-0.024933909997344,-0.00919744744896889,0.996225237846375,-0.0863183215260506,-0.00905472598969936,0.998417854309082,-0.0554975569248199,0.0298835691064596,0.998404204845428,0.0479163788259029,-0.265969157218933,0.96398001909256,0.00174551107920706,0.0686355158686638,0.991507351398468,-0.110464200377464,0.0174066461622715,0.998745799064636,0.0469430312514305,-0.367553979158401,0.929974973201752,0.00711732311174273,0.104410499334335,0.990316987037659,0.0914923548698425,-0.168015643954277,0.896749675273895,0.409402936697006,-0.223093748092651,0.940842092037201,0.255039930343628,0.339127838611603,0.898997724056244,-0.277119755744934,0.104410499334335,0.990316987037659,0.0914923548698425,0.339127838611603,0.898997724056244,-0.277119755744934,0.910922825336456,0.379278391599655,0.162381201982498,0.849173784255981,0.492811501026154,0.189844042062759,-0.943857252597809,-0.0453583970665932,-0.327224850654602,-0.944728255271912,0.0303713772445917,-0.32644459605217,-0.949398934841156,0.0239281747490168,-0.313159823417664,-0.941498100757599,-0.0455015301704407,-0.333932518959045,-0.633375823497772,0.487422227859497,-0.601044595241547,
- 0.199342995882034,0.876852750778198,-0.437483191490173,0.0267514567822218,0.904565334320068,-0.425494760274887,-0.89255291223526,0.435862064361572,0.115644544363022,0.463761955499649,0.885938227176666,-0.00618714094161987,0.488526165485382,0.853974580764771,0.179080128669739,-0.191773757338524,0.979689180850983,-0.0585826486349106,-0.415492027997971,0.909562468528748,-0.00790233444422483,-0.941637873649597,0.0287565384060144,-0.335397034883499,-0.955422461032867,-0.0242548175156116,-0.294244349002838,-0.937211394309998,-0.0257149152457714,-0.347812473773956,-0.961747705936432,0.010029018856585,-0.273753255605698,-0.963197827339172,0.0289295613765717,-0.2672318816185,0.0165867395699024,0.99410218000412,-0.107172086834908,0.0441304668784142,0.997621595859528,-0.0529489852488041,0.181975230574608,0.976886570453644,0.112149901688099,0.235889792442322,0.961279392242432,-0.142470598220825,0.429330170154572,0.903043627738953,-0.0136994924396276,0.296477884054184,0.951005816459656,0.0876860022544861,-0.40450182557106,0.902153849601746,-0.149989381432533,-0.312054365873337,0.94997364282608,0.0131224626675248,0.463761955499649,0.885938227176666,-0.00618714094161987,-0.105252243578434,0.985322833061218,0.134390473365784,0.328659057617188,0.38707959651947,0.861482858657837,0.501018345355988,0.534930288791656,0.680316150188446,0.296477884054184,0.951005816459656,0.0876860022544861,0.157238334417343,0.947690546512604,-0.277774333953857,-0.101091504096985,0.992640435695648,0.0666745379567146,-0.40450182557106,0.902153849601746,-0.149989381432533,0.0500552952289581,0.995406866073608,0.0816063061356544,0.0615700520575047,0.997328341007233,0.039310485124588,-0.0623304024338722,0.998003780841827,0.0101649472489953,-0.133874744176865,0.963526666164398,0.231719434261322,-0.00319438520818949,0.999880790710449,-0.0151021741330624,-0.0543059818446636,0.0242182351648808,0.998230576515198,0.990347445011139,0.0448090769350529,0.131164059042931,0.0123529005795717,0.996999621391296,-0.0764132812619209,0.044939748942852,0.992062926292419,-0.117437802255154,
- 0.429330170154572,0.903043627738953,-0.0136994924396276,-0.312054365873337,0.94997364282608,0.0131224626675248,-0.00319438520818949,0.999880790710449,-0.0151021741330624,0.132536619901657,0.944663405418396,-0.300075203180313,0.0341988503932953,0.998831689357758,0.0341423079371452,-0.131310075521469,0.98835951089859,0.0768322870135307,-0.139611437916756,0.972881197929382,0.184420436620712,-0.0274538360536098,0.998840272426605,0.0395521447062492,-0.329576998949051,0.615740537643433,-0.715711295604706,-0.415492027997971,0.909562468528748,-0.00790233444422483,-0.191773757338524,0.979689180850983,-0.0585826486349106,0.393566906452179,0.907792687416077,0.144974425435066,-0.0161982402205467,0.996391654014587,0.0833145007491112,0.181975230574608,0.976886570453644,0.112149901688099,0.0441304668784142,0.997621595859528,-0.0529489852488041,0.175442770123482,0.97104400396347,-0.162152305245399,0.0934227854013443,0.986450374126434,-0.134862273931503,-0.026577640324831,0.995515882968903,-0.0907840207219124,-0.109688073396683,0.990536510944366,0.0824977830052376,0.199342995882034,0.876852750778198,-0.437483191490173,-0.124715529382229,0.987947642803192,-0.091681681573391,-0.0706895291805267,0.997245609760284,0.0224540419876575,-0.0341135412454605,0.996051490306854,0.0819608420133591,-0.124715529382229,0.987947642803192,-0.091681681573391,-0.131993219256401,0.980504155158997,-0.145565897226334,-0.0876090973615646,0.995965957641602,-0.0194045826792717,-0.0706895291805267,0.997245609760284,0.0224540419876575,-0.556615114212036,0.704300880432129,-0.440613210201263,0.647249758243561,0.614414930343628,-0.451178461313248,0.414686173200607,0.854769289493561,-0.312097400426865,-0.243123427033424,0.967920243740082,-0.0634149089455605,-0.0876090973615646,0.995965957641602,-0.0194045826792717,-0.282104313373566,0.95075511932373,0.12838126718998,-0.0706895291805267,0.997245609760284,0.0224540419876575,-0.600309550762177,0.795478045940399,-0.0827241986989975,-0.113104477524757,0.989111125469208,0.0941619649529457,-0.914545595645905,0.0293313805013895,-0.403417944908142,
- -0.520746409893036,0.0269648637622595,-0.853285431861877,0.948526918888092,0.316650748252869,0.00538413878530264,0.309699088335037,0.948439002037048,0.0674523785710335,-0.137535393238068,0.989738941192627,-0.0387404896318913,-0.282104313373566,0.95075511932373,0.12838126718998,-0.139611437916756,0.972881197929382,0.184420436620712,-0.705924153327942,0.549636363983154,0.44673353433609,0.414686173200607,0.854769289493561,-0.312097400426865,0.212076783180237,0.925563097000122,-0.31361797451973,0.189586833119392,0.978995084762573,0.0750034898519516,0.417128771543503,0.905305922031403,0.0801555290818214,0.175442770123482,0.97104400396347,-0.162152305245399,-0.109688073396683,0.990536510944366,0.0824977830052376,-0.243123427033424,0.967920243740082,-0.0634149089455605,-0.262950748205185,-0.00756665738299489,-0.964779615402222,0.0338100120425224,0.991856217384338,-0.122792601585388,-0.273852497339249,0.949441432952881,-0.153511494398117,-0.101091504096985,0.992640435695648,0.0666745379567146,-0.113795801997185,0.992631614208221,0.0416289754211903,-0.930065870285034,0.0239999163895845,-0.366608023643494,-0.995889246463776,0.0468053258955479,0.0775491744279861,-0.0689345002174377,0.997554540634155,0.011535344645381,0.417128771543503,0.905305922031403,0.0801555290818214,-0.243123427033424,0.967920243740082,-0.0634149089455605,0.189586833119392,0.978995084762573,0.0750034898519516,-0.0282127615064383,0.991784751415253,0.124768227338791,-0.0689345002174377,0.997554540634155,0.011535344645381,0.189586833119392,0.978995084762573,0.0750034898519516,0.0596596896648407,0.997745156288147,-0.0307463519275188,0.429330170154572,0.903043627738953,-0.0136994924396276,0.700335741043091,0.427865117788315,0.571367859840393,0.296477884054184,0.951005816459656,0.0876860022544861,-0.104515291750431,0.960756182670593,0.256951332092285,0.328659057617188,0.38707959651947,0.861482858657837,-0.105252243578434,0.985322833061218,0.134390473365784,-0.243123427033424,0.967920243740082,-0.0634149089455605,-0.109688073396683,0.990536510944366,0.0824977830052376,
- -0.331170737743378,0.882174432277679,-0.334804654121399,-0.556615114212036,0.704300880432129,-0.440613210201263,0.12749195098877,0.991167604923248,-0.0365027748048306,0.34821680188179,0.85824728012085,0.377036780118942,0.510407447814941,0.837345659732819,0.195797488093376,0.0318502336740494,0.981963276863098,0.186369687318802,0.417128771543503,0.905305922031403,0.0801555290818214,-0.0689345002174377,0.997554540634155,0.011535344645381,0.700335741043091,0.427865117788315,0.571367859840393,0.683575034141541,0.590648651123047,0.428788363933563,0.445249617099762,0.773910224437714,0.450350612401962,0.700335741043091,0.427865117788315,0.571367859840393,-0.0689345002174377,0.997554540634155,0.011535344645381,-0.124715529382229,0.987947642803192,-0.091681681573391,0.199342995882034,0.876852750778198,-0.437483191490173,-0.633375823497772,0.487422227859497,-0.601044595241547,-0.307817965745926,0.492745339870453,-0.81391042470932,0.0267460402101278,-0.321717500686646,0.946457922458649,-0.105635143816471,-0.0962942764163017,0.98973160982132,0.0383990257978439,0.634813547134399,0.771710634231567,0.0505142249166965,0.998044192790985,-0.0368244238197804,0.212076783180237,0.925563097000122,-0.31361797451973,0.0596596896648407,0.997745156288147,-0.0307463519275188,0.189586833119392,0.978995084762573,0.0750034898519516,0.309699088335037,0.948439002037048,0.0674523785710335,0.948526918888092,0.316650748252869,0.00538413878530264,0.34057691693306,0.889479398727417,-0.304686397314072,-0.243123427033424,0.967920243740082,-0.0634149089455605,0.414686173200607,0.854769289493561,-0.312097400426865,0.189586833119392,0.978995084762573,0.0750034898519516,-0.0455002933740616,0.997805535793304,0.0481020696461201,0.542273819446564,0.791135966777802,0.282918602228165,-0.137535393238068,0.989738941192627,-0.0387404896318913,0.0338100120425224,0.991856217384338,-0.122792601585388,-0.0455002933740616,0.997805535793304,0.0481020696461201,-0.137535393238068,0.989738941192627,-0.0387404896318913,-0.273852497339249,0.949441432952881,-0.153511494398117,
- 0.700335741043091,0.427865117788315,0.571367859840393,0.157238334417343,0.947690546512604,-0.277774333953857,0.296477884054184,0.951005816459656,0.0876860022544861,-0.151506632566452,0.962091743946075,0.226771712303162,-0.521399021148682,0.727157175540924,-0.446526080369949,-0.329576998949051,0.615740537643433,-0.715711295604706,0.264617472887039,0.309556365013123,-0.91331946849823,0.176092460751534,-0.0705465823411942,-0.981842577457428,0.14977140724659,-0.23993806540966,-0.959165513515472,0.700335741043091,0.427865117788315,0.571367859840393,0.429330170154572,0.903043627738953,-0.0136994924396276,0.683575034141541,0.590648651123047,0.428788363933563,0.488526165485382,0.853974580764771,0.179080128669739,0.463761955499649,0.885938227176666,-0.00618714094161987,0.501018345355988,0.534930288791656,0.680316150188446,0.39936363697052,0.890317022800446,0.218733504414558,-0.109688073396683,0.990536510944366,0.0824977830052376,-0.026577640324831,0.995515882968903,-0.0907840207219124,-0.428714841604233,0.875916659832001,-0.221299856901169,-0.331170737743378,0.882174432277679,-0.334804654121399,0.0500552952289581,0.995406866073608,0.0816063061356544,-0.133874744176865,0.963526666164398,0.231719434261322,-0.0161982402205467,0.996391654014587,0.0833145007491112,0.393566906452179,0.907792687416077,0.144974425435066,0.501018345355988,0.534930288791656,0.680316150188446,0.181975230574608,0.976886570453644,0.112149901688099,-0.0161982402205467,0.996391654014587,0.0833145007491112,0.39936363697052,0.890317022800446,0.218733504414558,-0.556615114212036,0.704300880432129,-0.440613210201263,-0.0706895291805267,0.997245609760284,0.0224540419876575,-0.282104313373566,0.95075511932373,0.12838126718998,0.948526918888092,0.316650748252869,0.00538413878530264,0.542273819446564,0.791135966777802,0.282918602228165,0.393566906452179,0.907792687416077,0.144974425435066,-0.312054365873337,0.94997364282608,0.0131224626675248,-0.716047406196594,0.122100919485092,0.687289893627167,-0.0543059818446636,0.0242182351648808,0.998230576515198,-0.124715529382229,0.987947642803192,-0.091681681573391,
- -0.307817965745926,0.492745339870453,-0.81391042470932,-0.329576998949051,0.615740537643433,-0.715711295604706,-0.131993219256401,0.980504155158997,-0.145565897226334,-0.995889246463776,0.0468053258955479,0.0775491744279861,-0.40450182557106,0.902153849601746,-0.149989381432533,-0.101091504096985,0.992640435695648,0.0666745379567146,-0.600309550762177,0.795478045940399,-0.0827241986989975,-0.520746409893036,0.0269648637622595,-0.853285431861877,-0.262950748205185,-0.00756665738299489,-0.964779615402222,-0.273852497339249,0.949441432952881,-0.153511494398117,0.488526165485382,0.853974580764771,0.179080128669739,0.12749195098877,0.991167604923248,-0.0365027748048306,-0.151506632566452,0.962091743946075,0.226771712303162,-0.191773757338524,0.979689180850983,-0.0585826486349106,0.39936363697052,0.890317022800446,0.218733504414558,0.12749195098877,0.991167604923248,-0.0365027748048306,0.488526165485382,0.853974580764771,0.179080128669739,-0.0455002933740616,0.997805535793304,0.0481020696461201,-0.0451638475060463,0.998444855213165,0.0326791852712631,0.669287741184235,0.738452553749084,0.0821075215935707,0.542273819446564,0.791135966777802,0.282918602228165,-0.0161982402205467,0.996391654014587,0.0833145007491112,-0.133874744176865,0.963526666164398,0.231719434261322,0.39936363697052,0.890317022800446,0.218733504414558,0.309699088335037,0.948439002037048,0.0674523785710335,0.17405578494072,0.970241546630859,-0.168333306908607,-0.113104477524757,0.989111125469208,0.0941619649529457,-0.600309550762177,0.795478045940399,-0.0827241986989975,-0.0455002933740616,0.997805535793304,0.0481020696461201,0.0338100120425224,0.991856217384338,-0.122792601585388,0.0111271608620882,0.99826318025589,-0.0578503720462322,-0.0451638475060463,0.998444855213165,0.0326791852712631,-0.329576998949051,0.615740537643433,-0.715711295604706,-0.521399021148682,0.727157175540924,-0.446526080369949,0.132536619901657,0.944663405418396,-0.300075203180313,-0.131993219256401,0.980504155158997,-0.145565897226334,-0.131993219256401,0.980504155158997,-0.145565897226334,
- 0.132536619901657,0.944663405418396,-0.300075203180313,-0.0274538360536098,0.998840272426605,0.0395521447062492,-0.0876090973615646,0.995965957641602,-0.0194045826792717,0.414686173200607,0.854769289493561,-0.312097400426865,0.647249758243561,0.614414930343628,-0.451178461313248,-0.705924153327942,0.549636363983154,0.44673353433609,0.212076783180237,0.925563097000122,-0.31361797451973,0.445249617099762,0.773910224437714,0.450350612401962,-0.0282127615064383,0.991784751415253,0.124768227338791,-0.0950527265667915,0.972931802272797,0.210638701915741,0.708802700042725,0.684706509113312,-0.169634595513344,0.157238334417343,0.947690546512604,-0.277774333953857,0.156187295913696,0.983739674091339,-0.0886666774749756,-0.113795801997185,0.992631614208221,0.0416289754211903,-0.101091504096985,0.992640435695648,0.0666745379567146,-0.944728255271912,0.0303713772445917,-0.32644459605217,-0.943857252597809,-0.0453583970665932,-0.327224850654602,-0.934962511062622,-0.0476186461746693,-0.351536005735397,-0.995889246463776,0.0468053258955479,0.0775491744279861,-0.716047406196594,0.122100919485092,0.687289893627167,-0.312054365873337,0.94997364282608,0.0131224626675248,-0.40450182557106,0.902153849601746,-0.149989381432533,0.0123529005795717,0.996999621391296,-0.0764132812619209,-0.0589325726032257,0.993695020675659,0.0953788161277771,0.044939748942852,0.992062926292419,-0.117437802255154,-0.00319438520818949,0.999880790710449,-0.0151021741330624,0.518774688243866,0.849643409252167,0.0947569459676743,0.0934227854013443,0.986450374126434,-0.134862273931503,0.175442770123482,0.97104400396347,-0.162152305245399,-0.282104313373566,0.95075511932373,0.12838126718998,-0.0876090973615646,0.995965957641602,-0.0194045826792717,-0.0274538360536098,0.998840272426605,0.0395521447062492,-0.139611437916756,0.972881197929382,0.184420436620712,-0.556615114212036,0.704300880432129,-0.440613210201263,-0.331170737743378,0.882174432277679,-0.334804654121399,-0.0341135412454605,0.996051490306854,0.0819608420133591,-0.0706895291805267,0.997245609760284,0.0224540419876575,
- 0.803135275840759,-0.321312218904495,0.501729249954224,-0.813318371772766,0.579005181789398,-0.0571527406573296,-0.935027360916138,-0.34842187166214,-0.0657724142074585,0.0267460402101278,-0.321717500686646,0.946457922458649,-0.324871361255646,0.820749878883362,0.469923764467239,-0.415492027997971,0.909562468528748,-0.00790233444422483,0.803135275840759,-0.321312218904495,0.501729249954224,0.605716824531555,-0.663062989711761,0.439834743738174,0.136911764740944,0.96767520904541,-0.211801499128342,0.132536619901657,0.944663405418396,-0.300075203180313,0.000880032253917307,-0.380585879087448,0.924745202064514,-0.383907735347748,0.3526471555233,0.853378474712372,-0.935027360916138,-0.34842187166214,-0.0657724142074585,-0.766190946102142,0.56718921661377,-0.302072614431381,-0.105252243578434,0.985322833061218,0.134390473365784,0.463761955499649,0.885938227176666,-0.00618714094161987,-0.415492027997971,0.909562468528748,-0.00790233444422483,0.0505142249166965,0.998044192790985,-0.0368244238197804,0.328659057617188,0.38707959651947,0.861482858657837,0.235889792442322,0.961279392242432,-0.142470598220825,0.181975230574608,0.976886570453644,0.112149901688099,0.501018345355988,0.534930288791656,0.680316150188446,-0.993994772434235,0.106860935688019,0.0235655102878809,-0.25724196434021,0.955572724342346,0.143900617957115,-0.516821503639221,-0.635338246822357,0.573795080184937,-0.705924153327942,0.549636363983154,0.44673353433609,0.647249758243561,0.614414930343628,-0.451178461313248,-0.282104313373566,0.95075511932373,0.12838126718998,0.875457525253296,0.346243262290955,0.337179392576218,0.46589919924736,0.875816464424133,0.126029521226883,0.136501997709274,0.988917946815491,-0.058384221047163,-0.133874744176865,0.963526666164398,0.231719434261322,0.34821680188179,0.85824728012085,0.377036780118942,0.39936363697052,0.890317022800446,0.218733504414558,0.700335741043091,0.427865117788315,0.571367859840393,0.445249617099762,0.773910224437714,0.450350612401962,0.157238334417343,0.947690546512604,-0.277774333953857,0.708802700042725,0.684706509113312,-0.169634595513344,
- 0.156187295913696,0.983739674091339,-0.0886666774749756,0.157238334417343,0.947690546512604,-0.277774333953857,0.445249617099762,0.773910224437714,0.450350612401962,0.175442770123482,0.97104400396347,-0.162152305245399,0.596932530403137,0.701884865760803,0.388624638319016,0.518774688243866,0.849643409252167,0.0947569459676743,0.683575034141541,0.590648651123047,0.428788363933563,0.596932530403137,0.701884865760803,0.388624638319016,0.175442770123482,0.97104400396347,-0.162152305245399,0.417128771543503,0.905305922031403,0.0801555290818214,0.518774688243866,0.849643409252167,0.0947569459676743,0.596932530403137,0.701884865760803,0.388624638319016,0.044939748942852,0.992062926292419,-0.117437802255154,0.429330170154572,0.903043627738953,-0.0136994924396276,0.044939748942852,0.992062926292419,-0.117437802255154,0.596932530403137,0.701884865760803,0.388624638319016,0.683575034141541,0.590648651123047,0.428788363933563,0.044939748942852,0.992062926292419,-0.117437802255154,-0.0589325726032257,0.993695020675659,0.0953788161277771,0.518774688243866,0.849643409252167,0.0947569459676743,-0.625692903995514,-0.780069470405579,3.61706806870643e-005,-0.913373231887817,0.170750305056572,-0.369585782289505,-0.238525062799454,0.748947739601135,0.618209600448608,0.0503603778779507,0.965474545955658,0.255583167076111,0.0856297314167023,0.994332790374756,0.0630070641636848,0.17405578494072,0.970241546630859,-0.168333306908607,0.0165867395699024,0.99410218000412,-0.107172086834908,-0.0294028744101524,0.99623841047287,-0.0815137401223183,0.0856297314167023,0.994332790374756,0.0630070641636848,0.0503603778779507,0.965474545955658,0.255583167076111,0.0441304668784142,0.997621595859528,-0.0529489852488041,0.0165867395699024,0.99410218000412,-0.107172086834908,0.0503603778779507,0.965474545955658,0.255583167076111,0.34057691693306,0.889479398727417,-0.304686397314072,0.34057691693306,0.889479398727417,-0.304686397314072,0.0503603778779507,0.965474545955658,0.255583167076111,0.17405578494072,0.970241546630859,-0.168333306908607,0.309699088335037,0.948439002037048,0.0674523785710335,
- -0.137535393238068,0.989738941192627,-0.0387404896318913,0.309699088335037,0.948439002037048,0.0674523785710335,-0.600309550762177,0.795478045940399,-0.0827241986989975,-0.273852497339249,0.949441432952881,-0.153511494398117,0.34057691693306,0.889479398727417,-0.304686397314072,0.948526918888092,0.316650748252869,0.00538413878530264,0.393566906452179,0.907792687416077,0.144974425435066,0.0441304668784142,0.997621595859528,-0.0529489852488041,-0.642254590988159,0.724749863147736,-0.249492824077606,-0.309511572122574,0.07077307254076,0.948258280754089,-0.910492599010468,-0.400105088949203,0.10449592769146,0.393566906452179,0.907792687416077,0.144974425435066,0.542273819446564,0.791135966777802,0.282918602228165,0.0500552952289581,0.995406866073608,0.0816063061356544,-0.312054365873337,0.94997364282608,0.0131224626675248,-0.0543059818446636,0.0242182351648808,0.998230576515198,-0.00319438520818949,0.999880790710449,-0.0151021741330624,0.12749195098877,0.991167604923248,-0.0365027748048306,0.0318502336740494,0.981963276863098,0.186369687318802,-0.090794526040554,0.995679616928101,-0.0194523427635431,-0.151506632566452,0.962091743946075,0.226771712303162,-0.090794526040554,0.995679616928101,-0.0194523427635431,-0.676080167293549,0.672513961791992,-0.301066011190414,-0.521399021148682,0.727157175540924,-0.446526080369949,-0.151506632566452,0.962091743946075,0.226771712303162,0.9430211186409,0.0243612863123417,0.331839829683304,0.0111271608620882,0.99826318025589,-0.0578503720462322,0.0338100120425224,0.991856217384338,-0.122792601585388,-0.262950748205185,-0.00756665738299489,-0.964779615402222,-0.0623304024338722,0.998003780841827,0.0101649472489953,0.510407447814941,0.837345659732819,0.195797488093376,0.34821680188179,0.85824728012085,0.377036780118942,-0.133874744176865,0.963526666164398,0.231719434261322,-0.0619414001703262,0.997822880744934,0.0226457808166742,-0.994660913944244,0.0283030066639185,-0.0992401763796806,-0.914545595645905,0.0293313805013895,-0.403417944908142,-0.113104477524757,0.989111125469208,0.0941619649529457,
- 0.235889792442322,0.961279392242432,-0.142470598220825,0.147875234484673,0.988984644412994,0.00650779576972127,-0.0294028744101524,0.99623841047287,-0.0815137401223183,0.0165867395699024,0.99410218000412,-0.107172086834908,-0.078030064702034,0.977445185184479,0.196245655417442,0.480016499757767,0.433923870325089,0.762426495552063,-0.104515291750431,0.960756182670593,0.256951332092285,0.669287741184235,0.738452553749084,0.0821075215935707,0.0615700520575047,0.997328341007233,0.039310485124588,0.0500552952289581,0.995406866073608,0.0816063061356544,0.542273819446564,0.791135966777802,0.282918602228165,-0.131310075521469,0.98835951089859,0.0768322870135307,-0.761374652385712,0.645114302635193,0.0643125474452972,-0.705924153327942,0.549636363983154,0.44673353433609,-0.139611437916756,0.972881197929382,0.184420436620712,-0.89255291223526,0.435862064361572,0.115644544363022,0.0218614432960749,0.997568726539612,-0.0661711022257805,0.437371551990509,0.88726669549942,-0.146505415439606,-0.428714841604233,0.875916659832001,-0.221299856901169,0.000173232896486297,0.99850457906723,0.0546678081154823,-0.0341135412454605,0.996051490306854,0.0819608420133591,-0.331170737743378,0.882174432277679,-0.334804654121399,0.0856297314167023,0.994332790374756,0.0630070641636848,0.0614400617778301,0.997933924198151,-0.018783999606967,0.17405578494072,0.970241546630859,-0.168333306908607,0.0614400617778301,0.997933924198151,-0.018783999606967,-0.0619414001703262,0.997822880744934,0.0226457808166742,-0.113104477524757,0.989111125469208,0.0941619649529457,0.17405578494072,0.970241546630859,-0.168333306908607,-0.761374652385712,0.645114302635193,0.0643125474452972,0.100834242999554,0.993484199047089,-0.0531184375286102,0.212076783180237,0.925563097000122,-0.31361797451973,-0.705924153327942,0.549636363983154,0.44673353433609,0.100834242999554,0.993484199047089,-0.0531184375286102,-0.0950527265667915,0.972931802272797,0.210638701915741,-0.0282127615064383,0.991784751415253,0.124768227338791,0.0596596896648407,0.997745156288147,-0.0307463519275188,
- 0.212076783180237,0.925563097000122,-0.31361797451973,0.000173232896486297,0.99850457906723,0.0546678081154823,0.0267514567822218,0.904565334320068,-0.425494760274887,0.199342995882034,0.876852750778198,-0.437483191490173,-0.0341135412454605,0.996051490306854,0.0819608420133591,0.480016499757767,0.433923870325089,0.762426495552063,0.147875234484673,0.988984644412994,0.00650779576972127,0.235889792442322,0.961279392242432,-0.142470598220825,0.328659057617188,0.38707959651947,0.861482858657837,0.0218614432960749,0.997568726539612,-0.0661711022257805,-0.078030064702034,0.977445185184479,0.196245655417442,-0.104515291750431,0.960756182670593,0.256951332092285,-0.105252243578434,0.985322833061218,0.134390473365784,0.0505142249166965,0.998044192790985,-0.0368244238197804,0.0218614432960749,0.997568726539612,-0.0661711022257805,0.0505142249166965,0.998044192790985,-0.0368244238197804,0.437371551990509,0.88726669549942,-0.146505415439606,-0.942311227321625,-0.0459436886012554,-0.331570088863373,-0.943165838718414,0.0326036848127842,-0.330719143152237,-0.947924315929413,0.0242431685328484,-0.317571729421616,-0.939960658550262,-0.0448494590818882,-0.338323354721069,0.323542833328247,0.695695161819458,-0.641348838806152,0.389864534139633,0.873530387878418,0.29146209359169,0.493027240037918,0.867586672306061,-0.064941868185997,0.0884418562054634,0.944281578063965,0.317033857107162,0.8998783826828,0.423666954040527,0.103562541306019,0.953708469867706,0.209944322705269,0.215322092175484,0.417849063873291,0.903856039047241,0.0919044092297554,0.598255634307861,0.772481322288513,0.212985649704933,0.0408728532493114,0.999164342880249,-0.000218819157453254,-0.0131927346810699,0.998998463153839,0.0427539572119713,-0.0140377897769213,0.999901413917542,-0.000544657174032182,0.0300561785697937,0.997512876987457,0.0637552514672279,0.0450968965888023,0.996958076953888,0.0635663419961929,0.928409934043884,0.369467884302139,-0.0393508821725845,0.902618050575256,0.421691179275513,0.0863553360104561,0.99265718460083,-0.0825663655996323,0.0883991569280624,
- 0.967438519001007,0.251958131790161,0.0240803379565477,-0.32725316286087,0.937185227870941,-0.120785444974899,-0.142943769693375,0.98945564031601,0.0233377926051617,0.578655540943146,0.814151763916016,0.0481105633080006,0.503865361213684,0.842494904994965,0.190583184361458,0.8998783826828,0.423666954040527,0.103562541306019,0.818247973918915,0.574682831764221,0.0144885880872607,0.655217409133911,-0.242459490895271,0.715474367141724,0.928789973258972,0.00298035820014775,0.370594441890717,0.224478006362915,0.92678028345108,-0.301144480705261,-0.00549239339306951,0.993785977363586,0.111172683537006,-0.32725316286087,0.937185227870941,-0.120785444974899,0.503865361213684,0.842494904994965,0.190583184361458,0.924604594707489,0.348223656415939,0.154423713684082,0.921710073947906,0.366951495409012,0.125686094164848,0.879103124141693,0.441845417022705,0.178746521472931,0.886204123497009,0.414074897766113,0.207808196544647,0.0946080610156059,0.995113968849182,-0.0282396394759417,0.600816667079926,0.0453649275004864,0.798098504543304,0.982573330402374,0.0444852784276009,0.180473327636719,0.0836651250720024,0.995017826557159,-0.054217267781496,0.578655540943146,0.814151763916016,0.0481105633080006,-0.142943769693375,0.98945564031601,0.0233377926051617,0.0946080610156059,0.995113968849182,-0.0282396394759417,0.0857342481613159,0.994004964828491,-0.0678515061736107,0.637877285480499,0.733226597309113,-0.235565721988678,0.546350657939911,0.80442476272583,0.233241766691208,0.450930148363113,0.835682988166809,0.313521713018417,0.403218895196915,0.780554831027985,0.477649211883545,0.484150975942612,0.80114871263504,0.351793527603149,0.323023408651352,0.939467310905457,-0.1142672970891,0.598255634307861,0.772481322288513,0.212985649704933,0.417849063873291,0.903856039047241,0.0919044092297554,0.969134032726288,0.222037181258202,0.107138559222221,0.960738658905029,0.212435051798821,0.178472846746445,0.99265718460083,-0.0825663655996323,0.0883991569280624,0.902618050575256,0.421691179275513,0.0863553360104561,0.522815465927124,0.847766160964966,-0.0892003327608109,
- 0.425436496734619,0.904931962490082,-0.0101043907925487,0.256858021020889,0.96642929315567,-0.00620472943410277,0.276166677474976,0.959817171096802,0.0498302802443504,0.271843254566193,0.954953610897064,0.11901593208313,0.153021931648254,0.973532021045685,0.169763624668121,0.508606910705566,0.822918593883514,0.253227144479752,0.389864534139633,0.873530387878418,0.29146209359169,0.50676304101944,0.84535551071167,0.169012486934662,0.153021931648254,0.973532021045685,0.169763624668121,0.271843254566193,0.954953610897064,0.11901593208313,0.715540289878845,0.674814641475677,0.180630654096603,-0.275776475667953,0.930049180984497,-0.242808148264885,0.684065103530884,0.661614418029785,-0.307117789983749,0.592518270015717,0.755365788936615,-0.279901027679443,0.43203130364418,0.900412023067474,0.0510603822767735,0.50676304101944,0.84535551071167,0.169012486934662,0.130939960479736,0.960572302341461,0.245266079902649,0.153021931648254,0.973532021045685,0.169763624668121,0.992640733718872,0.11873896420002,0.0237769652158022,0.992305994033813,0.0959419831633568,-0.0782550275325775,0.0450339876115322,0.998224377632141,0.0389870442450047,0.0277863871306181,0.353793650865555,-0.934910714626312,0.811584830284119,0.241641864180565,-0.531920492649078,0.975212335586548,0.202307149767876,0.0896253809332848,0.891636848449707,0.451340109109879,0.0357200875878334,0.130939960479736,0.960572302341461,0.245266079902649,0.403218895196915,0.780554831027985,0.477649211883545,-0.114716537296772,0.980402290821075,0.160160735249519,0.592518270015717,0.755365788936615,-0.279901027679443,0.44281017780304,0.87352454662323,-0.202173233032227,0.553310990333557,0.809314668178558,0.197121188044548,0.596567749977112,0.779699921607971,0.190196886658669,0.522815465927124,0.847766160964966,-0.0892003327608109,0.276166677474976,0.959817171096802,0.0498302802443504,0.43203130364418,0.900412023067474,0.0510603822767735,0.0187165848910809,-0.896943986415863,-0.441747784614563,0.993441104888916,0.0927943885326386,-0.0668128579854965,0.999704718589783,-0.0115849990397692,0.0213563740253448,
- -0.00549239339306951,0.993785977363586,0.111172683537006,-0.026306863874197,0.993965983390808,0.106488019227982,-0.933012783527374,0.0243058055639267,-0.359021693468094,-0.977233946323395,0.0500826649367809,0.206168726086617,0.553310990333557,0.809314668178558,0.197121188044548,0.0273988470435143,0.998833954334259,0.0397517196834087,0.596567749977112,0.779699921607971,0.190196886658669,0.43203130364418,0.900412023067474,0.0510603822767735,0.335446178913116,0.938437521457672,0.0825276002287865,0.257391750812531,0.937157571315765,0.235553041100502,0.0273988470435143,0.998833954334259,0.0397517196834087,0.553310990333557,0.809314668178558,0.197121188044548,0.578655540943146,0.814151763916016,0.0481105633080006,0.743702411651611,0.332993447780609,0.579674065113068,0.503865361213684,0.842494904994965,0.190583184361458,0.750915944576263,0.642669260501862,0.151991948485374,0.655217409133911,-0.242459490895271,0.715474367141724,0.818247973918915,0.574682831764221,0.0144885880872607,0.43203130364418,0.900412023067474,0.0510603822767735,0.276166677474976,0.959817171096802,0.0498302802443504,0.115310482680798,0.923269271850586,-0.366438686847687,-0.275776475667953,0.930049180984497,-0.242808148264885,0.847511768341064,0.525866448879242,-0.0720289498567581,0.970769107341766,0.0557707734405994,0.233445793390274,0.976207137107849,0.096918947994709,0.193974927067757,0.836109817028046,0.543757319450378,0.0724455937743187,0.596567749977112,0.779699921607971,0.190196886658669,0.0273988470435143,0.998833954334259,0.0397517196834087,0.743702411651611,0.332993447780609,0.579674065113068,0.817911803722382,0.3216732442379,0.47701832652092,0.594912171363831,0.524810254573822,0.608813524246216,0.743702411651611,0.332993447780609,0.579674065113068,0.0273988470435143,0.998833954334259,0.0397517196834087,0.271843254566193,0.954953610897064,0.11901593208313,0.389864534139633,0.873530387878418,0.29146209359169,0.323542833328247,0.695695161819458,-0.641348838806152,0.253632128238678,0.895942151546478,-0.364634603261948,0.44281017780304,0.87352454662323,-0.202173233032227,
- 0.335446178913116,0.938437521457672,0.0825276002287865,0.553310990333557,0.809314668178558,0.197121188044548,0.975212335586548,0.202307149767876,0.0896253809332848,0.811584830284119,0.241641864180565,-0.531920492649078,0.734492719173431,0.595588982105255,-0.325260430574417,0.43203130364418,0.900412023067474,0.0510603822767735,0.592518270015717,0.755365788936615,-0.279901027679443,0.553310990333557,0.809314668178558,0.197121188044548,0.982708394527435,0.143913730978966,0.116503983736038,0.930236756801605,0.318494707345963,0.182265400886536,0.891636848449707,0.451340109109879,0.0357200875878334,0.993441104888916,0.0927943885326386,-0.0668128579854965,0.982708394527435,0.143913730978966,0.116503983736038,0.891636848449707,0.451340109109879,0.0357200875878334,0.999704718589783,-0.0115849990397692,0.0213563740253448,0.743702411651611,0.332993447780609,0.579674065113068,0.224478006362915,0.92678028345108,-0.301144480705261,0.503865361213684,0.842494904994965,0.190583184361458,0.338668435811996,0.435170024633408,0.834224700927734,0.0992704331874847,0.994637846946716,0.0289978124201298,0.323023408651352,0.939467310905457,-0.1142672970891,0.750915944576263,0.642669260501862,0.151991948485374,0.694145083427429,-0.216133266687393,0.686621487140656,0.655217409133911,-0.242459490895271,0.715474367141724,0.743702411651611,0.332993447780609,0.579674065113068,0.578655540943146,0.814151763916016,0.0481105633080006,0.817911803722382,0.3216732442379,0.47701832652092,0.953708469867706,0.209944322705269,0.215322092175484,0.8998783826828,0.423666954040527,0.103562541306019,0.928789973258972,0.00298035820014775,0.370594441890717,0.955571711063385,0.286652892827988,-0.0686489120125771,0.276166677474976,0.959817171096802,0.0498302802443504,0.256858021020889,0.96642929315567,-0.00620472943410277,-0.0705543681979179,0.974453389644623,-0.213219463825226,0.115310482680798,0.923269271850586,-0.366438686847687,0.924604594707489,0.348223656415939,0.154423713684082,0.886204123497009,0.414074897766113,0.207808196544647,0.960738658905029,0.212435051798821,0.178472846746445,
- 0.969134032726288,0.222037181258202,0.107138559222221,0.928789973258972,0.00298035820014775,0.370594441890717,0.99265718460083,-0.0825663655996323,0.0883991569280624,0.960738658905029,0.212435051798821,0.178472846746445,0.955571711063385,0.286652892827988,-0.0686489120125771,-0.275776475667953,0.930049180984497,-0.242808148264885,0.153021931648254,0.973532021045685,0.169763624668121,0.130939960479736,0.960572302341461,0.245266079902649,0.811584830284119,0.241641864180565,-0.531920492649078,0.930236756801605,0.318494707345963,0.182265400886536,0.969134032726288,0.222037181258202,0.107138559222221,-0.142943769693375,0.98945564031601,0.0233377926051617,-0.371454477310181,0.170009627938271,0.912753105163574,0.600816667079926,0.0453649275004864,0.798098504543304,0.271843254566193,0.954953610897064,0.11901593208313,0.253632128238678,0.895942151546478,-0.364634603261948,0.323023408651352,0.939467310905457,-0.1142672970891,0.715540289878845,0.674814641475677,0.180630654096603,-0.977233946323395,0.0500826649367809,0.206168726086617,-0.32725316286087,0.937185227870941,-0.120785444974899,-0.00549239339306951,0.993785977363586,0.111172683537006,0.992640733718872,0.11873896420002,0.0237769652158022,0.0277863871306181,0.353793650865555,-0.934910714626312,0.0187165848910809,-0.896943986415863,-0.441747784614563,0.999704718589783,-0.0115849990397692,0.0213563740253448,0.847511768341064,0.525866448879242,-0.0720289498567581,0.338668435811996,0.435170024633408,0.834224700927734,0.417849063873291,0.903856039047241,0.0919044092297554,0.953708469867706,0.209944322705269,0.215322092175484,0.955571711063385,0.286652892827988,-0.0686489120125771,0.847511768341064,0.525866448879242,-0.0720289498567581,0.953708469867706,0.209944322705269,0.215322092175484,0.982708394527435,0.143913730978966,0.116503983736038,0.980438768863678,0.156303480267525,0.119619935750961,0.967298030853271,0.225754767656326,0.115625344216824,0.930236756801605,0.318494707345963,0.182265400886536,0.0707191228866577,0.996549308300018,-0.0434542596340179,-0.010248938575387,0.0218744501471519,0.999708294868469,
- -0.648170053958893,0.756808340549469,-0.0843607038259506,0.975212335586548,0.202307149767876,0.0896253809332848,0.986104547977448,0.109437175095081,0.124984815716743,0.992305994033813,0.0959419831633568,-0.0782550275325775,0.992640733718872,0.11873896420002,0.0237769652158022,0.982708394527435,0.143913730978966,0.116503983736038,0.993441104888916,0.0927943885326386,-0.0668128579854965,0.994998157024384,0.0952775105834007,-0.0300125386565924,0.980438768863678,0.156303480267525,0.119619935750961,0.323023408651352,0.939467310905457,-0.1142672970891,0.0992704331874847,0.994637846946716,0.0289978124201298,0.637877285480499,0.733226597309113,-0.235565721988678,0.715540289878845,0.674814641475677,0.180630654096603,0.484150975942612,0.80114871263504,0.351793527603149,0.50676304101944,0.84535551071167,0.169012486934662,0.715540289878845,0.674814641475677,0.180630654096603,0.637877285480499,0.733226597309113,-0.235565721988678,0.592518270015717,0.755365788936615,-0.279901027679443,0.684065103530884,0.661614418029785,-0.307117789983749,-0.114716537296772,0.980402290821075,0.160160735249519,0.44281017780304,0.87352454662323,-0.202173233032227,0.594912171363831,0.524810254573822,0.608813524246216,0.257391750812531,0.937157571315765,0.235553041100502,0.179958984255791,0.931717216968536,0.315464377403259,0.822110891342163,0.514287889003754,0.244216173887253,0.224478006362915,0.92678028345108,-0.301144480705261,0.205554082989693,0.974083662033081,-0.0943845808506012,-0.026306863874197,0.993965983390808,0.106488019227982,-0.00549239339306951,0.993785977363586,0.111172683537006,-0.943165838718414,0.0326036848127842,-0.330719143152237,-0.942311227321625,-0.0459436886012554,-0.331570088863373,-0.933410704135895,-0.0431107506155968,-0.356210500001907,-0.977233946323395,0.0500826649367809,0.206168726086617,-0.371454477310181,0.170009627938271,0.912753105163574,-0.142943769693375,0.98945564031601,0.0233377926051617,-0.32725316286087,0.937185227870941,-0.120785444974899,0.0946080610156059,0.995113968849182,-0.0282396394759417,0.0836651250720024,0.995017826557159,-0.054217267781496,
- -0.0061491122469306,0.993242204189301,0.115896500647068,0.0857342481613159,0.994004964828491,-0.0678515061736107,0.627113223075867,0.448360651731491,0.636947154998779,0.425436496734619,0.904931962490082,-0.0101043907925487,0.522815465927124,0.847766160964966,-0.0892003327608109,0.130939960479736,0.960572302341461,0.245266079902649,0.50676304101944,0.84535551071167,0.169012486934662,0.484150975942612,0.80114871263504,0.351793527603149,0.403218895196915,0.780554831027985,0.477649211883545,-0.275776475667953,0.930049180984497,-0.242808148264885,0.115310482680798,0.923269271850586,-0.366438686847687,0.508606910705566,0.822918593883514,0.253227144479752,0.153021931648254,0.973532021045685,0.169763624668121,0.253632128238678,0.895942151546478,-0.364634603261948,0.598255634307861,0.772481322288513,0.212985649704933,0.323023408651352,0.939467310905457,-0.1142672970891,0.323542833328247,0.695695161819458,-0.641348838806152,0.759431719779968,0.601022064685822,0.249070152640343,0.598255634307861,0.772481322288513,0.212985649704933,0.253632128238678,0.895942151546478,-0.364634603261948,-0.115329310297966,-0.980280637741089,0.160465106368065,0.628789067268372,0.773571193218231,-0.078815259039402,0.637877285480499,0.733226597309113,-0.235565721988678,-0.228110998868942,-0.858307361602783,0.459645420312881,0.338668435811996,0.435170024633408,0.834224700927734,0.323023408651352,0.939467310905457,-0.1142672970891,0.417849063873291,0.903856039047241,0.0919044092297554,0.598255634307861,0.772481322288513,0.212985649704933,0.759431719779968,0.601022064685822,0.249070152640343,0.818247973918915,0.574682831764221,0.0144885880872607,0.8998783826828,0.423666954040527,0.103562541306019,0.655217409133911,-0.242459490895271,0.715474367141724,0.967438519001007,0.251958131790161,0.0240803379565477,0.99265718460083,-0.0825663655996323,0.0883991569280624,0.928789973258972,0.00298035820014775,0.370594441890717,-0.275776475667953,0.930049180984497,-0.242808148264885,0.130939960479736,0.960572302341461,0.245266079902649,0.684065103530884,0.661614418029785,-0.307117789983749,
- -0.114716537296772,0.980402290821075,0.160160735249519,0.684065103530884,0.661614418029785,-0.307117789983749,0.130939960479736,0.960572302341461,0.245266079902649,0.955571711063385,0.286652892827988,-0.0686489120125771,0.970769107341766,0.0557707734405994,0.233445793390274,0.847511768341064,0.525866448879242,-0.0720289498567581,0.886204123497009,0.414074897766113,0.207808196544647,0.970769107341766,0.0557707734405994,0.233445793390274,0.955571711063385,0.286652892827988,-0.0686489120125771,0.743702411651611,0.332993447780609,0.579674065113068,0.594912171363831,0.524810254573822,0.608813524246216,0.224478006362915,0.92678028345108,-0.301144480705261,0.822110891342163,0.514287889003754,0.244216173887253,0.205554082989693,0.974083662033081,-0.0943845808506012,0.224478006362915,0.92678028345108,-0.301144480705261,0.594912171363831,0.524810254573822,0.608813524246216,0.522815465927124,0.847766160964966,-0.0892003327608109,0.703127324581146,0.38426262140274,0.598292648792267,0.627113223075867,0.448360651731491,0.636947154998779,0.817911803722382,0.3216732442379,0.47701832652092,0.703127324581146,0.38426262140274,0.598292648792267,0.522815465927124,0.847766160964966,-0.0892003327608109,0.596567749977112,0.779699921607971,0.190196886658669,-0.349861949682236,-0.333587229251862,-0.875394999980927,-0.902848601341248,-0.321963578462601,-0.284963309764862,0.0254720840603113,0.99955552816391,0.0154903996735811,0.578655540943146,0.814151763916016,0.0481105633080006,0.0857342481613159,0.994004964828491,-0.0678515061736107,0.703127324581146,0.38426262140274,0.598292648792267,0.817911803722382,0.3216732442379,0.47701832652092,0.0857342481613159,0.994004964828491,-0.0678515061736107,-0.0061491122469306,0.993242204189301,0.115896500647068,0.627113223075867,0.448360651731491,0.636947154998779,-0.82203209400177,-0.558769941329956,-0.109724082052708,-0.855718851089478,0.388028591871262,-0.342314273118973,-0.166207373142242,0.445618242025375,0.879658758640289,0.806974112987518,0.590584695339203,-0.00157494423910975,0.802510261535645,0.587689220905304,0.102950103580952,
- 0.986104547977448,0.109437175095081,0.124984815716743,0.928409934043884,0.369467884302139,-0.0393508821725845,0.898789405822754,0.437760502099991,0.0233089569956064,0.802510261535645,0.587689220905304,0.102950103580952,0.806974112987518,0.590584695339203,-0.00157494423910975,0.902618050575256,0.421691179275513,0.0863553360104561,0.928409934043884,0.369467884302139,-0.0393508821725845,0.806974112987518,0.590584695339203,-0.00157494423910975,0.734492719173431,0.595588982105255,-0.325260430574417,0.734492719173431,0.595588982105255,-0.325260430574417,0.806974112987518,0.590584695339203,-0.00157494423910975,0.986104547977448,0.109437175095081,0.124984815716743,0.975212335586548,0.202307149767876,0.0896253809332848,0.891636848449707,0.451340109109879,0.0357200875878334,0.975212335586548,0.202307149767876,0.0896253809332848,0.992640733718872,0.11873896420002,0.0237769652158022,0.999704718589783,-0.0115849990397692,0.0213563740253448,0.734492719173431,0.595588982105255,-0.325260430574417,0.811584830284119,0.241641864180565,-0.531920492649078,0.969134032726288,0.222037181258202,0.107138559222221,0.902618050575256,0.421691179275513,0.0863553360104561,0.891636848449707,0.451340109109879,0.0357200875878334,0.930236756801605,0.318494707345963,0.182265400886536,0.811584830284119,0.241641864180565,-0.531920492649078,0.969134032726288,0.222037181258202,0.107138559222221,0.930236756801605,0.318494707345963,0.182265400886536,0.924604594707489,0.348223656415939,0.154423713684082,-0.142943769693375,0.98945564031601,0.0233377926051617,0.600816667079926,0.0453649275004864,0.798098504543304,0.0946080610156059,0.995113968849182,-0.0282396394759417,0.836109817028046,0.543757319450378,0.0724455937743187,0.644875824451447,0.66845178604126,0.370549976825714,0.338668435811996,0.435170024633408,0.834224700927734,0.847511768341064,0.525866448879242,-0.0720289498567581,0.644875824451447,0.66845178604126,0.370549976825714,0.0648909509181976,0.997845053672791,0.00972645729780197,0.0992704331874847,0.994637846946716,0.0289978124201298,0.338668435811996,0.435170024633408,0.834224700927734,
- 0.013391375541687,-0.999878764152527,-0.00794422626495361,0.994998157024384,0.0952775105834007,-0.0300125386565924,0.993441104888916,0.0927943885326386,-0.0668128579854965,0.0187165848910809,-0.896943986415863,-0.441747784614563,0.879103124141693,0.441845417022705,0.178746521472931,0.976207137107849,0.096918947994709,0.193974927067757,0.970769107341766,0.0557707734405994,0.233445793390274,0.886204123497009,0.414074897766113,0.207808196544647,0.98873645067215,0.134342193603516,0.0659727528691292,0.0380600020289421,0.865300714969635,0.499806076288223,0.0450339876115322,0.998224377632141,0.0389870442450047,0.992305994033813,0.0959419831633568,-0.0782550275325775,0.967438519001007,0.251958131790161,0.0240803379565477,0.956210613250732,0.277972817420959,0.0916098579764366,0.898789405822754,0.437760502099991,0.0233089569956064,0.928409934043884,0.369467884302139,-0.0393508821725845,0.967298030853271,0.225754767656326,0.115625344216824,0.921710073947906,0.366951495409012,0.125686094164848,0.924604594707489,0.348223656415939,0.154423713684082,0.930236756801605,0.318494707345963,0.182265400886536,0.450930148363113,0.835682988166809,0.313521713018417,-0.0185472294688225,0.999446451663971,0.0276202205568552,-0.114716537296772,0.980402290821075,0.160160735249519,0.403218895196915,0.780554831027985,0.477649211883545,-0.0705543681979179,0.974453389644623,-0.213219463825226,0.543189764022827,0.815616548061371,0.19928503036499,0.508606910705566,0.822918593883514,0.253227144479752,0.115310482680798,0.923269271850586,-0.366438686847687,0.802510261535645,0.587689220905304,0.102950103580952,0.996151685714722,0.0872545540332794,0.00827520340681076,0.986104547977448,0.109437175095081,0.124984815716743,0.996151685714722,0.0872545540332794,0.00827520340681076,0.98873645067215,0.134342193603516,0.0659727528691292,0.992305994033813,0.0959419831633568,-0.0782550275325775,0.986104547977448,0.109437175095081,0.124984815716743,-0.0185472294688225,0.999446451663971,0.0276202205568552,0.348208010196686,0.936515808105469,0.0410986691713333,0.44281017780304,0.87352454662323,-0.202173233032227,
- -0.114716537296772,0.980402290821075,0.160160735249519,0.348208010196686,0.936515808105469,0.0410986691713333,0.179958984255791,0.931717216968536,0.315464377403259,0.257391750812531,0.937157571315765,0.235553041100502,0.335446178913116,0.938437521457672,0.0825276002287865,0.44281017780304,0.87352454662323,-0.202173233032227,0.543189764022827,0.815616548061371,0.19928503036499,0.493027240037918,0.867586672306061,-0.064941868185997,0.389864534139633,0.873530387878418,0.29146209359169,0.508606910705566,0.822918593883514,0.253227144479752,0.694145083427429,-0.216133266687393,0.686621487140656,0.956210613250732,0.277972817420959,0.0916098579764366,0.967438519001007,0.251958131790161,0.0240803379565477,0.655217409133911,-0.242459490895271,0.715474367141724,0.771706402301788,0.593551218509674,0.228399112820625,0.750915944576263,0.642669260501862,0.151991948485374,0.818247973918915,0.574682831764221,0.0144885880872607,0.759431719779968,0.601022064685822,0.249070152640343,0.771706402301788,0.593551218509674,0.228399112820625,0.759431719779968,0.601022064685822,0.249070152640343,0.323542833328247,0.695695161819458,-0.641348838806152,0.0884418562054634,0.944281578063965,0.317033857107162,-0.019500432536006,0.999715209007263,-0.0137583464384079,-0.0184904765337706,0.999825835227966,-0.0025655273348093,0.0490638054907322,0.998462378978729,-0.0258000195026398,0.0585997849702835,0.998129308223724,-0.017433637753129,0.875078499317169,-0.446194291114807,-0.187478765845299,0.843399822711945,-0.496511310338974,-0.205312728881836,0.779312670230865,-0.624120771884918,0.0560798719525337,0.72929322719574,-0.679084718227386,-0.0835188180208206,0.0724345371127129,-0.985898315906525,0.15085668861866,0.764395594596863,-0.508422791957855,-0.39649161696434,0.728598177433014,-0.642213046550751,-0.238132447004318,0.133344545960426,-0.990761756896973,-0.0247080326080322,0.941047489643097,-0.0296254232525826,-0.336974620819092,0.920070707798004,-0.0313326790928841,-0.390497326850891,0.917767405509949,-0.0155041953548789,-0.396815538406372,0.936839699745178,0.0240406021475792,-0.34893211722374,
- 0.925936639308929,0.0230491571128368,-0.376974940299988,0.268183350563049,-0.949694514274597,-0.161734595894814,0.12300793081522,-0.984652578830719,-0.123807162046433,0.205022126436234,-0.97009140253067,-0.129955649375916,0.635692358016968,-0.70814311504364,-0.307292342185974,0.994493126869202,0.0700939521193504,-0.0779117718338966,0.999894857406616,0.00611037015914917,-0.0131517127156258,0.989037334918976,0.121254526078701,-0.08427594602108,0.972336947917938,-0.223894208669662,-0.0665736123919487,0.0724345371127129,-0.985898315906525,0.15085668861866,-0.261116325855255,-0.963310956954956,-0.0620510429143906,-0.493136346340179,-0.817650496959686,0.297092944383621,0.471626877784729,-0.881330847740173,-0.0287045631557703,0.968147218227386,-0.158693388104439,0.193668529391289,0.999894857406616,0.00611037015914917,-0.0131517127156258,0.994493126869202,0.0700939521193504,-0.0779117718338966,0.96429431438446,-0.157829836010933,-0.212664529681206,0.1521335542202,-0.982858896255493,-0.104133084416389,0.124935902655125,-0.941784799098969,-0.312141537666321,0.241629362106323,-0.962537705898285,-0.12303002923727,0.176559254527092,-0.98080712556839,-0.0827301442623138,0.976602852344513,-0.211979329586029,0.0362174510955811,0.980876564979553,-0.185425266623497,0.0591504611074924,0.0187388304620981,-0.996910572052002,0.0762766897678375,0.0213200766593218,-0.880030274391174,-0.474438846111298,0.989037334918976,0.121254526078701,-0.08427594602108,0.957681000232697,-0.0403416119515896,-0.284990608692169,0.976602852344513,-0.211979329586029,0.0362174510955811,0.972336947917938,-0.223894208669662,-0.0665736123919487,0.725264549255371,-0.649915814399719,0.227158084511757,0.618022680282593,-0.700627624988556,-0.356607437133789,0.562180757522583,-0.663041889667511,-0.494295567274094,0.662431240081787,-0.666201591491699,-0.342578828334808,0.685653388500214,-0.71788477897644,-0.120502680540085,0.93735009431839,-0.342550814151764,-0.0635122582316399,0.728598177433014,-0.642213046550751,-0.238132447004318,0.764395594596863,-0.508422791957855,-0.39649161696434,
- 0.159833237528801,-0.98702085018158,-0.015589801594615,0.635692358016968,-0.70814311504364,-0.307292342185974,0.205022126436234,-0.97009140253067,-0.129955649375916,0.273448288440704,-0.952803373336792,-0.131877481937408,0.859733939170837,-0.475547343492508,-0.186312183737755,0.876053392887115,-0.482209473848343,0.00212985300458968,0.896978735923767,-0.439775407314301,-0.0450186133384705,0.881709218025208,-0.46488955616951,0.0804150924086571,0.620439767837524,-0.781052589416504,-0.0707907453179359,0.72929322719574,-0.679084718227386,-0.0835188180208206,0.663688659667969,-0.721842467784882,-0.196114242076874,0.610015034675598,-0.778604865074158,-0.147160485386848,0.705129861831665,-0.681279182434082,-0.196597471833229,0.574147462844849,-0.811733543872833,-0.106972649693489,0.620439767837524,-0.781052589416504,-0.0707907453179359,0.610015034675598,-0.778604865074158,-0.147160485386848,0.713257431983948,-0.700203597545624,-0.0312864221632481,0.734802544116974,-0.678253710269928,0.00609232950955629,0.378177344799042,-0.88447105884552,0.273299813270569,-0.0261953212320805,-0.937819004058838,0.346134752035141,0.705129861831665,-0.681279182434082,-0.196597471833229,0.610015034675598,-0.778604865074158,-0.147160485386848,0.749335765838623,-0.500864207744598,-0.433163791894913,-0.250652760267258,-0.946639001369476,0.20260252058506,0.417800724506378,-0.0201437026262283,0.908315360546112,0.96231871843338,-0.0316914767026901,-0.270071059465408,0.0128183960914612,-0.98652720451355,0.163094982504845,0.805744349956512,-0.560234069824219,0.192130103707314,0.642542541027069,-0.733894884586334,-0.220311880111694,0.272858083248138,-0.936675369739532,-0.219516828656197,0.749335765838623,-0.500864207744598,-0.433163791894913,0.5501708984375,-0.776348650455475,-0.307562500238419,0.562180757522583,-0.663041889667511,-0.494295567274094,0.378177344799042,-0.88447105884552,0.273299813270569,0.701587378978729,-0.703165531158447,-0.115470834076405,0.86110508441925,-0.497010558843613,0.107138194143772,0.954009234905243,-0.0705865249037743,-0.291348248720169,
- 0.734802544116974,-0.678253710269928,0.00609232950955629,0.876053392887115,-0.482209473848343,0.00212985300458968,0.859733939170837,-0.475547343492508,-0.186312183737755,-0.637280225753784,-0.0318459458649158,0.769973933696747,-0.240031078457832,-0.965541303157806,0.100573942065239,0.00909067410975695,-0.995089709758759,0.0985583811998367,0.96429431438446,-0.157829836010933,-0.212664529681206,0.0667656362056732,0.871989846229553,-0.484949558973312,0.0488648004829884,0.997154414653778,-0.0574051439762115,0.980608999729156,-0.130262300372124,-0.146416202187538,0.701587378978729,-0.703165531158447,-0.115470834076405,0.734802544116974,-0.678253710269928,0.00609232950955629,0.954009234905243,-0.0705865249037743,-0.291348248720169,0.975784182548523,0.152073889970779,-0.157222077250481,0.873883664608002,-0.478983730077744,-0.0830777660012245,0.701587378978729,-0.703165531158447,-0.115470834076405,0.975784182548523,0.152073889970779,-0.157222077250481,0.632696151733398,-0.383044838905334,-0.673032164573669,0.989037334918976,0.121254526078701,-0.08427594602108,0.999894857406616,0.00611037015914917,-0.0131517127156258,0.493626981973648,0.842044055461884,-0.217472180724144,0.471006870269775,-0.87358170747757,-0.122505217790604,0.533797025680542,0.845575451850891,0.00793202314525843,0.526212751865387,0.68232536315918,0.507476389408112,0.734802544116974,-0.678253710269928,0.00609232950955629,0.713257431983948,-0.700203597545624,-0.0312864221632481,0.49006062746048,-0.862566471099854,-0.125776007771492,0.876053392887115,-0.482209473848343,0.00212985300458968,0.472992330789566,-0.872046172618866,0.125752955675125,0.422974050045013,-0.904614269733429,-0.0525929369032383,0.0492952838540077,-0.998526871204376,-0.0226707141846418,0.0129288258031011,-0.999891459941864,0.00707595283165574,0.954009234905243,-0.0705865249037743,-0.291348248720169,0.971291542053223,0.126668602228165,-0.201364800333977,0.493626981973648,0.842044055461884,-0.217472180724144,0.975784182548523,0.152073889970779,-0.157222077250481,0.898531377315521,0.36552220582962,-0.242970675230026,
- 0.975784182548523,0.152073889970779,-0.157222077250481,0.493626981973648,0.842044055461884,-0.217472180724144,0.620439767837524,-0.781052589416504,-0.0707907453179359,0.964593470096588,-0.252102762460709,0.0774826258420944,0.875078499317169,-0.446194291114807,-0.187478765845299,0.72929322719574,-0.679084718227386,-0.0835188180208206,0.86110508441925,-0.497010558843613,0.107138194143772,0.701587378978729,-0.703165531158447,-0.115470834076405,0.873883664608002,-0.478983730077744,-0.0830777660012245,0.499391615390778,-0.783375144004822,-0.370042473077774,0.480472594499588,0.344266206026077,-0.806614458560944,0.728091597557068,0.444568067789078,-0.521768152713776,0.734802544116974,-0.678253710269928,0.00609232950955629,0.701587378978729,-0.703165531158447,-0.115470834076405,0.378177344799042,-0.88447105884552,0.273299813270569,0.0670021325349808,-0.995600819587708,-0.0654957443475723,0.642542541027069,-0.733894884586334,-0.220311880111694,0.608325839042664,-0.635676205158234,-0.475242584943771,0.00909067410975695,-0.995089709758759,0.0985583811998367,-0.240031078457832,-0.965541303157806,0.100573942065239,0.642542541027069,-0.733894884586334,-0.220311880111694,0.0670021325349808,-0.995600819587708,-0.0654957443475723,0.493626981973648,0.842044055461884,-0.217472180724144,0.999894857406616,0.00611037015914917,-0.0131517127156258,0.968147218227386,-0.158693388104439,0.193668529391289,0.08645099401474,-0.63067090511322,-0.771220088005066,0.93735009431839,-0.342550814151764,-0.0635122582316399,0.820831596851349,-0.468876540660858,-0.326175183057785,0.471626877784729,-0.881330847740173,-0.0287045631557703,-0.528310477733612,-0.81496262550354,-0.238167747855186,0.426708459854126,-0.841758012771606,-0.330701321363449,0.493626981973648,0.842044055461884,-0.217472180724144,0.971291542053223,0.126668602228165,-0.201364800333977,0.989037334918976,0.121254526078701,-0.08427594602108,0.133344545960426,-0.990761756896973,-0.0247080326080322,0.00446471339091659,-0.966390490531921,0.257040023803711,-0.261116325855255,-0.963310956954956,-0.0620510429143906,
- 0.0724345371127129,-0.985898315906525,0.15085668861866,0.876053392887115,-0.482209473848343,0.00212985300458968,0.49006062746048,-0.862566471099854,-0.125776007771492,0.575027763843536,-0.818128943443298,-0.00282317795790732,0.896978735923767,-0.439775407314301,-0.0450186133384705,0.1521335542202,-0.982858896255493,-0.104133084416389,0.159833237528801,-0.98702085018158,-0.015589801594615,0.273448288440704,-0.952803373336792,-0.131877481937408,0.124935902655125,-0.941784799098969,-0.312141537666321,-0.261116325855255,-0.963310956954956,-0.0620510429143906,0.00446471339091659,-0.966390490531921,0.257040023803711,0.273448288440704,-0.952803373336792,-0.131877481937408,0.205022126436234,-0.97009140253067,-0.129955649375916,0.713257431983948,-0.700203597545624,-0.0312864221632481,0.749335765838623,-0.500864207744598,-0.433163791894913,0.610015034675598,-0.778604865074158,-0.147160485386848,0.805744349956512,-0.560234069824219,0.192130103707314,0.159833237528801,-0.98702085018158,-0.015589801594615,0.608325839042664,-0.635676205158234,-0.475242584943771,0.972336947917938,-0.223894208669662,-0.0665736123919487,0.0213200766593218,-0.880030274391174,-0.474438846111298,0.145568609237671,-0.0120525313541293,-0.989274740219116,0.620439767837524,-0.781052589416504,-0.0707907453179359,0.574147462844849,-0.811733543872833,-0.106972649693489,0.93735009431839,-0.342550814151764,-0.0635122582316399,0.964593470096588,-0.252102762460709,0.0774826258420944,0.0667656362056732,0.871989846229553,-0.484949558973312,0.96429431438446,-0.157829836010933,-0.212664529681206,0.994493126869202,0.0700939521193504,-0.0779117718338966,-0.250652760267258,-0.946639001369476,0.20260252058506,-0.240031078457832,-0.965541303157806,0.100573942065239,-0.637280225753784,-0.0318459458649158,0.769973933696747,0.417800724506378,-0.0201437026262283,0.908315360546112,0.472992330789566,-0.872046172618866,0.125752955675125,0.133344545960426,-0.990761756896973,-0.0247080326080322,0.728598177433014,-0.642213046550751,-0.238132447004318,0.08645099401474,-0.63067090511322,-0.771220088005066,
- 0.00446471339091659,-0.966390490531921,0.257040023803711,0.133344545960426,-0.990761756896973,-0.0247080326080322,0.472992330789566,-0.872046172618866,0.125752955675125,0.0670021325349808,-0.995600819587708,-0.0654957443475723,0.608325839042664,-0.635676205158234,-0.475242584943771,0.366566956043243,-0.607776284217834,-0.704440653324127,0.0786036774516106,-0.994586765766144,-0.0679602921009064,0.273448288440704,-0.952803373336792,-0.131877481937408,0.00446471339091659,-0.966390490531921,0.257040023803711,0.124935902655125,-0.941784799098969,-0.312141537666321,0.272858083248138,-0.936675369739532,-0.219516828656197,-0.250652760267258,-0.946639001369476,0.20260252058506,0.0128183960914612,-0.98652720451355,0.163094982504845,-0.0201962944120169,-0.991060137748718,-0.131878286600113,0.0670021325349808,-0.995600819587708,-0.0654957443475723,0.0786036774516106,-0.994586765766144,-0.0679602921009064,-0.0106156347319484,-0.997897684574127,0.0639345794916153,0.00909067410975695,-0.995089709758759,0.0985583811998367,0.93735009431839,-0.342550814151764,-0.0635122582316399,0.574147462844849,-0.811733543872833,-0.106972649693489,0.725264549255371,-0.649915814399719,0.227158084511757,0.820831596851349,-0.468876540660858,-0.326175183057785,0.618022680282593,-0.700627624988556,-0.356607437133789,0.725264549255371,-0.649915814399719,0.227158084511757,0.574147462844849,-0.811733543872833,-0.106972649693489,0.705129861831665,-0.681279182434082,-0.196597471833229,0.378177344799042,-0.88447105884552,0.273299813270569,0.86110508441925,-0.497010558843613,0.107138194143772,0.5501708984375,-0.776348650455475,-0.307562500238419,-0.0261953212320805,-0.937819004058838,0.346134752035141,0.898531377315521,0.36552220582962,-0.242970675230026,0.913050770759583,0.378037959337235,-0.153054565191269,0.88892537355423,-0.392224729061127,-0.236582517623901,0.632696151733398,-0.383044838905334,-0.673032164573669,0.968147218227386,-0.158693388104439,0.193668529391289,0.96429431438446,-0.157829836010933,-0.212664529681206,0.980608999729156,-0.130262300372124,-0.146416202187538,
- 0.981861770153046,-0.178629845380783,0.0635518133640289,0.0585997849702835,0.998129308223724,-0.017433637753129,-0.0112474858760834,0.999910950660706,0.0071987290866673,-0.019500432536006,0.999715209007263,-0.0137583464384079,0.0667656362056732,0.871989846229553,-0.484949558973312,0.994493126869202,0.0700939521193504,-0.0779117718338966,0.972336947917938,-0.223894208669662,-0.0665736123919487,0.145568609237671,-0.0120525313541293,-0.989274740219116,0.976602852344513,-0.211979329586029,0.0362174510955811,0.957681000232697,-0.0403416119515896,-0.284990608692169,0.982714056968689,-0.105735413730145,-0.151964262127876,0.980876564979553,-0.185425266623497,0.0591504611074924,0.901978969573975,0.420745849609375,-0.0969896018505096,0.859733939170837,-0.475547343492508,-0.186312183737755,0.881709218025208,-0.46488955616951,0.0804150924086571,0.749335765838623,-0.500864207744598,-0.433163791894913,0.562180757522583,-0.663041889667511,-0.494295567274094,0.618022680282593,-0.700627624988556,-0.356607437133789,0.705129861831665,-0.681279182434082,-0.196597471833229,0.713257431983948,-0.700203597545624,-0.0312864221632481,0.610015034675598,-0.778604865074158,-0.147160485386848,0.663688659667969,-0.721842467784882,-0.196114242076874,0.49006062746048,-0.862566471099854,-0.125776007771492,0.964593470096588,-0.252102762460709,0.0774826258420944,0.93735009431839,-0.342550814151764,-0.0635122582316399,0.764395594596863,-0.508422791957855,-0.39649161696434,0.875078499317169,-0.446194291114807,-0.187478765845299,0.964593470096588,-0.252102762460709,0.0774826258420944,0.764395594596863,-0.508422791957855,-0.39649161696434,0.432891756296158,-0.857596397399902,-0.27772843837738,0.603674113750458,-0.372296571731567,-0.704963088035584,0.820831596851349,-0.468876540660858,-0.326175183057785,0.725264549255371,-0.649915814399719,0.227158084511757,0.685653388500214,-0.71788477897644,-0.120502680540085,0.08645099401474,-0.63067090511322,-0.771220088005066,0.728598177433014,-0.642213046550751,-0.238132447004318,0.93735009431839,-0.342550814151764,-0.0635122582316399,
- 0.764395594596863,-0.508422791957855,-0.39649161696434,0.0724345371127129,-0.985898315906525,0.15085668861866,0.471626877784729,-0.881330847740173,-0.0287045631557703,0.432891756296158,-0.857596397399902,-0.27772843837738,-0.493136346340179,-0.817650496959686,0.297092944383621,-0.261116325855255,-0.963310956954956,-0.0620510429143906,0.205022126436234,-0.97009140253067,-0.129955649375916,0.12300793081522,-0.984652578830719,-0.123807162046433,0.713257431983948,-0.700203597545624,-0.0312864221632481,-0.0261953212320805,-0.937819004058838,0.346134752035141,0.749335765838623,-0.500864207744598,-0.433163791894913,0.5501708984375,-0.776348650455475,-0.307562500238419,0.749335765838623,-0.500864207744598,-0.433163791894913,-0.0261953212320805,-0.937819004058838,0.346134752035141,0.00446471339091659,-0.966390490531921,0.257040023803711,0.472992330789566,-0.872046172618866,0.125752955675125,0.0129288258031011,-0.999891459941864,0.00707595283165574,0.124935902655125,-0.941784799098969,-0.312141537666321,0.00446471339091659,-0.966390490531921,0.257040023803711,0.0129288258031011,-0.999891459941864,0.00707595283165574,-0.336658149957657,-0.941514313220978,0.0145644582808018,0.718423008918762,-0.0740089118480682,0.691658198833466,0.235815852880478,0.0629514157772064,0.969756782054901,0.913050770759583,0.378037959337235,-0.153054565191269,0.898531377315521,0.36552220582962,-0.242970675230026,0.968147218227386,-0.158693388104439,0.193668529391289,0.981861770153046,-0.178629845380783,0.0635518133640289,0.859733939170837,-0.475547343492508,-0.186312183737755,0.901978969573975,0.420745849609375,-0.0969896018505096,0.913222312927246,0.255661725997925,0.317273139953613,0.971291542053223,0.126668602228165,-0.201364800333977,0.954009234905243,-0.0705865249037743,-0.291348248720169,0.859733939170837,-0.475547343492508,-0.186312183737755,0.913222312927246,0.255661725997925,0.317273139953613,0.901978969573975,0.420745849609375,-0.0969896018505096,0.957681000232697,-0.0403416119515896,-0.284990608692169,0.913222312927246,0.255661725997925,0.317273139953613,
- 0.989037334918976,0.121254526078701,-0.08427594602108,0.971291542053223,0.126668602228165,-0.201364800333977,0.913222312927246,0.255661725997925,0.317273139953613,0.957681000232697,-0.0403416119515896,-0.284990608692169,0.957681000232697,-0.0403416119515896,-0.284990608692169,0.901978969573975,0.420745849609375,-0.0969896018505096,0.982714056968689,-0.105735413730145,-0.151964262127876,0.898531377315521,0.36552220582962,-0.242970675230026,0.632696151733398,-0.383044838905334,-0.673032164573669,0.975784182548523,0.152073889970779,-0.157222077250481,0.74918919801712,-0.451186507940292,-0.484918743371964,-0.0201962944120169,-0.991060137748718,-0.131878286600113,0.809028744697571,-0.526503145694733,-0.261279433965683,0.268183350563049,-0.949694514274597,-0.161734595894814,0.74918919801712,-0.451186507940292,-0.484918743371964,0.809028744697571,-0.526503145694733,-0.261279433965683,0.310906857252121,-0.949235677719116,-0.0478396192193031,0.635692358016968,-0.70814311504364,-0.307292342185974,0.548546373844147,-0.647422075271606,0.529094874858856,0.74918919801712,-0.451186507940292,-0.484918743371964,0.268183350563049,-0.949694514274597,-0.161734595894814,0.548546373844147,-0.647422075271606,0.529094874858856,0.272858083248138,-0.936675369739532,-0.219516828656197,-0.0201962944120169,-0.991060137748718,-0.131878286600113,0.74918919801712,-0.451186507940292,-0.484918743371964,0.642542541027069,-0.733894884586334,-0.220311880111694,-0.240031078457832,-0.965541303157806,0.100573942065239,-0.250652760267258,-0.946639001369476,0.20260252058506,0.272858083248138,-0.936675369739532,-0.219516828656197,0.548546373844147,-0.647422075271606,0.529094874858856,0.635692358016968,-0.70814311504364,-0.307292342185974,0.159833237528801,-0.98702085018158,-0.015589801594615,0.805744349956512,-0.560234069824219,0.192130103707314,0.642542541027069,-0.733894884586334,-0.220311880111694,0.805744349956512,-0.560234069824219,0.192130103707314,0.608325839042664,-0.635676205158234,-0.475242584943771,0.159833237528801,-0.98702085018158,-0.015589801594615,
- 0.1521335542202,-0.982858896255493,-0.104133084416389,0.608325839042664,-0.635676205158234,-0.475242584943771,0.972336947917938,-0.223894208669662,-0.0665736123919487,0.976602852344513,-0.211979329586029,0.0362174510955811,0.0213200766593218,-0.880030274391174,-0.474438846111298,0.422974050045013,-0.904614269733429,-0.0525929369032383,0.472992330789566,-0.872046172618866,0.125752955675125,0.08645099401474,-0.63067090511322,-0.771220088005066,0.431472659111023,-0.8315070271492,-0.349896341562271,0.431472659111023,-0.8315070271492,-0.349896341562271,0.08645099401474,-0.63067090511322,-0.771220088005066,0.820831596851349,-0.468876540660858,-0.326175183057785,0.603674113750458,-0.372296571731567,-0.704963088035584,-0.915727436542511,-0.0230719074606895,0.401137113571167,-0.637280225753784,-0.0318459458649158,0.769973933696747,0.00909067410975695,-0.995089709758759,0.0985583811998367,-0.0106156347319484,-0.997897684574127,0.0639345794916153,0.241629362106323,-0.962537705898285,-0.12303002923727,0.124935902655125,-0.941784799098969,-0.312141537666321,0.0129288258031011,-0.999891459941864,0.00707595283165574,0.0492952838540077,-0.998526871204376,-0.0226707141846418,-0.0133920349180698,-0.999087989330292,-0.040543969720602,0.0128183960914612,-0.98652720451355,0.163094982504845,0.96231871843338,-0.0316914767026901,-0.270071059465408,-0.356507778167725,0.00223728851415217,-0.934289693832397,0.12300793081522,-0.984652578830719,-0.123807162046433,0.268183350563049,-0.949694514274597,-0.161734595894814,0.310906857252121,-0.949235677719116,-0.0478396192193031,0.132261380553246,-0.991208910942078,0.00343619333580136,0.366566956043243,-0.607776284217834,-0.704440653324127,0.608325839042664,-0.635676205158234,-0.475242584943771,0.1521335542202,-0.982858896255493,-0.104133084416389,0.176559254527092,-0.98080712556839,-0.0827301442623138,0.662431240081787,-0.666201591491699,-0.342578828334808,0.562180757522583,-0.663041889667511,-0.494295567274094,0.5501708984375,-0.776348650455475,-0.307562500238419,0.612852334976196,-0.774156808853149,-0.158409148454666,
- 0.575027763843536,-0.818128943443298,-0.00282317795790732,0.49006062746048,-0.862566471099854,-0.125776007771492,0.663688659667969,-0.721842467784882,-0.196114242076874,0.670409202575684,-0.719458162784576,-0.181470274925232,0.809028744697571,-0.526503145694733,-0.261279433965683,-0.0201962944120169,-0.991060137748718,-0.131878286600113,-0.00230076629668474,-0.998697817325592,0.0509645640850067,-0.00230076629668474,-0.998697817325592,0.0509645640850067,-0.0201962944120169,-0.991060137748718,-0.131878286600113,0.0128183960914612,-0.98652720451355,0.163094982504845,-0.0133920349180698,-0.999087989330292,-0.040543969720602,0.612852334976196,-0.774156808853149,-0.158409148454666,0.5501708984375,-0.776348650455475,-0.307562500238419,0.86110508441925,-0.497010558843613,0.107138194143772,0.865810811519623,-0.496628224849701,-0.0610906556248665,0.865810811519623,-0.496628224849701,-0.0610906556248665,0.86110508441925,-0.497010558843613,0.107138194143772,0.873883664608002,-0.478983730077744,-0.0830777660012245,0.632696151733398,-0.383044838905334,-0.673032164573669,0.88892537355423,-0.392224729061127,-0.236582517623901,0.670409202575684,-0.719458162784576,-0.181470274925232,0.663688659667969,-0.721842467784882,-0.196114242076874,0.72929322719574,-0.679084718227386,-0.0835188180208206,0.779312670230865,-0.624120771884918,0.0560798719525337,-0.528310477733612,-0.81496262550354,-0.238167747855186,-0.493136346340179,-0.817650496959686,0.297092944383621,0.12300793081522,-0.984652578830719,-0.123807162046433,0.132261380553246,-0.991208910942078,0.00343619333580136,0.445238143205643,-0.874221563339233,-0.19364820420742,0.432891756296158,-0.857596397399902,-0.27772843837738,0.471626877784729,-0.881330847740173,-0.0287045631557703,0.426708459854126,-0.841758012771606,-0.330701321363449,0.445238143205643,-0.874221563339233,-0.19364820420742,0.843399822711945,-0.496511310338974,-0.205312728881836,0.875078499317169,-0.446194291114807,-0.187478765845299,0.432891756296158,-0.857596397399902,-0.27772843837738,0.934407234191895,0.0469247475266457,-0.353102147579193,
- 0.939778089523315,0.0428896248340607,-0.339083433151245,0.932117521762848,-0.0247553009539843,-0.36130890250206,0.932896971702576,-0.0401772223412991,-0.357895195484161,0.626420378684998,0.52686220407486,0.574468195438385,0.642965912818909,0.384844034910202,0.662185668945313,0.119167692959309,-0.963449418544769,0.239925742149353,0.056107122451067,-0.95157653093338,0.302248358726501,0.262560427188873,-0.955917000770569,-0.131471738219261,-0.514721810817719,-0.785570442676544,0.343424707651138,-0.259784072637558,-0.964085519313812,0.0552380159497261,-0.131110310554504,-0.98747593164444,0.0877570658922195,0.94227397441864,-0.0296889953315258,-0.333524167537689,0.917940080165863,-0.0328284166753292,-0.395358324050903,0.915720164775848,-0.0128735117614269,-0.401610225439072,0.937870740890503,0.0326961614191532,-0.345440924167633,0.925032258033752,0.0244441293179989,-0.37910121679306,0.0443710163235664,-0.891120791435242,0.451591491699219,-0.0346283353865147,-0.99755197763443,-0.0607521571218967,0.276247322559357,-0.916520893573761,-0.289269655942917,-0.488650947809219,-0.767798066139221,0.414374649524689,0.418497443199158,-0.87043708562851,-0.259228050708771,-0.184522315859795,-0.97596937417984,0.115910939872265,-0.0244313534349203,-0.999134838581085,-0.0336547717452049,0.339639931917191,-0.938130259513855,-0.0675000697374344,0.262560427188873,-0.955917000770569,-0.131471738219261,0.476649552583694,-0.827596306800842,-0.296461880207062,0.247886255383492,-0.958803594112396,-0.138737469911575,0.05313790589571,-0.942286610603333,-0.330563634634018,0.339639931917191,-0.938130259513855,-0.0675000697374344,-0.0244313534349203,-0.999134838581085,-0.0336547717452049,-0.0739072188735008,-0.983516693115234,-0.165023311972618,0.120210111141205,-0.960547029972076,0.250796735286713,0.0446598865091801,-0.956276953220367,0.289032727479935,0.0454444363713264,-0.966574907302856,-0.252324610948563,0.151493385434151,-0.985328912734985,-0.0785926878452301,-0.00649978779256344,-0.968569159507751,0.248659610748291,-0.0336876846849918,-0.996324837207794,0.0787519812583923,
- -0.0409557335078716,-0.998515725135803,0.0359016247093678,-0.915137469768524,-0.0426823310554028,0.400876343250275,-0.996162831783295,-0.0493988990783691,0.0722457617521286,0.0496546924114227,-0.977139830589294,-0.20671771466732,-0.0336876846849918,-0.996324837207794,0.0787519812583923,-0.184522315859795,-0.97596937417984,0.115910939872265,0.418497443199158,-0.87043708562851,-0.259228050708771,0.089903213083744,-0.934079706668854,0.345561146736145,-0.0818837210536003,-0.978947520256042,-0.186967447400093,-0.119469597935677,-0.933487772941589,-0.338123649358749,0.000548406678717583,-0.989312887191772,-0.145806908607483,-0.0785186812281609,-0.983653604984283,0.162050873041153,-0.728780567646027,-0.260516375303268,0.633253693580627,-0.259784072637558,-0.964085519313812,0.0552380159497261,-0.514721810817719,-0.785570442676544,0.343424707651138,-0.488650947809219,-0.767798066139221,0.414374649524689,0.276247322559357,-0.916520893573761,-0.289269655942917,0.584586799144745,-0.785249471664429,-0.204062610864639,-0.449377208948135,-0.877203464508057,0.169039070606232,-0.0411345548927784,-0.998640954494476,-0.0320010222494602,0.0718155950307846,-0.989161908626556,-0.128067150712013,0.106735438108444,-0.993547856807709,0.0383445210754871,0.00941201858222485,-0.985503435134888,0.169394493103027,0.0533079206943512,-0.969749510288239,0.238210111856461,-0.0351063907146454,-0.997673034667969,-0.0584476590156555,-0.0673026368021965,-0.997524380683899,0.0203815940767527,-0.152783885598183,-0.961264550685883,0.22940693795681,-0.152783885598183,-0.961264550685883,0.22940693795681,-0.0673026368021965,-0.997524380683899,0.0203815940767527,0.0361783280968666,-0.998867452144623,-0.0308993645012379,-0.352394878864288,-0.91671746969223,0.188273832201958,0.381227523088455,-0.813867568969727,0.438503205776215,0.336244583129883,-0.92124617099762,-0.195563420653343,0.354232549667358,-0.786941707134247,0.505214869976044,-0.523908138275146,-0.695100367069244,0.492296367883682,0.0361783280968666,-0.998867452144623,-0.0308993645012379,-0.0673026368021965,-0.997524380683899,0.0203815940767527,
- 0.0147018954157829,-0.955010175704956,-0.296208262443542,0.420256614685059,-0.869066715240479,-0.260974019765854,0.721919655799866,-0.0293228514492512,0.691355407238007,0.998328983783722,-0.0321401283144951,0.0480244755744934,0.0362944193184376,-0.996469974517822,0.0756983384490013,-0.514281690120697,-0.31464296579361,0.79781836271286,0.120348624885082,-0.990743577480316,-0.06279506534338,-0.0551235675811768,-0.998415052890778,-0.0113504957407713,0.0147018954157829,-0.955010175704956,-0.296208262443542,0.516026616096497,-0.811592280864716,-0.273924171924591,-0.119469597935677,-0.933487772941589,-0.338123649358749,0.354232549667358,-0.786941707134247,0.505214869976044,-0.210129097104073,-0.974395990371704,0.07998888194561,0.116322182118893,-0.928880274295807,0.351640045642853,0.0800463631749153,-0.987758815288544,-0.133884891867638,0.336244583129883,-0.92124617099762,-0.195563420653343,0.0718155950307846,-0.989161908626556,-0.128067150712013,-0.0411345548927784,-0.998640954494476,-0.0320010222494602,-0.407098442316055,-0.0363701283931732,0.912659823894501,0.021592540666461,-0.998953402042389,0.0403218008577824,0.109020099043846,-0.954130411148071,0.278836518526077,-0.0739072188735008,-0.983516693115234,-0.165023311972618,0.310499310493469,-0.0511142760515213,-0.949198305606842,0.803060352802277,-0.024053743109107,-0.595412194728851,-0.0258065946400166,-0.994447588920593,-0.102019779384136,0.388557851314545,-0.905943691730499,-0.168193221092224,-0.210129097104073,-0.974395990371704,0.07998888194561,0.336244583129883,-0.92124617099762,-0.195563420653343,0.0800463631749153,-0.987758815288544,-0.133884891867638,-0.0572710260748863,-0.982883155345917,-0.175102323293686,0.00404548738151789,-0.998572170734406,0.0532665513455868,-0.210129097104073,-0.974395990371704,0.07998888194561,0.388557851314545,-0.905943691730499,-0.168193221092224,0.418497443199158,-0.87043708562851,-0.259228050708771,0.339639931917191,-0.938130259513855,-0.0675000697374344,0.71916002035141,-0.367512077093124,-0.589697897434235,0.05313790589571,-0.942286610603333,-0.330563634634018,
- 0.247886255383492,-0.958803594112396,-0.138737469911575,-0.213885605335236,-0.943934440612793,-0.25147733092308,0.336244583129883,-0.92124617099762,-0.195563420653343,0.381227523088455,-0.813867568969727,0.438503205776215,0.467806220054626,-0.793942034244537,0.38834685087204,0.0718155950307846,-0.989161908626556,-0.128067150712013,-0.0221893899142742,-0.996144115924835,0.0848794281482697,-0.134047821164131,-0.975308179855347,-0.175514400005341,-0.817026555538177,0.523205280303955,0.242330059409142,0.568676173686981,-0.472392618656158,-0.673388957977295,0.0800463631749153,-0.987758815288544,-0.133884891867638,0.158792480826378,-0.953987896442413,-0.254346519708633,0.71916002035141,-0.367512077093124,-0.589697897434235,0.388557851314545,-0.905943691730499,-0.168193221092224,0.424386113882065,-0.79808384180069,-0.427736669778824,0.388557851314545,-0.905943691730499,-0.168193221092224,0.71916002035141,-0.367512077093124,-0.589697897434235,-0.152783885598183,-0.961264550685883,0.22940693795681,-0.296671718358994,-0.738927662372589,0.604955971240997,-0.551103472709656,-0.600113809108734,0.579783082008362,0.0533079206943512,-0.969749510288239,0.238210111856461,0.116322182118893,-0.928880274295807,0.351640045642853,-0.210129097104073,-0.974395990371704,0.07998888194561,0.00404548738151789,-0.998572170734406,0.0532665513455868,-0.519707322120667,-0.78754460811615,0.331176400184631,-0.809601426124573,0.302553236484528,0.502998054027557,-0.497748225927353,0.453987270593643,-0.739014387130737,0.336244583129883,-0.92124617099762,-0.195563420653343,-0.210129097104073,-0.974395990371704,0.07998888194561,0.354232549667358,-0.786941707134247,0.505214869976044,-0.0792518109083176,-0.971063196659088,-0.225289687514305,0.120348624885082,-0.990743577480316,-0.06279506534338,-0.838900029659271,-0.526825726032257,0.136752843856812,0.021592540666461,-0.998953402042389,0.0403218008577824,0.120348624885082,-0.990743577480316,-0.06279506534338,-0.0792518109083176,-0.971063196659088,-0.225289687514305,0.109020099043846,-0.954130411148071,0.278836518526077,
- 0.71916002035141,-0.367512077093124,-0.589697897434235,0.339639931917191,-0.938130259513855,-0.0675000697374344,0.120210111141205,-0.960547029972076,0.250796735286713,-0.366041928529739,-0.348738342523575,-0.862783193588257,0.39090970158577,0.454112887382507,-0.800606667995453,-0.131322592496872,0.151337191462517,-0.979720175266266,0.05313790589571,-0.942286610603333,-0.330563634634018,-0.213885605335236,-0.943934440612793,-0.25147733092308,0.00724073871970177,-0.987578392028809,-0.156959623098373,0.71916002035141,-0.367512077093124,-0.589697897434235,0.158792480826378,-0.953987896442413,-0.254346519708633,0.418497443199158,-0.87043708562851,-0.259228050708771,-0.131110310554504,-0.98747593164444,0.0877570658922195,0.0278922487050295,-0.755609512329102,-0.654428243637085,0.476649552583694,-0.827596306800842,-0.296461880207062,0.262560427188873,-0.955917000770569,-0.131471738219261,0.0718155950307846,-0.989161908626556,-0.128067150712013,0.467806220054626,-0.793942034244537,0.38834685087204,0.537007451057434,-0.501299262046814,0.678470373153687,0.106735438108444,-0.993547856807709,0.0383445210754871,-0.449377208948135,-0.877203464508057,0.169039070606232,0.584586799144745,-0.785249471664429,-0.204062610864639,0.0454444363713264,-0.966574907302856,-0.252324610948563,0.0446598865091801,-0.956276953220367,0.289032727479935,0.476649552583694,-0.827596306800842,-0.296461880207062,0.0278922487050295,-0.755609512329102,-0.654428243637085,0.584586799144745,-0.785249471664429,-0.204062610864639,0.276247322559357,-0.916520893573761,-0.289269655942917,0.381227523088455,-0.813867568969727,0.438503205776215,0.0147018954157829,-0.955010175704956,-0.296208262443542,-0.0673026368021965,-0.997524380683899,0.0203815940767527,-0.514281690120697,-0.31464296579361,0.79781836271286,-0.449377208948135,-0.877203464508057,0.169039070606232,-0.838900029659271,-0.526825726032257,0.136752843856812,-0.184522315859795,-0.97596937417984,0.115910939872265,-0.996162831783295,-0.0493988990783691,0.0722457617521286,-0.636075019836426,-0.208446234464645,-0.742939233779907,
- -0.152783885598183,-0.961264550685883,0.22940693795681,-0.352394878864288,-0.91671746969223,0.188273832201958,-0.728780567646027,-0.260516375303268,0.633253693580627,-0.296671718358994,-0.738927662372589,0.604955971240997,0.310499310493469,-0.0511142760515213,-0.949198305606842,-0.0739072188735008,-0.983516693115234,-0.165023311972618,-0.0244313534349203,-0.999134838581085,-0.0336547717452049,0.420256614685059,-0.869066715240479,-0.260974019765854,0.021592540666461,-0.998953402042389,0.0403218008577824,-0.407098442316055,-0.0363701283931732,0.912659823894501,0.721919655799866,-0.0293228514492512,0.691355407238007,-0.131110310554504,-0.98747593164444,0.0877570658922195,-0.259784072637558,-0.964085519313812,0.0552380159497261,-0.109241843223572,-0.964102149009705,-0.242019206285477,-0.0221893899142742,-0.996144115924835,0.0848794281482697,0.0278922487050295,-0.755609512329102,-0.654428243637085,-0.131110310554504,-0.98747593164444,0.0877570658922195,-0.0221893899142742,-0.996144115924835,0.0848794281482697,-0.0792518109083176,-0.971063196659088,-0.225289687514305,-0.838900029659271,-0.526825726032257,0.136752843856812,0.841067910194397,0.473350316286087,-0.261809647083282,-0.0546645112335682,-0.975789964199066,-0.211768373847008,0.584586799144745,-0.785249471664429,-0.204062610864639,0.0278922487050295,-0.755609512329102,-0.654428243637085,0.0454444363713264,-0.966574907302856,-0.252324610948563,0.0362944193184376,-0.996469974517822,0.0756983384490013,-0.0507247075438499,-0.99141925573349,-0.120477929711342,-0.0551235675811768,-0.998415052890778,-0.0113504957407713,0.420256614685059,-0.869066715240479,-0.260974019765854,0.109020099043846,-0.954130411148071,0.278836518526077,-0.0792518109083176,-0.971063196659088,-0.225289687514305,-0.0546645112335682,-0.975789964199066,-0.211768373847008,0.0330739095807076,-0.988293766975403,0.148934856057167,-0.728780567646027,-0.260516375303268,0.633253693580627,-0.352394878864288,-0.91671746969223,0.188273832201958,0.089903213083744,-0.934079706668854,0.345561146736145,-0.736953616142273,-0.485528767108917,0.470277816057205,
- -0.352394878864288,-0.91671746969223,0.188273832201958,0.0361783280968666,-0.998867452144623,-0.0308993645012379,-0.0818837210536003,-0.978947520256042,-0.186967447400093,0.089903213083744,-0.934079706668854,0.345561146736145,0.354232549667358,-0.786941707134247,0.505214869976044,0.116322182118893,-0.928880274295807,0.351640045642853,0.516026616096497,-0.811592280864716,-0.273924171924591,-0.523908138275146,-0.695100367069244,0.492296367883682,0.424386113882065,-0.79808384180069,-0.427736669778824,-0.107181251049042,-0.329312682151794,-0.938118040561676,-0.0132562415674329,-0.975712239742279,-0.218654751777649,-0.0572710260748863,-0.982883155345917,-0.175102323293686,0.120210111141205,-0.960547029972076,0.250796735286713,-0.0739072188735008,-0.983516693115234,-0.165023311972618,-0.0258065946400166,-0.994447588920593,-0.102019779384136,0.045714870095253,-0.986335754394531,0.158277839422226,0.932896971702576,-0.0401772223412991,-0.357895195484161,0.939167201519012,0.0423166044056416,-0.340843439102173,0.934407234191895,0.0469247475266457,-0.353102147579193,0.310499310493469,-0.0511142760515213,-0.949198305606842,-0.0244313534349203,-0.999134838581085,-0.0336547717452049,-0.184522315859795,-0.97596937417984,0.115910939872265,-0.636075019836426,-0.208446234464645,-0.742939233779907,-0.0409557335078716,-0.998515725135803,0.0359016247093678,-0.0336876846849918,-0.996324837207794,0.0787519812583923,0.0496546924114227,-0.977139830589294,-0.20671771466732,0.0282590705901384,-0.99317991733551,-0.113114543259144,0.525431573390961,-0.845815658569336,-0.0922906771302223,-0.0411345548927784,-0.998640954494476,-0.0320010222494602,0.00941201858222485,-0.985503435134888,0.169394493103027,0.0147018954157829,-0.955010175704956,-0.296208262443542,-0.119469597935677,-0.933487772941589,-0.338123649358749,-0.0818837210536003,-0.978947520256042,-0.186967447400093,0.0361783280968666,-0.998867452144623,-0.0308993645012379,0.381227523088455,-0.813867568969727,0.438503205776215,-0.0673026368021965,-0.997524380683899,0.0203815940767527,-0.0351063907146454,-0.997673034667969,-0.0584476590156555,
- 0.467806220054626,-0.793942034244537,0.38834685087204,-0.296671718358994,-0.738927662372589,0.604955971240997,-0.728780567646027,-0.260516375303268,0.633253693580627,-0.514721810817719,-0.785570442676544,0.343424707651138,-0.551103472709656,-0.600113809108734,0.579783082008362,-0.296671718358994,-0.738927662372589,0.604955971240997,-0.514721810817719,-0.785570442676544,0.343424707651138,-0.101754292845726,-0.90994393825531,0.402054756879807,-0.829345405101776,-0.447898358106613,0.334025889635086,-0.736953616142273,-0.485528767108917,0.470277816057205,0.089903213083744,-0.934079706668854,0.345561146736145,-0.0785186812281609,-0.983653604984283,0.162050873041153,-0.109241843223572,-0.964102149009705,-0.242019206285477,-0.259784072637558,-0.964085519313812,0.0552380159497261,-0.728780567646027,-0.260516375303268,0.633253693580627,0.05313790589571,-0.942286610603333,-0.330563634634018,-0.101754292845726,-0.90994393825531,0.402054756879807,-0.514721810817719,-0.785570442676544,0.343424707651138,0.262560427188873,-0.955917000770569,-0.131471738219261,0.247886255383492,-0.958803594112396,-0.138737469911575,0.476649552583694,-0.827596306800842,-0.296461880207062,0.276247322559357,-0.916520893573761,-0.289269655942917,-0.0346283353865147,-0.99755197763443,-0.0607521571218967,0.381227523088455,-0.813867568969727,0.438503205776215,-0.523908138275146,-0.695100367069244,0.492296367883682,0.0147018954157829,-0.955010175704956,-0.296208262443542,0.516026616096497,-0.811592280864716,-0.273924171924591,0.0147018954157829,-0.955010175704956,-0.296208262443542,-0.523908138275146,-0.695100367069244,0.492296367883682,0.0278922487050295,-0.755609512329102,-0.654428243637085,-0.0221893899142742,-0.996144115924835,0.0848794281482697,0.568676173686981,-0.472392618656158,-0.673388957977295,0.0782411247491837,-0.979064166545868,-0.187914133071899,0.827087342739105,-0.215368658304214,-0.519175410270691,0.746847867965698,-0.5113285779953,-0.425160378217697,-0.862997829914093,0.207034081220627,0.460838258266449,0.33436194062233,-0.663576722145081,0.669229447841644,
- 0.522763311862946,-0.198108330368996,0.829139113426209,-0.107181251049042,-0.329312682151794,-0.938118040561676,0.424386113882065,-0.79808384180069,-0.427736669778824,0.120210111141205,-0.960547029972076,0.250796735286713,0.045714870095253,-0.986335754394531,0.158277839422226,-0.0411345548927784,-0.998640954494476,-0.0320010222494602,0.525431573390961,-0.845815658569336,-0.0922906771302223,0.428973078727722,-0.894029676914215,0.12920093536377,0.158792480826378,-0.953987896442413,-0.254346519708633,0.0800463631749153,-0.987758815288544,-0.133884891867638,-0.0411345548927784,-0.998640954494476,-0.0320010222494602,0.428973078727722,-0.894029676914215,0.12920093536377,0.525431573390961,-0.845815658569336,-0.0922906771302223,0.0496546924114227,-0.977139830589294,-0.20671771466732,0.428973078727722,-0.894029676914215,0.12920093536377,0.418497443199158,-0.87043708562851,-0.259228050708771,0.158792480826378,-0.953987896442413,-0.254346519708633,0.428973078727722,-0.894029676914215,0.12920093536377,0.0496546924114227,-0.977139830589294,-0.20671771466732,0.0496546924114227,-0.977139830589294,-0.20671771466732,0.525431573390961,-0.845815658569336,-0.0922906771302223,0.0282590705901384,-0.99317991733551,-0.113114543259144,0.424386113882065,-0.79808384180069,-0.427736669778824,-0.0572710260748863,-0.982883155345917,-0.175102323293686,0.388557851314545,-0.905943691730499,-0.168193221092224,-0.0641276836395264,-0.975488722324371,0.210498034954071,-0.0507247075438499,-0.99141925573349,-0.120477929711342,-0.452692657709122,-0.89150482416153,0.0169868152588606,0.0443710163235664,-0.891120791435242,0.451591491699219,-0.0641276836395264,-0.975488722324371,0.210498034954071,-0.452692657709122,-0.89150482416153,0.0169868152588606,0.109683141112328,-0.951221287250519,0.288353562355042,-0.488650947809219,-0.767798066139221,0.414374649524689,-0.421725571155548,-0.528013229370117,0.737122416496277,-0.0641276836395264,-0.975488722324371,0.210498034954071,0.0443710163235664,-0.891120791435242,0.451591491699219,-0.421725571155548,-0.528013229370117,0.737122416496277,
- -0.0551235675811768,-0.998415052890778,-0.0113504957407713,-0.0507247075438499,-0.99141925573349,-0.120477929711342,-0.0641276836395264,-0.975488722324371,0.210498034954071,0.420256614685059,-0.869066715240479,-0.260974019765854,-0.0551235675811768,-0.998415052890778,-0.0113504957407713,0.120348624885082,-0.990743577480316,-0.06279506534338,0.021592540666461,-0.998953402042389,0.0403218008577824,-0.421725571155548,-0.528013229370117,0.737122416496277,-0.488650947809219,-0.767798066139221,0.414374649524689,-0.449377208948135,-0.877203464508057,0.169039070606232,-0.514281690120697,-0.31464296579361,0.79781836271286,0.538142859935761,-0.820501327514648,-0.19282078742981,-0.497748225927353,0.453987270593643,-0.739014387130737,-0.306995064020157,0.0647123903036118,-0.949508488178253,-0.449377208948135,-0.877203464508057,0.169039070606232,0.0446598865091801,-0.956276953220367,0.289032727479935,-0.838900029659271,-0.526825726032257,0.136752843856812,-0.184522315859795,-0.97596937417984,0.115910939872265,-0.0336876846849918,-0.996324837207794,0.0787519812583923,-0.996162831783295,-0.0493988990783691,0.0722457617521286,-0.0221893899142742,-0.996144115924835,0.0848794281482697,-0.109241843223572,-0.964102149009705,-0.242019206285477,0.00884349457919598,-0.999898910522461,0.0111345974728465,-0.134047821164131,-0.975308179855347,-0.175514400005341,0.00884349457919598,-0.999898910522461,0.0111345974728465,-0.109241843223572,-0.964102149009705,-0.242019206285477,-0.736953616142273,-0.485528767108917,0.470277816057205,0.856090009212494,0.446046203374863,-0.26106059551239,-0.91700267791748,-0.0244591552764177,0.398130476474762,-0.407098442316055,-0.0363701283931732,0.912659823894501,0.109020099043846,-0.954130411148071,0.278836518526077,0.0330739095807076,-0.988293766975403,0.148934856057167,0.151493385434151,-0.985328912734985,-0.0785926878452301,0.0454444363713264,-0.966574907302856,-0.252324610948563,0.568676173686981,-0.472392618656158,-0.673388957977295,0.785365283489227,-0.525477230548859,-0.327223181724548,0.0515570938587189,-0.996324479579926,0.0684072524309158,
- 0.0362944193184376,-0.996469974517822,0.0756983384490013,0.998328983783722,-0.0321401283144951,0.0480244755744934,0.854740262031555,-0.028741393238306,-0.518259644508362,0.00766644394025207,-0.991633892059326,0.128854542970657,-0.0346283353865147,-0.99755197763443,-0.0607521571218967,0.0443710163235664,-0.891120791435242,0.451591491699219,0.109683141112328,-0.951221287250519,0.288353562355042,-0.812171041965485,-0.475188434123993,0.338488101959229,-0.838900029659271,-0.526825726032257,0.136752843856812,0.0446598865091801,-0.956276953220367,0.289032727479935,-0.00649978779256344,-0.968569159507751,0.248659610748291,0.000548406678717583,-0.989312887191772,-0.145806908607483,-0.119469597935677,-0.933487772941589,-0.338123649358749,0.516026616096497,-0.811592280864716,-0.273924171924591,0.527978181838989,-0.806758463382721,-0.26529198884964,0.537007451057434,-0.501299262046814,0.678470373153687,0.467806220054626,-0.793942034244537,0.38834685087204,-0.0351063907146454,-0.997673034667969,-0.0584476590156555,-0.0500528514385223,-0.998116850852966,-0.0354604236781597,-0.452692657709122,-0.89150482416153,0.0169868152588606,-0.0507247075438499,-0.99141925573349,-0.120477929711342,-0.0251785218715668,-0.990680873394012,0.133855566382408,-0.0251785218715668,-0.990680873394012,0.133855566382408,-0.0507247075438499,-0.99141925573349,-0.120477929711342,0.0362944193184376,-0.996469974517822,0.0756983384490013,0.0515570938587189,-0.996324479579926,0.0684072524309158,0.527978181838989,-0.806758463382721,-0.26529198884964,0.516026616096497,-0.811592280864716,-0.273924171924591,0.116322182118893,-0.928880274295807,0.351640045642853,0.00221213418990374,-0.994790375232697,0.101918257772923,0.00221213418990374,-0.994790375232697,0.101918257772923,0.116322182118893,-0.928880274295807,0.351640045642853,0.00404548738151789,-0.998572170734406,0.0532665513455868,-0.0572710260748863,-0.982883155345917,-0.175102323293686,-0.0132562415674329,-0.975712239742279,-0.218654751777649,-0.0500528514385223,-0.998116850852966,-0.0354604236781597,-0.0351063907146454,-0.997673034667969,-0.0584476590156555,
- 0.0533079206943512,-0.969749510288239,0.238210111856461,0.119167692959309,-0.963449418544769,0.239925742149353,-0.213885605335236,-0.943934440612793,-0.25147733092308,0.247886255383492,-0.958803594112396,-0.138737469911575,-0.0346283353865147,-0.99755197763443,-0.0607521571218967,0.00766644394025207,-0.991633892059326,0.128854542970657,-0.120166167616844,-0.992498815059662,-0.0224976651370525,-0.101754292845726,-0.90994393825531,0.402054756879807,0.05313790589571,-0.942286610603333,-0.330563634634018,0.00724073871970177,-0.987578392028809,-0.156959623098373,-0.120166167616844,-0.992498815059662,-0.0224976651370525,-0.686595618724823,-0.662097096443176,0.300356268882751,-0.551103472709656,-0.600113809108734,0.579783082008362,-0.101754292845726,-0.90994393825531,0.402054756879807,0.934550881385803,0.0459707640111446,-0.352847307920456,0.939935505390167,0.0454826429486275,-0.338308334350586,0.932277083396912,-0.0239916369318962,-0.360948652029037,0.933230578899384,-0.0318096317350864,-0.357866853475571,-0.320139616727829,-0.902468383312225,0.288204073905945,0.221758753061295,-0.954249501228333,-0.200576901435852,0.36575710773468,-0.920973598957062,-0.134273543953896,-0.229062020778656,-0.967817485332489,0.104211308062077,-0.229062020778656,-0.967817485332489,0.104211308062077,0.36575710773468,-0.920973598957062,-0.134273543953896,-0.0147927133366466,-0.990572154521942,-0.136191189289093,0.111738465726376,-0.946401238441467,0.303050011396408,0.00742542464286089,-0.999934196472168,0.00874149240553379,0.0291557833552361,-0.996868789196014,0.0735017284750938,-0.909654796123505,-0.0452010855078697,0.412898302078247,-0.559911668300629,-0.0253839995712042,-0.82816344499588,0.0235301367938519,-0.990661323070526,0.134299471974373,0.00742542464286089,-0.999934196472168,0.00874149240553379,0.221758753061295,-0.954249501228333,-0.200576901435852,-0.320139616727829,-0.902468383312225,0.288204073905945,-0.0419566966593266,-0.982266902923584,0.182733342051506,0.0410451181232929,-0.999131977558136,0.00712125282734632,0.0654396936297417,-0.99600225687027,0.0608035214245319,
- -0.00215809512883425,-0.986176311969757,0.165685668587685,0.882853627204895,-0.389068365097046,0.263049870729446,0.090966172516346,-0.995766282081604,-0.0132152773439884,0.0153522929176688,-0.832148194313049,0.554340600967407,0.0442486219108105,-0.381307303905487,0.923388779163361,0.0153522929176688,-0.832148194313049,0.554340600967407,-0.154694646596909,-0.986430287361145,0.0549985058605671,0.0867068693041801,-0.927621126174927,0.363319605588913,-0.288070678710938,-0.944891512393951,0.155548050999641,0.090966172516346,-0.995766282081604,-0.0132152773439884,0.0410451181232929,-0.999131977558136,0.00712125282734632,-0.0419566966593266,-0.982266902923584,0.182733342051506,-0.0147927133366466,-0.990572154521942,-0.136191189289093,0.624242782592773,-0.0492257960140705,-0.779678046703339,0.90815144777298,-0.0239894706755877,-0.417953938245773,0.0251255072653294,-0.993460834026337,-0.111373990774155,0.0201131477952003,-0.998708784580231,-0.0466508865356445,-0.154694646596909,-0.986430287361145,0.0549985058605671,0.090966172516346,-0.995766282081604,-0.0132152773439884,-0.288070678710938,-0.944891512393951,0.155548050999641,-0.067648708820343,-0.991596698760986,-0.110270403325558,-0.0126036526635289,-0.998045682907104,0.0612050443887711,-0.154694646596909,-0.986430287361145,0.0549985058605671,0.0201131477952003,-0.998708784580231,-0.0466508865356445,-0.320139616727829,-0.902468383312225,0.288204073905945,-0.229062020778656,-0.967817485332489,0.104211308062077,-0.917834222316742,-0.396898597478867,0.0072117573581636,0.090966172516346,-0.995766282081604,-0.0132152773439884,0.882853627204895,-0.389068365097046,0.263049870729446,0.821513235569,-0.547198295593262,-0.160280853509903,0.0410451181232929,-0.999131977558136,0.00712125282734632,-0.288070678710938,-0.944891512393951,0.155548050999641,-0.771352171897888,-0.634070515632629,0.0545020028948784,-0.917834222316742,-0.396898597478867,0.0072117573581636,0.0201131477952003,-0.998708784580231,-0.0466508865356445,-0.615703761577606,-0.787769794464111,0.0181010197848082,0.0201131477952003,-0.998708784580231,-0.0466508865356445,
- -0.917834222316742,-0.396898597478867,0.0072117573581636,0.0867068693041801,-0.927621126174927,0.363319605588913,-0.154694646596909,-0.986430287361145,0.0549985058605671,-0.0126036526635289,-0.998045682907104,0.0612050443887711,0.090966172516346,-0.995766282081604,-0.0132152773439884,-0.154694646596909,-0.986430287361145,0.0549985058605671,0.0153522929176688,-0.832148194313049,0.554340600967407,-0.917834222316742,-0.396898597478867,0.0072117573581636,-0.229062020778656,-0.967817485332489,0.104211308062077,0.111738465726376,-0.946401238441467,0.303050011396408,-0.917834222316742,-0.396898597478867,0.0072117573581636,-0.771352171897888,-0.634070515632629,0.0545020028948784,-0.320139616727829,-0.902468383312225,0.288204073905945,0.0410451181232929,-0.999131977558136,0.00712125282734632,0.821513235569,-0.547198295593262,-0.160280853509903,0.80623984336853,-0.562554657459259,-0.183056280016899,0.0654396936297417,-0.99600225687027,0.0608035214245319,0.221758753061295,-0.954249501228333,-0.200576901435852,-0.559911668300629,-0.0253839995712042,-0.82816344499588,0.0741586983203888,-0.139322936534882,-0.987466216087341,0.624242782592773,-0.0492257960140705,-0.779678046703339,-0.0147927133366466,-0.990572154521942,-0.136191189289093,0.36575710773468,-0.920973598957062,-0.134273543953896,0.0153522929176688,-0.832148194313049,0.554340600967407,0.0867068693041801,-0.927621126174927,0.363319605588913,-0.718502938747406,-0.56380569934845,0.407279640436172,0.0442486219108105,-0.381307303905487,0.923388779163361,-0.615703761577606,-0.787769794464111,0.0181010197848082,-0.366695404052734,-0.681114852428436,0.633732676506042,-0.0848609432578087,-0.973147869110107,-0.213967248797417,-0.067648708820343,-0.991596698760986,-0.110270403325558,0.111738465726376,-0.946401238441467,0.303050011396408,-0.0147927133366466,-0.990572154521942,-0.136191189289093,0.0251255072653294,-0.993460834026337,-0.111373990774155,-0.0205210689455271,-0.986610591411591,0.161798089742661,0.933230578899384,-0.0318096317350864,-0.357866853475571,0.937939763069153,0.0563257038593292,-0.342193871736526,
- 0.934550881385803,0.0459707640111446,-0.352847307920456,0.624242782592773,-0.0492257960140705,-0.779678046703339,0.36575710773468,-0.920973598957062,-0.134273543953896,0.221758753061295,-0.954249501228333,-0.200576901435852,0.0741586983203888,-0.139322936534882,-0.987466216087341,0.0291557833552361,-0.996868789196014,0.0735017284750938,0.00742542464286089,-0.999934196472168,0.00874149240553379,0.0235301367938519,-0.990661323070526,0.134299471974373,-0.00928412936627865,-0.99384218454361,-0.110414579510689,-0.491917580366135,-0.850031316280365,0.188318476080894,-0.0419566966593266,-0.982266902923584,0.182733342051506,-0.00215809512883425,-0.986176311969757,0.165685668587685,-0.917834222316742,-0.396898597478867,0.0072117573581636,0.111738465726376,-0.946401238441467,0.303050011396408,-0.615703761577606,-0.787769794464111,0.0181010197848082,-0.366695404052734,-0.681114852428436,0.633732676506042,-0.615703761577606,-0.787769794464111,0.0181010197848082,0.111738465726376,-0.946401238441467,0.303050011396408,-0.0205210689455271,-0.986610591411591,0.161798089742661,-0.0419566966593266,-0.982266902923584,0.182733342051506,-0.491917580366135,-0.850031316280365,0.188318476080894,-0.658409893512726,-0.751637578010559,0.0392104536294937,-0.771352171897888,-0.634070515632629,0.0545020028948784,-0.288070678710938,-0.944891512393951,0.155548050999641,-0.0419566966593266,-0.982266902923584,0.182733342051506,-0.658409893512726,-0.751637578010559,0.0392104536294937,-0.491917580366135,-0.850031316280365,0.188318476080894,0.0235301367938519,-0.990661323070526,0.134299471974373,-0.658409893512726,-0.751637578010559,0.0392104536294937,-0.320139616727829,-0.902468383312225,0.288204073905945,-0.771352171897888,-0.634070515632629,0.0545020028948784,-0.658409893512726,-0.751637578010559,0.0392104536294937,0.0235301367938519,-0.990661323070526,0.134299471974373,0.0235301367938519,-0.990661323070526,0.134299471974373,-0.491917580366135,-0.850031316280365,0.188318476080894,-0.00928412936627865,-0.99384218454361,-0.110414579510689,0.374925673007965,0.768183529376984,-0.518965065479279,
- -0.270673245191574,-0.752453148365021,-0.600458562374115,0.927769899368286,-0.214321240782738,-0.305465966463089,0.221758753061295,-0.954249501228333,-0.200576901435852,0.00742542464286089,-0.999934196472168,0.00874149240553379,-0.559911668300629,-0.0253839995712042,-0.82816344499588,-0.758549749851227,-0.585101962089539,0.286806613206863,-0.718502938747406,-0.56380569934845,0.407279640436172,0.0867068693041801,-0.927621126174927,0.363319605588913,-0.028996804729104,-0.994507908821106,0.100564852356911,-0.028996804729104,-0.994507908821106,0.100564852356911,0.0867068693041801,-0.927621126174927,0.363319605588913,-0.0126036526635289,-0.998045682907104,0.0612050443887711,-0.067648708820343,-0.991596698760986,-0.110270403325558,-0.0848609432578087,-0.973147869110107,-0.213967248797417,-0.262261718511581,0.955923974514008,-0.132016092538834,0.514481425285339,0.785439968109131,0.344082683324814,0.259777754545212,0.964060246944427,0.0557090528309345,0.131043404340744,0.987510085105896,0.0874718725681305,-0.942061305046082,0.02968536503613,-0.334124684333801,-0.91769152879715,0.0328218415379524,-0.395935624837875,-0.91546905040741,0.0128538198769093,-0.402182847261429,-0.937652170658112,-0.0327200591564178,-0.346031486988068,-0.924793183803558,-0.0244644340127707,-0.379683047533035,-0.0433354526758194,0.89123809337616,0.451460719108582,0.0410523973405361,0.997318089008331,-0.0605918131768703,-0.261895745992661,0.917864799499512,-0.298219621181488,0.471074342727661,0.776586353778839,0.418333142995834,-0.262261718511581,0.955923974514008,-0.132016092538834,-0.476518213748932,0.827610731124878,-0.296632677316666,-0.233039855957031,0.936109185218811,-0.263423621654511,-0.0326100811362267,0.94482034444809,-0.325962036848068,-0.0260926689952612,0.957312643527985,0.287874430418015,-0.0743624642491341,0.962574481964111,-0.260615617036819,-0.181695565581322,0.979142606258392,-0.0909207910299301,0.0295422170311213,0.968161880970001,0.248575612902641,0.652634024620056,0.373323529958725,-0.659316658973694,0.259777754545212,0.964060246944427,0.0557090528309345,
- 0.514481425285339,0.785439968109131,0.344082683324814,0.471074342727661,0.776586353778839,0.418333142995834,-0.261895745992661,0.917864799499512,-0.298219621181488,-0.579329967498779,0.787891328334808,-0.208815440535545,0.445594370365143,0.877621412277222,0.176710143685341,-0.420559912919998,0.869452953338623,-0.259192705154419,-0.722377598285675,0.0293259844183922,0.69087678194046,-0.998367130756378,0.0321411676704884,0.0472227409482002,-0.0384453944861889,0.996495842933655,0.0742826387286186,0.513763010501862,0.314666777849197,0.798143088817596,-0.118899576365948,0.990836560726166,-0.0640756785869598,0.0564175248146057,0.99831086397171,-0.0138648543506861,0.406326860189438,0.03639255464077,0.913002789020538,-0.022131597623229,0.998818278312683,0.043270617723465,-0.107751168310642,0.954379558563232,0.278476774692535,0.0782728344202042,0.891867637634277,-0.445472210645676,-0.0326100811362267,0.94482034444809,-0.325962036848068,-0.233039855957031,0.936109185218811,-0.263423621654511,0.0216933060437441,0.996170163154602,0.084702305495739,0.133717820048332,0.975332081317902,-0.17563296854496,0.816865146160126,-0.523178160190582,0.242932111024857,0.652436077594757,-0.183464199304581,-0.735301315784454,0.519180774688721,0.789024591445923,0.328468471765518,0.809181392192841,-0.301680862903595,0.504196584224701,0.498145967721939,-0.454026788473129,-0.738722085952759,0.0783730447292328,0.97082132101059,-0.226635679602623,-0.118899576365948,0.990836560726166,-0.0640756785869598,0.83887791633606,0.526727914810181,0.137264832854271,-0.022131597623229,0.998818278312683,0.043270617723465,-0.118899576365948,0.990836560726166,-0.0640756785869598,0.0783730447292328,0.97082132101059,-0.226635679602623,-0.107751168310642,0.954379558563232,0.278476774692535,0.180573999881744,0.893084764480591,-0.41205894947052,0.652634024620056,0.373323529958725,-0.659316658973694,-0.360512048006058,0.800223648548126,-0.479242235422134,0.0782728344202042,0.891867637634277,-0.445472210645676,-0.233039855957031,0.936109185218811,-0.263423621654511,-0.224350363016129,0.964448928833008,-0.13966092467308,
- 0.131043404340744,0.987510085105896,0.0874718725681305,-0.0283893831074238,0.755378723144531,-0.654673278331757,-0.476518213748932,0.827610731124878,-0.296632677316666,-0.262261718511581,0.955923974514008,-0.132016092538834,0.445594370365143,0.877621412277222,0.176710143685341,-0.579329967498779,0.787891328334808,-0.208815440535545,-0.0743624642491341,0.962574481964111,-0.260615617036819,-0.0260926689952612,0.957312643527985,0.287874430418015,-0.476518213748932,0.827610731124878,-0.296632677316666,-0.0283893831074238,0.755378723144531,-0.654673278331757,-0.579329967498779,0.787891328334808,-0.208815440535545,-0.261895745992661,0.917864799499512,-0.298219621181488,0.513763010501862,0.314666777849197,0.798143088817596,0.445594370365143,0.877621412277222,0.176710143685341,0.83887791633606,0.526727914810181,0.137264832854271,-0.420559912919998,0.869452953338623,-0.259192705154419,-0.022131597623229,0.998818278312683,0.043270617723465,0.406326860189438,0.03639255464077,0.913002789020538,-0.722377598285675,0.0293259844183922,0.69087678194046,0.131043404340744,0.987510085105896,0.0874718725681305,0.259777754545212,0.964060246944427,0.0557090528309345,0.180573999881744,0.893084764480591,-0.41205894947052,0.0216933060437441,0.996170163154602,0.084702305495739,-0.0283893831074238,0.755378723144531,-0.654673278331757,0.131043404340744,0.987510085105896,0.0874718725681305,0.0216933060437441,0.996170163154602,0.084702305495739,0.0783730447292328,0.97082132101059,-0.226635679602623,0.83887791633606,0.526727914810181,0.137264832854271,-0.840968370437622,-0.473192989826202,-0.262413024902344,0.052813459187746,0.975693941116333,-0.212678194046021,-0.579329967498779,0.787891328334808,-0.208815440535545,-0.0283893831074238,0.755378723144531,-0.654673278331757,-0.0743624642491341,0.962574481964111,-0.260615617036819,-0.0384453944861889,0.996495842933655,0.0742826387286186,0.0557468235492706,0.978134155273438,-0.200364321470261,0.0564175248146057,0.99831086397171,-0.0138648543506861,-0.420559912919998,0.869452953338623,-0.259192705154419,
- -0.107751168310642,0.954379558563232,0.278476774692535,0.0783730447292328,0.97082132101059,-0.226635679602623,0.052813459187746,0.975693941116333,-0.212678194046021,-0.0312532372772694,0.988327622413635,0.14910264313221,0.969676911830902,0.244351327419281,-0.00438828021287918,0.652634024620056,0.373323529958725,-0.659316658973694,0.514481425285339,0.785439968109131,0.344082683324814,0.828907191753387,0.414073020219803,0.376106679439545,0.969676911830902,0.244351327419281,-0.00438828021287918,0.514481425285339,0.785439968109131,0.344082683324814,0.114343591034412,0.908827543258667,0.401195853948593,0.180573999881744,0.893084764480591,-0.41205894947052,0.259777754545212,0.964060246944427,0.0557090528309345,0.652634024620056,0.373323529958725,-0.659316658973694,-0.0326100811362267,0.94482034444809,-0.325962036848068,0.114343591034412,0.908827543258667,0.401195853948593,0.514481425285339,0.785439968109131,0.344082683324814,-0.262261718511581,0.955923974514008,-0.132016092538834,-0.233039855957031,0.936109185218811,-0.263423621654511,-0.476518213748932,0.827610731124878,-0.296632677316666,-0.261895745992661,0.917864799499512,-0.298219621181488,0.0410523973405361,0.997318089008331,-0.0605918131768703,-0.0283893831074238,0.755378723144531,-0.654673278331757,0.0216933060437441,0.996170163154602,0.084702305495739,0.652436077594757,-0.183464199304581,-0.735301315784454,-0.108944967389107,0.975040674209595,-0.193459659814835,-0.826723039150238,0.215406984090805,-0.519739210605621,-0.746555745601654,0.511301696300507,-0.425705403089523,0.406882375478745,0.844178318977356,0.349012583494186,0.0557468235492706,0.978134155273438,-0.200364321470261,0.451609194278717,0.892192661762238,0.00643094070255756,-0.0433354526758194,0.89123809337616,0.451460719108582,0.406882375478745,0.844178318977356,0.349012583494186,0.451609194278717,0.892192661762238,0.00643094070255756,-0.088751494884491,0.953995585441589,0.28638368844986,0.471074342727661,0.776586353778839,0.418333142995834,0.421380937099457,0.52808541059494,0.737267851829529,0.406882375478745,0.844178318977356,0.349012583494186,
- -0.0433354526758194,0.89123809337616,0.451460719108582,0.421380937099457,0.52808541059494,0.737267851829529,0.0564175248146057,0.99831086397171,-0.0138648543506861,0.0557468235492706,0.978134155273438,-0.200364321470261,0.406882375478745,0.844178318977356,0.349012583494186,-0.420559912919998,0.869452953338623,-0.259192705154419,0.0564175248146057,0.99831086397171,-0.0138648543506861,-0.118899576365948,0.990836560726166,-0.0640756785869598,-0.022131597623229,0.998818278312683,0.043270617723465,0.421380937099457,0.52808541059494,0.737267851829529,0.471074342727661,0.776586353778839,0.418333142995834,0.445594370365143,0.877621412277222,0.176710143685341,0.513763010501862,0.314666777849197,0.798143088817596,-0.536293923854828,0.821446895599365,-0.193942964076996,0.498145967721939,-0.454026788473129,-0.738722085952759,0.307378888130188,-0.0648268461227417,-0.949376463890076,0.445594370365143,0.877621412277222,0.176710143685341,-0.0260926689952612,0.957312643527985,0.287874430418015,0.83887791633606,0.526727914810181,0.137264832854271,0.0216933060437441,0.996170163154602,0.084702305495739,0.180573999881744,0.893084764480591,-0.41205894947052,-0.00884375721216202,0.9998978972435,0.011220914311707,0.133717820048332,0.975332081317902,-0.17563296854496,-0.00884375721216202,0.9998978972435,0.011220914311707,0.180573999881744,0.893084764480591,-0.41205894947052,-0.360512048006058,0.800223648548126,-0.479242235422134,-0.509496688842773,0.840722441673279,-0.183300137519836,0.916695773601532,0.024479553103447,0.398835301399231,0.406326860189438,0.03639255464077,0.913002789020538,-0.107751168310642,0.954379558563232,0.278476774692535,-0.0312532372772694,0.988327622413635,0.14910264313221,-0.181695565581322,0.979142606258392,-0.0909207910299301,-0.0743624642491341,0.962574481964111,-0.260615617036819,0.652436077594757,-0.183464199304581,-0.735301315784454,-0.785185635089874,0.525446534156799,-0.327703326940537,-0.053429339081049,0.99631005525589,0.0671685487031937,-0.0384453944861889,0.996495842933655,0.0742826387286186,-0.998367130756378,0.0321411676704884,0.0472227409482002,
- -0.854220688343048,0.0287351626902819,-0.519115924835205,-0.00219148211181164,0.991409301757813,0.130777269601822,0.0410523973405361,0.997318089008331,-0.0605918131768703,-0.0433354526758194,0.89123809337616,0.451460719108582,-0.088751494884491,0.953995585441589,0.28638368844986,0.812079966068268,0.475029230117798,0.33893010020256,0.83887791633606,0.526727914810181,0.137264832854271,-0.0260926689952612,0.957312643527985,0.287874430418015,0.0295422170311213,0.968161880970001,0.248575612902641,0.451609194278717,0.892192661762238,0.00643094070255756,0.0557468235492706,0.978134155273438,-0.200364321470261,0.027194295078516,0.998454451560974,0.0484692230820656,0.027194295078516,0.998454451560974,0.0484692230820656,0.0557468235492706,0.978134155273438,-0.200364321470261,-0.0384453944861889,0.996495842933655,0.0742826387286186,-0.053429339081049,0.99631005525589,0.0671685487031937,-0.224350363016129,0.964448928833008,-0.13966092467308,-0.233039855957031,0.936109185218811,-0.263423621654511,0.0410523973405361,0.997318089008331,-0.0605918131768703,-0.00219148211181164,0.991409301757813,0.130777269601822,0.136237055063248,0.990493297576904,-0.0190360117703676,0.114343591034412,0.908827543258667,0.401195853948593,-0.0326100811362267,0.94482034444809,-0.325962036848068,0.0782728344202042,0.891867637634277,-0.445472210645676,0.136237055063248,0.990493297576904,-0.0190360117703676,0.811207473278046,0.492039412260056,0.315974205732346,0.828907191753387,0.414073020219803,0.376106679439545,0.114343591034412,0.908827543258667,0.401195853948593,-0.934322953224182,-0.0459804311394691,-0.353449255228043,-0.939718723297119,-0.0454933270812035,-0.338908672332764,-0.932044744491577,0.0239963699132204,-0.361547917127609,-0.932998836040497,0.0318145081400871,-0.358470261096954,-0.829753160476685,0.500252783298492,0.247501268982887,-0.684809684753418,0.436290562152863,-0.58368331193924,-0.205272927880287,0.905794501304626,0.370673954486847,-0.0874414220452309,0.844989776611328,0.527585327625275,0.331809669733047,0.890138506889343,0.312339127063751,
- -0.297695010900497,0.918501198291779,-0.260255753993988,-0.260253041982651,0.959088683128357,-0.111432023346424,0.425274223089218,0.887842416763306,0.175720393657684,-0.941637933254242,0.0287565384060144,-0.335396885871887,-0.9207563996315,0.0300711989402771,-0.388977229595184,-0.918526947498322,0.011983985081315,-0.395176768302917,-0.937199950218201,-0.0269465371966362,-0.347750127315521,-0.926544547080994,-0.0244381427764893,-0.375390499830246,-0.0478961318731308,0.989641606807709,0.135334119200706,0.122566178441048,0.992177665233612,-0.0236834436655045,0.0579883940517902,0.995318412780762,-0.0773224011063576,0.220591187477112,0.948578298091888,0.227021664381027,0.30856853723526,0.904217660427094,0.295255303382874,-0.21547819674015,0.954282104969025,-0.207158803939819,-0.365710556507111,0.919892907142639,-0.141608491539955,0.219335615634918,0.969152569770813,0.112406201660633,0.331809669733047,0.890138506889343,0.312339127063751,0.841013550758362,0.534804046154022,-0.0817366018891335,0.882449865341187,0.459793508052826,-0.0993592366576195,-0.00459904689341784,0.986739933490753,-0.16224417090416,0.219335615634918,0.969152569770813,0.112406201660633,-0.365710556507111,0.919892907142639,-0.141608491539955,-0.00559111405164003,0.99114203453064,-0.13268855214119,-0.103628747165203,0.94382381439209,0.313779771327972,0.0884886831045151,0.995881974697113,-0.0197178218513727,0.0706472769379616,0.966731011867523,-0.245845690369606,-0.0363816246390343,0.998048484325409,-0.0507505312561989,0.0735803991556168,0.997227489948273,0.011102675460279,-0.00980886723846197,0.999913036823273,0.00881514512002468,-0.0309330616146326,0.997002840042114,0.070912130177021,0.908863425254822,0.0452045947313309,0.4146369099617,0.561234951019287,0.0254120267927647,-0.827266335487366,-0.0304005984216928,0.990337133407593,0.135307267308235,-0.00980886723846197,0.999913036823273,0.00881514512002468,-0.21547819674015,0.954282104969025,-0.207158803939819,0.30856853723526,0.904217660427094,0.295255303382874,-0.185384660959244,0.886626720428467,0.423704534769058,
- 0.0755553990602493,0.981372714042664,-0.176632136106491,0.0570670403540134,0.964304327964783,-0.258574336767197,-0.0294681768864393,0.986185431480408,-0.163002967834473,0.0618451461195946,0.997596919536591,-0.031233923509717,-0.859981834888458,0.496816068887711,0.116640947759151,-0.260253041982651,0.959088683128357,-0.111432023346424,-0.297695010900497,0.918501198291779,-0.260255753993988,0.342938870191574,0.929635643959045,0.134798005223274,0.220591187477112,0.948578298091888,0.227021664381027,0.0579883940517902,0.995318412780762,-0.0773224011063576,0.193198159337044,0.980400860309601,-0.0385819673538208,0.0465083867311478,0.981940388679504,0.183384716510773,-0.0450718030333519,0.998950898647308,0.00809551682323217,-0.0697407275438309,0.995801508426666,0.0592925921082497,0.0066617033444345,0.9859539270401,0.166884914040565,-0.0874414220452309,0.844989776611328,0.527585327625275,0.0204524602741003,0.993533909320831,-0.111677832901478,-0.0866638049483299,0.990678071975708,-0.10510141402483,-0.0785358399152756,0.995758950710297,0.047919824719429,-0.0785358399152756,0.995758950710297,0.047919824719429,-0.0866638049483299,0.990678071975708,-0.10510141402483,-0.0365371070802212,0.998868346214294,-0.0304494388401508,-0.254000335931778,0.967094659805298,0.0145502500236034,-0.695029675960541,0.717621564865112,-0.0441936142742634,-0.0924743562936783,0.99567574262619,-0.00885647069662809,-0.0157559011131525,0.832149684429169,0.554327189922333,0.19115449488163,0.631559789180756,0.751393556594849,-0.0365371070802212,0.998868346214294,-0.0304494388401508,-0.0866638049483299,0.990678071975708,-0.10510141402483,-0.0780319795012474,0.9469074010849,-0.311893314123154,-0.449172556400299,0.845913350582123,-0.287531942129135,-0.9083291888237,0.0269731618463993,0.417385429143906,-0.990696609020233,0.0306786503642797,-0.132585272192955,-0.0384963266551495,0.994339346885681,-0.0990318581461906,0.691100537776947,0.343383312225342,0.635977923870087,-0.088782899081707,0.994930624961853,-0.0472293198108673,0.230498015880585,0.965888798236847,0.118022829294205,
- -0.0780319795012474,0.9469074010849,-0.311893314123154,-0.306161612272263,0.622531652450562,-0.720221817493439,0.0570670403540134,0.964304327964783,-0.258574336767197,-0.0157559011131525,0.832149684429169,0.554327189922333,0.154650986194611,0.98640513420105,0.055570375174284,-0.0820841789245605,0.92740273475647,0.36494717001915,0.288734465837479,0.945428490638733,0.150987446308136,-0.0924743562936783,0.99567574262619,-0.00885647069662809,-0.0450718030333519,0.998950898647308,0.00809551682323217,0.0465083867311478,0.981940388679504,0.183384716510773,-0.824833691120148,-0.00642677862197161,0.565339028835297,-0.285969406366348,0.956923305988312,-0.0501919351518154,-0.0620523616671562,0.99226438999176,0.107521891593933,-0.00559111405164003,0.99114203453064,-0.13268855214119,-0.623655915260315,0.0492302887141705,-0.780147254467011,-0.907839953899384,0.0239942912012339,-0.418629735708237,-0.0485574342310429,0.992649853229523,-0.11085332930088,-0.0184572543948889,0.998558223247528,-0.0504060387611389,0.154650986194611,0.98640513420105,0.055570375174284,-0.0924743562936783,0.99567574262619,-0.00885647069662809,0.288734465837479,0.945428490638733,0.150987446308136,0.0686337500810623,0.991835355758667,-0.107480049133301,0.0155838532373309,0.997882306575775,0.0631503760814667,0.154650986194611,0.98640513420105,0.055570375174284,-0.0184572543948889,0.998558223247528,-0.0504060387611389,0.30856853723526,0.904217660427094,0.295255303382874,0.219335615634918,0.969152569770813,0.112406201660633,0.917882204055786,0.396774888038635,0.00787690375000238,-0.0039426819421351,0.996845126152039,-0.0792727395892143,-0.00459904689341784,0.986739933490753,-0.16224417090416,0.882449865341187,0.459793508052826,-0.0993592366576195,-0.0924743562936783,0.99567574262619,-0.00885647069662809,-0.695029675960541,0.717621564865112,-0.0441936142742634,-0.434860438108444,0.90009069442749,-0.0270755477249622,-0.0450718030333519,0.998950898647308,0.00809551682323217,0.0540744699537754,0.992231369018555,0.112039148807526,0.16516874730587,0.978688299655914,-0.122017897665501,
- 0.48941233754158,0.837059855461121,0.244553461670876,0.44147801399231,0.896180987358093,0.0442347899079323,0.288734465837479,0.945428490638733,0.150987446308136,0.771271705627441,0.634129226207733,0.0549537539482117,0.917882204055786,0.396774888038635,0.00787690375000238,-0.0184572543948889,0.998558223247528,-0.0504060387611389,0.615914046764374,0.787607192993164,0.0180237609893084,-0.0184572543948889,0.998558223247528,-0.0504060387611389,0.917882204055786,0.396774888038635,0.00787690375000238,-0.0785358399152756,0.995758950710297,0.047919824719429,-0.660604476928711,0.526157140731812,0.535500228404999,-0.829753160476685,0.500252783298492,0.247501268982887,-0.0874414220452309,0.844989776611328,0.527585327625275,-0.829753160476685,0.500252783298492,0.247501268982887,0.0176361091434956,0.998841285705566,0.0447776913642883,0.418507814407349,0.887025237083435,-0.195031747221947,0.444497644901276,-0.0907681658864021,-0.891169428825378,-0.0820841789245605,0.92740273475647,0.36494717001915,0.154650986194611,0.98640513420105,0.055570375174284,0.0155838532373309,0.997882306575775,0.0631503760814667,0.230498015880585,0.965888798236847,0.118022829294205,0.161711230874062,0.854743480682373,0.493217021226883,0.691100537776947,0.343383312225342,0.635977923870087,-0.0924743562936783,0.99567574262619,-0.00885647069662809,0.154650986194611,0.98640513420105,0.055570375174284,-0.0157559011131525,0.832149684429169,0.554327189922333,0.00401503965258598,0.997615039348602,-0.0689072012901306,-0.088782899081707,0.994930624961853,-0.0472293198108673,0.522376179695129,0.82378101348877,0.220245257019997,-0.0620523616671562,0.99226438999176,0.107521891593933,-0.285969406366348,0.956923305988312,-0.0501919351518154,-0.088782899081707,0.994930624961853,-0.0472293198108673,0.00401503965258598,0.997615039348602,-0.0689072012901306,0.917882204055786,0.396774888038635,0.00787690375000238,0.219335615634918,0.969152569770813,0.112406201660633,-0.103628747165203,0.94382381439209,0.313779771327972,0.144581273198128,0.892704904079437,-0.426818698644638,
- -0.859981834888458,0.496816068887711,0.116640947759151,-0.639421999454498,0.764074862003326,-0.0856105014681816,-0.0039426819421351,0.996845126152039,-0.0792727395892143,0.882449865341187,0.459793508052826,-0.0993592366576195,0.764180123806,0.535297334194183,0.359841167926788,0.917882204055786,0.396774888038635,0.00787690375000238,0.771271705627441,0.634129226207733,0.0549537539482117,0.30856853723526,0.904217660427094,0.295255303382874,0.425274223089218,0.887842416763306,0.175720393657684,0.567331731319427,0.808166682720184,0.15811750292778,0.841013550758362,0.534804046154022,-0.0817366018891335,0.331809669733047,0.890138506889343,0.312339127063751,-0.0450718030333519,0.998950898647308,0.00809551682323217,-0.434860438108444,0.90009069442749,-0.0270755477249622,-0.481267243623734,0.87567013502121,-0.0397931337356567,-0.0697407275438309,0.995801508426666,0.0592925921082497,0.0884886831045151,0.995881974697113,-0.0197178218513727,0.342938870191574,0.929635643959045,0.134798005223274,0.193198159337044,0.980400860309601,-0.0385819673538208,0.0706472769379616,0.966731011867523,-0.245845690369606,0.841013550758362,0.534804046154022,-0.0817366018891335,0.567331731319427,0.808166682720184,0.15811750292778,0.193198159337044,0.980400860309601,-0.0385819673538208,0.0579883940517902,0.995318412780762,-0.0773224011063576,-0.695029675960541,0.717621564865112,-0.0441936142742634,-0.0780319795012474,0.9469074010849,-0.311893314123154,-0.0866638049483299,0.990678071975708,-0.10510141402483,0.691100537776947,0.343383312225342,0.635977923870087,0.342938870191574,0.929635643959045,0.134798005223274,0.522376179695129,0.82378101348877,0.220245257019997,-0.21547819674015,0.954282104969025,-0.207158803939819,0.561234951019287,0.0254120267927647,-0.827266335487366,-0.0729026049375534,0.139466017484665,-0.987539649009705,-0.0785358399152756,0.995758950710297,0.047919824719429,-0.254000335931778,0.967094659805298,0.0145502500236034,-0.859981834888458,0.496816068887711,0.116640947759151,-0.660604476928711,0.526157140731812,0.535500228404999,
- -0.623655915260315,0.0492302887141705,-0.780147254467011,-0.00559111405164003,0.99114203453064,-0.13268855214119,-0.365710556507111,0.919892907142639,-0.141608491539955,-0.449172556400299,0.845913350582123,-0.287531942129135,-0.285969406366348,0.956923305988312,-0.0501919351518154,-0.824833691120148,-0.00642677862197161,0.565339028835297,-0.9083291888237,0.0269731618463993,0.417385429143906,0.425274223089218,0.887842416763306,0.175720393657684,-0.260253041982651,0.959088683128357,-0.111432023346424,0.144581273198128,0.892704904079437,-0.426818698644638,0.0540744699537754,0.992231369018555,0.112039148807526,0.567331731319427,0.808166682720184,0.15811750292778,0.425274223089218,0.887842416763306,0.175720393657684,0.0540744699537754,0.992231369018555,0.112039148807526,0.00401503965258598,0.997615039348602,-0.0689072012901306,0.522376179695129,0.82378101348877,0.220245257019997,0.517286956310272,0.736184120178223,0.436402559280396,-0.0085667883977294,0.998499512672424,-0.0540865883231163,0.193198159337044,0.980400860309601,-0.0385819673538208,0.567331731319427,0.808166682720184,0.15811750292778,0.0706472769379616,0.966731011867523,-0.245845690369606,0.230498015880585,0.965888798236847,0.118022829294205,-0.449172556400299,0.845913350582123,-0.287531942129135,-0.0384963266551495,0.994339346885681,-0.0990318581461906,0.0441036894917488,0.983541548252106,0.17521670460701,0.00401503965258598,0.997615039348602,-0.0689072012901306,-0.0085667883977294,0.998499512672424,-0.0540865883231163,-0.0337077379226685,0.998256862163544,0.0484445206820965,-0.0620523616671562,0.99226438999176,0.107521891593933,-0.859981834888458,0.496816068887711,0.116640947759151,-0.254000335931778,0.967094659805298,0.0145502500236034,-0.185384660959244,0.886626720428467,0.423704534769058,-0.639421999454498,0.764074862003326,-0.0856105014681816,-0.254000335931778,0.967094659805298,0.0145502500236034,-0.0365371070802212,0.998868346214294,-0.0304494388401508,0.0755553990602493,0.981372714042664,-0.176632136106491,-0.185384660959244,0.886626720428467,0.423704534769058,
- -0.0157559011131525,0.832149684429169,0.554327189922333,-0.0820841789245605,0.92740273475647,0.36494717001915,-0.306161612272263,0.622531652450562,-0.720221817493439,0.19115449488163,0.631559789180756,0.751393556594849,0.615914046764374,0.787607192993164,0.0180237609893084,0.368116229772568,0.681999027729034,0.631955504417419,0.0843610689043999,0.973255813121796,-0.213672950863838,0.0686337500810623,0.991835355758667,-0.107480049133301,-0.103628747165203,0.94382381439209,0.313779771327972,-0.00559111405164003,0.99114203453064,-0.13268855214119,-0.0485574342310429,0.992649853229523,-0.11085332930088,0.0453121475875378,0.984297871589661,0.170600175857544,-0.932998836040497,0.0318145081400871,-0.358470261096954,-0.937715649604797,-0.0563498213887215,-0.342803150415421,-0.934322953224182,-0.0459804311394691,-0.353449255228043,-0.623655915260315,0.0492302887141705,-0.780147254467011,-0.365710556507111,0.919892907142639,-0.141608491539955,-0.21547819674015,0.954282104969025,-0.207158803939819,-0.0729026049375534,0.139466017484665,-0.987539649009705,-0.0309330616146326,0.997002840042114,0.070912130177021,-0.00980886723846197,0.999913036823273,0.00881514512002468,-0.0304005984216928,0.990337133407593,0.135307267308235,0.00208154832944274,0.993682503700256,-0.1122085750103,0.491568267345428,0.850096523761749,0.188935354351997,0.0465083867311478,0.981940388679504,0.183384716510773,0.0066617033444345,0.9859539270401,0.166884914040565,-0.0780319795012474,0.9469074010849,-0.311893314123154,0.0570670403540134,0.964304327964783,-0.258574336767197,0.0755553990602493,0.981372714042664,-0.176632136106491,-0.0365371070802212,0.998868346214294,-0.0304494388401508,-0.695029675960541,0.717621564865112,-0.0441936142742634,-0.0866638049483299,0.990678071975708,-0.10510141402483,0.0204524602741003,0.993533909320831,-0.111677832901478,-0.434860438108444,0.90009069442749,-0.0270755477249622,0.916419148445129,-0.40013325214386,0.00832350924611092,-0.93244457244873,-0.0858322829008102,-0.350970029830933,-0.629788637161255,0.596174359321594,-0.497938305139542,
- 0.296077430248261,-0.162742391228676,-0.941197693347931,0.916419148445129,-0.40013325214386,0.00832350924611092,-0.297695010900497,0.918501198291779,-0.260255753993988,0.0189956855028868,0.811763465404511,-0.583677351474762,0.738225221633911,-0.662504613399506,0.126929849386215,0.667939245700836,-0.454872161149979,-0.589023351669312,-0.185384660959244,0.886626720428467,0.423704534769058,-0.0578146278858185,0.967132568359375,0.247613072395325,0.144581273198128,0.892704904079437,-0.426818698644638,-0.260253041982651,0.959088683128357,-0.111432023346424,-0.859981834888458,0.496816068887711,0.116640947759151,-0.00459904689341784,0.986739933490753,-0.16224417090416,0.0176361091434956,0.998841285705566,0.0447776913642883,-0.297695010900497,0.918501198291779,-0.260255753993988,0.331809669733047,0.890138506889343,0.312339127063751,0.882449865341187,0.459793508052826,-0.0993592366576195,0.841013550758362,0.534804046154022,-0.0817366018891335,0.0579883940517902,0.995318412780762,-0.0773224011063576,0.122566178441048,0.992177665233612,-0.0236834436655045,-0.734903693199158,0.125509172677994,-0.666456341743469,0.389977872371674,-0.59784322977066,-0.700357556343079,0.0585667751729488,0.953974604606628,-0.294112980365753,-0.306161612272263,0.622531652450562,-0.720221817493439,-0.0780319795012474,0.9469074010849,-0.311893314123154,0.19115449488163,0.631559789180756,0.751393556594849,0.362230837345123,0.929798126220703,0.0653007850050926,0.0438296273350716,0.989889204502106,0.134901255369186,0.462940216064453,0.886186063289642,-0.0189877524971962,0.102668888866901,0.944607675075531,-0.311729669570923,0.362230837345123,0.929798126220703,0.0653007850050926,0.462940216064453,0.886186063289642,-0.0189877524971962,0.917882204055786,0.396774888038635,0.00787690375000238,-0.103628747165203,0.94382381439209,0.313779771327972,0.615914046764374,0.787607192993164,0.0180237609893084,0.368116229772568,0.681999027729034,0.631955504417419,0.615914046764374,0.787607192993164,0.0180237609893084,-0.103628747165203,0.94382381439209,0.313779771327972,
- 0.0453121475875378,0.984297871589661,0.170600175857544,0.0465083867311478,0.981940388679504,0.183384716510773,0.491568267345428,0.850096523761749,0.188935354351997,0.658292412757874,0.751711010932922,0.039769422262907,0.771271705627441,0.634129226207733,0.0549537539482117,0.288734465837479,0.945428490638733,0.150987446308136,0.0465083867311478,0.981940388679504,0.183384716510773,0.658292412757874,0.751711010932922,0.039769422262907,0.491568267345428,0.850096523761749,0.188935354351997,-0.0304005984216928,0.990337133407593,0.135307267308235,0.658292412757874,0.751711010932922,0.039769422262907,0.30856853723526,0.904217660427094,0.295255303382874,0.771271705627441,0.634129226207733,0.0549537539482117,0.658292412757874,0.751711010932922,0.039769422262907,-0.0304005984216928,0.990337133407593,0.135307267308235,-0.0304005984216928,0.990337133407593,0.135307267308235,0.491568267345428,0.850096523761749,0.188935354351997,0.00208154832944274,0.993682503700256,-0.1122085750103,-0.374590784311295,-0.768095672130585,-0.519336879253387,0.274084091186523,0.748291611671448,-0.60410064458847,-0.927078366279602,0.215130254626274,-0.306993037462235,0.135025933384895,0.982033908367157,-0.131823465228081,0.0441036894917488,0.983541548252106,0.17521670460701,0.10676795989275,0.994235932826996,-0.00977129209786654,-0.0478961318731308,0.989641606807709,0.135334119200706,0.135025933384895,0.982033908367157,-0.131823465228081,0.10676795989275,0.994235932826996,-0.00977129209786654,-0.0680650696158409,0.996355652809143,0.0514080077409744,0.220591187477112,0.948578298091888,0.227021664381027,0.161711230874062,0.854743480682373,0.493217021226883,0.135025933384895,0.982033908367157,-0.131823465228081,-0.0478961318731308,0.989641606807709,0.135334119200706,0.161711230874062,0.854743480682373,0.493217021226883,0.230498015880585,0.965888798236847,0.118022829294205,0.0441036894917488,0.983541548252106,0.17521670460701,0.135025933384895,0.982033908367157,-0.131823465228081,-0.088782899081707,0.994930624961853,-0.0472293198108673,-0.285969406366348,0.956923305988312,-0.0501919351518154,
- -0.449172556400299,0.845913350582123,-0.287531942129135,0.230498015880585,0.965888798236847,0.118022829294205,0.161711230874062,0.854743480682373,0.493217021226883,0.220591187477112,0.948578298091888,0.227021664381027,0.342938870191574,0.929635643959045,0.134798005223274,0.691100537776947,0.343383312225342,0.635977923870087,-0.480285197496414,0.860465884208679,-0.17007227241993,-0.404313892126083,-0.525376975536346,-0.74867171049118,0.492856949567795,0.146424859762192,-0.857701480388641,0.342938870191574,0.929635643959045,0.134798005223274,0.0884886831045151,0.995881974697113,-0.0197178218513727,0.522376179695129,0.82378101348877,0.220245257019997,-0.21547819674015,0.954282104969025,-0.207158803939819,-0.00980886723846197,0.999913036823273,0.00881514512002468,0.561234951019287,0.0254120267927647,-0.827266335487366,0.0540744699537754,0.992231369018555,0.112039148807526,0.144581273198128,0.892704904079437,-0.426818698644638,-0.08209428191185,0.995839238166809,-0.0395553521811962,0.16516874730587,0.978688299655914,-0.122017897665501,-0.08209428191185,0.995839238166809,-0.0395553521811962,0.144581273198128,0.892704904079437,-0.426818698644638,-0.639421999454498,0.764074862003326,-0.0856105014681816,-0.684677600860596,0.672533094882965,-0.280919641256332,0.891513526439667,0.0244415532797575,0.452334195375443,-0.824833691120148,-0.00642677862197161,0.565339028835297,-0.0620523616671562,0.99226438999176,0.107521891593933,-0.0337077379226685,0.998256862163544,0.0484445206820965,-0.0363816246390343,0.998048484325409,-0.0507505312561989,0.0706472769379616,0.966731011867523,-0.245845690369606,0.44147801399231,0.896180987358093,0.0442347899079323,0.48941233754158,0.837059855461121,0.244553461670876,-0.0394157953560352,0.997647821903229,-0.0560831055045128,-0.0384963266551495,0.994339346885681,-0.0990318581461906,-0.990696609020233,0.0306786503642797,-0.132585272192955,-0.894357085227966,0.0283520650118589,-0.446454405784607,0.122566178441048,0.992177665233612,-0.0236834436655045,-0.0478961318731308,0.989641606807709,0.135334119200706,
- -0.0680650696158409,0.996355652809143,0.0514080077409744,0.125423222780228,0.988584399223328,0.0834846720099449,0.0426294505596161,0.977165341377258,-0.208160430192947,-0.0039426819421351,0.996845126152039,-0.0792727395892143,0.764180123806,0.535297334194183,0.359841167926788,0.517286956310272,0.736184120178223,0.436402559280396,0.522376179695129,0.82378101348877,0.220245257019997,0.0884886831045151,0.995881974697113,-0.0197178218513727,0.0735803991556168,0.997227489948273,0.011102675460279,-0.0294681768864393,0.986185431480408,-0.163002967834473,0.0570670403540134,0.964304327964783,-0.258574336767197,-0.306161612272263,0.622531652450562,-0.720221817493439,-0.472714155912399,0.63835346698761,-0.607491672039032,-0.684809684753418,0.436290562152863,-0.58368331193924,0.418507814407349,0.887025237083435,-0.195031747221947,-0.0180045533925295,0.997559189796448,0.0674651190638542,-0.481267243623734,0.87567013502121,-0.0397931337356567,-0.434860438108444,0.90009069442749,-0.0270755477249622,0.0204524602741003,0.993533909320831,-0.111677832901478,0.0292730014771223,0.998545050621033,-0.0452893413603306,0.10676795989275,0.994235932826996,-0.00977129209786654,0.0441036894917488,0.983541548252106,0.17521670460701,0.0410816855728626,0.997780561447144,0.0524034015834332,0.0410816855728626,0.997780561447144,0.0524034015834332,0.0441036894917488,0.983541548252106,0.17521670460701,-0.0384963266551495,0.994339346885681,-0.0990318581461906,-0.0394157953560352,0.997647821903229,-0.0560831055045128,-0.472714155912399,0.63835346698761,-0.607491672039032,-0.306161612272263,0.622531652450562,-0.720221817493439,-0.0820841789245605,0.92740273475647,0.36494717001915,0.0341790802776814,0.993923187255859,0.104635916650295,0.0341790802776814,0.993923187255859,0.104635916650295,-0.0820841789245605,0.92740273475647,0.36494717001915,0.0155838532373309,0.997882306575775,0.0631503760814667,0.0686337500810623,0.991835355758667,-0.107480049133301,0.0843610689043999,0.973255813121796,-0.213672950863838,0.0292730014771223,0.998545050621033,-0.0452893413603306,
- 0.0204524602741003,0.993533909320831,-0.111677832901478,-0.0874414220452309,0.844989776611328,0.527585327625275,-0.205272927880287,0.905794501304626,0.370673954486847,0.764180123806,0.535297334194183,0.359841167926788,0.882449865341187,0.459793508052826,-0.0993592366576195,0.122566178441048,0.992177665233612,-0.0236834436655045,0.125423222780228,0.988584399223328,0.0834846720099449,-0.0180045533925295,0.997559189796448,0.0674651190638542,0.0176361091434956,0.998841285705566,0.0447776913642883,-0.00459904689341784,0.986739933490753,-0.16224417090416,-0.0039426819421351,0.996845126152039,-0.0792727395892143,0.0426294505596161,0.977165341377258,-0.208160430192947,-0.0180045533925295,0.997559189796448,0.0674651190638542,0.418507814407349,0.887025237083435,-0.195031747221947,0.0176361091434956,0.998841285705566,0.0447776913642883,-0.932649433612823,-0.0462988913059235,-0.357800543308258,-0.938158094882965,-0.0448411926627159,-0.343290954828262,-0.93034553527832,0.0243115667253733,-0.365877449512482,-0.931237041950226,0.0341783910989761,-0.362807750701904,0.0396373979747295,0.895964741706848,0.442352741956711,0.0731020271778107,0.924760401248932,0.373462736606598,0.409673511981964,0.865782678127289,0.287381410598755,0.45298632979393,0.890613853931427,0.0401279106736183,0.838221430778503,0.456659406423569,0.298072278499603,0.56065559387207,0.827651858329773,0.0256452094763517,0.484219461679459,0.868589401245117,0.105280697345734,0.966374456882477,0.115868285298347,0.229553908109665,0.0408728569746017,0.999164342880249,-0.000218682034756057,0.0394517406821251,0.997171998023987,-0.0639654695987701,0.0252983085811138,0.99762499332428,-0.0640635564923286,-0.0147906001657248,0.999890565872192,0.000334630080033094,-0.0136506222188473,0.998999118804932,-0.0425963550806046,0.880750417709351,0.417016893625259,0.224445268511772,0.926812291145325,0.263127714395523,0.26792311668396,0.982904016971588,0.0797507837414742,0.165949925780296,0.904527068138123,0.383683919906616,0.186057716608047,-0.28241303563118,0.953032195568085,-0.109419122338295,
- 0.485053390264511,0.855912327766418,0.179268896579742,0.453455448150635,0.824103593826294,0.339457273483276,-0.109961412847042,0.986160635948181,-0.124079406261444,0.838221430778503,0.456659406423569,0.298072278499603,0.960344731807709,-0.26565146446228,0.0846607312560081,0.822671890258789,-0.282685399055481,-0.493254482746124,0.733643352985382,0.625431776046753,0.265711426734924,-0.0855193734169006,0.916677057743073,0.390371143817902,0.485053390264511,0.855912327766418,0.179268896579742,-0.28241303563118,0.953032195568085,-0.109419122338295,0.0791693851351738,0.99254447221756,-0.0926699563860893,0.923574209213257,0.378032505512238,0.0640480369329453,0.897213518619537,0.432196944952011,-0.0906292870640755,0.889296352863312,0.441932559013367,0.117675639688969,0.925629615783691,0.366523712873459,0.0941822528839111,0.0555806159973145,0.996609926223755,0.0606582202017307,0.0406048446893692,0.994929552078247,0.0920132845640183,0.923778176307678,0.0447389557957649,0.380305618047714,0.941604614257813,0.045345451682806,-0.333653330802917,0.453455448150635,0.824103593826294,0.339457273483276,0.0261393152177334,0.992443919181824,0.119882345199585,0.0555806159973145,0.996609926223755,0.0606582202017307,-0.109961412847042,0.986160635948181,-0.124079406261444,0.325686752796173,0.754756569862366,0.56944751739502,0.526202082633972,0.841505527496338,0.122392103075981,0.580383598804474,0.799335420131683,-0.155620485544205,0.546650171279907,0.836585223674774,0.0360370017588139,0.565348505973816,0.80515056848526,0.179202705621719,0.24699792265892,0.938544690608978,0.241092935204506,0.484219461679459,0.868589401245117,0.105280697345734,0.56065559387207,0.827651858329773,0.0256452094763517,0.956632792949677,0.235960990190506,0.17081056535244,0.904527068138123,0.383683919906616,0.186057716608047,0.982904016971588,0.0797507837414742,0.165949925780296,0.818792700767517,0.565957307815552,0.0962857306003571,0.354103207588196,0.858551919460297,0.370809465646744,0.233708128333092,0.962540328502655,0.137464791536331,0.216686695814133,0.965862035751343,0.141976192593575,
- 0.356338679790497,0.902720034122467,0.241079464554787,0.243201896548271,0.96940153837204,0.0333685390651226,0.45298632979393,0.890613853931427,0.0401279106736183,0.532339751720428,0.846295475959778,-0.0199592858552933,0.244924083352089,0.967590391635895,-0.0614891387522221,0.411552786827087,0.904440879821777,0.112299025058746,0.60283237695694,0.766318619251251,0.222146436572075,0.243201896548271,0.96940153837204,0.0333685390651226,0.244924083352089,0.967590391635895,-0.0614891387522221,-0.337649673223495,0.939299046993256,0.0609106421470642,0.368505299091339,0.90156078338623,0.22669780254364,0.18557833135128,0.74379163980484,0.642132937908173,0.250558793544769,0.753315567970276,0.608059167861938,0.411552786827087,0.904440879821777,0.112299025058746,0.244924083352089,0.967590391635895,-0.0614891387522221,0.247398048639297,0.961259424686432,-0.121550858020782,0.990083038806915,0.123756602406502,0.066481925547123,0.0317143760621548,0.347652941942215,0.937086820602417,0.0396630764007568,0.998648524284363,-0.0335828736424446,0.985564649105072,0.121331565082073,0.118071660399437,0.410076558589935,0.689464449882507,0.597056150436401,0.906357824802399,0.420937985181808,0.0364216826856136,0.969443142414093,0.244570419192314,-0.0191108901053667,0.247398048639297,0.961259424686432,-0.121550858020782,0.0172558259218931,0.98182076215744,-0.189024701714516,0.580383598804474,0.799335420131683,-0.155620485544205,0.18557833135128,0.74379163980484,0.642132937908173,0.487720340490341,0.855944395065308,0.171720653772354,0.147017851471901,0.877821147441864,0.455868273973465,0.505166172981262,0.845807731151581,0.171512380242348,0.368505299091339,0.90156078338623,0.22669780254364,0.233708128333092,0.962540328502655,0.137464791536331,0.354103207588196,0.858551919460297,0.370809465646744,0.0220789890736341,-0.899442791938782,0.436480432748795,0.996657133102417,-0.0417714454233646,0.0702130049467087,0.986319899559021,0.103987112641335,0.12790484726429,0.0791693851351738,0.99254447221756,-0.0926699563860893,-0.510727643966675,0.0514793694019318,-0.858199894428253,
- -0.901056587696075,0.024298096075654,-0.433020323514938,0.0597403384745121,0.99370664358139,-0.0947536081075668,0.487720340490341,0.855944395065308,0.171720653772354,0.368505299091339,0.90156078338623,0.22669780254364,0.505166172981262,0.845807731151581,0.171512380242348,0.0629529505968094,0.997921884059906,-0.0137399490922689,0.258613437414169,0.946950912475586,0.190795749425888,0.487720340490341,0.855944395065308,0.171720653772354,0.0629529505968094,0.997921884059906,-0.0137399490922689,0.360074192285538,0.926039218902588,-0.113128080964088,0.453455448150635,0.824103593826294,0.339457273483276,0.485053390264511,0.855912327766418,0.179268896579742,0.957163870334625,0.289482057094574,0.0061178021132946,0.758185267448425,0.642567813396454,0.110732927918434,0.733643352985382,0.625431776046753,0.265711426734924,0.822671890258789,-0.282685399055481,-0.493254482746124,0.368505299091339,0.90156078338623,0.22669780254364,-0.337649673223495,0.939299046993256,0.0609106421470642,-0.0950428619980812,0.979702770709991,0.176492378115654,0.233708128333092,0.962540328502655,0.137464791536331,0.669699966907501,0.564583778381348,0.482438892126083,0.802338004112244,0.549548387527466,0.232916921377182,0.973390460014343,0.0968930646777153,0.207660272717476,0.985566914081573,0.0470932349562645,0.162604197859764,0.505166172981262,0.845807731151581,0.171512380242348,0.928962111473084,0.366320043802261,0.053282730281353,0.957163870334625,0.289482057094574,0.0061178021132946,0.0629529505968094,0.997921884059906,-0.0137399490922689,0.834163546562195,0.551094233989716,0.0215964317321777,0.0629529505968094,0.997921884059906,-0.0137399490922689,0.957163870334625,0.289482057094574,0.0061178021132946,0.243201896548271,0.96940153837204,0.0333685390651226,-0.256211966276169,0.959627509117126,0.116063058376312,0.0396373979747295,0.895964741706848,0.442352741956711,0.45298632979393,0.890613853931427,0.0401279106736183,0.147017851471901,0.877821147441864,0.455868273973465,0.487720340490341,0.855944395065308,0.171720653772354,0.258613437414169,0.946950912475586,0.190795749425888,
- 0.965123534202576,0.260781347751617,-0.0230135545134544,-0.63924503326416,0.354265213012695,-0.682540774345398,-0.37884932756424,-0.725635707378387,-0.574391901493073,0.368505299091339,0.90156078338623,0.22669780254364,0.487720340490341,0.855944395065308,0.171720653772354,0.18557833135128,0.74379163980484,0.642132937908173,0.987289786338806,0.158912003040314,0.00238558277487755,0.906357824802399,0.420937985181808,0.0364216826856136,0.933935701847076,0.357309073209763,0.00971114169806242,0.986319899559021,0.103987112641335,0.12790484726429,0.996657133102417,-0.0417714454233646,0.0702130049467087,0.906357824802399,0.420937985181808,0.0364216826856136,0.987289786338806,0.158912003040314,0.00238558277487755,0.957163870334625,0.289482057094574,0.0061178021132946,0.485053390264511,0.855912327766418,0.179268896579742,-0.0855193734169006,0.916677057743073,0.390371143817902,0.718206465244293,0.516958951950073,-0.46576064825058,0.24699792265892,0.938544690608978,0.241092935204506,0.111334003508091,0.993197441101074,0.0341118201613426,0.758185267448425,0.642567813396454,0.110732927918434,0.822671890258789,-0.282685399055481,-0.493254482746124,0.864863395690918,-0.217939510941505,-0.45223194360733,0.957163870334625,0.289482057094574,0.0061178021132946,0.928962111473084,0.366320043802261,0.053282730281353,0.453455448150635,0.824103593826294,0.339457273483276,0.966374456882477,0.115868285298347,0.229553908109665,0.871466636657715,0.252367556095123,0.420543044805527,0.960344731807709,-0.26565146446228,0.0846607312560081,0.838221430778503,0.456659406423569,0.298072278499603,0.233708128333092,0.962540328502655,0.137464791536331,-0.0950428619980812,0.979702770709991,0.176492378115654,-0.167045220732689,0.97357714176178,0.15570256114006,0.216686695814133,0.965862035751343,0.141976192593575,0.923574209213257,0.378032505512238,0.0640480369329453,0.956632792949677,0.235960990190506,0.17081056535244,0.818792700767517,0.565957307815552,0.0962857306003571,0.897213518619537,0.432196944952011,-0.0906292870640755,0.960344731807709,-0.26565146446228,0.0846607312560081,
- 0.871466636657715,0.252367556095123,0.420543044805527,0.818792700767517,0.565957307815552,0.0962857306003571,0.982904016971588,0.0797507837414742,0.165949925780296,-0.337649673223495,0.939299046993256,0.0609106421470642,0.247398048639297,0.961259424686432,-0.121550858020782,0.244924083352089,0.967590391635895,-0.0614891387522221,0.410076558589935,0.689464449882507,0.597056150436401,0.956632792949677,0.235960990190506,0.17081056535244,0.933935701847076,0.357309073209763,0.00971114169806242,-0.109961412847042,0.986160635948181,-0.124079406261444,0.941604614257813,0.045345451682806,-0.333653330802917,0.277752310037613,0.18418100476265,-0.942831456661224,0.243201896548271,0.96940153837204,0.0333685390651226,0.60283237695694,0.766318619251251,0.222146436572075,0.24699792265892,0.938544690608978,0.241092935204506,-0.256211966276169,0.959627509117126,0.116063058376312,-0.510727643966675,0.0514793694019318,-0.858199894428253,0.0791693851351738,0.99254447221756,-0.0926699563860893,-0.28241303563118,0.953032195568085,-0.109419122338295,0.990083038806915,0.123756602406502,0.066481925547123,0.996657133102417,-0.0417714454233646,0.0702130049467087,0.0220789890736341,-0.899442791938782,0.436480432748795,0.0317143760621548,0.347652941942215,0.937086820602417,0.669699966907501,0.564583778381348,0.482438892126083,0.966374456882477,0.115868285298347,0.229553908109665,0.484219461679459,0.868589401245117,0.105280697345734,0.718206465244293,0.516958951950073,-0.46576064825058,0.871466636657715,0.252367556095123,0.420543044805527,0.966374456882477,0.115868285298347,0.229553908109665,0.669699966907501,0.564583778381348,0.482438892126083,0.987289786338806,0.158912003040314,0.00238558277487755,0.933935701847076,0.357309073209763,0.00971114169806242,0.970444917678833,0.225755393505096,0.0852717161178589,0.987244546413422,0.156590655446053,0.0287656374275684,0.818792700767517,0.565957307815552,0.0962857306003571,0.871466636657715,0.252367556095123,0.420543044805527,0.897213518619537,0.432196944952011,-0.0906292870640755,0.969443142414093,0.244570419192314,-0.0191108901053667,
- 0.990083038806915,0.123756602406502,0.066481925547123,0.985564649105072,0.121331565082073,0.118071660399437,0.992685556411743,0.113418474793434,-0.0413711108267307,0.987289786338806,0.158912003040314,0.00238558277487755,0.987244546413422,0.156590655446053,0.0287656374275684,0.992151379585266,0.0956403166055679,0.0805519074201584,0.986319899559021,0.103987112641335,0.12790484726429,0.24699792265892,0.938544690608978,0.241092935204506,0.60283237695694,0.766318619251251,0.222146436572075,0.325686752796173,0.754756569862366,0.56944751739502,0.111334003508091,0.993197441101074,0.0341118201613426,0.526202082633972,0.841505527496338,0.122392103075981,0.325686752796173,0.754756569862366,0.56944751739502,0.60283237695694,0.766318619251251,0.222146436572075,0.411552786827087,0.904440879821777,0.112299025058746,0.18557833135128,0.74379163980484,0.642132937908173,0.147017851471901,0.877821147441864,0.455868273973465,0.0172558259218931,0.98182076215744,-0.189024701714516,0.250558793544769,0.753315567970276,0.608059167861938,0.834163546562195,0.551094233989716,0.0215964317321777,0.751832485198975,0.513960182666779,0.413028687238693,0.30098295211792,0.953172624111176,0.0295162536203861,0.360074192285538,0.926039218902588,-0.113128080964088,-0.0855193734169006,0.916677057743073,0.390371143817902,0.0791693851351738,0.99254447221756,-0.0926699563860893,0.0597403384745121,0.99370664358139,-0.0947536081075668,0.0838717669248581,0.977846384048462,0.191786140203476,-0.931237041950226,0.0341783910989761,-0.362807750701904,-0.936522543430328,-0.0515459775924683,-0.346797496080399,-0.932649433612823,-0.0462988913059235,-0.357800543308258,-0.510727643966675,0.0514793694019318,-0.858199894428253,-0.28241303563118,0.953032195568085,-0.109419122338295,-0.109961412847042,0.986160635948181,-0.124079406261444,0.277752310037613,0.18418100476265,-0.942831456661224,0.0555806159973145,0.996609926223755,0.0606582202017307,0.0261393152177334,0.992443919181824,0.119882345199585,0.057478878647089,0.993292629718781,-0.100329384207726,0.0406048446893692,0.994929552078247,0.0920132845640183,
- 0.869756042957306,0.446292906999588,-0.210587233304977,0.354103207588196,0.858551919460297,0.370809465646744,0.356338679790497,0.902720034122467,0.241079464554787,0.247398048639297,0.961259424686432,-0.121550858020782,0.580383598804474,0.799335420131683,-0.155620485544205,0.526202082633972,0.841505527496338,0.122392103075981,0.411552786827087,0.904440879821777,0.112299025058746,-0.337649673223495,0.939299046993256,0.0609106421470642,0.244924083352089,0.967590391635895,-0.0614891387522221,0.532339751720428,0.846295475959778,-0.0199592858552933,-0.0950428619980812,0.979702770709991,0.176492378115654,-0.256211966276169,0.959627509117126,0.116063058376312,0.24699792265892,0.938544690608978,0.241092935204506,0.56065559387207,0.827651858329773,0.0256452094763517,0.0396373979747295,0.895964741706848,0.442352741956711,-0.256211966276169,0.959627509117126,0.116063058376312,0.56065559387207,0.827651858329773,0.0256452094763517,0.769169509410858,0.638035297393799,0.035903874784708,-0.00410689460113645,-0.978592395782471,-0.205767452716827,0.0533830560743809,-0.854803264141083,-0.516199350357056,0.325686752796173,0.754756569862366,0.56944751739502,0.492711305618286,0.791634798049927,0.361317157745361,0.718206465244293,0.516958951950073,-0.46576064825058,0.484219461679459,0.868589401245117,0.105280697345734,0.24699792265892,0.938544690608978,0.241092935204506,0.56065559387207,0.827651858329773,0.0256452094763517,0.838221430778503,0.456659406423569,0.298072278499603,0.733643352985382,0.625431776046753,0.265711426734924,0.769169509410858,0.638035297393799,0.035903874784708,0.822671890258789,-0.282685399055481,-0.493254482746124,0.960344731807709,-0.26565146446228,0.0846607312560081,0.982904016971588,0.0797507837414742,0.165949925780296,0.926812291145325,0.263127714395523,0.26792311668396,-0.337649673223495,0.939299046993256,0.0609106421470642,0.250558793544769,0.753315567970276,0.608059167861938,0.247398048639297,0.961259424686432,-0.121550858020782,0.0172558259218931,0.98182076215744,-0.189024701714516,0.247398048639297,0.961259424686432,-0.121550858020782,
- 0.250558793544769,0.753315567970276,0.608059167861938,0.871466636657715,0.252367556095123,0.420543044805527,0.669699966907501,0.564583778381348,0.482438892126083,0.985566914081573,0.0470932349562645,0.162604197859764,0.897213518619537,0.432196944952011,-0.0906292870640755,0.871466636657715,0.252367556095123,0.420543044805527,0.985566914081573,0.0470932349562645,0.162604197859764,0.957163870334625,0.289482057094574,0.0061178021132946,-0.0855193734169006,0.916677057743073,0.390371143817902,0.834163546562195,0.551094233989716,0.0215964317321777,0.751832485198975,0.513960182666779,0.413028687238693,0.834163546562195,0.551094233989716,0.0215964317321777,-0.0855193734169006,0.916677057743073,0.390371143817902,0.0838717669248581,0.977846384048462,0.191786140203476,0.354103207588196,0.858551919460297,0.370809465646744,0.869756042957306,0.446292906999588,-0.210587233304977,0.894472241401672,0.427855998277664,-0.12984099984169,0.928962111473084,0.366320043802261,0.053282730281353,0.505166172981262,0.845807731151581,0.171512380242348,0.354103207588196,0.858551919460297,0.370809465646744,0.894472241401672,0.427855998277664,-0.12984099984169,-0.663778901100159,-0.253475457429886,0.703667342662811,0.0263140480965376,0.994826316833496,0.0981234982609749,-0.904330253601074,-0.392425358295441,-0.167896941304207,0.453455448150635,0.824103593826294,0.339457273483276,0.928962111473084,0.366320043802261,0.053282730281353,0.894472241401672,0.427855998277664,-0.12984099984169,0.0261393152177334,0.992443919181824,0.119882345199585,0.0261393152177334,0.992443919181824,0.119882345199585,0.869756042957306,0.446292906999588,-0.210587233304977,0.057478878647089,0.993292629718781,-0.100329384207726,-0.594922304153442,-0.563120365142822,-0.573552906513214,0.465859681367874,0.676654815673828,-0.570186853408813,-0.844930171966553,0.470733761787415,-0.253973931074142,0.759498000144959,0.634826004505157,0.141981974244118,0.992685556411743,0.113418474793434,-0.0413711108267307,0.810101389884949,0.585476219654083,-0.030876761302352,0.880750417709351,0.417016893625259,0.224445268511772,
- 0.759498000144959,0.634826004505157,0.141981974244118,0.810101389884949,0.585476219654083,-0.030876761302352,0.885597467422485,0.438104212284088,0.154214084148407,0.904527068138123,0.383683919906616,0.186057716608047,0.647777259349823,0.526888728141785,0.550248026847839,0.759498000144959,0.634826004505157,0.141981974244118,0.880750417709351,0.417016893625259,0.224445268511772,0.647777259349823,0.526888728141785,0.550248026847839,0.969443142414093,0.244570419192314,-0.0191108901053667,0.992685556411743,0.113418474793434,-0.0413711108267307,0.759498000144959,0.634826004505157,0.141981974244118,0.906357824802399,0.420937985181808,0.0364216826856136,0.996657133102417,-0.0417714454233646,0.0702130049467087,0.990083038806915,0.123756602406502,0.066481925547123,0.969443142414093,0.244570419192314,-0.0191108901053667,0.647777259349823,0.526888728141785,0.550248026847839,0.904527068138123,0.383683919906616,0.186057716608047,0.956632792949677,0.235960990190506,0.17081056535244,0.410076558589935,0.689464449882507,0.597056150436401,0.906357824802399,0.420937985181808,0.0364216826856136,0.410076558589935,0.689464449882507,0.597056150436401,0.933935701847076,0.357309073209763,0.00971114169806242,0.956632792949677,0.235960990190506,0.17081056535244,0.923574209213257,0.378032505512238,0.0640480369329453,0.933935701847076,0.357309073209763,0.00971114169806242,-0.109961412847042,0.986160635948181,-0.124079406261444,0.0555806159973145,0.996609926223755,0.0606582202017307,0.941604614257813,0.045345451682806,-0.333653330802917,0.802338004112244,0.549548387527466,0.232916921377182,0.669699966907501,0.564583778381348,0.482438892126083,0.718206465244293,0.516958951950073,-0.46576064825058,0.746565461158752,0.66479879617691,-0.0261250082403421,0.746565461158752,0.66479879617691,-0.0261250082403421,0.718206465244293,0.516958951950073,-0.46576064825058,0.111334003508091,0.993197441101074,0.0341118201613426,0.0586848817765713,0.997820317745209,0.0301773343235254,0.0134995905682445,-0.999832808971405,0.0123424837365747,0.0220789890736341,-0.899442791938782,0.436480432748795,
- 0.986319899559021,0.103987112641335,0.12790484726429,0.992151379585266,0.0956403166055679,0.0805519074201584,0.889296352863312,0.441932559013367,0.117675639688969,0.897213518619537,0.432196944952011,-0.0906292870640755,0.985566914081573,0.0470932349562645,0.162604197859764,0.973390460014343,0.0968930646777153,0.207660272717476,0.990324378013611,0.134167730808258,-0.0354476161301136,0.985564649105072,0.121331565082073,0.118071660399437,0.0396630764007568,0.998648524284363,-0.0335828736424446,0.032890260219574,0.868410050868988,-0.494754940271378,0.926812291145325,0.263127714395523,0.26792311668396,0.880750417709351,0.417016893625259,0.224445268511772,0.885597467422485,0.438104212284088,0.154214084148407,0.945697128772736,0.277138352394104,0.169856399297714,0.970444917678833,0.225755393505096,0.0852717161178589,0.933935701847076,0.357309073209763,0.00971114169806242,0.923574209213257,0.378032505512238,0.0640480369329453,0.925629615783691,0.366523712873459,0.0941822528839111,0.546650171279907,0.836585223674774,0.0360370017588139,0.580383598804474,0.799335420131683,-0.155620485544205,0.0172558259218931,0.98182076215744,-0.189024701714516,0.00465040188282728,0.999421060085297,-0.0337055549025536,-0.167045220732689,0.97357714176178,0.15570256114006,-0.0950428619980812,0.979702770709991,0.176492378115654,0.532339751720428,0.846295475959778,-0.0199592858552933,0.568146705627441,0.817072689533234,0.0979874804615974,0.810101389884949,0.585476219654083,-0.030876761302352,0.992685556411743,0.113418474793434,-0.0413711108267307,0.992299854755402,0.087118424475193,0.088041864335537,0.992299854755402,0.087118424475193,0.088041864335537,0.992685556411743,0.113418474793434,-0.0413711108267307,0.985564649105072,0.121331565082073,0.118071660399437,0.990324378013611,0.134167730808258,-0.0354476161301136,0.00465040188282728,0.999421060085297,-0.0337055549025536,0.0172558259218931,0.98182076215744,-0.189024701714516,0.147017851471901,0.877821147441864,0.455868273973465,0.288320928812027,0.937867105007172,0.193070903420448,0.288320928812027,0.937867105007172,0.193070903420448,
- 0.147017851471901,0.877821147441864,0.455868273973465,0.258613437414169,0.946950912475586,0.190795749425888,0.360074192285538,0.926039218902588,-0.113128080964088,0.30098295211792,0.953172624111176,0.0295162536203861,0.568146705627441,0.817072689533234,0.0979874804615974,0.532339751720428,0.846295475959778,-0.0199592858552933,0.45298632979393,0.890613853931427,0.0401279106736183,0.409673511981964,0.865782678127289,0.287381410598755,0.864863395690918,-0.217939510941505,-0.45223194360733,0.822671890258789,-0.282685399055481,-0.493254482746124,0.926812291145325,0.263127714395523,0.26792311668396,0.945697128772736,0.277138352394104,0.169856399297714,0.800874650478363,0.59421181678772,0.0742435231804848,0.769169509410858,0.638035297393799,0.035903874784708,0.733643352985382,0.625431776046753,0.265711426734924,0.758185267448425,0.642567813396454,0.110732927918434,0.800874650478363,0.59421181678772,0.0742435231804848,0.0731020271778107,0.924760401248932,0.373462736606598,-0.0753067657351494,-0.987671494483948,0.137237414717674,0.769169509410858,0.638035297393799,0.035903874784708,0.943022847175598,-0.00888740830123425,-0.332609474658966,0.943165600299835,-0.00888722855597734,-0.332204312086105,0.945558905601501,-0.00888394936919212,-0.325329750776291,0.94278621673584,-0.00888770073652267,-0.333279371261597,0.941088259220123,-0.00888964720070362,-0.338044106960297,0.940141201019287,-0.00889062602072954,-0.340669333934784,0.943386375904083,-0.00888694729655981,-0.331576615571976,0.942331731319427,-0.00888824556022882,-0.334562122821808,0.941083014011383,-0.00888965465128422,-0.338059067726135,0.941820621490479,-0.00888883974403143,-0.335998684167862,0.944643974304199,-0.00270099192857742,0.328086107969284,0.940881133079529,-0.00270264758728445,0.338726043701172,0.93771904706955,-0.00270374561659992,0.347384035587311,0.937434196472168,-0.00270383129827678,0.348152160644531,0.942093193531036,-0.00270215747877955,0.335340291261673,0.93742573261261,-0.00270383129827678,0.348174810409546,0.93771356344223,-0.00270374515093863,0.347398817539215,
- 0.940669894218445,-0.00270272884517908,0.339312314987183,0.944344818592072,-0.00270113884471357,0.328946262598038,0.941724121570587,-0.00270231068134308,0.336375296115875
- }
- TangentsW: *5848 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *3708 {
- a: 4.81237649917603,0,5.03111696243286,0,5.03111696243286,0.25287526845932,4.81237649917603,0.25287526845932,5.24986171722412,0,5.24986219406128,0.25287526845932,5.4686074256897,0,5.4686074256897,0.25287526845932,5.68736171722412,0,5.68736171722412,0.25287526845932,5.90611553192139,0,5.90611553192139,0.25287526845932,6.12487077713013,0,6.12487077713013,0.25287526845932,6.34362506866455,0,6.34362506866455,0.25287526845932,6.56236934661865,0,6.56236934661865,0.25287526845932,6.78111267089844,0,6.78111267089844,0.25287526845932,6.99985551834106,0,6.99984931945801,0.252875566482544,0,0,0.218744769692421,0,0.218744769692421,0.252875208854675,1.39064965765101e-007,0.252874970436096,0.437487870454788,0,0.437487989664078,0.252875208854675,0.65623015165329,0,0.65623015165329,0.252875208854675,0.874972522258759,0,0.874972581863403,0.252875208854675,1.09371721744537,0,1.09371721744537,0.252875208854675,1.31245994567871,0,1.31245994567871,0.252875208854675,1.53120315074921,0,1.53120315074921,0.252875208854675,1.74994730949402,0,1.74994719028473,0.252875208854675,1.9686906337738,0,1.96869087219238,0.252875208854675,2.18743562698364,0,2.18743538856506,0.252875298261642,2.40618658065796,0,2.40618658065796,0.252875328063965,3.28118872642517,0,3.28118872642517,0.25287526845932,3.4999463558197,0,3.4999463558197,0.25287526845932,3.71869206428528,0,3.71869206428528,0.25287526845932,3.93743300437927,0,3.93743324279785,0.25287526845932,4.1561713218689,0,4.1561713218689,0.25287526845932,4.37490129470825,0,4.37490177154541,0.25287526845932,4.59364032745361,0,4.59364032745361,0.25287526845932,4.81237697601318,1.26437556743622,5.0311164855957,1.26437556743622,5.0311164855957,1.5172506570816,4.81237697601318,1.5172506570816,5.2498631477356,1.26437556743622,5.2498631477356,1.5172506570816,5.46860694885254,1.26437556743622,5.46860647201538,1.5172506570816,5.68736219406128,1.26437556743622,5.68736219406128,1.5172506570816,5.90611696243286,1.26437556743622,5.90611696243286,1.5172506570816,6.12487125396729,1.26437556743622,6.12487125396729,
- 1.5172506570816,6.34362506866455,1.26437556743622,6.34362506866455,1.5172506570816,6.56236934661865,1.26437556743622,6.56236934661865,1.5172506570816,6.78111267089844,1.26437556743622,6.78111267089844,1.5172506570816,6.99984502792358,1.26437509059906,6.99985551834106,1.5172506570816,3.32234264988074e-007,1.26437473297119,0.218744844198227,1.26437509059906,0.218744859099388,1.51725006103516,4.1724371158125e-007,1.51725006103516,0.437488287687302,1.26437509059906,0.437488406896591,1.51725006103516,0.65623015165329,1.26437509059906,0.65623015165329,1.51725006103516,0.874972701072693,1.26437509059906,0.874972820281982,1.51725006103516,1.09371733665466,1.26437509059906,1.09371745586395,1.51725006103516,1.31245982646942,1.26437509059906,1.31245982646942,1.51725006103516,1.53120338916779,1.26437509059906,1.53120338916779,1.51725006103516,1.74994671344757,1.26437509059906,1.74994659423828,1.51725006103516,1.96869111061096,1.26437509059906,1.96869111061096,1.51725006103516,2.18743467330933,1.26437556743622,2.18743467330933,1.5172506570816,2.4061872959137,1.26437568664551,2.4061872959137,1.51725077629089,2.62493300437927,1.26437556743622,2.62493276596069,1.5172506570816,2.84368419647217,1.26064670085907,2.84368014335632,1.5172506570816,3.06243753433228,1.26437556743622,3.06243777275085,1.5172506570816,3.28118944168091,1.26437556743622,3.28118968009949,1.5172506570816,3.4999463558197,1.26437556743622,3.4999463558197,1.5172506570816,3.71869206428528,1.26437556743622,3.71869206428528,1.5172506570816,3.93743491172791,1.26437556743622,3.93743491172791,1.5172506570816,4.15617275238037,1.26437556743622,4.15617275238037,1.5172506570816,4.37490320205688,1.26437556743622,4.37490320205688,1.5172506570816,4.59364032745361,1.26437556743622,4.59364032745361,1.5172506570816,4.81237697601318,1.01150047779083,5.0311164855957,1.01150047779083,5.2498631477356,1.01150047779083,5.46860694885254,1.01150047779083,5.68736219406128,1.01150047779083,5.90611696243286,1.01150047779083,6.12487125396729,1.01150047779083,6.34362506866455,1.01150047779083,
- 6.56236934661865,1.01150047779083,6.78111267089844,1.01150047779083,6.99986028671265,1.01150059700012,4.13082290151578e-007,1.01150047779083,0.218744844198227,1.01150012016296,0.437488228082657,1.01150012016296,0.65623015165329,1.01150012016296,0.874972581863403,1.01150012016296,1.09371733665466,1.01150012016296,1.31245982646942,1.01150012016296,1.53120338916779,1.01150012016296,1.74994683265686,1.01150012016296,1.96869111061096,1.01150012016296,2.18743491172791,1.01150047779083,2.40618681907654,1.01150059700012,2.62493300437927,1.01150047779083,2.84368467330933,1.11076807975769,3.06243753433228,1.01150047779083,3.28118944168091,1.01150047779083,3.4999463558197,1.01150047779083,3.71869206428528,1.01150047779083,3.93743443489075,1.01150047779083,4.15617179870605,1.01150047779083,4.37490272521973,1.01150047779083,4.59364032745361,1.01150047779083,4.81237697601318,0.758625388145447,5.0311164855957,0.758625388145447,5.24986267089844,0.758625388145447,5.46860694885254,0.758625388145447,5.68736219406128,0.758625388145447,5.9061164855957,0.758625388145447,6.12487125396729,0.758625388145447,6.34362506866455,0.758625388145447,6.56236934661865,0.758625388145447,6.78111267089844,0.758625388145447,6.99987125396729,0.758625984191895,2.75767831681151e-007,0.758626282215118,0.218744829297066,0.758625149726868,0.43748813867569,0.758625149726868,0.65623015165329,0.758625149726868,0.874972581863403,0.758625149726868,1.09371733665466,0.758625149726868,1.31245994567871,0.758625149726868,1.5312032699585,0.758625149726868,1.74994695186615,0.758625149726868,1.96869111061096,0.758625149726868,2.18743491172791,0.758625388145447,2.40618681907654,0.758625507354736,3.28118944168091,0.758625388145447,3.4999463558197,0.758625388145447,3.71869206428528,0.758625388145447,3.93743395805359,0.758625388145447,4.15617179870605,0.758625388145447,4.37490224838257,0.758625388145447,4.59364032745361,0.758625388145447,4.81237649917603,0.505750298500061,5.03111696243286,0.505750298500061,5.24986267089844,0.505750298500061,5.4686074256897,0.505750298500061,
- 5.68736219406128,0.505750298500061,5.9061164855957,0.505750298500061,6.12487125396729,0.505750298500061,6.34362506866455,0.505750298500061,6.56236934661865,0.505750298500061,6.78111267089844,0.505750298500061,6.9998574256897,0.505750417709351,2.13233107615451e-007,0.505750894546509,0.218744814395905,0.505750179290771,0.437488049268723,0.505750179290771,0.65623015165329,0.505750179290771,0.874972581863403,0.505750179290771,1.09371733665466,0.505750179290771,1.31245994567871,0.505750179290771,1.5312032699585,0.505750179290771,1.74994719028473,0.505750179290771,1.96869111061096,0.505750179290771,2.18743515014648,0.505750358104706,2.40618658065796,0.505750417709351,3.28118920326233,0.505750298500061,3.4999463558197,0.505750298500061,3.71869206428528,0.505750298500061,3.93743371963501,0.505750298500061,4.1561713218689,0.505750298500061,4.37490177154541,0.505750298500061,4.59364032745361,0.505750298500061,1.87497711181641,0,1.87497711181641,0.25287526845932,1.68748712539673,0.25287526845932,1.68748712539673,0,1.49999332427979,0.25287526845932,1.49999380111694,0,1.31249904632568,0.25287526845932,1.31249904632568,0,1.12499713897705,0.25287526845932,1.12499713897705,0,0.937496185302734,0.25287526845932,0.937496185302734,0,0.749993324279785,0.25287526845932,0.749993324279785,0,0.562491416931152,0.25287526845932,0.562491416931152,0,0.374998092651367,0.25287526845932,0.374998092651367,0,0.187505722045898,0.25287526845932,0.187505722045898,0,1.9073486328125e-005,0.252875566482544,1.38282775878906e-005,0,5.999831199646,0,5.999831199646,0.252874970436096,5.81233739852905,0.252875208854675,5.81233739852905,0,5.62484502792358,0.252875208854675,5.62484550476074,0,5.43735361099243,0.252875208854675,5.43735361099243,0,5.24986171722412,0.252875208854675,5.24986219406128,0,5.06236839294434,0.252875208854675,5.06236839294434,0,4.87487649917603,0.252875208854675,4.87487649917603,0,4.68738412857056,0.252875208854675,4.68738412857056,0,4.49989128112793,0.252875208854675,4.49989128112793,0,4.3123984336853,0.252875208854675,4.3123984336853,0,
- 4.12490463256836,0.252875298261642,4.12490463256836,0,3.93740558624268,0.252875328063965,3.93740558624268,0,3.18741130828857,0.25287526845932,3.18741130828857,0,2.99990630149841,0.25287526845932,2.99990630149841,0,2.81241202354431,0.25287526845932,2.81241202354431,0,2.6249213218689,0.25287526845932,2.62492156028748,0,2.43743324279785,0.25287526845932,2.43743324279785,0,2.24995183944702,0.25287526845932,2.24995231628418,0,2.0624635219574,0.25287526845932,2.0624635219574,0,1.87497663497925,1.26437556743622,1.87497663497925,1.5172506570816,1.68748760223389,1.5172506570816,1.68748760223389,1.26437556743622,1.49999237060547,1.5172506570816,1.49999237060547,1.26437556743622,1.3125,1.5172506570816,1.31249952316284,1.26437556743622,1.12499666213989,1.5172506570816,1.12499666213989,1.26437556743622,0.93749475479126,1.5172506570816,0.93749475479126,1.26437556743622,0.749992847442627,1.5172506570816,0.749992847442627,1.26437556743622,0.562491416931152,1.5172506570816,0.562491416931152,1.26437556743622,0.374998092651367,1.5172506570816,0.374998092651367,1.26437556743622,0.187505722045898,1.5172506570816,0.187505722045898,1.26437556743622,1.38282775878906e-005,1.5172506570816,2.288818359375e-005,1.26437509059906,5.999831199646,1.26437473297119,5.99983072280884,1.51725006103516,5.81233739852905,1.51725006103516,5.81233739852905,1.26437509059906,5.62484455108643,1.51725006103516,5.62484502792358,1.26437509059906,5.43735361099243,1.51725006103516,5.43735361099243,1.26437509059906,5.24986171722412,1.51725006103516,5.24986171722412,1.26437509059906,5.06236839294434,1.51725006103516,5.06236839294434,1.26437509059906,4.87487649917603,1.51725006103516,4.87487649917603,1.26437509059906,4.68738412857056,1.51725006103516,4.68738412857056,1.26437509059906,4.49989175796509,1.51725006103516,4.49989128112793,1.26437509059906,4.31239795684814,1.51725006103516,4.31239795684814,1.26437509059906,4.12490558624268,1.5172506570816,4.12490558624268,1.26437556743622,3.93740510940552,1.51725077629089,3.93740510940552,1.26437568664551,3.74991083145142,
- 1.5172506570816,3.74991059303284,1.26437556743622,3.56241488456726,1.5172506570816,3.56241488456726,1.26437556743622,3.37491011619568,1.5172506570816,3.37491035461426,1.26437556743622,3.18741035461426,1.5172506570816,3.18741059303284,1.26437556743622,2.99990630149841,1.5172506570816,2.99990630149841,1.26437556743622,2.81241202354431,1.5172506570816,2.81241202354431,1.26437556743622,2.62491989135742,1.5172506570816,2.62491989135742,1.26437556743622,2.43743205070496,1.5172506570816,2.43743205070496,1.26437556743622,2.24995064735413,1.5172506570816,2.24995064735413,1.26437556743622,2.0624635219574,1.5172506570816,2.0624635219574,1.26437556743622,1.87497663497925,1.01150047779083,1.68748760223389,1.01150047779083,1.49999237060547,1.01150047779083,1.31249952316284,1.01150047779083,1.12499666213989,1.01150047779083,0.93749475479126,1.01150047779083,0.749992847442627,1.01150047779083,0.562491416931152,1.01150047779083,0.374998092651367,1.01150047779083,0.187505722045898,1.01150047779083,9.5367431640625e-006,1.01150059700012,5.999831199646,1.01150047779083,5.81233739852905,1.01150012016296,5.62484502792358,1.01150012016296,5.43735361099243,1.01150012016296,5.24986171722412,1.01150012016296,5.06236839294434,1.01150012016296,4.87487649917603,1.01150012016296,4.68738412857056,1.01150012016296,4.49989128112793,1.01150012016296,4.31239795684814,1.01150012016296,4.12490510940552,1.01150047779083,3.9374053478241,1.01150059700012,3.74991059303284,1.01150047779083,3.56241226196289,1.11308324337006,3.37491035461426,1.01150047779083,3.18741059303284,1.01150047779083,2.99990630149841,1.01150047779083,2.81241202354431,1.01150047779083,2.62492036819458,1.01150047779083,2.43743300437927,1.01150047779083,2.24995112419128,1.01150047779083,2.0624635219574,1.01150047779083,1.87497663497925,0.758625388145447,1.68748760223389,0.758625388145447,1.49999284744263,0.758625388145447,1.31249952316284,0.758625388145447,1.12499666213989,0.758625388145447,0.937495231628418,0.758625388145447,0.749992847442627,0.758625388145447,0.562491416931152,0.758625388145447,
- 0.374998092651367,0.758625388145447,0.187505722045898,0.758625388145447,0,0.758625984191895,5.999831199646,0.758626282215118,5.81233739852905,0.758625149726868,5.62484502792358,0.758625149726868,5.43735361099243,0.758625149726868,5.24986171722412,0.758625149726868,5.06236839294434,0.758625149726868,4.87487649917603,0.758625149726868,4.68738412857056,0.758625149726868,4.49989128112793,0.758625149726868,4.31239795684814,0.758625149726868,4.12490510940552,0.758625388145447,3.9374053478241,0.758625507354736,3.18741059303284,0.758625388145447,2.99990630149841,0.758625388145447,2.81241202354431,0.758625388145447,2.62492084503174,0.758625388145447,2.43743300437927,0.758625388145447,2.24995160102844,0.758625388145447,2.0624635219574,0.758625388145447,1.87497711181641,0.505750298500061,1.68748712539673,0.505750298500061,1.49999284744263,0.505750298500061,1.31249904632568,0.505750298500061,1.12499666213989,0.505750298500061,0.937495231628418,0.505750298500061,0.749992847442627,0.505750298500061,0.562491416931152,0.505750298500061,0.374998092651367,0.505750298500061,0.187505722045898,0.505750298500061,1.19209289550781e-005,0.505750417709351,5.999831199646,0.505750894546509,5.81233739852905,0.505750179290771,5.62484502792358,0.505750179290771,5.43735361099243,0.505750179290771,5.24986171722412,0.505750179290771,5.06236839294434,0.505750179290771,4.87487649917603,0.505750179290771,4.68738412857056,0.505750179290771,4.49989128112793,0.505750179290771,4.31239795684814,0.505750179290771,4.12490510940552,0.505750358104706,3.93740558624268,0.505750417709351,3.18741083145142,0.505750298500061,2.99990630149841,0.505750298500061,2.81241202354431,0.505750298500061,2.62492084503174,0.505750298500061,2.43743324279785,0.505750298500061,2.24995183944702,0.505750298500061,2.0624635219574,0.505750298500061,0.937394380569458,-1.79020059108734,0.937394380569458,-1.62766551971436,2.31334066390991,-1.62766551971436,0.775774478912354,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.62766551971436,
- 2.31334066390991,-1.62766551971436,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.75361084938049,-1.79020071029663,1.75361084938049,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.32405114173889,-1.79020059108734,1.32405114173889,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.937394380569458,-1.79020059108734,0.937394380569458,-1.62766540050507,0.775774478912354,-1.79020059108734,0.775774478912354,-1.79020059108734,0.937394380569458,-1.62766551971436,0.937394380569458,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020071029663,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020071029663,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.62766551971436,0.775774478912354,-1.79020059108734,0.937394380569458,-1.62766551971436,0.937394380569458,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.79020059108734,0.775774478912354,
- -1.62766551971436,0.775774478912354,-1.62766563892365,0.775774478912354,-1.62766551971436,2.31334066390991,-1.79020059108734,2.31334066390991,-1.79020059108734,0.775774478912354,-1.62766551971436,2.31334066390991,-1.79020059108734,0.937394380569458,-1.79020059108734,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766551971436,0.937394380569458,-1.62766551971436,2.13562393188477,-1.62766551971436,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,2.13562393188477,-1.79020059108734,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.75361084938049,-1.79020071029663,1.75361084938049,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.32405114173889,-1.79020059108734,1.32405114173889,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.937394380569458,-1.79020059108734,0.937394380569458,-1.62766540050507,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766563892365,0.937394380569458,-1.62766551971436,0.937394380569458,-1.79020059108734,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020071029663,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020071029663,2.31334066390991,-1.79020059108734,2.31334066390991,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,
- 1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,2.51453614234924,0.939526677131653,3.84702157974243,0.936098635196686,3.17913794517517,0.940270721912384,3.28729295730591,0.94032222032547,2.46087336540222,0.758625507354736,2.46087312698364,0.505750417709351,2.46087312698364,0.252875328063965,2.46087312698364,0,1.07442986965179,-1.62766551971436,1.07442986965179,-1.79020059108734,3.89053177833557,0,3.89053177833557,0.252875328063965,3.89053177833557,0.505750417709351,3.89053153991699,0.758625507354736,3.22650146484375,0.758625388145447,3.22650146484375,0.505750298500061,3.22650098800659,0.25287526845932,3.22650098800659,0,1.99868321418762,-1.62766551971436,1.99868321418762,-1.79020059108734,3.23428606987,0,3.23428606987,0.25287526845932,3.23428583145142,0.505750298500061,3.23428535461426,0.758625388145447,0.0220425724983215,0.0642073452472687,0.195939153432846,0.0238827615976334,0.195939153432846,0.194728150963783,0.0228706318885088,0.194164708256722,0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,0.224435433745384,0.0498131588101387,0.399090141057968,0.0498131737112999,0.398704290390015,0.218098521232605,0.264498054981232,0.217845559120178,0.225101605057716,0.177336931228638,0.84798002243042,0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,0.636191725730896,0.69713294506073,0.578025817871094,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.198766946792603,0.640472412109375,
- 0.202792167663574,0.763981461524963,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.849737167358398,0.782196521759033,0.848452091217041,0.947805941104889,0.700042247772217,0.946895003318787,0.698029756546021,0.777668356895447,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.519110321998596,0.945436000823975,0.357732266187668,0.942637026309967,0.360092282295227,0.794068098068237,0.402203857898712,0.773932695388794,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.350628018379211,0.801164865493774,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.0164199657738209,0.950805366039276,0.00980380736291409,0.950524091720581,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,
- 0.209942817687988,0.758549809455872,0.69149523973465,0.441765606403351,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.686777949333191,0.947031915187836,0.679263830184937,0.946744859218597,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.671285331249237,0.448076128959656,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.861139893531799,0.947745680809021,0.855483591556549,0.947948932647705,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.535220742225647,0.578878819942474,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.553755342960358,0.445929646492004,0.0220425724983215,0.0642073452472687,0.195939153432846,0.0238827615976334,0.195939153432846,0.194728150963783,0.0228706318885088,0.194164708256722,0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,
- 0.224435433745384,0.0498131588101387,0.399090141057968,0.0498131737112999,0.398704290390015,0.218098521232605,0.264498054981232,0.217845559120178,0.225101605057716,0.177336931228638,0.84798002243042,0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,0.636191725730896,0.69713294506073,0.578025817871094,0.198766946792603,0.640472412109375,0.202792167663574,0.763981461524963,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.849737167358398,0.782196521759033,0.848452091217041,0.947805941104889,0.700042247772217,0.946895003318787,0.698029756546021,0.777668356895447,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.519110321998596,0.945436000823975,0.357732266187668,0.942637026309967,0.360092282295227,0.794068098068237,0.402203857898712,0.773932695388794,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.523991048336029,0.766417026519775,0.401715159416199,0.767936229705811,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.350628018379211,0.801164865493774,0.343418478965759,
- 0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.0164199657738209,0.950805366039276,0.00980380736291409,0.950524091720581,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.218027830123901,0.775901198387146,0.319965600967407,0.77398407459259,0.209942817687988,0.758549809455872,0.69149523973465,0.441765606403351,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.686777949333191,0.947031915187836,0.679263830184937,0.946744859218597,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.671285331249237,0.448076128959656,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.861139893531799,0.947745680809021,0.855483591556549,0.947948932647705,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.535220742225647,0.578878819942474,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.553755342960358,0.445929646492004,0.0220425724983215,
- 0.0642073452472687,0.195939153432846,0.0238827615976334,0.195939153432846,0.194728150963783,0.0228706318885088,0.194164708256722,0.198766946792603,0.640472412109375,0.202792167663574,0.763981461524963,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.0164199657738209,0.950805366039276,0.00980380736291409,0.950524091720581,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.218027830123901,0.775901198387146,0.319965600967407,0.77398407459259,0.209942817687988,0.758549809455872,0.35064685344696,0.578766167163849,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.350628018379211,0.801164865493774,0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.208839416503906,0.580817818641663,0.351177096366882,0.942616045475006,0.343865901231766,0.942422986030579,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,0.224435433745384,0.0498131588101387,0.399090141057968,0.0498131737112999,0.398704290390015,0.218098521232605,0.264498054981232,0.217845559120178,0.225101605057716,0.177336931228638,0.84798002243042,
- 0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,0.636191725730896,0.69713294506073,0.578025817871094,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.849737167358398,0.782196521759033,0.848452091217041,0.947805941104889,0.700042247772217,0.946895003318787,0.698029756546021,0.777668356895447,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.671285331249237,0.448076128959656,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.686777949333191,0.947031915187836,0.679263830184937,0.946744859218597,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.861139893531799,0.947745680809021,0.855483591556549,0.947948932647705,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.52824878692627,0.631985068321228,0.529542446136475,0.579942762851715,0.535220742225647,0.578878819942474,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.530312895774841,0.945908427238464,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.865600049495697,0.447206825017929,0.553755342960358,0.445929646492004,0.524767875671387,0.450908571481705,0.0220425724983215,0.0642073452472687,0.195939153432846,0.0238827615976334,0.195939153432846,0.194728150963783,
- 0.0228706318885088,0.194164708256722,0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,0.224435433745384,0.0498131588101387,0.399090141057968,0.0498131737112999,0.398704290390015,0.218098521232605,0.264498054981232,0.217845559120178,0.225101605057716,0.177336931228638,0.84798002243042,0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,0.636191725730896,0.69713294506073,0.578025817871094,0.198766946792603,0.640472412109375,0.202792167663574,0.763981461524963,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.849737167358398,0.782196521759033,0.848452091217041,0.947805941104889,0.700042247772217,0.946895003318787,0.698029756546021,0.777668356895447,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.519110321998596,0.945436000823975,0.357732266187668,0.942637026309967,0.360092282295227,0.794068098068237,0.402203857898712,0.773932695388794,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.523991048336029,0.766417026519775,0.401715159416199,0.767936229705811,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,
- 0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.350628018379211,0.801164865493774,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.0164199657738209,0.950805366039276,0.00980380736291409,0.950524091720581,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.218027830123901,0.775901198387146,0.319965600967407,0.77398407459259,0.209942817687988,0.758549809455872,0.681808114051819,0.49695697426796,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.686777949333191,0.947031915187836,0.679263830184937,0.946744859218597,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.533095598220825,0.482949405908585,0.535220742225647,0.578878819942474,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.861139893531799,0.947745680809021,0.855483591556549,0.947948932647705,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,
- 0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.671285331249237,0.448076128959656,0.351177096366882,0.942616045475006,0.553755342960358,0.445929646492004,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.0220425724983215,0.0642073452472687,0.195939153432846,0.0238827615976334,0.195939153432846,0.194728150963783,0.0228706318885088,0.194164708256722,0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,0.224435433745384,0.0498131588101387,0.399090141057968,0.0498131737112999,0.398704290390015,0.218098521232605,0.264498054981232,0.217845559120178,0.225101605057716,0.177336931228638,0.84798002243042,0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,0.636191725730896,0.69713294506073,0.578025817871094,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.198766946792603,0.640472412109375,0.202792167663574,0.763981461524963,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.849737167358398,0.782196521759033,0.848452091217041,0.947805941104889,0.700042247772217,0.946895003318787,0.698029756546021,0.777668356895447,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.519110321998596,0.945436000823975,0.357732266187668,0.942637026309967,0.360092282295227,0.794068098068237,0.402203857898712,0.773932695388794,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,
- 0.769860982894897,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.350628018379211,0.801164865493774,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.0164199657738209,0.950805366039276,0.00980380736291409,0.950524091720581,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.671285331249237,0.448076128959656,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.686777949333191,0.947031915187836,0.679263830184937,0.946744859218597,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.861139893531799,0.947745680809021,0.855483591556549,0.947948932647705,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,
- 0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.535220742225647,0.578878819942474,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.553755342960358,0.445929646492004,0.0220425724983215,0.0642073452472687,0.0228706318885088,0.194164708256722,0.195939153432846,0.194728150963783,0.195939153432846,0.0238827615976334,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.224435433745384,0.0498131588101387,0.225101605057716,0.177336931228638,0.264498054981232,0.217845559120178,0.398704290390015,0.218098521232605,0.399090141057968,0.0498131737112999,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.0187580585479736,0.77262282371521,0.202792167663574,0.763981461524963,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.700042247772217,0.946895003318787,0.848452091217041,0.947805941104889,0.0180323123931885,0.572381019592285,
- 0.0208342131227255,0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.360092282295227,0.794068098068237,0.357732266187668,0.942637026309967,0.519110321998596,0.945436000823975,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.520409226417542,0.636120676994324,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.350628018379211,0.801164865493774,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.00980401039123535,0.778807401657104,0.00980380736291409,0.950524091720581,0.0164199657738209,0.950805366039276,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.69149523973465,0.441765606403351,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.679263830184937,0.946744859218597,0.686777949333191,0.947031915187836,0.689946413040161,0.778838038444519,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.857320785522461,0.633963108062744,0.859492778778076,
- 0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.671285331249237,0.448076128959656,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.855483591556549,0.947948932647705,0.861139893531799,0.947745680809021,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.212744146585464,0.945804834365845,0.218821227550507,0.94554477930069,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.535220742225647,0.578878819942474,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.553755342960358,0.445929646492004,0.0220425724983215,0.0642073452472687,0.0228706318885088,0.194164708256722,0.195939153432846,0.194728150963783,0.195939153432846,0.0238827615976334,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.224435433745384,0.0498131588101387,0.225101605057716,0.177336931228638,0.264498054981232,0.217845559120178,0.398704290390015,0.218098521232605,0.399090141057968,0.0498131737112999,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.0187580585479736,
- 0.77262282371521,0.202792167663574,0.763981461524963,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,0.0184597969055176,0.778164148330688,0.201763391494751,0.779077291488647,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.700042247772217,0.946895003318787,0.848452091217041,0.947805941104889,0.0180323123931885,0.572381019592285,0.0208342131227255,0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.360092282295227,0.794068098068237,0.357732266187668,0.942637026309967,0.519110321998596,0.945436000823975,0.53108412027359,0.758049726486206,0.696737408638,0.769860982894897,0.846967458724976,0.769696354866028,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.520409226417542,0.636120676994324,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.350628018379211,0.801164865493774,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.00980401039123535,0.778807401657104,0.00980380736291409,0.950524091720581,0.0164199657738209,0.950805366039276,0.218010663986206,0.770910978317261,0.218027830123901,0.775901198387146,0.319965600967407,
- 0.77398407459259,0.209942817687988,0.758549809455872,0.69149523973465,0.441765606403351,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.679263830184937,0.946744859218597,0.686777949333191,0.947031915187836,0.689946413040161,0.778838038444519,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.671285331249237,0.448076128959656,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.855483591556549,0.947948932647705,0.861139893531799,0.947745680809021,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.212744146585464,0.945804834365845,0.218821227550507,0.94554477930069,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.535220742225647,0.578878819942474,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.553755342960358,0.445929646492004,0.0220425724983215,0.0642073452472687,0.0228706318885088,0.194164708256722,0.195939153432846,0.194728150963783,0.195939153432846,0.0238827615976334,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.0187580585479736,0.77262282371521,0.202792167663574,0.763981461524963,0.0184597969055176,0.778164148330688,0.201763391494751,0.779077291488647,0.0180323123931885,0.572381019592285,0.0208342131227255,
- 0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.00980401039123535,0.778807401657104,0.00980380736291409,0.950524091720581,0.0164199657738209,0.950805366039276,0.218010663986206,0.770910978317261,0.218027830123901,0.775901198387146,0.319965600967407,0.77398407459259,0.209942817687988,0.758549809455872,0.35064685344696,0.578766167163849,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.350628018379211,0.801164865493774,0.212744146585464,0.945804834365845,0.218821227550507,0.94554477930069,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.208839416503906,0.580817818641663,0.351177096366882,0.942616045475006,0.343865901231766,0.942422986030579,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.224435433745384,0.0498131588101387,0.225101605057716,0.177336931228638,0.264498054981232,0.217845559120178,0.398704290390015,0.218098521232605,0.399090141057968,0.0498131737112999,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.700042247772217,0.946895003318787,0.848452091217041,0.947805941104889,0.53108412027359,
- 0.758049726486206,0.696737408638,0.769860982894897,0.846967458724976,0.769696354866028,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.671285331249237,0.448076128959656,0.681206822395325,0.774381041526794,0.679263830184937,0.946744859218597,0.686777949333191,0.947031915187836,0.689946413040161,0.778838038444519,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.855483591556549,0.947948932647705,0.861139893531799,0.947745680809021,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.52824878692627,0.631985068321228,0.529542446136475,0.579942762851715,0.535220742225647,0.578878819942474,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.530312895774841,0.945908427238464,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.865600049495697,0.447206825017929,0.553755342960358,0.445929646492004,0.524767875671387,0.450908571481705,0.0220425724983215,0.0642073452472687,0.0228706318885088,0.194164708256722,0.195939153432846,0.194728150963783,0.195939153432846,0.0238827615976334,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.224435433745384,0.0498131588101387,0.225101605057716,0.177336931228638,
- 0.264498054981232,0.217845559120178,0.398704290390015,0.218098521232605,0.399090141057968,0.0498131737112999,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.0187580585479736,0.77262282371521,0.202792167663574,0.763981461524963,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,0.0184597969055176,0.778164148330688,0.201763391494751,0.779077291488647,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.700042247772217,0.946895003318787,0.848452091217041,0.947805941104889,0.0180323123931885,0.572381019592285,0.0208342131227255,0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.360092282295227,0.794068098068237,0.357732266187668,0.942637026309967,0.519110321998596,0.945436000823975,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.520409226417542,0.636120676994324,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.350628018379211,0.801164865493774,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,
- 0.637579441070557,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.00980401039123535,0.778807401657104,0.00980380736291409,0.950524091720581,0.0164199657738209,0.950805366039276,0.218010663986206,0.770910978317261,0.218027830123901,0.775901198387146,0.319965600967407,0.77398407459259,0.209942817687988,0.758549809455872,0.681808114051819,0.49695697426796,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.679263830184937,0.946744859218597,0.686777949333191,0.947031915187836,0.689946413040161,0.778838038444519,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.535220742225647,0.578878819942474,0.533095598220825,0.482949405908585,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.855483591556549,0.947948932647705,0.861139893531799,0.947745680809021,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.212744146585464,0.945804834365845,0.218821227550507,0.94554477930069,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.671285331249237,0.448076128959656,0.351177096366882,0.942616045475006,0.553755342960358,0.445929646492004,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.0220425724983215,
- 0.0642073452472687,0.0228706318885088,0.194164708256722,0.195939153432846,0.194728150963783,0.195939153432846,0.0238827615976334,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.224435433745384,0.0498131588101387,0.225101605057716,0.177336931228638,0.264498054981232,0.217845559120178,0.398704290390015,0.218098521232605,0.399090141057968,0.0498131737112999,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.0187580585479736,0.77262282371521,0.202792167663574,0.763981461524963,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.700042247772217,0.946895003318787,0.848452091217041,0.947805941104889,0.0180323123931885,0.572381019592285,0.0208342131227255,0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.360092282295227,0.794068098068237,0.357732266187668,0.942637026309967,0.519110321998596,0.945436000823975,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.520409226417542,0.636120676994324,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,
- 0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.350628018379211,0.801164865493774,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.00980401039123535,0.778807401657104,0.00980380736291409,0.950524091720581,0.0164199657738209,0.950805366039276,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.671285331249237,0.448076128959656,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.679263830184937,0.946744859218597,0.686777949333191,0.947031915187836,0.689946413040161,0.778838038444519,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.855483591556549,0.947948932647705,0.861139893531799,0.947745680809021,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.212744146585464,0.945804834365845,0.218821227550507,0.94554477930069,0.20548489689827,0.945652484893799,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.535220742225647,0.578878819942474,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,
- 0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.553755342960358,0.445929646492004,0.55549693107605,0.935152769088745,0.555729627609253,0.871627688407898,0.55549693107605,0.808102607727051,0.580357313156128,0.783252239227295,0.651474714279175,0.784649014472961,0.661869764328003,0.802288293838501,0.662811994552612,0.871627688407898,0.661869764328003,0.940967082977295,0.651474714279175,0.958606362342834,0.580357313156128,0.960003137588501,0.331931471824646,0.937158703804016,0.30977189540863,0.955461621284485,0.232669234275818,0.957521915435791,0.22847306728363,0.949518799781799,0.23121964931488,0.871627688407898,0.22847306728363,0.793736577033997,0.232669234275818,0.785733461380005,0.30977189540863,0.787793755531311,0.331931471824646,0.80609667301178,0.333381056785584,0.871627688407898
- }
- UVIndex: *5848 {
- a: 0,1,2,3,1,4,5,2,4,6,7,5,6,8,9,7,8,10,11,9,10,12,13,11,12,14,15,13,14,16,17,15,16,18,19,17,18,20,21,19,22,23,24,25,23,26,27,24,26,28,29,27,28,30,31,29,30,32,33,31,32,34,35,33,34,36,37,35,36,38,39,37,38,40,41,39,40,42,43,41,42,44,45,43,590,591,46,47,46,48,49,47,48,50,51,49,50,52,53,51,52,54,55,53,54,56,57,55,56,58,59,57,58,0,3,59,60,61,62,63,61,64,65,62,64,66,67,65,66,68,69,67,68,70,71,69,70,72,73,71,72,74,75,73,74,76,77,75,76,78,79,77,78,80,81,79,82,83,84,85,83,86,87,84,86,88,89,87,88,90,91,89,90,92,93,91,92,94,95,93,94,96,97,95,96,98,99,97,98,100,101,99,100,102,103,101,102,104,105,103,104,106,107,105,106,108,109,107,108,110,111,109,110,112,113,111,112,114,115,113,114,116,117,115,116,118,119,117,118,120,121,119,120,122,123,121,122,124,125,123,124,60,63,125,126,127,61,60,127,128,64,61,128,129,66,64,129,130,68,66,130,131,70,68,131,132,72,70,132,133,74,72,133,134,76,74,134,135,78,76,135,136,80,78,137,138,83,82,138,139,86,83,139,140,88,86,140,141,90,88,141,142,92,90,142,143,94,92,143,144,96,94,144,145,98,96,145,146,100,98,146,147,102,100,147,148,104,102,148,149,106,104,149,150,108,106,150,151,110,108,151,152,112,110,152,153,114,112,153,154,116,114,154,155,118,116,155,156,120,118,156,157,122,120,157,158,124,122,158,126,60,124,159,160,127,126,160,161,128,127,161,162,129,128,162,163,130,129,163,164,131,130,164,165,132,131,165,166,133,132,166,167,134,133,167,168,135,134,168,169,136,135,170,171,138,137,171,172,139,138,172,173,140,139,173,174,141,140,174,175,142,141,175,176,143,142,176,177,144,143,177,178,145,144,178,179,146,145,179,180,147,146,180,181,148,147,576,588,182,152,182,183,153,152,183,184,154,153,184,185,155,154,185,186,156,155,186,187,157,156,187,188,158,157,188,159,126,158,189,190,160,159,190,191,161,160,191,192,162,161,192,193,163,162,193,194,164,163,194,195,165,164,195,196,166,165,196,197,167,166,197,198,168,167,198,199,169,168,200,201,171,170,201,202,172,171,202,203,173,172,203,204,174,173,204,205,175,174,205,206,176,175,206,207,177,176,207,208,178,177,208,209,179,178,209,210,180,179,210,
- 211,181,180,588,589,212,182,212,213,183,182,213,214,184,183,214,215,185,184,215,216,186,185,216,217,187,186,217,218,188,187,218,189,159,188,3,2,190,189,2,5,191,190,5,7,192,191,7,9,193,192,9,11,194,193,11,13,195,194,13,15,196,195,15,17,197,196,17,19,198,197,19,21,199,198,25,24,201,200,24,27,202,201,27,29,203,202,29,31,204,203,31,33,205,204,33,35,206,205,35,37,207,206,37,39,208,207,39,41,209,208,41,43,210,209,43,45,211,210,589,590,47,212,47,49,213,212,49,51,214,213,51,53,215,214,53,55,216,215,55,57,217,216,57,59,218,217,59,3,189,218,219,220,221,222,222,221,223,224,224,223,225,226,226,225,227,228,228,227,229,230,230,229,231,232,232,231,233,234,234,233,235,236,236,235,237,238,238,237,239,240,241,242,243,244,244,243,245,246,246,245,247,248,248,247,249,250,250,249,251,252,252,251,253,254,254,253,255,256,256,255,257,258,258,257,259,260,260,259,261,262,262,261,263,264,594,595,265,266,266,265,267,268,268,267,269,270,270,269,271,272,272,271,273,274,274,273,275,276,276,275,277,278,278,277,220,219,279,280,281,282,282,281,283,284,284,283,285,286,286,285,287,288,288,287,289,290,290,289,291,292,292,291,293,294,294,293,295,296,296,295,297,298,298,297,299,300,301,302,303,304,304,303,305,306,306,305,307,308,308,307,309,310,310,309,311,312,312,311,313,314,314,313,315,316,316,315,317,318,318,317,319,320,320,319,321,322,322,321,323,324,324,323,325,326,326,325,327,328,328,327,329,330,330,329,331,332,332,331,333,334,334,333,335,336,336,335,337,338,338,337,339,340,340,339,341,342,342,341,343,344,344,343,280,279,345,279,282,346,346,282,284,347,347,284,286,348,348,286,288,349,349,288,290,350,350,290,292,351,351,292,294,352,352,294,296,353,353,296,298,354,354,298,300,355,356,301,304,357,357,304,306,358,358,306,308,359,359,308,310,360,360,310,312,361,361,312,314,362,362,314,316,363,363,316,318,364,364,318,320,365,365,320,322,366,366,322,324,367,367,368,575,368,326,328,369,369,328,330,370,370,371,577,371,332,334,372,372,334,336,373,373,336,338,374,374,338,340,375,375,340,342,376,376,342,344,377,377,344,279,345,378,345,346,379,379,346,347,380,
- 380,347,348,381,381,348,349,382,382,349,350,383,383,350,351,384,384,351,352,385,385,352,353,386,386,353,354,387,387,354,355,388,389,356,357,390,390,357,358,391,391,358,359,392,392,359,360,393,393,360,361,394,394,361,362,395,395,362,363,396,396,363,364,397,397,364,365,398,398,365,366,399,399,366,367,400,401,371,372,402,402,372,373,403,403,373,374,404,404,374,375,405,405,375,376,406,406,376,377,407,407,377,345,378,408,378,379,409,409,379,380,410,410,380,381,411,411,381,382,412,412,382,383,413,413,383,384,414,414,384,385,415,415,385,386,416,416,386,387,417,417,387,388,418,419,389,390,420,420,390,391,421,421,391,392,422,422,392,393,423,423,393,394,424,424,394,395,425,425,395,396,426,426,396,397,427,427,397,398,428,428,398,399,429,429,399,400,430,596,597,401,431,431,401,402,432,432,402,403,433,433,403,404,434,434,404,405,435,435,405,406,436,436,406,407,437,437,407,378,408,220,408,409,221,221,409,410,223,223,410,411,225,225,411,412,227,227,412,413,229,229,413,414,231,231,414,415,233,233,415,416,235,235,416,417,237,237,417,418,239,242,419,420,243,243,420,421,245,245,421,422,247,247,422,423,249,249,423,424,251,251,424,425,253,253,425,426,255,255,426,427,257,257,427,428,259,259,428,429,261,261,429,430,263,595,596,431,265,265,431,432,267,267,432,433,269,269,433,434,271,271,434,435,273,273,435,436,275,275,436,437,277,277,437,408,220,438,439,508,441,442,443,506,445,446,443,442,447,448,446,447,449,450,448,449,451,452,450,451,453,454,452,453,455,456,454,455,457,458,456,457,504,460,505,459,461,462,460,461,463,464,462,463,465,466,464,465,467,468,466,467,469,470,468,469,471,472,470,471,473,509,440,472,473,474,439,438,475,476,474,475,477,478,476,477,479,480,478,479,481,482,480,481,483,484,482,483,485,486,484,485,502,488,503,487,489,490,488,489,491,492,490,491,493,494,492,493,495,496,494,495,497,498,496,497,499,500,498,499,501,444,500,501,507,510,511,512,513,514,515,516,517,518,519,514,517,520,521,519,518,522,523,521,520,524,525,523,522,526,527,525,524,528,529,527,526,530,531,529,528,532,533,534,535,536,537,533,532,538,539,537,536,540,
- 541,539,538,542,543,541,540,544,545,543,542,546,547,545,544,548,547,546,549,550,551,510,513,552,553,551,550,554,555,553,552,556,557,555,554,558,559,557,556,592,593,559,558,562,563,561,560,564,565,563,562,566,567,565,564,568,569,567,566,570,571,569,568,572,573,571,570,400,367,575,587,211,579,578,181,45,580,579,211,44,581,580,45,560,561,583,582,264,263,585,584,263,430,586,585,430,400,587,586,181,578,574,148,597,577,371,401,148,574,149,367,324,326,368,151,576,152,370,330,332,371,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,606,623,624,625,626,627,619,622,628,629,630,631,632,633,634,635,621,620,632,636,637,638,639,640,641,642,609,608,643,644,617,616,645,646,647,648,649,650,651,603,652,650,649,653,654,655,656,657,652,658,650,659,660,661,662,663,664,665,658,640,666,656,667,668,669,645,648,657,670,671,672,627,673,674,675,668,676,669,657,677,678,676,668,621,679,622,623,680,624,657,648,681,654,682,683,684,685,669,676,679,686,687,679,676,649,603,602,688,667,677,668,664,663,689,657,656,668,690,691,665,671,690,665,672,679,626,622,692,693,642,623,694,680,679,621,686,607,606,625,695,648,647,696,681,628,631,644,643,625,617,644,695,654,650,658,663,691,643,620,697,633,649,688,642,653,675,619,627,659,662,670,672,682,692,608,607,695,682,607,690,698,699,691,644,631,695,664,700,660,659,690,671,701,698,642,693,637,653,641,652,653,637,656,655,666,667,687,678,702,703,626,704,673,627,599,598,705,675,697,620,619,632,635,706,636,707,646,645,658,652,641,640,654,681,651,650,688,609,642,602,708,609,688,709,638,637,693,692,642,608,609,708,623,606,624,618,617,625,654,658,655,666,655,658,695,683,682,631,683,695,679,687,626,703,704,626,687,645,710,707,686,710,645,669,707,710,636,621,636,710,686,636,706,707,687,676,678,711,712,700,615,713,712,711,616,615,711,689,689,711,700,664,665,664,659,672,689,663,643,616,665,691,663,643,691,628,620,633,632,685,714,692,682,714,709,693,692,715,701,671,670,630,684,683,631,716,717,661,660,618,718,713,615,699,629,628,691,639,719,666,640,696,720,651,681,712,721,
- 700,721,716,660,700,719,722,667,666,722,702,678,677,667,720,604,603,651,680,718,618,624,723,694,623,708,723,708,602,605,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,732,749,750,751,746,752,753,747,754,755,756,757,758,759,760,761,762,745,748,758,763,764,765,766,767,768,735,734,742,769,770,743,771,772,773,774,729,775,776,777,775,778,779,776,780,781,782,783,779,784,776,785,786,787,788,789,790,791,784,766,792,782,793,794,795,771,774,783,796,797,798,753,799,800,801,802,795,783,794,803,802,794,804,745,805,746,749,806,750,783,774,807,780,808,809,810,811,795,802,805,812,813,805,802,775,729,728,814,793,804,794,790,789,815,783,782,794,816,817,791,798,797,816,791,805,752,746,818,819,768,749,820,806,805,745,812,733,732,751,821,774,773,822,807,769,754,757,770,751,743,770,821,780,776,784,789,817,769,748,823,759,775,814,768,778,801,747,753,785,788,796,798,733,808,818,734,821,808,733,816,824,825,817,770,757,821,786,785,790,826,797,827,824,816,768,819,763,778,778,763,767,779,782,781,792,793,813,803,828,829,752,830,799,753,725,724,831,801,823,748,747,761,832,762,758,833,772,771,784,779,767,766,780,807,777,776,814,735,768,728,834,735,814,835,764,763,819,818,768,734,749,732,735,834,750,744,743,751,780,784,781,792,781,784,821,809,808,757,809,821,805,813,752,829,830,752,813,771,836,833,812,836,771,795,833,836,762,745,762,836,812,762,832,833,813,802,803,837,838,826,741,839,838,837,742,741,837,815,815,837,826,790,785,798,791,790,815,789,769,742,791,817,789,769,817,754,748,759,758,808,811,840,818,840,835,819,818,841,827,797,796,756,810,809,757,842,843,787,786,844,839,741,744,825,755,754,817,765,845,792,766,822,846,777,807,838,847,826,847,842,786,826,845,848,793,792,848,828,803,804,793,846,730,729,777,806,844,744,750,849,820,749,834,849,834,728,731,850,851,852,853,854,855,856,857,855,858,859,856,860,861,862,863,864,854,857,860,865,866,867,868,869,870,871,872,871,873,874,875,865,868,872,859,876,877,878,879,875,872,874,880,879,874,881,854,882,855,872,868,883,869,875,879,882,884,885,882,879,
- 873,881,874,872,871,874,882,858,855,882,854,884,868,867,886,883,857,887,861,878,856,859,871,870,888,873,885,880,889,890,858,891,876,859,851,850,892,878,887,857,856,863,893,864,860,894,866,865,882,885,858,890,891,858,885,865,895,894,884,895,865,875,894,895,864,854,864,895,884,864,893,894,885,879,880,857,861,860,896,897,873,888,897,889,880,881,873,898,899,900,901,902,903,904,905,906,907,908,909,910,898,911,912,913,914,915,916,917,918,901,900,908,919,920,909,921,922,923,924,925,926,927,928,929,930,931,912,911,932,933,934,935,926,925,936,937,938,927,930,929,937,927,939,940,918,931,941,912,899,898,913,942,919,914,917,920,913,909,920,942,925,938,919,921,924,928,930,899,932,939,900,942,932,899,937,943,944,938,920,917,942,922,921,926,945,929,946,943,937,947,901,918,948,949,901,947,939,918,900,911,898,901,949,912,910,909,913,942,933,932,917,933,942,950,951,945,907,952,951,950,908,907,950,936,936,950,945,926,921,930,927,926,936,925,919,908,927,938,925,919,938,914,932,935,953,939,953,954,940,939,955,946,929,928,916,934,933,917,956,957,923,922,958,952,907,910,944,915,914,938,951,959,945,959,956,922,945,941,958,910,912,960,931,911,949,960,949,948,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,970,987,988,989,984,990,991,985,992,993,994,995,996,997,998,999,1000,983,986,996,1001,1002,1003,1004,1005,1006,973,972,1007,1008,981,980,1009,1010,1011,1012,967,1013,1014,1015,1013,1016,1017,1014,1018,1019,1020,1021,1017,1022,1014,1023,1024,1025,1026,1027,1028,1029,1022,1004,1030,1020,1031,1032,1033,1009,1012,1021,1034,1035,1036,991,1037,1038,1039,1040,1033,1021,1032,1041,1040,1032,1042,983,1043,984,1044,988,987,1021,1012,1045,1018,1046,1047,1048,1049,1033,1040,1043,1050,1051,1043,1040,1013,967,966,1052,966,969,1053,1054,1031,1042,1032,1028,1027,1055,1021,1020,1032,1056,1057,1029,1035,1056,1029,1036,1043,990,984,1058,1059,1006,1044,1060,988,1043,983,1050,971,970,989,1061,1012,1011,1062,1045,992,995,1008,1007,989,981,1008,1061,1018,1014,1022,1027,1057,1007,986,1063,997,1013,1052,1006,
- 1016,1039,985,991,1023,1026,1034,1036,971,1046,1058,972,1061,1046,971,1056,1064,1065,1057,1008,995,1061,1028,1066,1024,1023,1056,1035,1067,1064,1006,1059,1001,1016,1016,1001,1005,1017,1020,1019,1030,1031,1051,1041,1068,1069,990,1070,1037,991,963,962,1071,1039,1063,986,985,999,1072,1000,996,1073,1010,1009,1022,1017,1005,1004,1018,1045,1015,1014,1052,973,1006,966,1054,973,1052,1074,1002,1001,1059,1058,1006,972,987,970,973,1054,988,982,981,989,1018,1022,1019,1030,1019,1022,1061,1047,1046,995,1047,1061,1043,1051,990,1069,1070,990,1051,1009,1075,1073,1050,1075,1009,1033,1073,1075,1000,983,1000,1075,1050,1000,1072,1073,1051,1040,1041,1076,1077,1066,979,1078,1077,1076,980,979,1076,1055,1055,1076,1066,1028,1029,1028,1023,1036,1055,1027,1007,980,1029,1057,1027,1007,1057,992,986,997,996,1046,1049,1079,1058,1079,1074,1059,1058,1080,1067,1035,1034,994,1048,1047,995,1081,1082,1025,1024,982,1083,1078,979,1084,1060,1044,1065,993,992,1057,1003,1085,1030,1004,969,1086,1053,1062,1087,1015,1045,1077,1088,1066,1088,1081,1024,1066,1085,1089,1031,1030,1089,1068,1041,1042,1031,1087,968,967,1015,1060,1083,982,988,1086,1084,1044,987,1054,1086,1054,1053,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1098,1115,1116,1117,1118,1119,1111,1114,1120,1121,1122,1123,1124,1125,1126,1127,1113,1112,1124,1128,1129,1130,1131,1132,1133,1134,1101,1100,1135,1136,1109,1108,1137,1138,1139,1140,1141,1142,1143,1095,1144,1142,1141,1145,1146,1147,1148,1149,1144,1150,1142,1151,1152,1153,1154,1155,1156,1157,1150,1132,1158,1148,1159,1160,1161,1137,1140,1149,1162,1163,1164,1119,1165,1166,1167,1160,1168,1161,1149,1169,1170,1168,1160,1113,1171,1114,1172,1116,1115,1149,1140,1173,1146,1174,1175,1176,1177,1161,1168,1171,1178,1179,1171,1168,1141,1095,1094,1180,1159,1169,1160,1156,1155,1181,1149,1148,1160,1182,1183,1157,1163,1182,1157,1164,1171,1118,1114,1184,1185,1134,1172,1186,1116,1171,1113,1178,1099,1098,1117,1187,1140,1139,1188,1173,1120,1123,1136,1135,1117,1109,1136,1187,1146,1142,1150,1155,
- 1183,1135,1112,1189,1125,1141,1180,1134,1145,1167,1111,1119,1151,1154,1162,1164,1174,1184,1100,1099,1187,1174,1099,1182,1190,1191,1183,1136,1123,1187,1156,1192,1152,1151,1182,1163,1193,1190,1134,1185,1129,1145,1133,1144,1145,1129,1148,1147,1158,1159,1179,1170,1194,1195,1118,1196,1165,1119,1091,1090,1197,1167,1189,1112,1111,1124,1127,1198,1128,1199,1138,1137,1150,1144,1133,1132,1146,1173,1143,1142,1180,1101,1134,1094,1200,1101,1180,1201,1130,1129,1185,1184,1134,1100,1101,1200,1115,1098,1116,1110,1109,1117,1146,1150,1147,1158,1147,1150,1187,1175,1174,1123,1175,1187,1171,1179,1118,1195,1196,1118,1179,1137,1202,1199,1178,1202,1137,1161,1199,1202,1128,1113,1128,1202,1178,1128,1198,1199,1179,1168,1170,1203,1204,1192,1107,1205,1204,1203,1108,1107,1203,1181,1181,1203,1192,1156,1157,1156,1151,1164,1181,1155,1135,1108,1157,1183,1155,1135,1183,1120,1112,1125,1124,1177,1206,1184,1174,1206,1201,1185,1184,1207,1193,1163,1162,1122,1176,1175,1123,1208,1209,1153,1152,1110,1210,1205,1107,1191,1121,1120,1183,1131,1211,1158,1132,1188,1212,1143,1173,1204,1213,1192,1213,1208,1152,1192,1211,1214,1159,1158,1214,1194,1170,1169,1159,1212,1096,1095,1143,1186,1210,1110,1116,1215,1172,1115,1200,1215,1200,1094,1097,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1224,1241,1242,1243,1244,1238,1237,1245,1246,1247,1248,1249,1250,1251,1252,1253,1239,1254,1250,1240,1255,1256,1257,1258,1259,1260,1226,1225,1261,1236,1235,1262,1263,1264,1265,1266,1267,1223,1268,1269,1270,1271,1267,1269,1272,1273,1274,1275,1270,1269,1276,1277,1278,1279,1280,1281,1282,1283,1276,1284,1257,1274,1285,1286,1287,1273,1264,1263,1288,1289,1290,1245,1291,1292,1293,1285,1273,1287,1294,1295,1285,1294,1296,1239,1238,1297,1243,1242,1298,1273,1272,1299,1264,1300,1301,1302,1303,1287,1304,1297,1294,1305,1294,1297,1267,1306,1220,1223,1286,1285,1295,1283,1307,1281,1273,1285,1274,1308,1282,1309,1290,1289,1282,1308,1297,1238,1244,1310,1260,1311,1243,1298,1312,1297,1304,1239,1227,1313,1241,1224,1264,1299,1314,1265,
- 1246,1261,1262,1247,1241,1313,1262,1235,1272,1276,1269,1281,1261,1309,1240,1253,1315,1267,1271,1260,1306,1291,1245,1237,1277,1289,1288,1278,1300,1227,1226,1310,1313,1227,1300,1308,1309,1316,1317,1262,1313,1247,1283,1277,1280,1318,1308,1317,1319,1290,1260,1271,1255,1311,1256,1255,1271,1270,1274,1286,1284,1275,1305,1320,1321,1296,1244,1245,1293,1322,1219,1323,1216,1291,1237,1240,1315,1250,1254,1324,1251,1325,1263,1266,1276,1257,1256,1270,1272,1269,1268,1299,1306,1260,1225,1220,1306,1225,1326,1327,1311,1255,1259,1310,1226,1260,1225,1224,1243,1326,1242,1241,1235,1234,1272,1275,1276,1284,1276,1275,1313,1300,1303,1247,1313,1303,1297,1244,1305,1320,1305,1244,1322,1263,1325,1328,1304,1287,1263,1328,1325,1254,1328,1239,1304,1328,1254,1254,1325,1324,1305,1296,1294,1329,1318,1330,1233,1329,1330,1331,1236,1307,1329,1233,1307,1283,1318,1329,1282,1289,1277,1283,1307,1236,1261,1281,1282,1281,1309,1261,1246,1309,1240,1250,1253,1301,1300,1310,1332,1332,1310,1311,1327,1333,1288,1290,1319,1248,1247,1303,1302,1334,1280,1279,1335,1234,1233,1331,1336,1316,1309,1246,1249,1258,1257,1284,1337,1314,1299,1268,1338,1330,1318,1339,1339,1318,1280,1334,1337,1284,1286,1340,1340,1286,1295,1296,1321,1338,1268,1223,1222,1298,1242,1234,1336,1341,1326,1243,1312,1341,1221,1220,1326,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1350,1367,1368,1369,1366,1365,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1376,1364,1363,1381,1382,1383,1384,1385,1386,1352,1351,1362,1361,1387,1388,1389,1390,1391,1392,1349,1393,1394,1395,1395,1394,1396,1397,1398,1399,1400,1401,1396,1394,1402,1403,1404,1405,1406,1407,1408,1409,1402,1410,1383,1400,1411,1412,1413,1399,1390,1389,1414,1415,1416,1370,1417,1418,1419,1420,1411,1399,1413,1421,1422,1411,1420,1363,1366,1423,1369,1368,1424,1399,1398,1425,1390,1426,1427,1428,1429,1413,1430,1423,1420,1431,1420,1423,1395,1432,1346,1349,1412,1411,1422,1409,1433,1407,1399,1411,1400,1434,1408,1435,1415,1408,1434,1416,1423,1366,1371,1436,1386,1437,1369,1424,
- 1438,1423,1430,1363,1353,1439,1367,1350,1390,1425,1440,1391,1388,1387,1373,1372,1367,1439,1387,1361,1398,1402,1394,1407,1388,1435,1364,1379,1441,1395,1397,1386,1432,1417,1370,1365,1403,1415,1414,1404,1353,1352,1436,1426,1439,1353,1426,1434,1435,1442,1443,1387,1439,1373,1406,1444,1409,1403,1416,1434,1443,1445,1386,1397,1381,1437,1397,1396,1382,1381,1400,1412,1410,1401,1431,1446,1447,1421,1371,1370,1419,1448,1345,1449,1342,1417,1365,1364,1441,1377,1376,1380,1450,1451,1389,1392,1402,1383,1382,1396,1398,1394,1393,1425,1432,1386,1351,1346,1432,1351,1452,1453,1437,1381,1385,1436,1352,1386,1369,1452,1351,1350,1368,1367,1361,1360,1398,1401,1402,1410,1402,1401,1439,1426,1429,1373,1439,1429,1423,1371,1431,1446,1431,1371,1448,1389,1451,1454,1430,1413,1389,1454,1451,1380,1454,1363,1430,1454,1380,1380,1451,1450,1431,1421,1420,1455,1444,1456,1359,1455,1456,1457,1362,1433,1455,1359,1433,1409,1444,1455,1403,1409,1408,1415,1433,1362,1388,1407,1408,1407,1435,1388,1372,1435,1364,1376,1379,1426,1436,1458,1427,1458,1436,1437,1453,1459,1414,1416,1445,1374,1373,1429,1428,1460,1406,1405,1461,1462,1360,1359,1457,1442,1435,1372,1375,1384,1383,1410,1463,1440,1425,1393,1464,1456,1444,1465,1465,1444,1406,1460,1463,1410,1412,1466,1466,1412,1422,1421,1447,1464,1393,1349,1348,1424,1368,1360,1462,1467,1452,1369,1438,1467,1347,1346,1452,1468,1469,1470,1471,1472,1473,1474,1475,1475,1474,1476,1477,1478,1479,1480,1481,1482,1478,1473,1472,1483,1484,1485,1486,1487,1488,1489,1490,1489,1491,1492,1493,1488,1484,1483,1476,1494,1495,1496,1497,1491,1488,1493,1498,1499,1491,1497,1472,1475,1500,1488,1487,1501,1484,1493,1502,1500,1497,1503,1497,1500,1492,1491,1499,1488,1491,1489,1500,1475,1477,1500,1502,1472,1484,1501,1504,1485,1473,1481,1505,1494,1476,1474,1489,1492,1506,1490,1503,1507,1508,1498,1477,1476,1496,1509,1471,1510,1468,1494,1474,1473,1505,1479,1478,1482,1511,1512,1483,1486,1500,1477,1503,1507,1503,1477,1509,1483,1512,1513,1502,1493,1483,1513,1512,1482,1513,1472,1502,1513,1482,1482,1512,1511,1503,1498,1497,1473,1478,1481,1514,1506,1492,1515,1515,1492,
- 1499,1498,1508,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1516,1529,1530,1531,1532,1533,1534,1535,1536,1518,1517,1528,1527,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1531,1530,1550,1551,1552,1553,1545,1554,1543,1555,1544,1556,1547,1544,1555,1548,1557,1536,1558,1549,1530,1559,1519,1560,1529,1516,1538,1537,1533,1532,1529,1560,1537,1527,1543,1538,1556,1539,1547,1546,1540,1519,1518,1557,1550,1560,1519,1550,1555,1556,1561,1562,1537,1560,1533,1542,1563,1545,1539,1548,1555,1562,1564,1565,1536,1517,1566,1565,1517,1567,1557,1518,1536,1531,1567,1517,1516,1530,1529,1527,1526,1560,1550,1553,1533,1560,1553,1568,1563,1569,1525,1568,1569,1570,1528,1554,1568,1525,1554,1545,1563,1568,1539,1545,1544,1547,1554,1528,1538,1543,1544,1543,1556,1538,1532,1556,1550,1557,1571,1551,1571,1557,1558,1572,1573,1546,1548,1564,1534,1533,1553,1552,1574,1542,1541,1575,1576,1526,1525,1570,1561,1556,1532,1535,1569,1563,1577,1577,1563,1542,1574,1559,1530,1526,1576,1578,1567,1531,1549,1578,1579,1566,1567,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1588,1605,1606,1607,1604,1603,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1614,1602,1601,1619,1620,1621,1622,1623,1624,1590,1589,1625,1600,1599,1626,1627,1628,1629,1630,1587,1631,1632,1633,1633,1632,1634,1635,1636,1637,1638,1639,1634,1632,1640,1641,1642,1643,1644,1645,1646,1647,1640,1648,1621,1638,1649,1650,1651,1637,1628,1627,1652,1653,1654,1608,1655,1656,1657,1658,1649,1637,1651,1659,1660,1649,1658,1601,1604,1661,1662,1607,1606,1637,1636,1663,1628,1664,1665,1666,1667,1651,1668,1661,1658,1669,1658,1661,1633,1670,1584,1587,1584,1671,1672,1585,1650,1649,1660,1647,1673,1645,1637,1649,1638,1674,1646,1675,1654,1653,1646,1674,1661,1604,1609,1676,1624,1677,1662,1606,1678,1661,1668,1601,1591,1679,1605,1588,1628,1663,1680,1629,1610,1625,1626,1611,1605,1679,1626,1599,1636,1640,1632,1645,1625,1675,1602,1617,1681,1633,1635,1624,1670,1655,1608,1603,1641,1653,1652,1642,1591,1590,1676,1664,
- 1679,1591,1664,1674,1675,1682,1683,1626,1679,1611,1647,1641,1644,1684,1674,1683,1685,1654,1624,1635,1619,1677,1635,1634,1620,1619,1638,1650,1648,1639,1669,1686,1687,1659,1609,1608,1657,1688,1583,1689,1580,1655,1603,1602,1681,1615,1614,1618,1690,1691,1627,1630,1640,1621,1620,1634,1636,1632,1631,1663,1670,1624,1589,1584,1670,1589,1671,1692,1677,1619,1623,1676,1590,1624,1607,1671,1589,1588,1606,1605,1599,1598,1636,1639,1640,1648,1640,1639,1679,1664,1667,1611,1679,1667,1661,1609,1669,1686,1669,1609,1688,1627,1691,1693,1668,1651,1627,1693,1691,1618,1693,1601,1668,1693,1618,1618,1691,1690,1669,1659,1658,1694,1684,1695,1597,1694,1695,1696,1600,1673,1694,1597,1673,1647,1684,1694,1646,1653,1641,1647,1673,1600,1625,1645,1646,1645,1675,1625,1610,1675,1602,1614,1617,1664,1676,1697,1665,1697,1676,1677,1692,1698,1652,1654,1685,1612,1611,1667,1666,1699,1644,1643,1700,1598,1597,1696,1701,1702,1662,1678,1682,1675,1610,1613,1622,1621,1648,1703,1585,1672,1704,1680,1663,1631,1705,1695,1684,1706,1706,1684,1644,1699,1703,1648,1650,1707,1707,1650,1660,1659,1687,1705,1631,1587,1586,1678,1606,1598,1701,1704,1671,1607,1662,1702,1704,1672,1671,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1716,1733,1734,1735,1736,1730,1729,1737,1738,1739,1740,1741,1742,1743,1744,1745,1731,1746,1742,1732,1747,1748,1749,1750,1751,1752,1718,1717,1753,1728,1727,1754,1755,1756,1757,1758,1759,1715,1760,1761,1762,1763,1759,1761,1764,1765,1766,1767,1762,1761,1768,1769,1770,1771,1772,1773,1774,1775,1768,1776,1749,1766,1777,1778,1779,1765,1756,1755,1780,1781,1782,1737,1783,1784,1785,1777,1765,1779,1786,1787,1777,1786,1788,1731,1730,1789,1790,1735,1734,1765,1764,1791,1756,1792,1793,1794,1795,1779,1796,1789,1786,1797,1786,1789,1759,1798,1712,1715,1778,1777,1787,1775,1799,1773,1765,1777,1766,1800,1774,1801,1782,1781,1774,1800,1789,1730,1736,1802,1752,1803,1790,1734,1804,1789,1796,1731,1719,1805,1733,1716,1756,1791,1806,1757,1738,1753,1754,1739,1733,1805,1754,1727,1764,1768,1761,1773,1753,1801,
- 1732,1745,1807,1759,1763,1752,1798,1783,1737,1729,1769,1781,1780,1770,1792,1719,1718,1802,1805,1719,1792,1800,1801,1808,1809,1754,1805,1739,1775,1769,1772,1810,1800,1809,1811,1782,1752,1763,1747,1803,1748,1747,1763,1762,1766,1778,1776,1767,1797,1812,1813,1788,1736,1737,1785,1814,1711,1815,1708,1783,1729,1732,1807,1742,1746,1816,1743,1817,1755,1758,1768,1749,1748,1762,1764,1761,1760,1791,1798,1752,1717,1712,1798,1717,1818,1819,1803,1747,1751,1802,1718,1752,1717,1716,1735,1818,1734,1733,1727,1726,1764,1767,1768,1776,1768,1767,1805,1792,1795,1739,1805,1795,1789,1736,1797,1812,1797,1736,1814,1755,1817,1820,1796,1779,1755,1820,1817,1746,1820,1731,1796,1820,1746,1746,1817,1816,1797,1788,1786,1821,1810,1822,1725,1821,1822,1823,1728,1799,1821,1725,1799,1775,1810,1821,1774,1781,1769,1775,1799,1728,1753,1773,1774,1773,1801,1753,1738,1801,1732,1742,1745,1793,1792,1802,1824,1824,1802,1803,1819,1825,1780,1782,1811,1740,1739,1795,1794,1826,1772,1771,1827,1726,1725,1823,1828,1808,1801,1738,1741,1750,1749,1776,1829,1806,1791,1760,1830,1822,1810,1831,1831,1810,1772,1826,1829,1776,1778,1832,1832,1778,1787,1788,1813,1830,1760,1715,1714,1804,1734,1726,1828,1833,1818,1735,1790,1833,1713,1712,1818,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *2937 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1554 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509528288, "Geometry::", "Mesh" {
- Vertices: *1596 {
- a: 382.50390625,0,-76.0849609375,360.3125,0,-149.246337890625,324.2734375,0,-216.672119140625,275.7734375,0,-275.771484375,216.671875,0,-324.27294921875,149.24609375,0,-360.312744140625,76.0859375,0,-382.505859375,0,0,-389.999755859375,-76.0859375,0,-382.505859375,-149.24609375,0,-360.31298828125,-216.671875,0,-324.27294921875,-275.7734375,0,-275.771484375,-324.2734375,0,-216.67236328125,-360.3125,0,-149.24658203125,-382.50390625,0,-76.08544921875,-390,0,-0.000244140625,-382.50390625,0,76.0849609375,-360.3125,0,149.24609375,-324.2734375,0,216.671875,-275.7734375,0,275.771484375,-216.671875,0,324.27294921875,-149.24609375,0,360.312744140625,149.24609375,0,360.31298828125,216.671875,0,324.27294921875,275.7734375,0,275.771484375,324.2734375,0,216.67236328125,360.3125,0,149.24658203125,382.50390625,0,76.0849609375,390,0,0,382.50390625,600,-76.0849609375,360.3125,600,-149.246337890625,324.2734375,600,-216.672119140625,275.7734375,600,-275.771484375,216.671875,600,-324.27294921875,149.24609375,600,-360.312744140625,76.0859375,600,-382.505859375,0,600,-389.999755859375,-76.0859375,600,-382.505859375,-149.24609375,600,-360.31298828125,-216.671875,600,-324.27294921875,-275.7734375,600,-275.771484375,-324.2734375,600,-216.67236328125,-360.3125,600,-149.24658203125,-382.50390625,600,-76.08544921875,-390,600,-0.000244140625,-382.50390625,600,76.0849609375,-360.3125,600,149.24609375,-324.2734375,600,216.671875,-275.7734375,600,275.771484375,-216.671875,600,324.27294921875,-149.24609375,600,360.312744140625,-76.0859375,600,382.505859375,0,600,389.999755859375,76.0859375,600,382.506103515625,149.24609375,600,360.31298828125,216.671875,600,324.27294921875,275.7734375,600,275.771484375,324.2734375,600,216.67236328125,360.3125,600,149.24658203125,382.50390625,600,76.0849609375,390,600,0,382.50390625,500,-76.0849609375,360.3125,500,-149.246337890625,324.2734375,500,-216.672119140625,275.7734375,500,-275.771484375,216.671875,500,-324.27294921875,149.24609375,500,-360.312744140625,76.0859375,500,-382.505859375,0,500,-389.999755859375,
- -76.0859375,500,-382.505859375,-149.24609375,500,-360.31298828125,-216.671875,500,-324.27294921875,-275.7734375,500,-275.771484375,-324.2734375,500,-216.67236328125,-360.3125,500,-149.24658203125,-382.50390625,500,-76.08544921875,-390,500,-0.000244140625,-382.50390625,500,76.0849609375,-360.3125,500,149.24609375,-324.2734375,500,216.671875,-275.7734375,500,275.771484375,-216.671875,500,324.27294921875,-149.24609375,500,360.312744140625,-76.0859375,500,382.505859375,0,500,389.999755859375,76.0859375,500,382.506103515625,149.24609375,500,360.31298828125,216.671875,500,324.27294921875,275.7734375,500,275.771484375,324.2734375,500,216.67236328125,360.3125,500,149.24658203125,382.50390625,500,76.0849609375,390,500,0,382.50390625,400,-76.0849609375,360.3125,400,-149.246337890625,324.2734375,400,-216.672119140625,275.7734375,400,-275.771484375,216.671875,400,-324.27294921875,149.24609375,400,-360.312744140625,76.0859375,400,-382.505859375,0,400,-389.999755859375,-76.0859375,400,-382.505859375,-149.24609375,400,-360.31298828125,-216.671875,400,-324.27294921875,-275.7734375,400,-275.771484375,-324.2734375,400,-216.67236328125,-360.3125,400,-149.24658203125,-382.50390625,400,-76.08544921875,-390,400,-0.000244140625,-382.50390625,400,76.0849609375,-360.3125,400,149.24609375,-324.2734375,400,216.671875,-275.7734375,400,275.771484375,-216.671875,400,324.27294921875,-149.24609375,400,360.312744140625,-76.0859375,400,382.505859375,0,443.775146484375,389.999755859375,76.0859375,400,382.506103515625,149.24609375,400,360.31298828125,216.671875,400,324.27294921875,275.7734375,400,275.771484375,324.2734375,400,216.67236328125,360.3125,400,149.24658203125,382.50390625,400,76.0849609375,390,400,0,382.50390625,300,-76.0849609375,360.3125,300,-149.246337890625,324.2734375,300,-216.672119140625,275.7734375,300,-275.771484375,216.671875,300,-324.27294921875,149.24609375,300,-360.312744140625,76.0859375,300,-382.505859375,0,300,-389.999755859375,-76.0859375,300,-382.505859375,-149.24609375,300,-360.31298828125,-216.671875,300,-324.27294921875,
- -275.7734375,300,-275.771484375,-324.2734375,300,-216.67236328125,-360.3125,300,-149.24658203125,-382.50390625,300,-76.08544921875,-390,300,-0.000244140625,-382.50390625,300,76.0849609375,-360.3125,300,149.24609375,-324.2734375,300,216.671875,-275.7734375,300,275.771484375,-216.671875,300,324.27294921875,-149.24609375,300,360.312744140625,149.24609375,300,360.31298828125,216.671875,300,324.27294921875,275.7734375,300,275.771484375,324.2734375,300,216.67236328125,360.3125,300,149.24658203125,382.50390625,300,76.0849609375,390,300,0,382.50390625,200,-76.0849609375,360.3125,200,-149.246337890625,324.2734375,200,-216.672119140625,275.7734375,200,-275.771484375,216.671875,200,-324.27294921875,149.24609375,200,-360.312744140625,76.0859375,200,-382.505859375,0,200,-389.999755859375,-76.0859375,200,-382.505859375,-149.24609375,200,-360.31298828125,-216.671875,200,-324.27294921875,-275.7734375,200,-275.771484375,-324.2734375,200,-216.67236328125,-360.3125,200,-149.24658203125,-382.50390625,200,-76.08544921875,-390,200,-0.000244140625,-382.50390625,200,76.0849609375,-360.3125,200,149.24609375,-324.2734375,200,216.671875,-275.7734375,200,275.771484375,-216.671875,200,324.27294921875,-149.24609375,200,360.312744140625,149.24609375,200,360.31298828125,216.671875,200,324.27294921875,275.7734375,200,275.771484375,324.2734375,200,216.67236328125,360.3125,200,149.24658203125,382.50390625,200,76.0849609375,390,200,0,382.50390625,100,-76.0849609375,360.3125,100,-149.246337890625,324.2734375,100,-216.672119140625,275.7734375,100,-275.771484375,216.671875,100,-324.27294921875,149.24609375,100,-360.312744140625,76.0859375,100,-382.505859375,0,100,-389.999755859375,-76.0859375,100,-382.505859375,-149.24609375,100,-360.31298828125,-216.671875,100,-324.27294921875,-275.7734375,100,-275.771484375,-324.2734375,100,-216.67236328125,-360.3125,100,-149.24658203125,-382.50390625,100,-76.08544921875,-390,100,-0.000244140625,-382.50390625,100,76.0849609375,-360.3125,100,149.24609375,-324.2734375,100,216.671875,-275.7734375,100,275.771484375,-216.671875,100,324.27294921875,
- -149.24609375,100,360.312744140625,149.24609375,100,360.31298828125,216.671875,100,324.27294921875,275.7734375,100,275.771484375,324.2734375,100,216.67236328125,360.3125,100,149.24658203125,382.50390625,100,76.0849609375,390,100,0,322.3125,0,-64.1123046875,303.6171875,0,-125.76123046875,273.24609375,0,-182.5771484375,232.37890625,0,-232.37646484375,182.578125,0,-273.245849609375,125.76171875,0,-303.61474609375,64.11328125,0,-322.3154296875,0,0,-328.630126953125,-64.11328125,0,-322.3154296875,-125.7578125,0,-303.61474609375,-182.578125,0,-273.24609375,-232.375,0,-232.376708984375,-273.24609375,0,-182.5771484375,-303.61328125,0,-125.761474609375,-322.3125,0,-64.11279296875,-328.6328125,0,-0.000244140625,-322.3125,0,64.1123046875,-303.61328125,0,125.76123046875,-273.24609375,0,182.5771484375,-232.375,0,232.37646484375,-182.578125,0,273.24609375,-125.7578125,0,303.61474609375,125.76171875,0,303.61474609375,182.578125,0,273.24609375,232.37890625,0,232.37646484375,273.24609375,0,182.5771484375,303.6171875,0,125.76123046875,322.3125,0,64.1123046875,328.6328125,0,0,322.3125,600,-64.1123046875,303.6171875,600,-125.76123046875,273.24609375,600,-182.5771484375,232.37890625,600,-232.37646484375,182.578125,600,-273.245849609375,125.76171875,600,-303.61474609375,64.11328125,600,-322.3154296875,0,600,-328.630126953125,-64.11328125,600,-322.3154296875,-125.7578125,600,-303.61474609375,-182.578125,600,-273.24609375,-232.375,600,-232.376708984375,-273.24609375,600,-182.5771484375,-303.61328125,600,-125.761474609375,-322.3125,600,-64.11279296875,-328.6328125,600,-0.000244140625,-322.3125,600,64.1123046875,-303.61328125,600,125.76123046875,-273.24609375,600,182.5771484375,-232.375,600,232.37646484375,-182.578125,600,273.24609375,-125.7578125,600,303.61474609375,-64.11328125,600,322.3154296875,0,600,328.630126953125,64.11328125,600,322.315673828125,125.76171875,600,303.61474609375,182.578125,600,273.24609375,232.37890625,600,232.37646484375,273.24609375,600,182.5771484375,303.6171875,600,125.76123046875,322.3125,600,64.1123046875,328.6328125,600,0,
- -125.7578125,400,303.61474609375,-64.11328125,400,322.3154296875,0,443.775146484375,328.630126953125,64.11328125,400,322.315673828125,125.76171875,400,303.61474609375,-112.6640625,371.409912109375,371.409423828125,-94.9375,371.409912109375,312.965087890625,112.6640625,371.409912109375,371.409423828125,94.9375,371.409912109375,312.96533203125,-130.953125,300,365.861083984375,-130.953125,200,365.861083984375,-130.953125,100,365.861083984375,-130.953125,0,365.861083984375,-110.34765625,0,308.289794921875,130.953125,300,365.861083984375,130.953125,200,365.861083984375,130.953125,100,365.861083984375,130.953125,0,365.861083984375,110.3515625,0,308.2900390625,-121.7421875,95.91650390625,376.77099609375,-155.962890625,95.91650390625,363.9482421875,-107.302734375,95.91650390625,368.740234375,-100.4931640625,95.94189453125,344.546142578125,-141.376953125,95.91650390625,329.89208984375,-100.490234375,-1.400390625,344.546875,-107.302734375,-1.41015625,368.740234375,-121.7421875,-1.41015625,376.77099609375,-155.962890625,-1.41015625,363.9482421875,-141.3779296875,-1.41015625,329.8916015625,-100.490234375,32.95654296875,344.546875,-107.302734375,32.94873046875,368.740234375,-121.7421875,32.94873046875,376.77099609375,-155.962890625,32.94873046875,363.9482421875,-141.3779296875,32.94873046875,329.8916015625,-100.4892578125,63.11279296875,344.547119140625,-107.302734375,63.11083984375,368.740234375,-121.7421875,63.10888671875,376.77099609375,-155.962890625,63.10888671875,363.9482421875,-141.3779296875,63.11083984375,329.8916015625,-121.7421875,291.04296875,376.77099609375,-155.962890625,291.04296875,363.9482421875,-107.302734375,291.04296875,368.740234375,-100.4931640625,291.068359375,344.546142578125,-141.376953125,291.04296875,329.89208984375,1.72265625,416.88671875,395.95947265625,2.234375,450.02392578125,395.95703125,1.5166015625,406.3505859375,384.045166015625,1.4482421875,406.56982421875,358.912109375,2.0361328125,450.0234375,358.909423828125,-100.49609375,124.3095703125,344.545166015625,-107.302734375,124.2646484375,368.740234375,
- -121.7421875,124.2646484375,376.77099609375,-155.962890625,124.2646484375,363.9482421875,-141.3779296875,124.2646484375,329.8916015625,-100.49609375,158.91259765625,344.545166015625,-107.302734375,158.87158203125,368.740234375,-121.7421875,158.87353515625,376.77099609375,-155.9619140625,158.87353515625,363.948486328125,-141.3779296875,158.87158203125,329.8916015625,-100.4951171875,192.8681640625,344.54541015625,-107.302734375,192.8310546875,368.740234375,-121.7421875,192.8330078125,376.77099609375,-155.9619140625,192.8330078125,363.948486328125,-141.3779296875,192.8310546875,329.8916015625,-100.494140625,227.2587890625,344.5458984375,-107.302734375,227.2236328125,368.740234375,-121.7421875,227.2255859375,376.77099609375,-155.9619140625,227.2255859375,363.948486328125,-141.3779296875,227.2236328125,329.8916015625,-100.4931640625,256.732421875,344.546142578125,-107.302734375,256.705078125,368.740234375,-121.7421875,256.705078125,376.77099609375,-155.9619140625,256.705078125,363.948486328125,-141.3779296875,256.705078125,329.8916015625,-98.626953125,324.5146484375,345.084716796875,-105.314453125,324.455078125,369.312744140625,-119.5,326.50048828125,377.48779296875,-153.154296875,332.93408203125,365.137939453125,-138.8310546875,332.93359375,330.970703125,-91.080078125,348.24462890625,347.152587890625,-97.2587890625,348.1396484375,371.51513671875,-110.40625,352.64111328125,380.24609375,-141.7294921875,366.79736328125,369.719970703125,-128.474609375,366.79736328125,335.124267578125,-73.7509765625,374.41162109375,351.2421875,-78.7578125,374.255859375,375.8720703125,-89.48046875,381.46484375,385.706298828125,-115.2314453125,404.13671875,378.812255859375,-104.453125,404.13671875,343.36669921875,-52.01953125,392.18115234375,355.11328125,-55.5537109375,391.99169921875,379.996826171875,-63.1669921875,401.03955078125,390.879638671875,-81.5888671875,429.4951171875,387.452392578125,-73.953125,429.49462890625,351.19970703125,-26.462890625,403.07177734375,357.930419921875,-28.265625,402.8623046875,382.9990234375,-32.1591796875,413.03759765625,394.64697265625,
- -41.625,445.03759765625,393.75927734375,-37.724609375,445.037109375,356.9169921875,121.73046875,279.6572265625,376.849365234375,155.958984375,279.6572265625,364.048583984375,107.2958984375,279.6572265625,368.809326171875,100.501953125,279.6328125,344.61083984375,141.3955078125,279.6572265625,329.983154296875,121.73046875,73.25732421875,376.849365234375,155.958984375,73.25732421875,364.048583984375,107.2958984375,73.25732421875,368.809326171875,100.501953125,73.23291015625,344.61083984375,141.3955078125,73.25732421875,329.983154296875,32.888671875,401.11181640625,357.417236328125,35.06640625,400.9130859375,382.4560546875,39.8857421875,410.8857421875,393.962890625,51.61328125,442.25,392.60400390625,46.8017578125,442.25,355.86962890625,58.5947265625,387.85791015625,354.125244140625,62.517578125,387.6962890625,378.950927734375,71.0673828125,396.2978515625,389.5625,91.728515625,423.35205078125,385.23291015625,83.166015625,423.35302734375,349.187744140625,80.8251953125,365.7939453125,349.7353515625,86.265625,365.685546875,374.2734375,97.9736328125,372.0048828125,383.696044921875,126.0283203125,391.8818359375,375.4375,114.2607421875,391.88330078125,340.3076171875,93.966796875,341.28857421875,346.445068359375,100.306640625,341.23486328125,370.766357421875,113.84375,345.01904296875,379.30078125,146.064453125,356.92333984375,368.121337890625,132.4267578125,356.9248046875,333.6748046875,100.2265625,312.3720703125,344.69091796875,106.9990234375,312.3779296875,368.895263671875,121.3955078125,313.17138671875,376.957275390625,155.5400390625,315.66650390625,364.2275390625,141.0166015625,315.66650390625,330.144775390625,100.5009765625,242.3603515625,344.611083984375,107.2958984375,242.3798828125,368.809326171875,121.7314453125,242.380859375,376.84912109375,155.958984375,242.380859375,364.048583984375,141.3955078125,242.3798828125,329.983154296875,100.5,212.029296875,344.611328125,107.2958984375,212.044921875,368.809326171875,121.73046875,212.044921875,376.849365234375,155.958984375,212.044921875,364.048583984375,141.396484375,212.044921875,329.982666015625,
- 100.4990234375,178.296875,344.611572265625,107.2958984375,178.3076171875,368.809326171875,121.73046875,178.3076171875,376.849365234375,155.958984375,178.3076171875,364.048583984375,141.396484375,178.3076171875,329.982666015625,100.4990234375,144.2431640625,344.611572265625,107.2958984375,144.25,368.809326171875,121.73046875,144.2509765625,376.849365234375,155.958984375,144.2509765625,364.048583984375,141.396484375,144.25,329.982666015625,100.498046875,108.25537109375,344.61181640625,107.2958984375,108.25830078125,368.809326171875,121.73046875,108.25927734375,376.849365234375,155.958984375,108.25927734375,364.048583984375,141.396484375,108.25830078125,329.982666015625,100.5048828125,36.08837890625,344.60986328125,107.2958984375,36.13330078125,368.809326171875,121.73046875,36.13330078125,376.849365234375,155.958984375,36.13330078125,364.048583984375,141.396484375,36.13330078125,329.982666015625,100.5048828125,-1.724609375,344.60986328125,107.2958984375,-1.68359375,368.809326171875,121.73046875,-1.6845703125,376.849365234375,155.9580078125,-1.6845703125,364.049072265625,141.396484375,-1.68359375,329.982666015625,-98.9677734375,95.91650390625,306.261474609375,-126.79296875,95.91650390625,295.8349609375,-93.26171875,95.91650390625,320.474853515625,-93.26171875,-1.41015625,320.474853515625,-98.9677734375,-1.41015625,306.261474609375,-126.79296875,-1.41015625,295.8349609375,-93.26171875,32.94873046875,320.474853515625,-98.9677734375,32.94873046875,306.261474609375,-126.79296875,32.94873046875,295.8349609375,-93.26171875,63.11083984375,320.474853515625,-98.9677734375,63.10888671875,306.261474609375,-126.79296875,63.10888671875,295.8349609375,-98.9677734375,291.04296875,306.261474609375,-126.79296875,291.04296875,295.8349609375,-93.26171875,291.04296875,320.474853515625,1.421875,416.88671875,321.86376953125,1.837890625,450.02392578125,321.86181640625,1.3330078125,406.3505859375,333.779296875,-93.26171875,124.2646484375,320.474853515625,-98.9677734375,124.2646484375,306.261474609375,-126.79296875,124.2646484375,295.8349609375,
- -93.26171875,158.87158203125,320.474853515625,-98.9677734375,158.87353515625,306.261474609375,-126.7919921875,158.87353515625,295.83544921875,-93.26171875,192.8310546875,320.474853515625,-98.9677734375,192.8330078125,306.261474609375,-126.7919921875,192.8330078125,295.83544921875,-93.26171875,227.2236328125,320.474853515625,-98.9677734375,227.2255859375,306.261474609375,-126.7919921875,227.2255859375,295.83544921875,-93.26171875,256.705078125,320.474853515625,-98.9677734375,256.705078125,306.261474609375,-126.7919921875,256.705078125,295.83544921875,-91.533203125,324.455078125,320.972412109375,-97.14453125,326.50048828125,306.84423828125,-124.509765625,332.93408203125,296.802490234375,-84.5302734375,348.1396484375,322.886962890625,-89.7509765625,352.64111328125,309.087158203125,-115.2197265625,366.79736328125,300.5283203125,-68.4482421875,374.255859375,326.67431640625,-72.7353515625,381.46484375,313.52685546875,-93.673828125,404.13671875,307.921142578125,-48.2763671875,391.99169921875,330.260009765625,-51.33984375,401.03955078125,317.733154296875,-66.318359375,429.4951171875,314.946533203125,-24.5556640625,402.8623046875,332.869873046875,-26.126953125,413.03759765625,320.79638671875,-33.82421875,445.03759765625,320.07470703125,99.001953125,279.6572265625,306.3251953125,126.8330078125,279.6572265625,295.916748046875,93.2861328125,279.6572265625,320.534912109375,99.001953125,73.25732421875,306.3251953125,126.8330078125,73.25732421875,295.916748046875,93.2861328125,73.25732421875,320.534912109375,30.498046875,400.9130859375,332.39794921875,32.453125,410.8857421875,320.240234375,41.9892578125,442.25,319.13525390625,54.3603515625,387.6962890625,329.350830078125,57.806640625,396.2978515625,316.662109375,74.6064453125,423.35205078125,313.141845703125,75.0048828125,365.685546875,325.284912109375,79.6845703125,372.0048828125,311.89208984375,102.49609375,391.8818359375,305.177001953125,87.2099609375,341.23486328125,322.236328125,92.5888671875,345.01904296875,308.318359375,118.7880859375,356.92333984375,299.228271484375,93.0283203125,312.3779296875,320.609619140625,
- 98.7294921875,313.17138671875,306.412841796875,126.4921875,315.66650390625,296.062255859375,93.2861328125,242.3798828125,320.534912109375,99.0029296875,242.380859375,306.324951171875,126.8330078125,242.380859375,295.916748046875,93.2861328125,212.044921875,320.534912109375,99.001953125,212.044921875,306.3251953125,126.8330078125,212.044921875,295.916748046875,93.2861328125,178.3076171875,320.534912109375,99.001953125,178.3076171875,306.3251953125,126.8330078125,178.3076171875,295.916748046875,93.2861328125,144.25,320.534912109375,99.001953125,144.2509765625,306.3251953125,126.8330078125,144.2509765625,295.916748046875,93.2861328125,108.25830078125,320.534912109375,99.001953125,108.25927734375,306.3251953125,126.8330078125,108.25927734375,295.916748046875,93.2861328125,36.13330078125,320.534912109375,99.001953125,36.13330078125,306.3251953125,126.8330078125,36.13330078125,295.916748046875,93.2861328125,-1.68359375,320.534912109375,99.001953125,-1.6845703125,306.3251953125,126.83203125,-1.6845703125,295.9169921875
- }
- PolygonVertexIndex: *2078 {
- a: 0,1,184,-184,1,2,185,-185,2,3,186,-186,3,4,187,-187,4,5,188,-188,5,6,189,-189,6,7,190,-190,7,8,191,-191,8,9,192,-192,9,10,193,-193,10,11,194,-194,11,12,195,-195,12,13,196,-196,13,14,197,-197,14,15,198,-198,15,16,199,-199,16,17,200,-200,17,18,201,-201,18,19,202,-202,19,20,203,-203,20,21,204,-204,289,290,22,-206,22,23,206,-206,23,24,207,-207,24,25,208,-208,25,26,209,-209,26,27,210,-210,27,28,211,-211,28,0,183,-212,61,62,30,-30,62,63,31,-31,63,64,32,-32,64,65,33,-33,65,66,34,-34,66,67,35,-35,67,68,36,-36,68,69,37,-37,69,70,38,-38,70,71,39,-39,71,72,40,-40,72,73,41,-41,73,74,42,-42,74,75,43,-43,75,76,44,-44,76,77,45,-45,77,78,46,-46,78,79,47,-47,79,80,48,-48,80,81,49,-49,81,82,50,-50,82,83,51,-51,83,84,52,-52,84,85,53,-53,85,86,54,-54,86,87,55,-55,87,88,56,-56,88,89,57,-57,89,90,58,-58,90,91,59,-59,91,92,60,-60,92,61,29,-61,93,94,62,-62,94,95,63,-63,95,96,64,-64,96,97,65,-65,97,98,66,-66,98,99,67,-67,99,100,68,-68,100,101,69,-69,101,102,70,-70,102,103,71,-71,103,104,72,-72,104,105,73,-73,105,106,74,-74,106,107,75,-75,107,108,76,-76,108,109,77,-77,109,110,78,-78,110,111,79,-79,111,112,80,-80,112,113,81,-81,113,114,82,-82,114,115,83,-83,115,116,84,-84,116,117,85,-85,117,118,86,-86,118,119,87,-87,119,120,88,-88,120,121,89,-89,121,122,90,-90,122,123,91,-91,123,124,92,-92,124,93,61,-93,125,126,94,-94,126,127,95,-95,127,128,96,-96,128,129,97,-97,129,130,98,-98,130,131,99,-99,131,132,100,-100,132,133,101,-101,133,134,102,-102,134,135,103,-103,135,136,104,-104,136,137,105,-105,137,138,106,-106,138,139,107,-107,139,140,108,-108,140,141,109,-109,141,142,110,-110,142,143,111,-111,143,144,112,-112,144,145,113,-113,145,146,114,-114,280,287,147,-119,147,148,119,-119,148,149,120,-120,149,150,121,-121,150,151,122,-122,151,152,123,-123,152,153,124,-124,153,125,93,-125,154,155,126,-126,155,156,127,-127,156,157,128,-128,157,158,129,-129,158,159,130,-130,159,160,131,-131,160,161,132,-132,161,162,133,-133,162,163,134,-134,163,164,135,-135,164,165,136,-136,165,166,137,-137,166,167,138,-138,167,168,139,-139,168,169,140,-140,
- 169,170,141,-141,170,171,142,-142,171,172,143,-143,172,173,144,-144,173,174,145,-145,174,175,146,-146,287,288,176,-148,176,177,148,-148,177,178,149,-149,178,179,150,-150,179,180,151,-151,180,181,152,-152,181,182,153,-153,182,154,125,-154,183,184,155,-155,184,185,156,-156,185,186,157,-157,186,187,158,-158,187,188,159,-159,188,189,160,-160,189,190,161,-161,190,191,162,-162,191,192,163,-163,192,193,164,-164,193,194,165,-165,194,195,166,-166,195,196,167,-167,196,197,168,-168,197,198,169,-169,198,199,170,-170,199,200,171,-171,200,201,172,-172,201,202,173,-173,202,203,174,-174,203,204,175,-175,288,289,205,-177,205,206,177,-177,206,207,178,-178,207,208,179,-179,208,209,180,-180,209,210,181,-181,210,211,182,-182,211,183,154,-183,241,242,213,-213,242,243,214,-214,243,244,215,-215,244,245,216,-216,245,246,217,-217,246,247,218,-218,247,248,219,-219,248,249,220,-220,249,250,221,-221,250,251,222,-222,251,252,223,-223,252,253,224,-224,253,254,225,-225,254,255,226,-226,255,256,227,-227,256,257,228,-228,257,258,229,-229,258,259,230,-230,259,260,231,-231,260,261,232,-232,261,262,273,233,-233,262,263,274,-274,263,264,275,-275,264,265,276,-276,265,266,277,-277,277,266,267,235,-235,267,268,236,-236,268,269,237,-237,269,270,238,-238,270,271,239,-239,271,272,240,-240,272,241,212,-241,273,274,-280,276,277,-282,271,59,60,-273,255,43,44,-257,42,43,255,-255,41,42,254,-254,40,41,253,-253,39,40,252,-252,38,39,251,-251,37,38,250,-250,36,37,249,-249,35,36,248,-248,34,35,247,-247,33,34,246,-246,32,33,245,-245,31,32,244,-244,30,31,243,-243,29,30,242,-242,272,60,29,-242,58,59,271,-271,57,58,270,-270,56,57,269,-269,55,56,268,-268,54,55,267,-267,53,54,266,-266,52,53,265,-265,51,52,264,-264,50,51,263,-263,49,50,262,-262,48,49,261,-261,47,48,260,-260,46,47,259,-259,45,46,258,-258,44,45,257,-257,239,240,28,-28,226,227,15,-15,13,225,226,-15,12,224,225,-14,11,223,224,-13,10,222,223,-12,9,221,222,-11,8,220,221,-10,7,219,220,-9,6,218,219,-8,5,217,218,-7,4,216,217,-6,3,215,216,-5,2,214,215,-4,1,213,214,-3,0,212,213,-2,240,212,0,-29,26,238,239,-28,25,237,238,
- -27,24,236,237,-26,23,235,236,-25,22,234,235,-24,290,291,234,-23,20,232,233,-22,19,231,232,-21,18,230,231,-20,17,229,230,-19,16,228,229,-18,15,227,228,-17,233,273,279,-287,175,283,282,-147,204,284,283,-176,21,285,284,-205,21,233,286,-286,146,282,278,-115,291,281,277,-235,114,278,-116,117,280,-119,297,302,303,-299,303,304,299,-299,304,305,300,-300,305,306,301,-301,302,307,308,-304,308,309,304,-304,309,310,305,-305,310,311,306,-306,307,295,294,-309,294,292,309,-309,292,293,310,-310,296,311,310,-294,294,295,322,-324,292,294,323,-325,293,292,324,-326,325,326,296,-294,315,347,348,-315,348,349,312,-315,349,350,313,-313,350,351,316,-314,323,322,327,-329,324,323,328,-330,325,324,329,-331,330,331,326,-326,328,327,332,-334,329,328,333,-335,330,329,334,-336,335,336,331,-331,333,332,337,-339,334,333,338,-340,335,334,339,-341,340,341,336,-336,338,337,342,-344,339,338,343,-345,340,339,344,-346,345,346,341,-341,343,342,315,-315,344,343,314,-313,345,344,312,-314,313,316,346,-346,347,352,353,-349,353,354,349,-349,354,355,350,-350,355,356,351,-351,352,357,358,-354,358,359,354,-354,359,360,355,-355,360,361,356,-356,357,362,363,-359,363,364,359,-359,364,365,360,-360,365,366,361,-361,362,367,368,-364,368,369,364,-364,369,370,365,-365,370,371,366,-366,367,320,319,-369,319,317,369,-369,317,318,370,-370,321,371,370,-319,319,320,382,-384,317,319,383,-385,318,317,384,-386,385,386,321,-319,375,407,408,-375,408,409,372,-375,409,410,373,-373,410,411,376,-374,383,382,387,-389,384,383,388,-390,385,384,389,-391,390,391,386,-386,388,387,392,-394,389,388,393,-395,390,389,394,-396,395,396,391,-391,393,392,397,-399,394,393,398,-400,395,394,399,-401,400,401,396,-396,398,397,402,-404,399,398,403,-405,400,399,404,-406,405,406,401,-401,403,402,375,-375,404,403,374,-373,405,404,372,-374,373,376,406,-406,407,412,413,-409,413,414,409,-409,414,415,410,-410,415,416,411,-411,412,417,418,-414,418,419,414,-414,419,420,415,-415,420,421,416,-416,417,422,423,-419,423,424,419,-419,424,425,420,-420,425,426,421,-421,422,427,428,-424,428,429,424,-424,429,430,425,-425,
- 430,431,426,-426,427,380,379,-429,379,377,429,-429,377,378,430,-430,381,431,430,-379,379,380,432,-434,377,379,433,-435,378,377,434,-436,435,436,381,-379,433,432,437,-439,434,433,438,-440,435,434,439,-441,440,441,436,-436,297,445,448,-303,448,445,446,-450,449,446,447,-451,450,447,301,-307,302,448,451,-308,451,448,449,-453,452,449,450,-454,453,450,306,-312,307,451,444,-296,444,451,452,-443,442,452,453,-444,296,443,453,-312,444,460,322,-296,442,461,460,-445,443,462,461,-443,462,443,296,-327,315,456,475,-348,475,456,454,-477,476,454,455,-478,477,455,316,-352,460,463,327,-323,461,464,463,-461,462,465,464,-462,465,462,326,-332,463,466,332,-328,464,467,466,-464,465,468,467,-465,468,465,331,-337,466,469,337,-333,467,470,469,-467,468,471,470,-468,471,468,336,-342,469,472,342,-338,470,473,472,-470,471,474,473,-471,474,471,341,-347,472,456,315,-343,473,454,456,-473,474,455,454,-474,455,474,346,-317,347,475,478,-353,478,475,476,-480,479,476,477,-481,480,477,351,-357,352,478,481,-358,481,478,479,-483,482,479,480,-484,483,480,356,-362,357,481,484,-363,484,481,482,-486,485,482,483,-487,486,483,361,-367,362,484,487,-368,487,484,485,-489,488,485,486,-490,489,486,366,-372,367,487,459,-321,459,487,488,-458,457,488,489,-459,321,458,489,-372,459,496,382,-321,457,497,496,-460,458,498,497,-458,498,458,321,-387,375,492,511,-408,511,492,490,-513,512,490,491,-514,513,491,376,-412,496,499,387,-383,497,500,499,-497,498,501,500,-498,501,498,386,-392,499,502,392,-388,500,503,502,-500,501,504,503,-501,504,501,391,-397,502,505,397,-393,503,506,505,-503,504,507,506,-504,507,504,396,-402,505,508,402,-398,506,509,508,-506,507,510,509,-507,510,507,401,-407,508,492,375,-403,509,490,492,-509,510,491,490,-510,491,510,406,-377,407,511,514,-413,514,511,512,-516,515,512,513,-517,516,513,411,-417,412,514,517,-418,517,514,515,-519,518,515,516,-520,519,516,416,-422,417,517,520,-423,520,517,518,-522,521,518,519,-523,522,519,421,-427,422,520,523,-428,523,520,521,-525,524,521,522,-526,525,522,426,-432,427,523,495,-381,495,523,524,-494,493,524,525,-495,381,494,525,
- -432,495,526,432,-381,493,527,526,-496,494,528,527,-494,528,494,381,-437,526,529,437,-433,527,530,529,-527,528,531,530,-528,531,528,436,-442,298,299,300,301,447,446,445,-298,438,437,529,530,531,441,440,-440
- }
- Edges: *1049 {
- a: 0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,1112,88,92,96,100,104,108,112,118,122,126,130,134,138,142,146,150,154,158,162,166,170,174,178,182,186,190,194,198,202,206,210,214,218,222,226,230,234,238,242,3,1,5,9,13,17,21,25,29,33,37,41,45,49,53,57,61,65,69,73,77,81,86,89,93,97,101,105,109,119,117,121,125,129,133,137,141,145,149,153,157,161,165,169,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,233,237,116,120,124,128,132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196,200,204,208,212,216,220,224,228,232,236,240,247,245,249,253,257,261,265,269,273,277,281,285,289,293,297,301,305,309,313,317,321,325,329,333,337,341,345,349,353,357,361,365,244,248,252,256,260,264,268,272,276,280,284,288,292,296,300,304,308,312,316,320,324,1129,332,336,459,344,348,352,356,360,364,368,375,373,377,381,385,389,393,397,401,405,409,413,417,421,425,429,433,437,441,445,449,453,458,461,465,469,473,477,481,372,376,380,384,388,392,396,400,404,408,412,416,420,424,428,432,436,440,444,448,452,457,460,464,468,472,476,480,484,491,489,493,497,501,505,509,513,517,521,525,529,533,537,541,545,549,553,557,561,565,569,574,577,581,585,589,593,597,488,492,496,500,504,508,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,573,576,580,584,588,592,596,600,607,605,609,613,617,621,625,629,633,637,641,645,649,653,657,661,665,669,673,677,681,685,690,693,697,701,705,709,713,2,6,10,14,18,22,26,30,34,38,42,46,50,54,58,62,66,70,74,78,82,87,90,94,98,102,106,110,114,722,726,730,734,738,742,746,750,754,758,762,766,770,774,778,782,786,790,794,798,803,1103,824,828,832,836,840,844,848,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,805,809,813,817,822,826,830,834,838,842,846,723,801,806,810,814,818,851,811,815,854,802,721,725,729,733,737,741,745,749,753,757,761,765,769,773,777,781,785,789,793,797,825,823,827,831,835,839,843,858,856,862,860,867,871,875,879,883,887,891,895,899,903,907,911,915,919,927,931,935,939,943,947,951,955,959,963,967,971,975,979,985,987,989,991,992,
- 996,1000,1004,1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1052,1056,1060,1064,1068,1078,1076,1080,1084,1088,1092,1122,852,1131,855,1106,1104,1108,1105,1109,1113,1118,1102,1121,85,1073,572,688,84,1072,456,1124,328,807,340,819,1168,1166,1178,1170,1174,1181,1167,1137,1139,1140,1143,1144,1148,1134,1136,1135,1155,1138,1159,1142,1147,1146,1150,1152,1151,1171,1154,1175,1158,1163,1162,1281,1279,1204,1208,1212,1201,1360,1358,1370,1362,1366,1373,1359,1203,1207,1189,1193,1291,1183,1185,1184,1221,1188,1225,1192,1195,1194,1215,1217,1216,1237,1220,1241,1224,1227,1226,1231,1233,1232,1253,1236,1257,1240,1243,1242,1247,1249,1248,1269,1252,1273,1256,1259,1258,1263,1265,1264,1285,1268,1289,1272,1275,1274,1198,1200,1199,1299,1202,1303,1206,1211,1210,1294,1296,1295,1315,1298,1319,1302,1307,1306,1310,1312,1311,1331,1314,1335,1318,1323,1322,1326,1328,1327,1347,1330,1351,1334,1339,1338,1342,1344,1343,1363,1346,1367,1350,1355,1354,1473,1471,1396,1400,1404,1393,1552,1550,1562,1554,1558,1565,1551,1395,1399,1381,1385,1483,1375,1377,1376,1413,1380,1417,1384,1387,1386,1407,1409,1408,1429,1412,1433,1416,1419,1418,1423,1425,1424,1445,1428,1449,1432,1435,1434,1439,1441,1440,1461,1444,1465,1448,1451,1450,1455,1457,1456,1477,1460,1481,1464,1467,1466,1390,1392,1391,1491,1394,1495,1398,1403,1402,1486,1488,1487,1507,1490,1511,1494,1499,1498,1502,1504,1503,1523,1506,1527,1510,1515,1514,1518,1520,1519,1539,1522,1543,1526,1531,1530,1534,1536,1535,1555,1538,1559,1542,1547,1546,1573,1577,1567,1569,1568,1589,1572,1593,1576,1579,1578,1583,1585,1584,1588,1592,1595,1594,1631,1637,1641,1642,1632,1598,1604,1603,1608,1607,1611,1599,1600,1620,1605,1624,1609,1613,1615,1616,1636,1621,1640,1625,1629,1742,1667,1671,1675,1662,1823,1829,1833,1834,1824,1668,1672,1650,1654,1646,1647,1682,1651,1686,1655,1661,1678,1679,1698,1683,1702,1687,1693,1694,1695,1714,1699,1718,1703,1709,1710,1711,1730,1715,1734,1719,1725,1726,1727,1746,1731,1750,1735,1741,1663,1664,1764,1669,1768,1673,1677,1759,1760,1780,1765,1784,1769,1773,1775,1776,1796,1781,1800,1785,1789,1791,1792,1812,1797,
- 1816,1801,1805,1807,1808,1828,1813,1832,1817,1821,1934,1859,1863,1867,1854,2015,2021,2025,2026,2016,1860,1864,1842,1846,1838,1839,1874,1843,1878,1847,1853,1870,1871,1890,1875,1894,1879,1885,1886,1887,1906,1891,1910,1895,1901,1902,1903,1922,1907,1926,1911,1917,1918,1919,1938,1923,1942,1927,1933,1855,1856,1956,1861,1960,1865,1869,1951,1952,1972,1957,1976,1961,1965,1967,1968,1988,1973,1992,1977,1981,1983,1984,2004,1989,2008,1993,1997,1999,2000,2020,2005,2024,2009,2013,2034,2038,2030,2031,2050,2035,2054,2039,2045,2046,2047,2051,2055,2061
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *6234 {
- a: 0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474542617798,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474542617798,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476151943207,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,
- -0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474542617798,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474542617798,-0.436507523059845,0,0.89970064163208,-0.436507523059845,0,0.89970064163208,-0.555562913417816,0,0.831474423408508,0.290237426757813,0,0.956954658031464,0.290237426757813,0,0.956954658031464,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476151943207,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476151943207,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,
- 0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474542617798,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474542617798,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476151943207,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476151943207,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,
- -0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474542617798,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.38268518447876,0,0.923878908157349,-0.38268518447876,0,0.923878908157349,-0.555562913417816,0,0.831474542617798,-0.38268518447876,0,0.923878908157349,-0.200679734349251,0,0.979656875133514,-0.19509120285511,0,0.980785131454468,-0.38268518447876,0,0.923878908157349,-0.200679734349251,0,0.979656875133514,-1.51532753989159e-006,0,1,-1.54227825532871e-006,0,1,-0.19509120285511,0,0.980785131454468,-1.51532753989159e-006,0,1,0.200678393244743,0,0.979657173156738,0.195089727640152,0,0.980785369873047,-1.54227825532871e-006,0,1,0.200678393244743,0,0.979657173156738,0.382686465978622,0,0.923878252506256,0.382686465978622,0,0.923878252506256,0.195089727640152,0,0.980785369873047,0.382686465978622,0,0.923878252506256,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.382686465978622,0,0.923878252506256,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476151943207,0,0.555560350418091,
- 0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476151943207,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,
- -0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.38268518447876,0,0.923878908157349,-0.555562913417816,0,0.831474423408508,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.22770893573761,-5.88813975355151e-007,0.973729252815247,-0.200679734349251,0,0.979656875133514,-0.38268518447876,0,0.923878908157349,-0.22770893573761,-5.88813975355151e-007,0.973729252815247,-1.47354728596838e-006,0,0.999999940395355,-1.51532753989159e-006,0,1,-0.200679734349251,0,0.979656875133514,-1.47354728596838e-006,0,0.999999940395355,0.227708041667938,-8.87366468305117e-007,0.973729491233826,
- 0.200678393244743,0,0.979657173156738,-1.51532753989159e-006,0,1,0.227708041667938,-8.87366468305117e-007,0.973729491233826,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.382686465978622,0,0.923878252506256,0.200678393244743,0,0.979657173156738,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.382686465978622,0,0.923878252506256,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,
- 0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,
- -0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.555562913417816,0,0.831474423408508,0.290269136428833,-1.04692262539174e-005,0.956945061683655,0.290252298116684,-3.1147117169894e-006,0.956950128078461,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,
- 0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,
- -0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.436507523059845,0,0.89970064163208,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.555562913417816,0,0.831474423408508,0.290252298116684,-3.1147117169894e-006,0.956950128078461,0.290237426757813,0,0.956954658031464,0.436507552862167,0,0.89970064163208,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.431631505489349,-6.68228096856183e-007,0.902050018310547,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.923885583877563,0,-0.382668644189835,0.980784595012665,0,-0.195093840360641,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.831476628780365,0,-0.555559575557709,0.923885583877563,0,-0.382668644189835,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,0.707104384899139,0,-0.707109153270721,0.831476628780365,0,-0.555559575557709,0.707104384899139,0,-0.707109153270721,
- 0.555562913417816,0,-0.831474423408508,0.555562913417816,0,-0.831474423408508,0.707104384899139,0,-0.707109153270721,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.38268518447876,0,-0.923878908157349,0.555562913417816,0,-0.831474423408508,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0.19509120285511,0,-0.980785131454468,0.38268518447876,0,-0.923878908157349,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,0,0,-0.999999940395355,0.19509120285511,0,-0.980785131454468,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.195089712738991,0,-0.980785369873047,0,0,-0.999999940395355,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.38268518447876,0,-0.923878908157349,-0.195089712738991,0,-0.980785369873047,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.555563986301422,0,-0.831473827362061,-0.38268518447876,0,-0.923878908157349,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.707103610038757,0,-0.707110047340393,-0.555563986301422,0,-0.831473827362061,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.831476211547852,0,-0.555560350418091,-0.707103610038757,0,-0.707110047340393,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.923885345458984,0,-0.382669180631638,-0.831476211547852,0,-0.555560350418091,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-0.980784595012665,0,-0.195093870162964,-0.923885345458984,0,-0.382669180631638,-0.980784595012665,0,-0.195093870162964,-1,0,0,-1,0,0,-0.980784595012665,0,-0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.980784595012665,0,0.195093870162964,-1,0,0,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.923885345458984,0,0.382669180631638,-0.980784595012665,0,0.195093870162964,-0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.831477165222168,0,0.555558860301971,
- -0.923885345458984,0,0.382669180631638,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.707105159759521,0,0.707108318805695,-0.831477165222168,0,0.555558860301971,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.555562913417816,0,0.831474423408508,-0.707105159759521,0,0.707108318805695,-0.555562913417816,0,0.831474423408508,-0.436507523059845,0,0.89970064163208,-0.436507523059845,0,0.89970064163208,-0.555562913417816,0,0.831474423408508,0.290237426757813,0,0.956954658031464,0.290237426757813,0,0.956954658031464,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.555563986301422,0,0.831473827362061,0.436507552862167,0,0.89970064163208,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.707103610038757,0,0.707110047340393,0.555563986301422,0,0.831473827362061,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.831476211547852,0,0.555560350418091,0.707103610038757,0,0.707110047340393,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.923885881900787,0,0.382668048143387,0.831476211547852,0,0.555560350418091,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,0.98078465461731,0,0.195093557238579,0.923885881900787,0,0.382668048143387,0.98078465461731,0,0.195093557238579,1,0,0,1,0,0,0.98078465461731,0,0.195093557238579,1,0,0,0.980784595012665,0,-0.195093840360641,0.980784595012665,0,-0.195093840360641,1,0,0,-0.980785012245178,0,0.195091545581818,-0.923888802528381,0,0.382661253213882,-0.923888802528381,0,0.382661253213882,-0.980785012245178,0,0.195091545581818,-0.923888802528381,0,0.382661253213882,-0.83146870136261,0,0.555571615695953,-0.83146870136261,0,0.555571615695953,-0.923888802528381,0,0.382661253213882,-0.83146870136261,0,0.555571615695953,-0.70710963010788,0,0.707103848457336,-0.70710963010788,0,0.707103848457336,-0.83146870136261,0,0.555571615695953,
- -0.70710963010788,0,0.707103848457336,-0.555564641952515,0,0.831473410129547,-0.555564641952515,0,0.831473410129547,-0.70710963010788,0,0.707103848457336,-0.555564641952515,0,0.831473410129547,-0.382682204246521,0,0.923880040645599,-0.382682204246521,0,0.923880040645599,-0.555564641952515,0,0.831473410129547,-0.382682204246521,0,0.923880040645599,-0.195089027285576,0,0.980785548686981,-0.195089027285576,0,0.980785548686981,-0.382682204246521,0,0.923880040645599,-0.195089027285576,0,0.980785548686981,0,0,0.999999940395355,0,0,0.999999940395355,-0.195089027285576,0,0.980785548686981,0,0,0.999999940395355,0.195094853639603,0,0.980784356594086,0.195094853639603,0,0.980784356594086,0,0,0.999999940395355,0.195094853639603,0,0.980784356594086,0.382680624723434,0,0.923880696296692,0.382680624723434,0,0.923880696296692,0.195094853639603,0,0.980784356594086,0.382680624723434,0,0.923880696296692,0.55556321144104,0,0.831474304199219,0.55556321144104,0,0.831474304199219,0.382680624723434,0,0.923880696296692,0.55556321144104,0,0.831474304199219,0.707110702991486,0,0.707102954387665,0.707110702991486,0,0.707102954387665,0.55556321144104,0,0.831474304199219,0.707110702991486,0,0.707102954387665,0.83146870136261,0,0.555571556091309,0.83146870136261,0,0.555571556091309,0.707110702991486,0,0.707102954387665,0.83146870136261,0,0.555571556091309,0.923888206481934,0,0.382662564516068,0.923888206481934,0,0.382662564516068,0.83146870136261,0,0.555571556091309,0.923888206481934,0,0.382662564516068,0.98077929019928,0,0.195120841264725,0.98077929019928,0,0.195120841264725,0.923888206481934,0,0.382662564516068,0.98077929019928,0,0.195120841264725,1,0,0,1,0,0,0.98077929019928,0,0.195120841264725,1,0,0,0.980779349803925,0,-0.195120483636856,0.980779349803925,0,-0.195120483636856,1,0,0,0.980779349803925,0,-0.195120483636856,0.923888802528381,0,-0.382661253213882,0.923888802528381,0,-0.382661253213882,0.980779349803925,0,-0.195120483636856,0.923888802528381,0,-0.382661253213882,0.83146870136261,0,-0.555571675300598,0.83146870136261,0,-0.555571675300598,
- 0.923888802528381,0,-0.382661253213882,0.83146870136261,0,-0.555571675300598,0.707110583782196,0,-0.707102954387665,0.707110583782196,0,-0.707102954387665,0.83146870136261,0,-0.555571675300598,0.707110583782196,0,-0.707102954387665,0.55556458234787,0,-0.831473350524902,0.55556458234787,0,-0.831473350524902,0.707110583782196,0,-0.707102954387665,0.55556458234787,0,-0.831473350524902,0.427647143602371,0,-0.903945803642273,0.437893152236938,-7.80316469217723e-008,-0.899026930332184,0.43718096613884,3.94660233382638e-008,-0.899373650550842,0.55556458234787,0,-0.831473350524902,0.427647143602371,0,-0.903945803642273,0.200683727860451,0,-0.979656040668488,0.224298149347305,-4.16126198388156e-007,-0.974520564079285,0.437893152236938,-7.80316469217723e-008,-0.899026930332184,0.200683727860451,0,-0.979656040668488,1.71153556038917e-006,0,-1,1.71124918324495e-006,0,-1,0.224298149347305,-4.16126198388156e-007,-0.974520564079285,1.71153556038917e-006,0,-1,-0.200677677989006,0,-0.979657351970673,-0.224290579557419,-8.59960920251979e-008,-0.974522292613983,1.71124918324495e-006,0,-1,-0.200677677989006,0,-0.979657351970673,-0.427659690380096,0,-0.903939783573151,-0.43790790438652,-6.9944690039847e-008,-0.899019777774811,-0.224290579557419,-8.59960920251979e-008,-0.974522292613983,-0.43790790438652,-6.9944690039847e-008,-0.899019777774811,-0.427659690380096,0,-0.903939783573151,-0.555564641952515,0,-0.831473290920258,-0.555564641952515,0,-0.831473290920258,-0.437195420265198,-1.90970041558103e-007,-0.899366497993469,-0.555564641952515,0,-0.831473290920258,-0.707110583782196,0,-0.707102954387665,-0.707110583782196,0,-0.707102954387665,-0.555564641952515,0,-0.831473290920258,-0.707110583782196,0,-0.707102954387665,-0.83146870136261,0,-0.555571615695953,-0.83146870136261,0,-0.555571615695953,-0.707110583782196,0,-0.707102954387665,-0.83146870136261,0,-0.555571615695953,-0.923888802528381,0,-0.382661253213882,-0.923888802528381,0,-0.382661253213882,-0.83146870136261,0,-0.555571615695953,-0.923888802528381,0,-0.382661253213882,-0.980785012245178,0,-0.195091545581818,
- -0.980785012245178,0,-0.195091545581818,-0.923888802528381,0,-0.382661253213882,-0.980785012245178,0,-0.195091545581818,-1,0,0,-1,0,0,-0.980785012245178,0,-0.195091545581818,-1,0,0,-0.980785012245178,0,0.195091545581818,-0.980785012245178,0,0.195091545581818,-1,0,0,0.437893152236938,-7.80316469217723e-008,-0.899026930332184,0.224298149347305,-4.16126198388156e-007,-0.974520564079285,0.290312975645065,-1.16945636818855e-006,-0.95693176984787,-0.224290579557419,-8.59960920251979e-008,-0.974522292613983,-0.43790790438652,-6.9944690039847e-008,-0.899019777774811,-0.290299147367477,-1.18468028631469e-006,-0.956935942173004,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,
- 0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.43718096613884,3.94660233382638e-008,-0.899373650550842,0.437893152236938,-7.80316469217723e-008,-0.899026930332184,0.290312975645065,-1.16945636818855e-006,-0.95693176984787,0.290313959121704,2.00602627842272e-007,-0.956931412220001,-0.436507523059845,0,0.89970064163208,-0.290248602628708,0,0.956951200962067,-0.290260910987854,-2.53790699389356e-006,0.956947565078735,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.436507523059845,0,0.89970064163208,-0.290248602628708,0,0.956951200962067,-0.290248602628708,0,0.956951200962067,-0.436507523059845,0,0.89970064163208,-0.436507523059845,0,0.89970064163208,-0.290248602628708,0,0.956951200962067,-0.290248602628708,0,0.956951200962067,-0.436507523059845,0,0.89970064163208,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.431631326675415,-5.44482418263215e-007,0.902050077915192,-0.290260910987854,-2.53790699389356e-006,0.956947565078735,-0.290273874998093,-7.49560740587185e-006,0.95694363117218,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,
- -0.290300101041794,-9.70578298620239e-007,-0.956935703754425,-0.290299147367477,-1.18468028631469e-006,-0.956935942173004,-0.43790790438652,-6.9944690039847e-008,-0.899019777774811,-0.437195420265198,-1.90970041558103e-007,-0.899366497993469,-0.403271079063416,-5.41758595318242e-007,0.915080606937408,-0.290273874998093,-7.49560740587185e-006,0.95694363117218,-0.22770893573761,-5.88813975355151e-007,0.973729252815247,0.227708041667938,-8.87366468305117e-007,0.973729491233826,0.290269136428833,-1.04692262539174e-005,0.956945061683655,0.403272300958633,-7.44816816222738e-007,0.915080070495605,0.960194289684296,0,0.279332786798477,0.960194408893585,-7.79251149651827e-006,0.2793328166008,0.834792792797089,-5.09650044477894e-006,0.550564348697662,0.834769368171692,0,0.550599634647369,0.834792792797089,-5.09650044477894e-006,0.550564348697662,-0.0980015024542809,0,0.995186269283295,-0.0980046689510345,0,0.995185911655426,0.834769368171692,0,0.550599634647369,-0.0980015024542809,0,0.995186269283295,-0.350882828235626,0,0.936419367790222,-0.350883036851883,0,0.936419308185577,-0.0980046689510345,0,0.995185911655426,-0.919250130653381,0,-0.393674254417419,-0.919250011444092,0,-0.393674284219742,-0.919250011444092,0,-0.393674314022064,-0.919250011444092,0,-0.393674314022064,0.960194408893585,-7.79251149651827e-006,0.2793328166008,0.960194289684296,2.39467299252283e-005,0.279332727193832,0.834818005561829,1.55661855387734e-005,0.550526022911072,0.834792792797089,-5.09650044477894e-006,0.550564348697662,0.834818005561829,1.55661855387734e-005,0.550526022911072,-0.0980052798986435,0,0.995185911655426,-0.0980015024542809,0,0.995186269283295,0.834792792797089,-5.09650044477894e-006,0.550564348697662,-0.0980052798986435,0,0.995185911655426,-0.35088312625885,0,0.936419248580933,-0.350882828235626,0,0.936419367790222,-0.0980015024542809,0,0.995186269283295,-0.919246971607208,8.79061008163262e-006,-0.393681347370148,-0.919249951839447,8.72601685841801e-006,-0.393674314022064,-0.919250011444092,0,-0.393674284219742,-0.919250130653381,0,-0.393674254417419,
- 0.960194289684296,2.39467299252283e-005,0.279332727193832,0.960194408893585,5.81113781663589e-005,0.279332607984543,0.834877192974091,3.78472796001006e-005,0.550436437129974,0.834818005561829,1.55661855387734e-005,0.550526022911072,0.834877192974091,3.78472796001006e-005,0.550436437129974,-0.0980079025030136,0,0.995185613632202,-0.0980052798986435,0,0.995185911655426,0.834818005561829,1.55661855387734e-005,0.550526022911072,-0.0980079025030136,0,0.995185613632202,-0.350883394479752,0,0.936419188976288,-0.35088312625885,0,0.936419248580933,-0.0980052798986435,0,0.995185911655426,-0.919250011444092,4.06703009048215e-008,-0.393674284219742,-0.919249951839447,8.72601685841801e-006,-0.393674314022064,-0.919246971607208,8.79061008163262e-006,-0.393681347370148,-0.919244229793549,0,-0.393687784671783,0.834877192974091,3.78472796001006e-005,0.550436437129974,0.960194408893585,5.81113781663589e-005,0.279332607984543,0.96019434928894,2.44997809204506e-005,0.279332756996155,0.834872603416443,1.59924038598547e-005,0.550443291664124,-0.0980079025030136,0,0.995185613632202,0.834877192974091,3.78472796001006e-005,0.550436437129974,0.834872603416443,1.59924038598547e-005,0.550443291664124,-0.0980067998170853,6.77121249736956e-007,0.995185732841492,-0.350883394479752,0,0.936419188976288,-0.0980079025030136,0,0.995185613632202,-0.0980067998170853,6.77121249736956e-007,0.995185732841492,-0.350884109735489,9.0596734025894e-007,0.936418950557709,-0.919250249862671,-8.41345695334894e-007,-0.393673568964005,-0.919249892234802,-4.20658693656151e-007,-0.393674671649933,-0.919250011444092,4.06703009048215e-008,-0.393674284219742,-0.919244229793549,0,-0.393687784671783,0.960171759128571,-0.0286025740206242,0.277942359447479,0.948754251003265,-0.168340712785721,0.267444670200348,0.813978016376495,-0.169752448797226,0.55553925037384,0.832417547702789,-0.0292899683117867,0.553374409675598,0.813978016376495,-0.169752448797226,0.55553925037384,-0.143026977777481,-0.0364851281046867,0.989046096801758,-0.113963142037392,-0.00737691065296531,0.993457615375519,
- 0.832417547702789,-0.0292899683117867,0.553374409675598,-0.143026977777481,-0.0364851281046867,0.989046096801758,-0.341118782758713,-0.000948682485613972,0.94001966714859,-0.349268406629562,-0.000208403973374516,0.937022686004639,-0.113963142037392,-0.00737691065296531,0.993457615375519,-0.907332897186279,0.18955671787262,-0.375253558158875,-0.908873021602631,0.180796653032303,-0.375848650932312,-0.919475972652435,0.0362487360835075,-0.391471654176712,-0.919405519962311,0.0381124950945377,-0.391460031270981,0.834872603416443,1.59924038598547e-005,0.550443291664124,0.96019434928894,2.44997809204506e-005,0.279332756996155,0.96019434928894,-7.37505888537271e-006,0.279332846403122,0.834872424602509,-4.88409295940073e-006,0.550443470478058,-0.0980067998170853,6.77121249736956e-007,0.995185732841492,0.834872603416443,1.59924038598547e-005,0.550443291664124,0.834872424602509,-4.88409295940073e-006,0.550443470478058,-0.0980051755905151,6.21714548287855e-007,0.995185852050781,-0.350884109735489,9.0596734025894e-007,0.936418950557709,-0.0980067998170853,6.77121249736956e-007,0.995185732841492,-0.0980051755905151,6.21714548287855e-007,0.995185852050781,-0.350885480642319,8.31852219107532e-007,0.936418354511261,-0.919257879257202,7.30029751139227e-006,-0.393655866384506,-0.919249594211578,7.59090380597627e-006,-0.393675237894058,-0.919249892234802,-4.20658693656151e-007,-0.393674671649933,-0.919250249862671,-8.41345695334894e-007,-0.393673568964005,0.834872424602509,-4.88409295940073e-006,0.550443470478058,0.96019434928894,-7.37505888537271e-006,0.279332846403122,0.960194408893585,-1.52784596139099e-005,0.279332756996155,0.834863364696503,-9.99392614176031e-006,0.550457239151001,-0.0980051755905151,6.21714548287855e-007,0.995185852050781,0.834872424602509,-4.88409295940073e-006,0.550443470478058,0.834863364696503,-9.99392614176031e-006,0.550457239151001,-0.0980013981461525,0,0.99518620967865,-0.350885480642319,8.31852219107532e-007,0.936418354511261,-0.0980051755905151,6.21714548287855e-007,0.995185852050781,-0.0980013981461525,0,0.99518620967865,
- -0.350886017084122,0,0.936418175697327,-0.919260621070862,0,-0.393649399280548,-0.919249415397644,0,-0.393675535917282,-0.919249594211578,7.59090380597627e-006,-0.393675237894058,-0.919257879257202,7.30029751139227e-006,-0.393655866384506,0.834863364696503,-9.99392614176031e-006,0.550457239151001,0.960194408893585,-1.52784596139099e-005,0.279332756996155,0.960194408893585,-1.62742580869235e-005,0.279332637786865,0.834855079650879,-1.05956978586619e-005,0.550469815731049,-0.0980013981461525,0,0.99518620967865,0.834863364696503,-9.99392614176031e-006,0.550457239151001,0.834855079650879,-1.05956978586619e-005,0.550469815731049,-0.0979997366666794,0,0.995186448097229,-0.350886017084122,0,0.936418175697327,-0.0980013981461525,0,0.99518620967865,-0.0979997366666794,0,0.995186448097229,-0.350886076688766,0,0.936418175697327,-0.919260561466217,0,-0.39364966750145,-0.919249475002289,0,-0.393675625324249,-0.919249415397644,0,-0.393675535917282,-0.919260621070862,0,-0.393649399280548,0.834855079650879,-1.05956978586619e-005,0.550469815731049,0.960194408893585,-1.62742580869235e-005,0.279332637786865,0.960194408893585,-7.83353425504174e-006,0.27933269739151,0.834831058979034,-5.15753481522552e-006,0.550506234169006,-0.0979997366666794,0,0.995186448097229,0.834855079650879,-1.05956978586619e-005,0.550469815731049,0.834831058979034,-5.15753481522552e-006,0.550506234169006,-0.0979994833469391,-6.67993276692869e-007,0.995186507701874,-0.350886076688766,0,0.936418175697327,-0.0979997366666794,0,0.995186448097229,-0.0979994833469391,-6.67993276692869e-007,0.995186507701874,-0.350885629653931,-8.93779770194669e-007,0.936418354511261,-0.919254541397095,8.29955524750403e-007,-0.393663763999939,-0.919249594211578,4.14975943385798e-007,-0.393675148487091,-0.919249475002289,0,-0.393675625324249,-0.919260561466217,0,-0.39364966750145,0.834831058979034,-5.15753481522552e-006,0.550506234169006,0.960194408893585,-7.83353425504174e-006,0.27933269739151,0.960171759128571,-0.0286025740206242,0.277942359447479,0.832417547702789,-0.0292899683117867,0.553374409675598,
- -0.0979994833469391,-6.67993276692869e-007,0.995186507701874,0.834831058979034,-5.15753481522552e-006,0.550506234169006,0.832417547702789,-0.0292899683117867,0.553374409675598,-0.113963142037392,-0.00737691065296531,0.993457615375519,-0.350885629653931,-8.93779770194669e-007,0.936418354511261,-0.0979994833469391,-6.67993276692869e-007,0.995186507701874,-0.113963142037392,-0.00737691065296531,0.993457615375519,-0.349268406629562,-0.000208403973374516,0.937022686004639,-0.919405519962311,0.0381124950945377,-0.391460031270981,-0.919475972652435,0.0362487360835075,-0.391471654176712,-0.919249594211578,4.14975943385798e-007,-0.393675148487091,-0.919254541397095,8.29955524750403e-007,-0.393663763999939,0.948754251003265,-0.168340712785721,0.267444670200348,0.862244009971619,-0.456990838050842,0.218390882015228,0.730688154697418,-0.454377293586731,0.509544968605042,0.813978016376495,-0.169752448797226,0.55553925037384,0.730688154697418,-0.454377293586731,0.509544968605042,-0.137312263250351,-0.0918366834521294,0.986261308193207,-0.143026977777481,-0.0364851281046867,0.989046096801758,0.813978016376495,-0.169752448797226,0.55553925037384,-0.137312263250351,-0.0918366834521294,0.986261308193207,-0.311497241258621,-0.00118851859588176,0.950246274471283,-0.341118782758713,-0.000948682485613972,0.94001966714859,-0.143026977777481,-0.0364851281046867,0.989046096801758,-0.825407743453979,0.474497467279434,-0.305866241455078,-0.8340904712677,0.456989616155624,-0.308955669403076,-0.908873021602631,0.180796653032303,-0.375848650932312,-0.907332897186279,0.18955671787262,-0.375253558158875,0.862244009971619,-0.456990838050842,0.218390882015228,0.724181890487671,-0.672362208366394,0.153263300657272,0.605872571468353,-0.658866107463837,0.445885449647903,0.730688154697418,-0.454377293586731,0.509544968605042,0.605872571468353,-0.658866107463837,0.445885449647903,-0.113147050142288,-0.134463503956795,0.984437465667725,-0.137312263250351,-0.0918366834521294,0.986261308193207,0.730688154697418,-0.454377293586731,0.509544968605042,-0.113147050142288,-0.134463503956795,0.984437465667725,
- -0.263008803129196,0.000309916620608419,0.964793384075165,-0.311497241258621,-0.00118851859588176,0.950246274471283,-0.137312263250351,-0.0918366834521294,0.986261308193207,-0.691706657409668,0.690053105354309,-0.212999135255814,-0.707322359085083,0.672542870044708,-0.217672139406204,-0.8340904712677,0.456989616155624,-0.308955669403076,-0.825407743453979,0.474497467279434,-0.305866241455078,0.724181890487671,-0.672362208366394,0.153263300657272,0.50816798210144,-0.857827842235565,0.0767904818058014,0.418874263763428,-0.82781845331192,0.373176872730255,0.605872571468353,-0.658866107463837,0.445885449647903,0.418874263763428,-0.82781845331192,0.373176872730255,-0.0786085575819016,-0.170098125934601,0.982286751270294,-0.113147050142288,-0.134463503956795,0.984437465667725,0.605872571468353,-0.658866107463837,0.445885449647903,-0.0786085575819016,-0.170098125934601,0.982286751270294,-0.186923801898956,0.0032045163679868,0.982369184494019,-0.263008803129196,0.000309916620608419,0.964793384075165,-0.113147050142288,-0.134463503956795,0.984437465667725,-0.484225422143936,0.868495285511017,-0.106026984751225,-0.501748323440552,0.858021974563599,-0.109758958220482,-0.707322359085083,0.672542870044708,-0.217672139406204,-0.691706657409668,0.690053105354309,-0.212999135255814,0.50816798210144,-0.857827842235565,0.0767904818058014,0.257756650447845,-0.965932071208954,0.0231719277799129,0.210292339324951,-0.922383248806,0.324015945196152,0.418874263763428,-0.82781845331192,0.373176872730255,0.210292339324951,-0.922383248806,0.324015945196152,-0.039786122739315,-0.189512267708778,0.981071949005127,-0.0786085575819016,-0.170098125934601,0.982286751270294,0.418874263763428,-0.82781845331192,0.373176872730255,-0.039786122739315,-0.189512267708778,0.981071949005127,-0.0957331508398056,0.00611377507448196,0.995388269424438,-0.186923801898956,0.0032045163679868,0.982369184494019,-0.0786085575819016,-0.170098125934601,0.982286751270294,-0.245281800627708,0.968914270401001,-0.0322775468230248,-0.256373196840286,0.965990304946899,-0.0336987189948559,
- -0.501748323440552,0.858021974563599,-0.109758958220482,-0.484225422143936,0.868495285511017,-0.106026984751225,0.257756650447845,-0.965932071208954,0.0231719277799129,-0.0328901670873165,-0.999441683292389,0.00588260032236576,-0.0267735086381435,-0.950506508350372,0.30954897403717,0.210292339324951,-0.922383248806,0.324015945196152,-0.0267735086381435,-0.950506508350372,0.30954897403717,0.00518622854724526,-0.192625150084496,0.981258630752563,-0.039786122739315,-0.189512267708778,0.981071949005127,0.210292339324951,-0.922383248806,0.324015945196152,0.00518622854724526,-0.192625150084496,0.981258630752563,0.0113917831331491,0.00834222976118326,0.999900281429291,-0.0957331508398056,0.00611377507448196,0.995388269424438,-0.039786122739315,-0.189512267708778,0.981071949005127,0.0326672606170177,0.999424397945404,-0.00914334692060947,-0.256373196840286,0.965990304946899,-0.0336987189948559,-0.245281800627708,0.968914270401001,-0.0322775468230248,0.0308185145258904,0.999486982822418,-0.00871466100215912,-0.0267735086381435,-0.950506508350372,0.30954897403717,-0.0328901670873165,-0.999441683292389,0.00588260032236576,-0.307985097169876,-0.950865685939789,0.0316163040697575,-0.251284599304199,-0.908775746822357,0.333140760660172,0.00518622854724526,-0.192625150084496,0.981258630752563,-0.0267735086381435,-0.950506508350372,0.30954897403717,-0.251284599304199,-0.908775746822357,0.333140760660172,0.047246053814888,-0.183072730898857,0.981963396072388,0.0113917831331491,0.00834222976118326,0.999900281429291,0.00518622854724526,-0.192625150084496,0.981258630752563,0.047246053814888,-0.183072730898857,0.981963396072388,0.113859586417675,0.00690072309225798,0.993472933769226,0.293114393949509,0.955067276954651,-0.0439354702830315,0.305614590644836,0.951056182384491,-0.0457366444170475,0.0326672606170177,0.999424397945404,-0.00914334692060947,0.0308185145258904,0.999486982822418,-0.00871466100215912,-0.960419476032257,-0.00410073855891824,0.278527617454529,-0.96037495136261,1.47999726323178e-005,0.278711408376694,-0.83517062664032,9.63533693720819e-006,0.549990892410278,
- -0.834545850753784,-0.00422297045588493,0.550922393798828,-0.83517062664032,9.63533693720819e-006,0.549990892410278,0.0973716229200363,-1.35941147227925e-010,0.995248079299927,0.102426610887051,-0.00114662386476994,0.994739949703217,-0.834545850753784,-0.00422297045588493,0.550922393798828,0.0973716229200363,-1.35941147227925e-010,0.995248079299927,0.350287288427353,2.399641629066e-013,0.936642289161682,0.350059002637863,-3.382577051525e-005,0.936727702617645,0.102426610887051,-0.00114662386476994,0.994739949703217,0.919499039649963,7.99201461632038e-006,-0.3930923640728,0.919503271579742,7.89479054219555e-006,-0.393082439899445,0.919599413871765,0.00562876835465431,-0.392817169427872,0.919594049453735,0.00591860665008426,-0.392825484275818,-0.251284599304199,-0.908775746822357,0.333140760660172,-0.307985097169876,-0.950865685939789,0.0316163040697575,-0.579253733158112,-0.809160590171814,0.098611943423748,-0.479263365268707,-0.784126579761505,0.394274473190308,0.047246053814888,-0.183072730898857,0.981963396072388,-0.251284599304199,-0.908775746822357,0.333140760660172,-0.479263365268707,-0.784126579761505,0.394274473190308,0.0896510779857636,-0.159422770142555,0.983131170272827,0.113859586417675,0.00690072309225798,0.993472933769226,0.047246053814888,-0.183072730898857,0.981963396072388,0.0896510779857636,-0.159422770142555,0.983131170272827,0.211339771747589,0.00277347397059202,0.977408766746521,0.55203777551651,0.822590231895447,-0.136380225419998,0.569850146770477,0.809620082378387,-0.140663459897041,0.305614590644836,0.951056182384491,-0.0457366444170475,0.293114393949509,0.955067276954651,-0.0439354702830315,-0.479263365268707,-0.784126579761505,0.394274473190308,-0.579253733158112,-0.809160590171814,0.098611943423748,-0.770087420940399,-0.61409193277359,0.172790333628654,-0.646501839160919,-0.604658961296082,0.465212732553482,0.0896510779857636,-0.159422770142555,0.983131170272827,-0.479263365268707,-0.784126579761505,0.394274473190308,-0.646501839160919,-0.604658961296082,0.465212732553482,0.121241986751556,-0.121922209858894,0.985106825828552,
- 0.211339771747589,0.00277347397059202,0.977408766746521,0.0896510779857636,-0.159422770142555,0.983131170272827,0.121241986751556,-0.121922209858894,0.985106825828552,0.278799414634705,-0.000144720615935512,0.960349380970001,0.736049056053162,0.632624089717865,-0.240870520472527,0.749818861484528,0.614536881446838,-0.245185598731041,0.569850146770477,0.809620082378387,-0.140663459897041,0.55203777551651,0.822590231895447,-0.136380225419998,-0.646501839160919,-0.604658961296082,0.465212732553482,-0.770087420940399,-0.61409193277359,0.172790333628654,-0.904790222644806,-0.351455092430115,0.240486621856689,-0.771096289157867,-0.351342231035233,0.531007766723633,0.121241986751556,-0.121922209858894,0.985106825828552,-0.646501839160919,-0.604658961296082,0.465212732553482,-0.771096289157867,-0.351342231035233,0.531007766723633,0.142157271504402,-0.0718193650245667,0.987235188484192,0.278799414634705,-0.000144720615935512,0.960349380970001,0.121241986751556,-0.121922209858894,0.985106825828552,0.142157271504402,-0.0718193650245667,0.987235188484192,0.324568837881088,-0.00139763788320124,0.945861160755157,0.866738677024841,0.366884589195251,-0.337875366210938,0.872191369533539,0.351739257574081,-0.339943647384644,0.749818861484528,0.614536881446838,-0.245185598731041,0.736049056053162,0.632624089717865,-0.240870520472527,-0.771096289157867,-0.351342231035233,0.531007766723633,-0.904790222644806,-0.351455092430115,0.240486621856689,-0.955938935279846,-0.109388135373592,0.272424131631851,-0.823068499565125,-0.111700780689716,0.556849360466003,0.142157271504402,-0.0718193650245667,0.987235188484192,-0.771096289157867,-0.351342231035233,0.531007766723633,-0.823068499565125,-0.111700780689716,0.556849360466003,0.135844752192497,-0.0246553812175989,0.990423262119293,0.324568837881088,-0.00139763788320124,0.945861160755157,0.142157271504402,-0.0718193650245667,0.987235188484192,0.135844752192497,-0.0246553812175989,0.990423262119293,0.34454756975174,-0.000661460333503783,0.938768625259399,0.914613723754883,0.130758047103882,-0.382601737976074,
- 0.915348768234253,0.124562747776508,-0.382910907268524,0.872191369533539,0.351739257574081,-0.339943647384644,0.866738677024841,0.366884589195251,-0.337875366210938,-0.823068499565125,-0.111700780689716,0.556849360466003,-0.955938935279846,-0.109388135373592,0.272424131631851,-0.960419476032257,-0.00410073855891824,0.278527617454529,-0.834545850753784,-0.00422297045588493,0.550922393798828,0.135844752192497,-0.0246553812175989,0.990423262119293,-0.823068499565125,-0.111700780689716,0.556849360466003,-0.834545850753784,-0.00422297045588493,0.550922393798828,0.102426610887051,-0.00114662386476994,0.994739949703217,0.34454756975174,-0.000661460333503783,0.938768625259399,0.135844752192497,-0.0246553812175989,0.990423262119293,0.102426610887051,-0.00114662386476994,0.994739949703217,0.350059002637863,-3.382577051525e-005,0.936727702617645,0.919594049453735,0.00591860665008426,-0.392825484275818,0.919599413871765,0.00562876835465431,-0.392817169427872,0.915348768234253,0.124562747776508,-0.382910907268524,0.914613723754883,0.130758047103882,-0.382601737976074,-0.96037495136261,1.47999726323178e-005,0.278711408376694,-0.960374891757965,1.5768075172673e-005,0.278711408376694,-0.835150301456451,1.25618353195023e-005,0.550021886825562,-0.83517062664032,9.63533693720819e-006,0.549990892410278,-0.835150301456451,1.25618353195023e-005,0.550021886825562,0.0973642393946648,1.13149530989176e-006,0.995248794555664,0.0973716229200363,-1.35941147227925e-010,0.995248079299927,-0.83517062664032,9.63533693720819e-006,0.549990892410278,0.0973642393946648,1.13149530989176e-006,0.995248794555664,0.35028663277626,-9.10361450223718e-007,0.936642527580261,0.350287288427353,2.399641629066e-013,0.936642289161682,0.0973716229200363,-1.35941147227925e-010,0.995248079299927,0.91950523853302,8.4336625150172e-006,-0.39307776093483,0.919503211975098,8.33076592243742e-006,-0.393082499504089,0.919503271579742,7.89479054219555e-006,-0.393082439899445,0.919499039649963,7.99201461632038e-006,-0.3930923640728,-0.960374891757965,1.5768075172673e-005,0.278711408376694,
- -0.960374891757965,7.48497677705018e-006,0.278711408376694,-0.83514791727066,4.85270629724255e-006,0.550025403499603,-0.835150301456451,1.25618353195023e-005,0.550021886825562,-0.83514791727066,4.85270629724255e-006,0.550025403499603,0.0973646193742752,0,0.995248854160309,0.0973642393946648,1.13149530989176e-006,0.995248794555664,-0.835150301456451,1.25618353195023e-005,0.550021886825562,0.0973646193742752,0,0.995248854160309,0.350286036729813,0,0.93664276599884,0.35028663277626,-9.10361450223718e-007,0.936642527580261,0.0973642393946648,1.13149530989176e-006,0.995248794555664,0.91950798034668,0,-0.393071413040161,0.919503152370453,0,-0.393082559108734,0.919503211975098,8.33076592243742e-006,-0.393082499504089,0.91950523853302,8.4336625150172e-006,-0.39307776093483,-0.960374891757965,7.48497677705018e-006,0.278711408376694,-0.960374891757965,7.17780358172604e-006,0.278711378574371,-0.835141479969025,4.69440101369401e-006,0.550035178661346,-0.83514791727066,4.85270629724255e-006,0.550025403499603,-0.835141479969025,4.69440101369401e-006,0.550035178661346,0.0973645150661469,0,0.995248854160309,0.0973646193742752,0,0.995248854160309,-0.83514791727066,4.85270629724255e-006,0.550025403499603,0.0973645150661469,0,0.995248854160309,0.350285828113556,0,0.936642825603485,0.350286036729813,0,0.93664276599884,0.0973646193742752,0,0.995248854160309,0.919507920742035,0,-0.393071234226227,0.919503211975098,0,-0.393082529306412,0.919503152370453,0,-0.393082559108734,0.91950798034668,0,-0.393071413040161,-0.960374891757965,7.17780358172604e-006,0.278711378574371,-0.960374891757965,-2.12429295061156e-005,0.278711318969727,-0.835166990756989,-1.38060750032309e-005,0.549996435642242,-0.835141479969025,4.69440101369401e-006,0.550035178661346,-0.835166990756989,-1.38060750032309e-005,0.549996435642242,0.0973669812083244,0,0.99524849653244,0.0973645150661469,0,0.995248854160309,-0.835141479969025,4.69440101369401e-006,0.550035178661346,0.0973669812083244,0,0.99524849653244,0.350285828113556,0,0.93664288520813,0.350285828113556,0,0.936642825603485,
- 0.0973645150661469,0,0.995248854160309,0.919505178928375,-7.61141654948005e-006,-0.393077850341797,0.919503152370453,-7.55556766307564e-006,-0.393082439899445,0.919503211975098,0,-0.393082529306412,0.919507920742035,0,-0.393071234226227,-0.960374891757965,-2.12429295061156e-005,0.278711318969727,-0.96037495136261,-4.92741819471121e-005,0.278711289167404,-0.835218191146851,-3.20926264976151e-005,0.549918532371521,-0.835166990756989,-1.38060750032309e-005,0.549996435642242,-0.835218191146851,-3.20926264976151e-005,0.549918532371521,0.0973673462867737,0,0.99524849653244,0.0973669812083244,0,0.99524849653244,-0.835166990756989,-1.38060750032309e-005,0.549996435642242,0.0973673462867737,0,0.99524849653244,0.350285887718201,0,0.93664276599884,0.350285828113556,0,0.93664288520813,0.0973669812083244,0,0.99524849653244,0.919503152370453,-3.61809568971694e-008,-0.393082469701767,0.919503152370453,-7.55556766307564e-006,-0.393082439899445,0.919505178928375,-7.61141654948005e-006,-0.393077850341797,0.919502198696136,0,-0.393084734678268,-0.835218191146851,-3.20926264976151e-005,0.549918532371521,-0.96037495136261,-4.92741819471121e-005,0.278711289167404,-0.96037495136261,-2.05837586690905e-005,0.278711318969727,-0.835233688354492,-1.34338770294562e-005,0.549895167350769,0.0973673462867737,0,0.99524849653244,-0.835218191146851,-3.20926264976151e-005,0.549918532371521,-0.835233688354492,-1.34338770294562e-005,0.549895167350769,0.0973652452230453,5.94112577800843e-007,0.995248675346375,0.350285887718201,0,0.93664276599884,0.0973673462867737,0,0.99524849653244,0.0973652452230453,5.94112577800843e-007,0.995248675346375,0.350285023450851,7.94912011770066e-007,0.936643183231354,0.919508039951324,7.29220372974737e-009,-0.393071174621582,0.919503331184387,1.79515012632692e-007,-0.393082171678543,0.919503152370453,-3.61809568971694e-008,-0.393082469701767,0.919502198696136,0,-0.393084734678268,-0.835233688354492,-1.34338770294562e-005,0.549895167350769,-0.96037495136261,-2.05837586690905e-005,0.278711318969727,-0.96037495136261,0,0.278711289167404,
- -0.835335731506348,0,0.549740195274353,0.0973652452230453,5.94112577800843e-007,0.995248675346375,-0.835233688354492,-1.34338770294562e-005,0.549895167350769,-0.835335731506348,0,0.549740195274353,0.0973716601729393,1.17734543891856e-006,0.995248079299927,0.350285023450851,7.94912011770066e-007,0.936643183231354,0.0973652452230453,5.94112577800843e-007,0.995248675346375,0.0973716601729393,1.17734543891856e-006,0.995248079299927,0.350284099578857,1.57526562816201e-006,0.936643481254578,0.919513761997223,-1.4274394743552e-005,-0.39305779337883,0.919503390789032,-1.37587794597493e-005,-0.393081814050674,0.919503331184387,1.79515012632692e-007,-0.393082171678543,0.919508039951324,7.29220372974737e-009,-0.393071174621582,0.960194289684296,0,0.279332786798477,0.999212086200714,0,0.0396896079182625,0.999210715293884,-5.08408220412093e-006,0.0397233888506889,0.960194408893585,-7.79251149651827e-006,0.2793328166008,0.999210715293884,-5.08408220412093e-006,0.0397233888506889,0.999212086200714,0,0.0396896079182625,0.59214973449707,0,-0.805827915668488,0.592151880264282,0,-0.805826306343079,0.592151880264282,0,-0.805826306343079,0.59214973449707,0,-0.805827915668488,0.350889921188354,0,-0.936416685581207,0.350889444351196,0,-0.936416923999786,-0.919249892234802,0,-0.393674284219742,-0.919250011444092,0,-0.393674314022064,-0.919250011444092,0,-0.393674314022064,-0.919250011444092,0,-0.393674284219742,0.960194408893585,-7.79251149651827e-006,0.2793328166008,0.999210715293884,-5.08408220412093e-006,0.0397233888506889,0.999209046363831,1.57301365106832e-005,0.039763830602169,0.960194289684296,2.39467299252283e-005,0.279332727193832,0.999209046363831,1.57301365106832e-005,0.039763830602169,0.999210715293884,-5.08408220412093e-006,0.0397233888506889,0.592151880264282,0,-0.805826306343079,0.592148959636688,0,-0.805828511714935,0.592148959636688,0,-0.805828511714935,0.592151880264282,0,-0.805826306343079,0.350889444351196,0,-0.936416923999786,0.350888729095459,0,-0.936417102813721,-0.919252991676331,8.66030222823611e-006,-0.393667340278625,
- -0.919249892234802,0,-0.393674284219742,-0.919250011444092,0,-0.393674284219742,-0.919249951839447,8.72601685841801e-006,-0.393674314022064,0.960194289684296,2.39467299252283e-005,0.279332727193832,0.999209046363831,1.57301365106832e-005,0.039763830602169,0.999205052852631,3.81250429200009e-005,0.0398644730448723,0.960194408893585,5.81113781663589e-005,0.279332607984543,0.999205052852631,3.81250429200009e-005,0.0398644730448723,0.999209046363831,1.57301365106832e-005,0.039763830602169,0.592148959636688,0,-0.805828511714935,0.592147052288055,0,-0.805829882621765,0.592147052288055,0,-0.805829882621765,0.592148959636688,0,-0.805828511714935,0.350888729095459,0,-0.936417102813721,0.350888907909393,0,-0.936417102813721,-0.919250011444092,4.06703009048215e-008,-0.393674284219742,-0.91925573348999,8.13415894640457e-008,-0.393660843372345,-0.919252991676331,8.66030222823611e-006,-0.393667340278625,-0.919249951839447,8.72601685841801e-006,-0.393674314022064,0.999205052852631,3.81250429200009e-005,0.0398644730448723,0.999204814434052,1.61113839567406e-005,0.0398708917200565,0.96019434928894,2.44997809204506e-005,0.279332756996155,0.960194408893585,5.81113781663589e-005,0.279332607984543,0.592147052288055,0,-0.805829882621765,0.592148244380951,6.52366452413844e-007,-0.805829107761383,0.999204814434052,1.61113839567406e-005,0.0398708917200565,0.999205052852631,3.81250429200009e-005,0.0398644730448723,0.350888907909393,0,-0.936417102813721,0.350888431072235,9.13535188828973e-007,-0.9364173412323,0.592148244380951,6.52366452413844e-007,-0.805829107761383,0.592147052288055,0,-0.805829882621765,-0.919249355792999,-8.13438726099402e-012,-0.393675625324249,-0.91925573348999,8.13415894640457e-008,-0.393660843372345,-0.919250011444092,4.06703009048215e-008,-0.393674284219742,-0.919249892234802,-4.20658693656151e-007,-0.393674671649933,0.960171759128571,-0.0286025740206242,0.277942359447479,0.999042630195618,-0.0265393126755953,0.0347798615694046,0.988032400608063,-0.153692126274109,0.0130685465410352,0.948754251003265,-0.168340712785721,0.267444670200348,
- 0.988032400608063,-0.153692126274109,0.0130685465410352,0.999042630195618,-0.0265393126755953,0.0347798615694046,0.577409863471985,-0.00706408778205514,-0.816423892974854,0.539352774620056,-0.0363827906548977,-0.841293573379517,0.539352774620056,-0.0363827906548977,-0.841293573379517,0.577409863471985,-0.00706408778205514,-0.816423892974854,0.349262326955795,0.000170332947163843,-0.937024891376495,0.340717285871506,0.000802388181909919,-0.940165400505066,-0.910360455513,0.1718969643116,-0.37642440199852,-0.919543147087097,0.0343830548226833,-0.391481965780258,-0.919475972652435,0.0362487360835075,-0.391471654176712,-0.908873021602631,0.180796653032303,-0.375848650932312,0.999204814434052,1.61113839567406e-005,0.0398708917200565,0.999204754829407,-4.73475802209578e-006,0.039872583001852,0.96019434928894,-7.37505888537271e-006,0.279332846403122,0.96019434928894,2.44997809204506e-005,0.279332756996155,0.592148244380951,6.52366452413844e-007,-0.805829107761383,0.592150092124939,5.98986957811576e-007,-0.805827617645264,0.999204754829407,-4.73475802209578e-006,0.039872583001852,0.999204814434052,1.61113839567406e-005,0.0398708917200565,0.350888431072235,9.13535188828973e-007,-0.9364173412323,0.350886881351471,8.38806045067031e-007,-0.936417877674103,0.592150092124939,5.98986957811576e-007,-0.805827617645264,0.592148244380951,6.52366452413844e-007,-0.805829107761383,-0.919241309165955,7.88051602285123e-006,-0.393694639205933,-0.919249355792999,-8.13438726099402e-012,-0.393675625324249,-0.919249892234802,-4.20658693656151e-007,-0.393674671649933,-0.919249594211578,7.59090380597627e-006,-0.393675237894058,0.999204754829407,-4.73475802209578e-006,0.039872583001852,0.999205410480499,-9.97479583020322e-006,0.0398554280400276,0.960194408893585,-1.52784596139099e-005,0.279332756996155,0.96019434928894,-7.37505888537271e-006,0.279332846403122,0.592150092124939,5.98986957811576e-007,-0.805827617645264,0.592153191566467,0,-0.805825412273407,0.999205410480499,-9.97479583020322e-006,0.0398554280400276,0.999204754829407,-4.73475802209578e-006,0.039872583001852,
- 0.350886881351471,8.38806045067031e-007,-0.936417877674103,0.350885927677155,0,-0.936418294906616,0.592153191566467,0,-0.805825412273407,0.592150092124939,5.98986957811576e-007,-0.805827617645264,-0.919238269329071,0,-0.393701642751694,-0.919241309165955,7.88051602285123e-006,-0.393694639205933,-0.919249594211578,7.59090380597627e-006,-0.393675237894058,-0.919249415397644,0,-0.393675535917282,0.999205410480499,-9.97479583020322e-006,0.0398554280400276,0.999206185340881,-1.06746856545215e-005,0.0398388057947159,0.960194408893585,-1.62742580869235e-005,0.279332637786865,0.960194408893585,-1.52784596139099e-005,0.279332756996155,0.592153191566467,0,-0.805825412273407,0.592154264450073,0,-0.80582457780838,0.999206185340881,-1.06746856545215e-005,0.0398388057947159,0.999205410480499,-9.97479583020322e-006,0.0398554280400276,0.350885927677155,0,-0.936418294906616,0.350885599851608,0,-0.936418294906616,0.592154264450073,0,-0.80582457780838,0.592153191566467,0,-0.805825412273407,-0.919238269329071,0,-0.393701493740082,-0.919238269329071,0,-0.393701642751694,-0.919249415397644,0,-0.393675535917282,-0.919249475002289,0,-0.393675625324249,0.999206185340881,-1.06746856545215e-005,0.0398388057947159,0.999207675457001,-5.09598203279893e-006,0.039799127727747,0.960194408893585,-7.83353425504174e-006,0.27933269739151,0.960194408893585,-1.62742580869235e-005,0.279332637786865,0.592154264450073,0,-0.80582457780838,0.592154562473297,-6.4357311657659e-007,-0.805824458599091,0.999207675457001,-5.09598203279893e-006,0.039799127727747,0.999206185340881,-1.06746856545215e-005,0.0398388057947159,0.350885599851608,0,-0.936418294906616,0.350886762142181,-9.01251041796058e-007,-0.936417937278748,0.592154562473297,-6.4357311657659e-007,-0.805824458599091,0.592154264450073,0,-0.80582457780838,-0.919244766235352,0,-0.39368662238121,-0.919238269329071,0,-0.393701493740082,-0.919249475002289,0,-0.393675625324249,-0.919249594211578,4.14975943385798e-007,-0.393675148487091,0.999207675457001,-5.09598203279893e-006,0.039799127727747,0.999042630195618,-0.0265393126755953,0.0347798615694046,
- 0.960171759128571,-0.0286025740206242,0.277942359447479,0.960194408893585,-7.83353425504174e-006,0.27933269739151,0.592154562473297,-6.4357311657659e-007,-0.805824458599091,0.577409863471985,-0.00706408778205514,-0.816423892974854,0.999042630195618,-0.0265393126755953,0.0347798615694046,0.999207675457001,-5.09598203279893e-006,0.039799127727747,0.350886762142181,-9.01251041796058e-007,-0.936417937278748,0.349262326955795,0.000170332947163843,-0.937024891376495,0.577409863471985,-0.00706408778205514,-0.816423892974854,0.592154562473297,-6.4357311657659e-007,-0.805824458599091,-0.919543147087097,0.0343830548226833,-0.391481965780258,-0.919244766235352,0,-0.39368662238121,-0.919249594211578,4.14975943385798e-007,-0.393675148487091,-0.919475972652435,0.0362487360835075,-0.391471654176712,0.948754251003265,-0.168340712785721,0.267444670200348,0.988032400608063,-0.153692126274109,0.0130685465410352,0.906482100486755,-0.420614749193192,-0.0370568633079529,0.862244009971619,-0.456990838050842,0.218390882015228,0.906482100486755,-0.420614749193192,-0.0370568633079529,0.988032400608063,-0.153692126274109,0.0130685465410352,0.539352774620056,-0.0363827906548977,-0.841293573379517,0.487637251615524,-0.0958764553070068,-0.867765963077545,0.487637251615524,-0.0958764553070068,-0.867765963077545,0.539352774620056,-0.0363827906548977,-0.841293573379517,0.340717285871506,0.000802388181909919,-0.940165400505066,0.309291183948517,0.000925724394619465,-0.950966894626617,-0.84285032749176,0.438411325216293,-0.312087744474411,-0.910360455513,0.1718969643116,-0.37642440199852,-0.908873021602631,0.180796653032303,-0.375848650932312,-0.8340904712677,0.456989616155624,-0.308955669403076,0.862244009971619,-0.456990838050842,0.218390882015228,0.906482100486755,-0.420614749193192,-0.0370568633079529,0.772148787975311,-0.626674175262451,-0.105193562805653,0.724181890487671,-0.672362208366394,0.153263300657272,0.772148787975311,-0.626674175262451,-0.105193562805653,0.906482100486755,-0.420614749193192,-0.0370568633079529,0.487637251615524,-0.0958764553070068,-0.867765963077545,
- 0.409103095531464,-0.140415295958519,-0.901619732379913,0.409103095531464,-0.140415295958519,-0.901619732379913,0.487637251615524,-0.0958764553070068,-0.867765963077545,0.309291183948517,0.000925724394619465,-0.950966894626617,0.258297473192215,-0.00039636655128561,-0.966065347194672,-0.72386223077774,0.653039574623108,-0.222626864910126,-0.84285032749176,0.438411325216293,-0.312087744474411,-0.8340904712677,0.456989616155624,-0.308955669403076,-0.707322359085083,0.672542870044708,-0.217672139406204,0.724181890487671,-0.672362208366394,0.153263300657272,0.772148787975311,-0.626674175262451,-0.105193562805653,0.550919890403748,-0.813613593578339,-0.185796424746513,0.50816798210144,-0.857827842235565,0.0767904818058014,0.550919890403748,-0.813613593578339,-0.185796424746513,0.772148787975311,-0.626674175262451,-0.105193562805653,0.409103095531464,-0.140415295958519,-0.901619732379913,0.290635317564011,-0.182676553726196,-0.939233899116516,0.290635317564011,-0.182676553726196,-0.939233899116516,0.409103095531464,-0.140415295958519,-0.901619732379913,0.258297473192215,-0.00039636655128561,-0.966065347194672,0.181727409362793,-0.00277158198878169,-0.983345031738281,-0.521421194076538,0.845657050609589,-0.113948076963425,-0.72386223077774,0.653039574623108,-0.222626864910126,-0.707322359085083,0.672542870044708,-0.217672139406204,-0.501748323440552,0.858021974563599,-0.109758958220482,0.50816798210144,-0.857827842235565,0.0767904818058014,0.550919890403748,-0.813613593578339,-0.185796424746513,0.282872587442398,-0.927478790283203,-0.24447138607502,0.257756650447845,-0.965932071208954,0.0231719277799129,0.282872587442398,-0.927478790283203,-0.24447138607502,0.550919890403748,-0.813613593578339,-0.185796424746513,0.290635317564011,-0.182676553726196,-0.939233899116516,0.148398488759995,-0.207418039441109,-0.966930985450745,0.148398488759995,-0.207418039441109,-0.966930985450745,0.290635317564011,-0.182676553726196,-0.939233899116516,0.181727409362793,-0.00277158198878169,-0.983345031738281,0.0922992452979088,-0.00503700925037265,-0.995718538761139,
- -0.269352376461029,0.962392330169678,-0.03536057472229,-0.521421194076538,0.845657050609589,-0.113948076963425,-0.501748323440552,0.858021974563599,-0.109758958220482,-0.256373196840286,0.965990304946899,-0.0336987189948559,0.257756650447845,-0.965932071208954,0.0231719277799129,0.282872587442398,-0.927478790283203,-0.24447138607502,-0.0362713821232319,-0.963847279548645,-0.263975381851196,-0.0328901670873165,-0.999441683292389,0.00588260032236576,-0.0362713821232319,-0.963847279548645,-0.263975381851196,0.282872587442398,-0.927478790283203,-0.24447138607502,0.148398488759995,-0.207418039441109,-0.966930985450745,-0.0185864083468914,-0.214333459734917,-0.97658371925354,-0.0185864083468914,-0.214333459734917,-0.97658371925354,0.148398488759995,-0.207418039441109,-0.966930985450745,0.0922992452979088,-0.00503700925037265,-0.995718538761139,-0.0110961999744177,-0.00677741039544344,-0.999915421009064,0.0326672606170177,0.999424397945404,-0.00914334692060947,0.0348142385482788,0.999347150325775,-0.00965418294072151,-0.269352376461029,0.962392330169678,-0.03536057472229,-0.256373196840286,0.965990304946899,-0.0336987189948559,-0.0362713821232319,-0.963847279548645,-0.263975381851196,-0.336784332990646,-0.911731421947479,-0.235206916928291,-0.307985097169876,-0.950865685939789,0.0316163040697575,-0.0328901670873165,-0.999441683292389,0.00588260032236576,-0.0185864083468914,-0.214333459734917,-0.97658371925354,-0.175817266106606,-0.203575059771538,-0.963143587112427,-0.336784332990646,-0.911731421947479,-0.235206916928291,-0.0362713821232319,-0.963847279548645,-0.263975381851196,-0.0110961999744177,-0.00677741039544344,-0.999915421009064,-0.109441623091698,-0.00577192148193717,-0.993976473808289,-0.175817266106606,-0.203575059771538,-0.963143587112427,-0.0185864083468914,-0.214333459734917,-0.97658371925354,0.320283740758896,0.946112215518951,-0.047852486371994,0.0348142385482788,0.999347150325775,-0.00965418294072151,0.0326672606170177,0.999424397945404,-0.00914334692060947,0.305614590644836,0.951056182384491,-0.0457366444170475,
- -0.960419476032257,-0.00410073855891824,0.278527617454529,-0.999273359775543,-0.00382598978467286,0.037920918315649,-0.999234855175018,9.70734981819987e-006,0.0391101539134979,-0.96037495136261,1.47999726323178e-005,0.278711408376694,-0.999234855175018,9.70734981819987e-006,0.0391101539134979,-0.999273359775543,-0.00382598978467286,0.037920918315649,-0.587291419506073,-0.00108802039176226,-0.809374809265137,-0.591627240180969,-1.87294429965235e-010,-0.806211650371552,-0.591627240180969,-1.87294429965235e-010,-0.806211650371552,-0.587291419506073,-0.00108802039176226,-0.809374809265137,-0.350063621997833,2.603806751722e-005,-0.936725974082947,-0.350292891263962,0,-0.93664026260376,0.919507384300232,7.79698348196689e-006,-0.393072605133057,0.919604599475861,0.00533892866224051,-0.392808794975281,0.919599413871765,0.00562876835465431,-0.392817169427872,0.919503271579742,7.89479054219555e-006,-0.393082439899445,-0.336784332990646,-0.911731421947479,-0.235206916928291,-0.624640703201294,-0.763752698898315,-0.162805765867233,-0.579253733158112,-0.809160590171814,0.098611943423748,-0.307985097169876,-0.950865685939789,0.0316163040697575,-0.175817266106606,-0.203575059771538,-0.963143587112427,-0.328270196914673,-0.170526877045631,-0.929063618183136,-0.624640703201294,-0.763752698898315,-0.162805765867233,-0.336784332990646,-0.911731421947479,-0.235206916928291,-0.109441623091698,-0.00577192148193717,-0.993976473808289,-0.205700099468231,-0.00243074633181095,-0.978612005710602,-0.328270196914673,-0.170526877045631,-0.929063618183136,-0.175817266106606,-0.203575059771538,-0.963143587112427,0.58958226442337,0.794511437416077,-0.145410805940628,0.320283740758896,0.946112215518951,-0.047852486371994,0.305614590644836,0.951056182384491,-0.0457366444170475,0.569850146770477,0.809620082378387,-0.140663459897041,-0.624640703201294,-0.763752698898315,-0.162805765867233,-0.81690901517868,-0.570589780807495,-0.0841850191354752,-0.770087420940399,-0.61409193277359,0.172790333628654,-0.579253733158112,-0.809160590171814,0.098611943423748,
- -0.328270196914673,-0.170526877045631,-0.929063618183136,-0.435137867927551,-0.129213958978653,-0.891043603420258,-0.81690901517868,-0.570589780807495,-0.0841850191354752,-0.624640703201294,-0.763752698898315,-0.162805765867233,-0.205700099468231,-0.00243074633181095,-0.978612005710602,-0.274800986051559,-4.09846616094001e-005,-0.961501181125641,-0.435137867927551,-0.129213958978653,-0.891043603420258,-0.328270196914673,-0.170526877045631,-0.929063618183136,0.764254748821259,0.594599545001984,-0.249732151627541,0.58958226442337,0.794511437416077,-0.145410805940628,0.569850146770477,0.809620082378387,-0.140663459897041,0.749818861484528,0.614536881446838,-0.245185598731041,-0.81690901517868,-0.570589780807495,-0.0841850191354752,-0.946697235107422,-0.321746200323105,-0.015608349815011,-0.904790222644806,-0.351455092430115,0.240486621856689,-0.770087420940399,-0.61409193277359,0.172790333628654,-0.435137867927551,-0.129213958978653,-0.891043603420258,-0.507838428020477,-0.0729573741555214,-0.85835736989975,-0.946697235107422,-0.321746200323105,-0.015608349815011,-0.81690901517868,-0.570589780807495,-0.0841850191354752,-0.274800986051559,-4.09846616094001e-005,-0.961501181125641,-0.323076605796814,0.00114613492041826,-0.946372151374817,-0.507838428020477,-0.0729573741555214,-0.85835736989975,-0.435137867927551,-0.129213958978653,-0.891043603420258,0.877581775188446,0.335986942052841,-0.341998696327209,0.764254748821259,0.594599545001984,-0.249732151627541,0.749818861484528,0.614536881446838,-0.245185598731041,0.872191369533539,0.351739257574081,-0.339943647384644,-0.946697235107422,-0.321746200323105,-0.015608349815011,-0.99464339017868,-0.10106248408556,0.0217000152915716,-0.955938935279846,-0.109388135373592,0.272424131631851,-0.904790222644806,-0.351455092430115,0.240486621856689,-0.507838428020477,-0.0729573741555214,-0.85835736989975,-0.552584648132324,-0.0244062580168247,-0.833099365234375,-0.99464339017868,-0.10106248408556,0.0217000152915716,-0.946697235107422,-0.321746200323105,-0.015608349815011,-0.323076605796814,0.00114613492041826,-0.946372151374817,
- -0.34440666437149,0.000549842603504658,-0.938820421695709,-0.552584648132324,-0.0244062580168247,-0.833099365234375,-0.507838428020477,-0.0729573741555214,-0.85835736989975,0.916054248809814,0.118303067982197,-0.383209049701691,0.877581775188446,0.335986942052841,-0.341998696327209,0.872191369533539,0.351739257574081,-0.339943647384644,0.915348768234253,0.124562747776508,-0.382910907268524,-0.99464339017868,-0.10106248408556,0.0217000152915716,-0.999273359775543,-0.00382598978467286,0.037920918315649,-0.960419476032257,-0.00410073855891824,0.278527617454529,-0.955938935279846,-0.109388135373592,0.272424131631851,-0.552584648132324,-0.0244062580168247,-0.833099365234375,-0.587291419506073,-0.00108802039176226,-0.809374809265137,-0.999273359775543,-0.00382598978467286,0.037920918315649,-0.99464339017868,-0.10106248408556,0.0217000152915716,-0.34440666437149,0.000549842603504658,-0.938820421695709,-0.350063621997833,2.603806751722e-005,-0.936725974082947,-0.587291419506073,-0.00108802039176226,-0.809374809265137,-0.552584648132324,-0.0244062580168247,-0.833099365234375,0.919604599475861,0.00533892866224051,-0.392808794975281,0.916054248809814,0.118303067982197,-0.383209049701691,0.915348768234253,0.124562747776508,-0.382910907268524,0.919599413871765,0.00562876835465431,-0.392817169427872,-0.96037495136261,1.47999726323178e-005,0.278711408376694,-0.999234855175018,9.70734981819987e-006,0.0391101539134979,-0.999236285686493,1.2928894648212e-005,0.0390750579535961,-0.960374891757965,1.5768075172673e-005,0.278711408376694,-0.999236285686493,1.2928894648212e-005,0.0390750579535961,-0.999234855175018,9.70734981819987e-006,0.0391101539134979,-0.591627240180969,-1.87294429965235e-010,-0.806211650371552,-0.591632544994354,3.02188755085808e-006,-0.806207716464996,-0.591632544994354,3.02188755085808e-006,-0.806207716464996,-0.591627240180969,-1.87294429965235e-010,-0.806211650371552,-0.350292891263962,0,-0.93664026260376,-0.350292325019836,8.97652739695332e-007,-0.936640441417694,0.919501185417175,8.22787023935234e-006,-0.393087238073349,
- 0.919507384300232,7.79698348196689e-006,-0.393072605133057,0.919503271579742,7.89479054219555e-006,-0.393082439899445,0.919503211975098,8.33076592243742e-006,-0.393082499504089,-0.960374891757965,1.5768075172673e-005,0.278711408376694,-0.999236285686493,1.2928894648212e-005,0.0390750579535961,-0.999236524105072,4.93583002025844e-006,0.0390687622129917,-0.960374891757965,7.48497677705018e-006,0.278711408376694,-0.999236524105072,4.93583002025844e-006,0.0390687622129917,-0.999236285686493,1.2928894648212e-005,0.0390750579535961,-0.591632544994354,3.02188755085808e-006,-0.806207716464996,-0.591632485389709,0,-0.806207835674286,-0.591632485389709,0,-0.806207835674286,-0.591632544994354,3.02188755085808e-006,-0.806207716464996,-0.350292325019836,8.97652739695332e-007,-0.936640441417694,-0.350291401147842,0,-0.936640739440918,0.919498443603516,0,-0.393093764781952,0.919501185417175,8.22787023935234e-006,-0.393087238073349,0.919503211975098,8.33076592243742e-006,-0.393082499504089,0.919503152370453,0,-0.393082559108734,-0.960374891757965,7.48497677705018e-006,0.278711408376694,-0.999236524105072,4.93583002025844e-006,0.0390687622129917,-0.999236941337585,4.68378448204021e-006,0.0390563979744911,-0.960374891757965,7.17780358172604e-006,0.278711378574371,-0.999236941337585,4.68378448204021e-006,0.0390563979744911,-0.999236524105072,4.93583002025844e-006,0.0390687622129917,-0.591632485389709,0,-0.806207835674286,-0.591631889343262,0,-0.806208193302155,-0.591631889343262,0,-0.806208193302155,-0.591632485389709,0,-0.806207835674286,-0.350291401147842,0,-0.936640739440918,-0.350290954113007,0,-0.936640858650208,0.919498383998871,0,-0.393093764781952,0.919498443603516,0,-0.393093764781952,0.919503152370453,0,-0.393082559108734,0.919503211975098,0,-0.393082529306412,-0.960374891757965,7.17780358172604e-006,0.278711378574371,-0.999236941337585,4.68378448204021e-006,0.0390563979744911,-0.999235391616821,-1.39539242809406e-005,0.0390974991023541,-0.960374891757965,-2.12429295061156e-005,0.278711318969727,-0.999235391616821,-1.39539242809406e-005,0.0390974991023541,
- -0.999236941337585,4.68378448204021e-006,0.0390563979744911,-0.591631889343262,0,-0.806208193302155,-0.591629922389984,0,-0.806209564208984,-0.591629922389984,0,-0.806209564208984,-0.591631889343262,0,-0.806208193302155,-0.350290954113007,0,-0.936640858650208,-0.350291311740875,0,-0.936640858650208,0.91950124502182,-7.49920582165942e-006,-0.39308699965477,0.919498383998871,0,-0.393093764781952,0.919503211975098,0,-0.393082529306412,0.919503152370453,-7.55556766307564e-006,-0.393082439899445,-0.960374891757965,-2.12429295061156e-005,0.278711318969727,-0.999235391616821,-1.39539242809406e-005,0.0390974991023541,-0.99923187494278,-3.23314598063007e-005,0.0391874946653843,-0.96037495136261,-4.92741819471121e-005,0.278711289167404,-0.99923187494278,-3.23314598063007e-005,0.0391874946653843,-0.999235391616821,-1.39539242809406e-005,0.0390974991023541,-0.591629922389984,0,-0.806209564208984,-0.591630220413208,0,-0.80620950460434,-0.591630220413208,0,-0.80620950460434,-0.591629922389984,0,-0.806209564208984,-0.350291311740875,0,-0.936640858650208,-0.350291401147842,0,-0.936640739440918,0.919503152370453,-3.61809568971694e-008,-0.393082469701767,0.919504225254059,-7.2360606395705e-008,-0.393080204725266,0.91950124502182,-7.49920582165942e-006,-0.39308699965477,0.919503152370453,-7.55556766307564e-006,-0.393082439899445,-0.99923187494278,-3.23314598063007e-005,0.0391874946653843,-0.999230444431305,-1.3533855053538e-005,0.0392225906252861,-0.96037495136261,-2.05837586690905e-005,0.278711318969727,-0.96037495136261,-4.92741819471121e-005,0.278711289167404,-0.591630220413208,0,-0.80620950460434,-0.591631948947906,5.48039906789199e-007,-0.806208193302155,-0.999230444431305,-1.3533855053538e-005,0.0392225906252861,-0.99923187494278,-3.23314598063007e-005,0.0391874946653843,-0.350291401147842,0,-0.936640739440918,-0.350291907787323,7.67462040585087e-007,-0.936640560626984,-0.591631948947906,5.48039906789199e-007,-0.806208193302155,-0.591630220413208,0,-0.80620950460434,0.919498682022095,3.51710951917994e-007,-0.393093198537827,0.919504225254059,-7.2360606395705e-008,-0.393080204725266,
- 0.919503152370453,-3.61809568971694e-008,-0.393082469701767,0.919503331184387,1.79515012632692e-007,-0.393082171678543,-0.999230444431305,-1.3533855053538e-005,0.0392225906252861,-0.999224305152893,0,0.0393790006637573,-0.96037495136261,0,0.278711289167404,-0.96037495136261,-2.05837586690905e-005,0.278711318969727,-0.591631948947906,5.48039906789199e-007,-0.806208193302155,-0.591626167297363,1.08604717752314e-006,-0.806212425231934,-0.999224305152893,0,0.0393790006637573,-0.999230444431305,-1.3533855053538e-005,0.0392225906252861,-0.350291907787323,7.67462040585087e-007,-0.936640560626984,-0.35029262304306,1.52086886373581e-006,-0.936640322208405,-0.591626167297363,1.08604717752314e-006,-0.806212425231934,-0.591631948947906,5.48039906789199e-007,-0.806208193302155,0.91949325799942,-1.32431759993779e-005,-0.393105924129486,0.919498682022095,3.51710951917994e-007,-0.393093198537827,0.919503331184387,1.79515012632692e-007,-0.393082171678543,0.919503390789032,-1.37587794597493e-005,-0.393081814050674,7.59783724788576e-005,-1,2.21030786633492e-005,7.59783724788576e-005,-0.999999940395355,2.21030786633492e-005,7.59783724788576e-005,-1,2.21030768443597e-005,7.59783724788576e-005,-1,2.21030786633492e-005,7.59783652029e-005,-0.999999940395355,2.21030786633492e-005,7.59783797548153e-005,-1,2.21030786633492e-005,7.59783797548153e-005,-1,2.21030804823386e-005,7.59783724788576e-005,-1,2.21030804823386e-005,0.000311212876113132,-1,-9.14355186978355e-005,0.000311212905216962,-1,-9.14355114218779e-005,0.000311212876113132,-0.99999988079071,-9.14355041459203e-005,0.000311212847009301,-0.999999940395355,-9.14355041459203e-005,0.000311212876113132,-1,-9.14355041459203e-005,0.000311212876113132,-1,-9.14355114218779e-005,0.000311212876113132,-1,-9.14355186978355e-005,0.000311212876113132,-0.999999940395355,-9.14355041459203e-005
- }
- NormalsW: *2078 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *6234 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.77020591915789e-007,1,1.97589429262734e-007,0,1,0,0,1,0,-6.43963005586556e-007,1,4.30275321150475e-007,-1.03034244602895e-006,1,6.88441616603086e-007,-4.77020591915789e-007,1,1.97589429262734e-007,0,1,0,-2.92071973717611e-007,1,2.92069330498634e-007,1.46036825299234e-007,1,-1.46035489478891e-007,-6.86878195210738e-007,1,4.58949841686263e-007,-2.92071973717611e-007,1,2.92069330498634e-007,0,1,0,0,1,0,1.46036825299234e-007,1,-1.46035489478891e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.09526787639425e-007,1,1.09526297364937e-007,0,1,-0,0,1,-0,1.28789920950112e-007,1,8.60530278146143e-008,3.00511089790234e-007,1,2.00791291149471e-007,1.09526787639425e-007,1,1.09526297364937e-007,1.28789920950112e-007,1,8.60530278146143e-008,4.62655194155559e-008,1,2.24466312204186e-008,9.25311169908127e-008,1,4.48932979679739e-008,3.00511089790234e-007,1,2.00791291149471e-007,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,6.67830249767576e-007,1,-2.76625797823726e-007,7.63233401812613e-007,1,-3.16143285772341e-007,0,1,0,6.67830249767576e-007,1,-2.76625797823726e-007,1.37379220177536e-006,1,-9.17923614451865e-007,0,1,0,7.63233401812613e-007,1,-3.16143285772341e-007,-5.15157637437369e-007,1,3.44211713354525e-007,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,-7.7273864462768e-007,1,5.16319062171533e-007,-4.38108031630691e-007,1,4.38104024169661e-007,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,8.03196826382191e-007,1,8.03193245246803e-007,1.31432193484216e-006,1,1.31431602312659e-006,0,1,-0,8.03196826382191e-007,1,8.03193245246803e-007,1.37376684961055e-006,1,9.17904287689453e-007,1.20204867926077e-006,1,8.03167893081991e-007,1.31432193484216e-006,1,1.31431602312659e-006,1.37376684961055e-006,1,9.17904287689453e-007,-3.9387321529305e-012,1,-1.631484877751e-012,-1.90813850053928e-007,1,-7.90381022852671e-008,1.20204867926077e-006,1,8.03167893081991e-007,-3.9387321529305e-012,1,-1.631484877751e-012,-0.0158597137778997,0.999868929386139,-0.0032488142605871,-0.00633533392101526,0.999979197978973,-0.00126018200535327,-1.90813850053928e-007,1,-7.90381022852671e-008,-0.0158597137778997,0.999868929386139,-0.0032488142605871,-5.63008361496031e-005,1,-8.53142070877944e-011,0.00636540865525603,0.999979734420776,9.81723147219782e-009,-0.00633533392101526,0.999979197978973,-0.00126018200535327,-5.63008361496031e-005,1,-8.53142070877944e-011,0.0135541539639235,0.99990439414978,-0.00277650752104819,-0,1,0,0.00636540865525603,0.999979734420776,9.81723147219782e-009,0.0135541539639235,0.99990439414978,-0.00277650752104819,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-6.6782956764655e-007,1,2.76625513606632e-007,6.67830249767576e-007,1,-2.76625797823726e-007,0,1,0,-6.6782956764655e-007,1,2.76625513606632e-007,3.43448931516832e-007,1,-2.29481500468864e-007,1.37379220177536e-006,1,-9.17923614451865e-007,6.67830249767576e-007,1,-2.76625797823726e-007,2.66166557594261e-006,1,-1.77843901383312e-006,
- 2.19054797412355e-007,1,-2.19052807892695e-007,-4.38108031630691e-007,1,4.38104024169661e-007,-5.15157637437369e-007,1,3.44211713354525e-007,2.19054797412355e-007,1,-2.19052807892695e-007,0,1,0,0,1,0,-4.38108031630691e-007,1,4.38104024169661e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.84143151627359e-007,1,5.84140536830091e-007,8.03196826382191e-007,1,8.03193245246803e-007,0,1,-0,5.84143151627359e-007,1,5.84140536830091e-007,1.11618658138468e-006,1,7.45797933632275e-007,1.37376684961055e-006,1,9.17904287689453e-007,8.03196826382191e-007,1,8.03193245246803e-007,1.11618658138468e-006,1,7.45797933632275e-007,0.000513663981109858,0.99999988079071,0.00022696096857544,-3.9387321529305e-012,1,-1.631484877751e-012,1.37376684961055e-006,1,9.17904287689453e-007,0.000513663981109858,0.99999988079071,0.00022696096857544,-0.0144955152645707,0.999889194965363,-0.00338920648209751,-0.0158597137778997,0.999868929386139,-0.0032488142605871,-3.9387321529305e-012,1,-1.631484877751e-012,-0.0144955152645707,0.999889194965363,-0.00338920648209751,4.66110749997029e-009,1,6.86836316445526e-015,-5.63008361496031e-005,1,-8.53142070877944e-011,-0.0158597137778997,0.999868929386139,-0.0032488142605871,4.66110749997029e-009,1,6.86836316445526e-015,0.0193279683589935,0.999803006649017,-0.00451896246522665,0.0135541539639235,0.99990439414978,-0.00277650752104819,-5.63008361496031e-005,1,-8.53142070877944e-011,0.0193279683589935,0.999803006649017,-0.00451896246522665,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0,1,0,0.0135541539639235,0.99990439414978,-0.00277650752104819,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1.04944513168448e-006,1,4.34696687534597e-007,-6.6782956764655e-007,1,2.76625513606632e-007,0,1,0,-1.04944513168448e-006,1,4.34696687534597e-007,-1.88896080999257e-006,1,1.26214263218571e-006,3.43448931516832e-007,1,-2.29481500468864e-007,-6.6782956764655e-007,1,2.76625513606632e-007,4.29300143878208e-006,1,-2.86844510810624e-006,1.60639933710627e-006,1,-1.6063846715042e-006,2.19054797412355e-007,1,-2.19052807892695e-007,2.66166557594261e-006,1,-1.77843901383312e-006,1.60639933710627e-006,1,-1.6063846715042e-006,0,1,0,0,1,0,2.19054797412355e-007,1,-2.19052807892695e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,4.01598498456224e-007,1,4.0159667946682e-007,5.84143151627359e-007,1,5.84140536830091e-007,0,1,-0,4.01598498456224e-007,1,4.0159667946682e-007,8.15675548437866e-007,1,5.45006628271949e-007,1.11618658138468e-006,1,7.45797933632275e-007,5.84143151627359e-007,1,5.84140536830091e-007,8.15675548437866e-007,1,5.45006628271949e-007,0.000436008296674117,0.99999988079071,0.000209233752684668,0.000513663981109858,0.99999988079071,0.00022696096857544,1.11618658138468e-006,1,7.45797933632275e-007,-0.0035191080532968,0.999993205070496,0.00107838748954237,9.04001524304476e-007,1,2.98063923764857e-006,-0.00143919314723462,0.99999874830246,0.000689395645167679,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0.00143919314723462,0.99999874830246,0.000689395645167679,-0,1,0,-0,1,0,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,-4.29318987471561e-007,1,1.77830699499282e-007,-1.04944513168448e-006,1,4.34696687534597e-007,0,1,0,-4.29318987471561e-007,1,1.77830699499282e-007,-1.20206527753908e-006,1,8.03181251285423e-007,-1.88896080999257e-006,1,1.26214263218571e-006,-1.04944513168448e-006,1,4.34696687534597e-007,1.71719898389711e-006,1,-1.14737690637412e-006,1.56988755861676e-006,1,-1.5698732340752e-006,1.60639933710627e-006,1,-1.6063846715042e-006,4.29300143878208e-006,1,-2.86844510810624e-006,1.56988755861676e-006,1,-1.5698732340752e-006,0,1,0,0,1,0,1.60639933710627e-006,1,-1.6063846715042e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,2.73817136076104e-007,1,2.73815913942599e-007,4.01598498456224e-007,1,4.0159667946682e-007,0,1,-0,2.73817136076104e-007,1,2.73815913942599e-007,5.36627908331866e-007,1,3.58556519586273e-007,8.15675548437866e-007,1,5.45006628271949e-007,4.01598498456224e-007,1,4.0159667946682e-007,5.36627908331866e-007,1,3.58556519586273e-007,1.8506224819248e-007,1,8.97866030413752e-008,0.000436008296674117,0.99999988079071,0.000209233752684668,8.15675548437866e-007,1,5.45006628271949e-007,9.04001524304476e-007,1,2.98063923764857e-006,0,1,-0,-0,1,0,-0.00143919314723462,0.99999874830246,0.000689395645167679,-0,1,0,-0,1,0,-0,1,0,-0.00143919314723462,0.99999874830246,0.000689395645167679,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-4.77020591915789e-007,1,1.97589429262734e-007,-4.29318987471561e-007,1,1.77830699499282e-007,0,1,0,-4.77020591915789e-007,1,1.97589429262734e-007,-1.03034244602895e-006,1,6.88441616603086e-007,-1.20206527753908e-006,1,8.03181251285423e-007,-4.29318987471561e-007,1,1.77830699499282e-007,
- -6.86878195210738e-007,1,4.58949841686263e-007,1.46036825299234e-007,1,-1.46035489478891e-007,1.56988755861676e-006,1,-1.5698732340752e-006,1.71719898389711e-006,1,-1.14737690637412e-006,1.46036825299234e-007,1,-1.46035489478891e-007,0,1,0,0,1,0,1.56988755861676e-006,1,-1.5698732340752e-006,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.09526787639425e-007,1,1.09526297364937e-007,2.73817136076104e-007,1,2.73815913942599e-007,0,1,-0,1.09526787639425e-007,1,1.09526297364937e-007,3.00511089790234e-007,1,2.00791291149471e-007,5.36627908331866e-007,1,3.58556519586273e-007,2.73817136076104e-007,1,2.73815913942599e-007,3.00511089790234e-007,1,2.00791291149471e-007,9.25311169908127e-008,1,4.48932979679739e-008,1.8506224819248e-007,1,8.97866030413752e-008,5.36627908331866e-007,1,3.58556519586273e-007,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,0,-0,1,0,0,1,-0,0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,-0,0,1,-0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,8.66570644575404e-007,1,8.66580023739516e-007,8.66570644575404e-007,1,8.66580023739516e-007,0,1,0,8.66570644575404e-007,1,8.66580023739516e-007,1.2227758361405e-006,1,8.17020691101789e-007,4.58506008271797e-007,1,3.06359424939728e-007,8.66570644575404e-007,1,8.66580023739516e-007,1.2227758361405e-006,1,8.17020691101789e-007,4.39299867593945e-007,1,2.07828094289653e-007,-0.00578099861741066,0.999979376792908,-0.00281586404889822,
- -0.0115655614063144,0.999917387962341,-0.00562191661447287,4.58506008271797e-007,1,3.06359424939728e-007,4.39299867593945e-007,1,2.07828094289653e-007,-0.0137580949813128,0.999901413917542,-0.00281836232170463,-0.0183001756668091,0.99982362985611,-0.00421244231984019,-0.00578099861741066,0.999979376792908,-0.00281586404889822,-0.0137580949813128,0.999901413917542,-0.00281836232170463,0,1,0,4.66028549084285e-009,1,7.97491006608933e-015,-0.0183001756668091,0.99982362985611,-0.00421244231984019,0,1,0,0.0183446779847145,0.999824702739716,-0.00375781115144491,0.0137240989133716,0.999900937080383,-0.00315875001251698,4.66028549084285e-009,1,7.97491006608933e-015,0.0183446779847145,0.999824702739716,-0.00375781115144491,0,1,0,-0.00208444893360138,0.99999737739563,0.00101524649653584,0.0137240989133716,0.999900937080383,-0.00315875001251698,-0.00208444893360138,0.99999737739563,0.00101524649653584,0,1,0,-6.79302445405483e-008,1,4.53888837625982e-008,-5.09476834054112e-008,1,3.40416619337702e-008,-0.00416995119303465,0.999989330768585,0.00202686293050647,-6.79302445405483e-008,1,4.53888837625982e-008,0,1,0,0,1,0,-5.09476834054112e-008,1,3.40416619337702e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0.00578099861741066,0.999979376792908,-0.00281586404889822,-0.0183001756668091,0.99982362985611,-0.00421244231984019,-0.012152680195868,0.999919354915619,-0.00368808978237212,0.0137240989133716,0.999900937080383,-0.00315875001251698,-0.00208444893360138,0.99999737739563,0.00101524649653584,-0.00438192579895258,0.99998950958252,0.00132807693444192,0.980784833431244,-0,0.195092514157295,0.980784714221954,-0,0.195093095302582,0.995181679725647,-0,0.0980479642748833,0.995178818702698,-0,0.0980771481990814,0.980779051780701,-0,0.195121690630913,0.98078179359436,-0,0.195108070969582,0.995181798934937,-0,0.0980476588010788,0.995178818702698,-0,0.098076805472374,0.910832047462463,-0,0.412777274847031,0.98078179359436,-0,0.195108070969582,0.980779051780701,-0,0.195121690630913,
- 0.935946881771088,-0,0.352141350507736,0.812792658805847,-0,0.582553088665009,0.910832047462463,-0,0.412777274847031,0.935946881771088,-0,0.352141350507736,0.849253237247467,-0,0.52798593044281,0.683528959751129,-0,0.72992342710495,0.812792658805847,-0,0.582553088665009,0.849253237247467,-0,0.52798593044281,0.729932844638824,-0,0.683518826961517,0.527973771095276,-0,0.849260747432709,0.683528959751129,-0,0.72992342710495,0.729932844638824,-0,0.683518826961517,0.582546412944794,-0,0.812797427177429,0.352168172597885,-0,0.935936748981476,0.527973771095276,-0,0.849260747432709,0.582546412944794,-0,0.812797427177429,0.412787824869156,-0,0.910827279090881,0.162803262472153,-0,0.986658573150635,0.352168172597885,-0,0.935936748981476,0.412787824869156,-0,0.910827279090881,0.227172896265984,-0,0.973854541778564,0.0980182588100433,-0,0.995184659957886,0.162803262472153,-0,0.986658573150635,0.227172896265984,-0,0.973854541778564,0.098017692565918,-0,0.995184659957886,0.227168038487434,0,-0.973855555057526,0.0980184003710747,0,-0.995184659957886,0.0980185270309448,0,-0.995184600353241,0.162803009152412,0,-0.986658692359924,0.412792682647705,0,-0.91082501411438,0.227168038487434,0,-0.973855555057526,0.162803009152412,0,-0.986658692359924,0.352161973714828,0,-0.935939073562622,0.58254486322403,0,-0.81279855966568,0.412792682647705,0,-0.91082501411438,0.352161973714828,0,-0.935939073562622,0.527984142303467,0,-0.849254310131073,0.729932844638824,0,-0.683518886566162,0.58254486322403,0,-0.81279855966568,0.527984142303467,0,-0.849254310131073,0.683521687984467,0,-0.729930281639099,0.849250435829163,0,-0.527990281581879,0.729932844638824,0,-0.683518886566162,0.683521687984467,0,-0.729930281639099,0.812793970108032,0,-0.58255136013031,0.935952663421631,0,-0.352126121520996,0.849250435829163,0,-0.527990281581879,0.812793970108032,0,-0.58255136013031,0.910833299160004,0,-0.412774354219437,0.98078465461731,0,-0.195093557238579,0.935952663421631,0,-0.352126121520996,0.910833299160004,0,-0.412774354219437,0.980784773826599,0,-0.195093214511871,
- 0.995176017284393,0,-0.0981056392192841,0.995178818702698,0,-0.098076805472374,0.98078465461731,0,-0.195093557238579,0.980784773826599,0,-0.195093214511871,0.910825192928314,-0,0.412792503833771,0.980784714221954,-0,0.195093095302582,0.980784833431244,-0,0.195092514157295,0.935947954654694,-0,0.352138340473175,0.81280130147934,-0,0.582540988922119,0.910825192928314,-0,0.412792503833771,0.935947954654694,-0,0.352138340473175,0.849251747131348,-0,0.527988135814667,0.683520197868347,-0,0.729931652545929,0.81280130147934,-0,0.582540988922119,0.849251747131348,-0,0.527988135814667,0.729934811592102,-0,0.683516800403595,0.5279820561409,-0,0.849255561828613,0.683520197868347,-0,0.729931652545929,0.729934811592102,-0,0.683516800403595,0.58254462480545,-0,0.812798738479614,0.352164298295975,-0,0.93593829870224,0.5279820561409,-0,0.849255561828613,0.58254462480545,-0,0.812798738479614,0.412792086601257,-0,0.910825371742249,0.162802413105965,-0,0.986658692359924,0.352164298295975,-0,0.93593829870224,0.412792086601257,-0,0.910825371742249,0.227168098092079,-0,0.973855555057526,0.0980150923132896,-0,0.995185017585754,0.162802413105965,-0,0.986658692359924,0.227168098092079,-0,0.973855555057526,0.0980149284005165,-0,0.99518495798111,-0.227173820137978,0,0.973854303359985,-0.0980184003710747,0,0.995184659957886,-0.0980185270309448,0,0.995184600353241,-0.162808761000633,0,0.986657679080963,-0.412783056497574,0,0.910829484462738,-0.227173820137978,0,0.973854303359985,-0.162808761000633,0,0.986657679080963,-0.35215750336647,0,0.935940742492676,-0.582556247711182,0,0.812790393829346,-0.412783056497574,0,0.910829484462738,-0.35215750336647,0,0.935940742492676,-0.527986764907837,0,0.849252641201019,-0.729922831058502,0,0.683529555797577,-0.582556247711182,0,0.812790393829346,-0.527986764907837,0,0.849252641201019,-0.683520793914795,0,0.729931116104126,-0.849260091781616,0,0.527974724769592,-0.729922831058502,0,0.683529555797577,-0.683520793914795,0,0.729931116104126,-0.812795281410217,0,0.582549452781677,-0.935945808887482,0,0.352144092321396,
- -0.849260091781616,0,0.527974724769592,-0.812795281410217,0,0.582549452781677,-0.91083288192749,0,0.412775278091431,-0.986653327941895,0,0.162835195660591,-0.935945808887482,0,0.352144092321396,-0.91083288192749,0,0.412775278091431,-0.973852813243866,0,0.227180361747742,-0.995181798934937,0,0.0980476588010788,-0.986653327941895,0,0.162835195660591,-0.973852813243866,0,0.227180361747742,-0.995178818702698,0,0.098076805472374,0.980784833431244,0,0.195092514157295,0.995178818702698,0,0.0980771481990814,0.995181679725647,0,0.0980479642748833,0.980784773826599,0,0.195093125104904,0.980779051780701,0,0.195121690630913,0.995178818702698,0,0.098076805472374,0.995181739330292,0,0.0980476513504982,0.98078179359436,0,0.195108070969582,0.910832047462463,0,0.412777274847031,0.935946881771088,0,0.352141350507736,0.980779051780701,0,0.195121690630913,0.98078179359436,0,0.195108070969582,0.812792718410492,0,0.582553088665009,0.849253177642822,0,0.52798593044281,0.935946881771088,0,0.352141350507736,0.910832047462463,0,0.412777274847031,0.683528959751129,0,0.72992342710495,0.729932844638824,0,0.683518826961517,0.849253177642822,0,0.52798593044281,0.812792718410492,0,0.582553088665009,0.527973711490631,0,0.849260687828064,0.582546412944794,0,0.812797427177429,0.729932844638824,0,0.683518826961517,0.683528959751129,0,0.72992342710495,0.352168172597885,0,0.935936748981476,0.412787824869156,0,0.910827279090881,0.582546412944794,0,0.812797427177429,0.527973711490631,0,0.849260687828064,0.162803262472153,0,0.986658573150635,0.227172896265984,0,0.973854541778564,0.412787824869156,0,0.910827279090881,0.352168172597885,0,0.935936748981476,0.0980182513594627,0,0.995184600353241,0.0980177000164986,0,0.995184719562531,0.227172896265984,0,0.973854541778564,0.162803262472153,0,0.986658573150635,0.227168053388596,-0,-0.97385561466217,0.162803009152412,-0,-0.986658692359924,0.0980185344815254,-0,-0.995184659957886,0.0980183929204941,-0,-0.995184600353241,0.412792682647705,-0,-0.91082501411438,0.352161973714828,-0,-0.935939073562622,0.162803009152412,-0,-0.986658692359924,
- 0.227168053388596,-0,-0.97385561466217,0.58254486322403,-0,-0.81279855966568,0.527984082698822,-0,-0.849254250526428,0.352161973714828,-0,-0.935939073562622,0.412792682647705,-0,-0.91082501411438,0.729932904243469,-0,-0.683518826961517,0.683521687984467,-0,-0.729930281639099,0.527984082698822,-0,-0.849254250526428,0.58254486322403,-0,-0.81279855966568,0.849250435829163,-0,-0.527990281581879,0.812793970108032,-0,-0.58255136013031,0.683521687984467,-0,-0.729930281639099,0.729932904243469,-0,-0.683518826961517,0.935952663421631,-0,-0.352126121520996,0.910833299160004,-0,-0.412774354219437,0.812793970108032,-0,-0.58255136013031,0.849250435829163,-0,-0.527990281581879,0.980784714221954,-0,-0.19509357213974,0.980784714221954,-0,-0.19509319961071,0.910833299160004,-0,-0.412774354219437,0.935952663421631,-0,-0.352126121520996,0.995176017284393,-0,-0.0981056392192841,0.980784714221954,-0,-0.19509319961071,0.980784714221954,-0,-0.19509357213974,0.995178818702698,-0,-0.098076805472374,0.910825133323669,0,0.412792474031448,0.935947954654694,0,0.352138340473175,0.980784833431244,0,0.195092514157295,0.980784773826599,0,0.195093125104904,0.81280130147934,0,0.582540988922119,0.849251806735992,0,0.527988135814667,0.935947954654694,0,0.352138340473175,0.910825133323669,0,0.412792474031448,0.683520197868347,0,0.729931652545929,0.729934811592102,0,0.683516800403595,0.849251806735992,0,0.527988135814667,0.81280130147934,0,0.582540988922119,0.5279820561409,0,0.849255561828613,0.58254462480545,0,0.812798738479614,0.729934811592102,0,0.683516800403595,0.683520197868347,0,0.729931652545929,0.382661074399948,0,0.923888862133026,0.382680416107178,0,0.923880875110626,0.58254462480545,0,0.812798738479614,0.5279820561409,0,0.849255561828613,0.290279507637024,0,0.956941902637482,0.290322959423065,0,0.956928730010986,0.382680416107178,0,0.923880875110626,0.382661074399948,0,0.923888862133026,-0.582556307315826,-0,0.81279045343399,-0.527986764907837,-0,0.849252641201019,-0.352147847414017,-0,0.935944497585297,-0.412770479917526,-0,0.910835087299347,
- -0.729922831058502,-0,0.683529555797577,-0.683520793914795,-0,0.729931116104126,-0.527986764907837,-0,0.849252641201019,-0.582556307315826,-0,0.81279045343399,-0.849260091781616,-0,0.527974724769592,-0.812795281410217,-0,0.582549452781677,-0.683520793914795,-0,0.729931116104126,-0.729922831058502,-0,0.683529555797577,-0.935945808887482,-0,0.352144092321396,-0.91083288192749,-0,0.412775278091431,-0.812795281410217,-0,0.582549452781677,-0.849260091781616,-0,0.527974724769592,-0.986653327941895,-0,0.162835195660591,-0.973852813243866,-0,0.227180361747742,-0.91083288192749,-0,0.412775278091431,-0.935945808887482,-0,0.352144092321396,-0.995181739330292,-0,0.0980476513504982,-0.995178818702698,-0,0.098076805472374,-0.973852813243866,-0,0.227180361747742,-0.986653327941895,-0,0.162835195660591,-0.0115655614063144,0.999917387962341,-0.00562191661447287,-0.00578099861741066,0.999979376792908,-0.00281586404889822,-0.012152680195868,0.999919354915619,-0.00368808978237212,-5.82367611912105e-008,1,1.91963266615858e-007,1.8506224819248e-007,1,8.97866030413752e-008,0,1,-0,-7.36621700525575e-007,1,2.42865417021676e-006,0.000436008296674117,0.99999988079071,0.000209233752684668,9.25311169908127e-008,1,4.48932979679739e-008,0,1,-0,0,1,-0,1.8506224819248e-007,1,8.97866030413752e-008,4.62655194155559e-008,1,2.24466312204186e-008,0,1,-0,0,1,-0,9.25311169908127e-008,1,4.48932979679739e-008,-0.412770479917526,-0,0.910835087299347,-0.352147847414017,-0,0.935944497585297,-0.290309071540833,-0,0.956932961940765,-0.290278375148773,-0,0.95694226026535,0.000436008296674117,0.99999988079071,0.000209233752684668,-7.36621700525575e-007,1,2.42865417021676e-006,0.00106439064256847,0.999999463558197,0.000330699112964794,0.000513663981109858,0.99999988079071,0.00022696096857544,-2.81781183275598e-007,1,-9.28774284147948e-007,-0.00438192579895258,0.99998950958252,0.00132807693444192,-0.00208444893360138,0.99999737739563,0.00101524649653584,-0.00416995119303465,0.999989330768585,0.00202686293050647,0.000513663981109858,0.99999988079071,0.00022696096857544,
- 0.00106439064256847,0.999999463558197,0.000330699112964794,-0.0144955152645707,0.999889194965363,-0.00338920648209751,0.0193279683589935,0.999803006649017,-0.00451896246522665,-0.0035191080532968,0.999993205070496,0.00107838748954237,-0.00145372585393488,0.999998807907104,0.000641465361695737,-0.2793328166008,-0.000265211187070236,0.960194408893585,-0.27933269739151,-0.000952758942730725,0.960193932056427,-0.55056095123291,-0.00350730726495385,0.834787666797638,-0.55059677362442,-0.00324474624358118,0.834765017032623,-0.55056095123291,-0.00350730726495385,0.834787666797638,-0.995169639587402,-0.00578880403190851,-0.0979998707771301,-0.995176255702972,-0.00442169420421124,-0.0980037227272987,-0.55059677362442,-0.00324474624358118,0.834765017032623,-0.995169639587402,-0.00578880403190851,-0.0979998707771301,-0.936419010162354,-0.000948280852753669,-0.350882679224014,-0.936416029930115,0.00264342897571623,-0.350881814956665,-0.995176255702972,-0.00442169420421124,-0.0980037227272987,0.393674105405808,0.00076503271702677,-0.919249773025513,0.393674105405808,-0.000951873371377587,-0.919249594211578,0.393673270940781,-0.00229183188639581,-0.919247627258301,0.393674314022064,3.17874878419389e-007,-0.919250011444092,-0.27933269739151,-0.000952758942730725,0.960193932056427,-0.279332488775253,-0.00132036581635475,0.960193634033203,-0.550522863864899,-0.00337710464373231,0.834813296794891,-0.55056095123291,-0.00350730726495385,0.834787666797638,-0.550522863864899,-0.00337710464373231,0.834813296794891,-0.995170056819916,-0.00564681179821491,-0.0980037227272987,-0.995169639587402,-0.00578880403190851,-0.0979998707771301,-0.55056095123291,-0.00350730726495385,0.834787666797638,-0.995170056819916,-0.00564681179821491,-0.0980037227272987,-0.936417818069458,-0.00176746945362538,-0.350882589817047,-0.936419010162354,-0.000948280852753669,-0.350882679224014,-0.995169639587402,-0.00578880403190851,-0.0979998707771301,0.393680244684219,0.00239554163999856,-0.919244349002838,0.393674373626709,-2.55158147410839e-006,-0.919250071048737,
- 0.393674105405808,-0.000951873371377587,-0.919249594211578,0.393674105405808,0.00076503271702677,-0.919249773025513,-0.279332488775253,-0.00132036581635475,0.960193634033203,-0.279332607984543,-0.000228808276006021,0.960194408893585,-0.550435721874237,-0.00143724144436419,0.834876239299774,-0.550522863864899,-0.00337710464373231,0.834813296794891,-0.550435721874237,-0.00143724144436419,0.834876239299774,-0.995172560214996,-0.0051265386864543,-0.0980066210031509,-0.995170056819916,-0.00564681179821491,-0.0980037227272987,-0.550522863864899,-0.00337710464373231,0.834813296794891,-0.995172560214996,-0.0051265386864543,-0.0980066210031509,-0.936416268348694,-0.00250763329677284,-0.350882321596146,-0.936417818069458,-0.00176746945362538,-0.350882589817047,-0.995170056819916,-0.00564681179821491,-0.0980037227272987,0.393673539161682,-0.00194504112005234,-0.919248282909393,0.393674373626709,-2.55158147410839e-006,-0.919250071048737,0.393680244684219,0.00239554163999856,-0.919244349002838,0.393687784671783,-6.41502265352756e-006,-0.919244229793549,-0.550426423549652,-0.00596866942942142,0.834862411022186,-0.27933207154274,-0.00182114378549159,0.960192918777466,-0.279332637786865,-0.000910057220607996,0.960194051265717,-0.550440549850464,-0.00313358847051859,0.834868550300598,-0.995165288448334,-0.00639711273834109,-0.098005898296833,-0.550426423549652,-0.00596866942942142,0.834862411022186,-0.550440549850464,-0.00313358847051859,0.834868550300598,-0.99516499042511,-0.00646463641896844,-0.0980047509074211,-0.936411738395691,0.00399537850171328,-0.350880593061447,-0.995165288448334,-0.00639711273834109,-0.098005898296833,-0.99516499042511,-0.00646463641896844,-0.0980047509074211,-0.936416625976563,-0.00220367312431335,-0.35088324546814,0.393673360347748,0.00109774526208639,-0.919249773025513,0.393674552440643,-0.000708791427314281,-0.919249594211578,0.39367213845253,-0.0032972851768136,-0.919245004653931,0.393687784671783,6.02297802743124e-007,-0.919244229793549,-0.278096437454224,-0.00147637608461082,0.960552096366882,-0.271212667226791,0.000632379204034805,0.962519288063049,
- -0.554473757743835,0.0581013150513172,0.830170512199402,-0.553157210350037,0.0157983638346195,0.832927048206329,-0.554473757743835,0.0581013150513172,0.830170512199402,-0.971091091632843,0.198143288493156,-0.133121132850647,-0.991941392421722,0.0565670467913151,-0.113369174301624,-0.553157210350037,0.0157983638346195,0.832927048206329,-0.971091091632843,0.198143288493156,-0.133121132850647,-0.91883659362793,0.211435258388519,-0.333218365907669,-0.935023069381714,0.0653744339942932,-0.348508507013321,-0.991941392421722,0.0565670467913151,-0.113369174301624,0.381933957338333,-0.0013916939496994,-0.924188554286957,0.381907910108566,-0.00140104081947356,-0.924199342727661,0.391649931669235,-0.00234003714285791,-0.920111358165741,0.39174023270607,-0.000125258215120994,-0.920075833797455,-0.550440549850464,-0.00313358847051859,0.834868550300598,-0.279332637786865,-0.000910057220607996,0.960194051265717,-0.27933269739151,-0.00104970834217966,0.960193812847137,-0.550440728664398,-0.00318538560532033,0.834868252277374,-0.99516499042511,-0.00646463641896844,-0.0980047509074211,-0.550440549850464,-0.00313358847051859,0.834868550300598,-0.550440728664398,-0.00318538560532033,0.834868252277374,-0.995171546936035,-0.0053794919513166,-0.0980037674307823,-0.936416625976563,-0.00220367312431335,-0.35088324546814,-0.99516499042511,-0.00646463641896844,-0.0980047509074211,-0.995171546936035,-0.0053794919513166,-0.0980037674307823,-0.936418056488037,-0.000907627050764859,-0.350885331630707,0.393655776977539,0.000708104344084859,-0.919257640838623,0.393675059080124,-0.000878864957485348,-0.91924923658371,0.393674552440643,-0.000708791427314281,-0.919249594211578,0.393673360347748,0.00109774526208639,-0.919249773025513,-0.550440728664398,-0.00318538560532033,0.834868252277374,-0.27933269739151,-0.00104970834217966,0.960193812847137,-0.279332637786865,-0.000948960543610156,0.960193932056427,-0.550454616546631,-0.00308446353301406,0.834859371185303,-0.995171546936035,-0.0053794919513166,-0.0980037674307823,-0.550440728664398,-0.00318538560532033,0.834868252277374,
- -0.550454616546631,-0.00308446353301406,0.834859371185303,-0.995170056819916,-0.00571967894211411,-0.0979998111724854,-0.936418056488037,-0.000907627050764859,-0.350885331630707,-0.995171546936035,-0.0053794919513166,-0.0980037674307823,-0.995170056819916,-0.00571967894211411,-0.0979998111724854,-0.93641722202301,-0.00148069229908288,-0.350885659456253,0.393649280071259,0.000878027698490769,-0.919260382652283,0.393675476312637,-0.000767051184084266,-0.91924923658371,0.393675059080124,-0.000878864957485348,-0.91924923658371,0.393655776977539,0.000708104344084859,-0.919257640838623,-0.550454616546631,-0.00308446353301406,0.834859371185303,-0.279332637786865,-0.000948960543610156,0.960193932056427,-0.279332488775253,-0.00115584279410541,0.960193812847137,-0.550466418266296,-0.00354633061215281,0.834849894046783,-0.995170056819916,-0.00571967894211411,-0.0979998111724854,-0.550454616546631,-0.00308446353301406,0.834859371185303,-0.550466418266296,-0.00354633061215281,0.834849894046783,-0.995169460773468,-0.00585184944793582,-0.0979980677366257,-0.93641722202301,-0.00148069229908288,-0.350885659456253,-0.995170056819916,-0.00571967894211411,-0.0979998111724854,-0.995169460773468,-0.00585184944793582,-0.0979980677366257,-0.936417758464813,-0.00093953701434657,-0.350885897874832,0.39364954829216,0.000768517609685659,-0.919260263442993,0.393675416707993,-0.000968642765656114,-0.919248998165131,0.393675476312637,-0.000767051184084266,-0.91924923658371,0.393649280071259,0.000878027698490769,-0.919260382652283,-0.550466418266296,-0.00354633061215281,0.834849894046783,-0.279332488775253,-0.00115584279410541,0.960193812847137,-0.279332607984543,-0.000794720428530127,0.960194051265717,-0.550504088401794,-0.00281250989064574,0.834827840328217,-0.995169460773468,-0.00585184944793582,-0.0979980677366257,-0.550466418266296,-0.00354633061215281,0.834849894046783,-0.550504088401794,-0.00281250989064574,0.834827840328217,-0.995170652866364,-0.00564659433439374,-0.0979979336261749,-0.936417758464813,-0.00093953701434657,-0.350885897874832,
- -0.995169460773468,-0.00585184944793582,-0.0979980677366257,-0.995170652866364,-0.00564659433439374,-0.0979979336261749,-0.936416745185852,-0.00184837216511369,-0.350885033607483,0.393663585186005,0.000971219560597092,-0.919254124164581,0.393675118684769,-0.000620932667516172,-0.919249475002289,0.393675416707993,-0.000968642765656114,-0.919248998165131,0.39364954829216,0.000768517609685659,-0.919260263442993,-0.550504088401794,-0.00281250989064574,0.834827840328217,-0.279332607984543,-0.000794720428530127,0.960194051265717,-0.278062105178833,-0.000215698993997648,0.960563182830811,-0.553644835948944,-0.00137017667293549,0.83275181055069,-0.995170652866364,-0.00564659433439374,-0.0979979336261749,-0.550504088401794,-0.00281250989064574,0.834827840328217,-0.553644835948944,-0.00137017667293549,0.83275181055069,-0.993468463420868,-0.00491038523614407,-0.114000849425793,-0.936416745185852,-0.00184837216511369,-0.350885033607483,-0.995170652866364,-0.00564659433439374,-0.0979979336261749,-0.993468463420868,-0.00491038523614407,-0.114000849425793,-0.937019765377045,-0.00242695352062583,-0.349267840385437,0.391809552907944,0.00186971109360456,-0.920044422149658,0.391729146242142,2.67196423919813e-006,-0.920080542564392,0.393675118684769,-0.000620932667516172,-0.919249475002289,0.393663585186005,0.000971219560597092,-0.919254124164581,-0.271212667226791,0.000632379204034805,0.962519288063049,-0.246536612510681,-0.00202469527721405,0.969131350517273,-0.497049599885941,0.157584637403488,0.853293001651764,-0.554473757743835,0.0581013150513172,0.830170512199402,-0.497049599885941,0.157584637403488,0.853293001651764,-0.883063435554504,0.462403506040573,-0.0798873752355576,-0.971091091632843,0.198143288493156,-0.133121132850647,-0.554473757743835,0.0581013150513172,0.830170512199402,-0.883063435554504,0.462403506040573,-0.0798873752355576,-0.858071446418762,0.429995745420456,-0.28074386715889,-0.91883659362793,0.211435258388519,-0.333218365907669,-0.971091091632843,0.198143288493156,-0.133121132850647,0.344895720481873,-0.00508914887905121,-0.938627243041992,
- 0.347618252038956,0.000562593340873718,-0.937636017799377,0.381907910108566,-0.00140104081947356,-0.924199342727661,0.381933957338333,-0.0013916939496994,-0.924188554286957,-0.246536612510681,-0.00202469527721405,0.969131350517273,-0.208059370517731,-0.00113571435213089,0.978115558624268,-0.399040818214417,0.233184814453125,0.886787056922913,-0.497049599885941,0.157584637403488,0.853293001651764,-0.399040818214417,0.233184814453125,0.886787056922913,-0.718767702579498,0.695140898227692,0.0123366210609674,-0.883063435554504,0.462403506040573,-0.0798873752355576,-0.497049599885941,0.157584637403488,0.853293001651764,-0.718767702579498,0.695140898227692,0.0123366210609674,-0.712336421012878,0.674376726150513,-0.194404065608978,-0.858071446418762,0.429995745420456,-0.28074386715889,-0.883063435554504,0.462403506040573,-0.0798873752355576,0.282164722681046,-0.013258995488286,-0.959274411201477,0.293754994869232,-0.000429883599281311,-0.955880641937256,0.347618252038956,0.000562593340873718,-0.937636017799377,0.344895720481873,-0.00508914887905121,-0.938627243041992,-0.208059370517731,-0.00113571435213089,0.978115558624268,-0.151539489626884,-0.00128690153360367,0.988450407981873,-0.268674433231354,0.279578655958176,0.921764492988586,-0.399040818214417,0.233184814453125,0.886787056922913,-0.268674433231354,0.279578655958176,0.921764492988586,-0.500302076339722,0.858999252319336,0.108711779117584,-0.718767702579498,0.695140898227692,0.0123366210609674,-0.399040818214417,0.233184814453125,0.886787056922913,-0.500302076339722,0.858999252319336,0.108711779117584,-0.508520066738129,0.855276107788086,-0.0995504036545753,-0.712336421012878,0.674376726150513,-0.194404065608978,-0.718767702579498,0.695140898227692,0.0123366210609674,0.191282361745834,-0.0131676718592644,-0.981446743011475,0.21386057138443,9.85711812973022e-005,-0.976864218711853,0.293754994869232,-0.000429883599281311,-0.955880641937256,0.282164722681046,-0.013258995488286,-0.959274411201477,-0.151539489626884,-0.00128690153360367,0.988450407981873,-0.0851457491517067,0.00118111819028854,0.996367871761322,
- -0.122230097651482,0.304020643234253,0.944791734218597,-0.268674433231354,0.279578655958176,0.921764492988586,-0.122230097651482,0.304020643234253,0.944791734218597,-0.254138201475143,0.951480507850647,0.173489883542061,-0.500302076339722,0.858999252319336,0.108711779117584,-0.268674433231354,0.279578655958176,0.921764492988586,-0.254138201475143,0.951480507850647,0.173489883542061,-0.278712928295136,0.95981764793396,-0.0327009819447994,-0.508520066738129,0.855276107788086,-0.0995504036545753,-0.500302076339722,0.858999252319336,0.108711779117584,0.104764603078365,-0.00660777557641268,-0.994475126266479,0.103019908070564,-0.00735717453062534,-0.994652152061462,0.21386057138443,9.85711812973022e-005,-0.976864218711853,0.191282361745834,-0.0131676718592644,-0.981446743011475,-0.0851457491517067,0.00118111819028854,0.996367871761322,-0.0371674448251724,0.00710479728877544,0.999283790588379,-0.0719021633267403,0.310689032077789,0.947788178920746,-0.122230097651482,0.304020643234253,0.944791734218597,-0.0719021633267403,0.310689032077789,0.947788178920746,-0.123602889478207,0.973623633384705,0.191779658198357,-0.254138201475143,0.951480507850647,0.173489883542061,-0.122230097651482,0.304020643234253,0.944791734218597,-0.123602889478207,0.973623633384705,0.191779658198357,-0.114976368844509,0.993343830108643,-0.00697761308401823,-0.278712928295136,0.95981764793396,-0.0327009819447994,-0.254138201475143,0.951480507850647,0.173489883542061,0.0497914999723434,-0.010764223523438,-0.998701691627502,0.103019908070564,-0.00735717453062534,-0.994652152061462,0.104764603078365,-0.00660777557641268,-0.994475126266479,0.0511905066668987,-0.0102856662124395,-0.99863600730896,0.091669000685215,0.306020736694336,0.947601199150085,0.0465831235051155,0.00434645963832736,0.998905062675476,0.0981872528791428,0.00128651037812233,0.995167195796967,0.145892933011055,0.304690420627594,0.941211521625519,0.157373741269112,0.969201326370239,0.189426496624947,0.091669000685215,0.306020736694336,0.947601199150085,0.145892933011055,0.304690420627594,0.941211521625519,
- 0.29917573928833,0.940525531768799,0.160952731966972,0.151476785540581,0.988410532474518,-0.00997213367372751,0.157373741269112,0.969201326370239,0.189426496624947,0.29917573928833,0.940525531768799,0.160952731966972,0.330962628126144,0.942595064640045,-0.0444781705737114,-0.141114488244057,-0.00223337113857269,-0.989990770816803,-0.107339046895504,-0.0133156664669514,-0.994133353233337,-0.0709954276680946,-0.00680475449189544,-0.997453510761261,-0.0689250901341438,-0.00657295063138008,-0.997600257396698,0.278524219989777,0.00138558156322688,0.960428178310394,0.278711289167404,0.000993119785562158,0.960374534130096,0.549988210201263,0.00312109920196235,0.835166573524475,0.550905585289001,0.00454236380755901,0.834555208683014,0.549988210201263,0.00312109920196235,0.835166573524475,0.995231986045837,0.00570878619328141,-0.0973700508475304,0.994729340076447,0.00487469509243965,-0.102419897913933,0.550905585289001,0.00454236380755901,0.834555208683014,0.995231986045837,0.00570878619328141,-0.0973700508475304,0.936641454696655,0.00136725488118827,-0.350286960601807,0.936723351478577,-0.00303672952577472,-0.350057482719421,0.994729340076447,0.00487469509243965,-0.102419897913933,-0.393092185258865,-0.000834770617075264,-0.919498682022095,-0.393082320690155,0.000811538542620838,-0.919502973556519,-0.392835080623627,0.00250469660386443,-0.919605493545532,-0.392832309007645,-1.17369916097232e-006,-0.91961008310318,0.145892933011055,0.304690420627594,0.941211521625519,0.0981872528791428,0.00128651037812233,0.995167195796967,0.16724094748497,0.000430263578891754,0.985916018486023,0.301934659481049,0.274506121873856,0.912952244281769,0.29917573928833,0.940525531768799,0.160952731966972,0.145892933011055,0.304690420627594,0.941211521625519,0.301934659481049,0.274506121873856,0.912952244281769,0.559121370315552,0.824942409992218,0.0827852636575699,0.330962628126144,0.942595064640045,-0.0444781705737114,0.29917573928833,0.940525531768799,0.160952731966972,0.559121370315552,0.824942409992218,0.0827852636575699,0.571824610233307,0.810651123523712,-0.125942811369896,
- -0.238805741071701,-0.000734955188818276,-0.971067190170288,-0.218147248029709,-0.0159902721643448,-0.97578489780426,-0.107339046895504,-0.0133156664669514,-0.994133353233337,-0.141114488244057,-0.00223337113857269,-0.989990770816803,0.301934659481049,0.274506121873856,0.912952244281769,0.16724094748497,0.000430263578891754,0.985916018486023,0.219400525093079,-0.000614441931247711,0.975634753704071,0.429339498281479,0.215701431035995,0.877006530761719,0.559121370315552,0.824942409992218,0.0827852636575699,0.301934659481049,0.274506121873856,0.912952244281769,0.429339498281479,0.215701431035995,0.877006530761719,0.771950125694275,0.635472774505615,-0.0163581389933825,0.571824610233307,0.810651123523712,-0.125942811369896,0.559121370315552,0.824942409992218,0.0827852636575699,0.771950125694275,0.635472774505615,-0.0163581389933825,0.765163719654083,0.604335188865662,-0.222043916583061,-0.311749935150146,0.000943407416343689,-0.950163722038269,-0.303474962711334,-0.009859056212008,-0.952788412570953,-0.218147248029709,-0.0159902721643448,-0.97578489780426,-0.238805741071701,-0.000734955188818276,-0.971067190170288,0.429339498281479,0.215701431035995,0.877006530761719,0.219400525093079,-0.000614441931247711,0.975634753704071,0.256353110074997,0.00143498193938285,0.966582238674164,0.518639087677002,0.137199342250824,0.843913435935974,0.771950125694275,0.635472774505615,-0.0163581389933825,0.429339498281479,0.215701431035995,0.877006530761719,0.518639087677002,0.137199342250824,0.843913435935974,0.917374014854431,0.384158492088318,-0.104150839149952,0.765163719654083,0.604335188865662,-0.222043916583061,0.771950125694275,0.635472774505615,-0.0163581389933825,0.917374014854431,0.384158492088318,-0.104150839149952,0.889918744564056,0.339261382818222,-0.304871112108231,-0.362644582986832,-0.00151782482862473,-0.931926310062408,-0.361413925886154,-0.00494330376386642,-0.932392358779907,-0.303474962711334,-0.009859056212008,-0.952788412570953,-0.311749935150146,0.000943407416343689,-0.950163722038269,0.518639087677002,0.137199342250824,0.843913435935974,
- 0.256353110074997,0.00143498193938285,0.966582238674164,0.273949980735779,0.0011208375217393,0.961743295192719,0.555459558963776,0.0461122803390026,0.830264091491699,0.917374014854431,0.384158492088318,-0.104150839149952,0.518639087677002,0.137199342250824,0.843913435935974,0.555459558963776,0.0461122803390026,0.830264091491699,0.982897698879242,0.128810182213783,-0.131605982780457,0.889918744564056,0.339261382818222,-0.304871112108231,0.917374014854431,0.384158492088318,-0.104150839149952,0.982897698879242,0.128810182213783,-0.131605982780457,0.931376934051514,0.125485301017761,-0.341746240854263,-0.385778933763504,-0.00111754622776061,-0.922590672969818,-0.385876566171646,-0.000344768137438223,-0.922550320625305,-0.361413925886154,-0.00494330376386642,-0.932392358779907,-0.362644582986832,-0.00151782482862473,-0.931926310062408,0.555459558963776,0.0461122803390026,0.830264091491699,0.273949980735779,0.0011208375217393,0.961743295192719,0.278529077768326,0.00021995697170496,0.960427820682526,0.550907790660858,0.00417246948927641,0.834555745124817,0.982897698879242,0.128810182213783,-0.131605982780457,0.555459558963776,0.0461122803390026,0.830264091491699,0.550907790660858,0.00417246948927641,0.834555745124817,0.994630396366119,0.0150027386844158,-0.102398030459881,0.931376934051514,0.125485301017761,-0.341746240854263,0.982897698879242,0.128810182213783,-0.131605982780457,0.994630396366119,0.0150027386844158,-0.102398030459881,0.936634659767151,0.0141099113970995,-0.350023716688156,-0.392822027206421,-0.00177857209928334,-0.919612765312195,-0.392823368310928,-2.41398811340332e-006,-0.91961395740509,-0.385876566171646,-0.000344768137438223,-0.922550320625305,-0.385778933763504,-0.00111754622776061,-0.922590672969818,0.278711289167404,0.000993119785562158,0.960374534130096,0.278711289167404,0.00107008556369692,0.960374355316162,0.550018906593323,0.00331705226562917,0.835145652294159,0.549988210201263,0.00312109920196235,0.835166573524475,0.550018906593323,0.00331705226562917,0.835145652294159,0.995232164859772,0.00580197013914585,-0.0973626226186752,
- 0.995231986045837,0.00570878619328141,-0.0973700508475304,0.549988210201263,0.00312109920196235,0.835166573524475,0.995232164859772,0.00580197013914585,-0.0973626226186752,0.936641991138458,0.00117810384836048,-0.350286424160004,0.936641454696655,0.00136725488118827,-0.350286960601807,0.995231986045837,0.00570878619328141,-0.0973700508475304,-0.393077671527863,-0.000811973819509149,-0.919505000114441,-0.393082350492477,0.000886236957740039,-0.919502854347229,-0.393082320690155,0.000811538542620838,-0.919502973556519,-0.393092185258865,-0.000834770617075264,-0.919498682022095,0.278711289167404,0.00107008556369692,0.960374355316162,0.278711408376694,0.000287632807157934,0.960374891757965,0.550023436546326,0.00269603310152888,0.835144937038422,0.550018906593323,0.00331705226562917,0.835145652294159,0.550023436546326,0.00269603310152888,0.835144937038422,0.995232284069061,0.00576058821752667,-0.0973630025982857,0.995232164859772,0.00580197013914585,-0.0973626226186752,0.550018906593323,0.00331705226562917,0.835145652294159,0.995232284069061,0.00576058821752667,-0.0973630025982857,0.936641752719879,0.0014988228213042,-0.350285649299622,0.936641991138458,0.00117810384836048,-0.350286424160004,0.995232164859772,0.00580197013914585,-0.0973626226186752,-0.393071234226227,-0.000886125140823424,-0.919507622718811,-0.393082499504089,0.000770132173784077,-0.919502973556519,-0.393082350492477,0.000886236957740039,-0.919502854347229,-0.393077671527863,-0.000811973819509149,-0.919505000114441,0.278711408376694,0.000287632807157934,0.960374891757965,0.278711289167404,0.000942476908676326,0.960374534130096,0.550032615661621,0.00307484599761665,0.835137546062469,0.550023436546326,0.00269603310152888,0.835144937038422,0.550032615661621,0.00307484599761665,0.835137546062469,0.995234489440918,0.00537035148590803,-0.0973631143569946,0.995232284069061,0.00576058821752667,-0.0973630025982857,0.550023436546326,0.00269603310152888,0.835144937038422,0.995234489440918,0.00537035148590803,-0.0973631143569946,0.936642289161682,0.00114160974044353,-0.350285619497299,
- 0.936641752719879,0.0014988228213042,-0.350285649299622,0.995232284069061,0.00576058821752667,-0.0973630025982857,-0.393071174621582,-0.000771614257246256,-0.919507801532745,-0.393082439899445,0.00079763395478949,-0.919502973556519,-0.393082499504089,0.000770132173784077,-0.919502973556519,-0.393071234226227,-0.000886125140823424,-0.919507622718811,0.278711289167404,0.000942476908676326,0.960374534130096,0.278711140155792,0.00115944945719093,0.960374355316162,0.549993872642517,0.00304691679775715,0.835163176059723,0.550032615661621,0.00307484599761665,0.835137546062469,0.549993872642517,0.00304691679775715,0.835163176059723,0.995236575603485,0.00491749914363027,-0.0973658189177513,0.995234489440918,0.00537035148590803,-0.0973631143569946,0.550032615661621,0.00307484599761665,0.835137546062469,0.995236575603485,0.00491749914363027,-0.0973658189177513,0.936641931533813,0.00140930991619825,-0.350285470485687,0.936642289161682,0.00114160974044353,-0.350285619497299,0.995234489440918,0.00537035148590803,-0.0973631143569946,-0.39307701587677,-0.00210335501469672,-0.919503211975098,-0.393082499504089,2.47613888859632e-006,-0.919503271579742,-0.393082439899445,0.00079763395478949,-0.919502973556519,-0.393071174621582,-0.000771614257246256,-0.919507801532745,0.278711140155792,0.00115944945719093,0.960374355316162,0.278711289167404,0.000214404339203611,0.96037495136261,0.549918055534363,0.00134709186386317,0.835217535495758,0.549993872642517,0.00304691679775715,0.835163176059723,0.549918055534363,0.00134709186386317,0.835217535495758,0.995237052440643,0.00480516534298658,-0.0973662286996841,0.995236575603485,0.00491749914363027,-0.0973658189177513,0.549993872642517,0.00304691679775715,0.835163176059723,0.995237052440643,0.00480516534298658,-0.0973662286996841,0.936640202999115,0.00235040718689561,-0.350284934043884,0.936641931533813,0.00140930991619825,-0.350285470485687,0.995236575603485,0.00491749914363027,-0.0973658189177513,-0.393081873655319,0.0018230106215924,-0.919501721858978,-0.393082499504089,2.47613888859632e-006,-0.919503271579742,
- -0.39307701587677,-0.00210335501469672,-0.919503211975098,-0.393084794282913,5.97376356381574e-006,-0.919502317905426,0.549912810325623,0.00455785682424903,0.835209727287292,0.278710961341858,0.00139063119422644,0.960374057292938,0.278711199760437,0.000813616323284805,0.960374653339386,0.549893140792847,0.00268688355572522,0.835230708122253,0.99523663520813,0.00488501554355025,-0.0973661839962006,0.549912810325623,0.00455785682424903,0.835209727287292,0.549893140792847,0.00268688355572522,0.835230708122253,0.995235085487366,0.00524827651679516,-0.0973639190196991,0.936638534069061,-0.00305087468586862,-0.350284278392792,0.99523663520813,0.00488501554355025,-0.0973661839962006,0.995235085487366,0.00524827651679516,-0.0973639190196991,0.936642050743103,0.00155270157847553,-0.350284606218338,-0.393071055412292,-0.000839982239995152,-0.919507801532745,-0.393082141876221,0.00064868904883042,-0.919503211975098,-0.393081277608871,0.00251783197745681,-0.919500350952148,-0.393084794282913,-4.50337267920986e-007,-0.919502317905426,0.549893140792847,0.00268688355572522,0.835230708122253,0.278711199760437,0.000813616323284805,0.960374653339386,0.278711289167404,0.000226553020183928,0.96037495136261,0.54973965883255,0.0014079058310017,0.835334956645966,0.995235085487366,0.00524827651679516,-0.0973639190196991,0.549893140792847,0.00268688355572522,0.835230708122253,0.54973965883255,0.0014079058310017,0.835334956645966,0.995234727859497,0.00519348820671439,-0.0973703637719154,0.936642050743103,0.00155270157847553,-0.350284606218338,0.995235085487366,0.00524827651679516,-0.0973639190196991,0.995234727859497,0.00519348820671439,-0.0973703637719154,0.936640202999115,0.00265757204033434,-0.35028287768364,-0.393057078123093,-0.00194817245937884,-0.919512033462524,-0.393081873655319,-6.04522540470498e-007,-0.919503509998322,-0.393082141876221,0.00064868904883042,-0.919503211975098,-0.393071055412292,-0.000839982239995152,-0.919507801532745,0.2793328166008,-0.000265207985648885,-0.960194408893585,0.039689414203167,-0.003132309531793,-0.999207198619843,
- 0.0397231392562389,-0.00339947058819234,-0.999204933643341,0.27933269739151,-0.000953595677856356,-0.960193932056427,0.0397231392562389,-0.00339947058819234,-0.999204933643341,0.039689414203167,-0.003132309531793,-0.999207198619843,-0.805821716785431,-0.00394563982263207,-0.592145144939423,-0.805815637111664,-0.00515942694619298,-0.592144012451172,-0.805815637111664,-0.00515942694619298,-0.592144012451172,-0.805821716785431,-0.00394563982263207,-0.592145144939423,-0.93641459941864,0.00214940635487437,-0.350889146327972,-0.936416625976563,-0.000771082646679133,-0.350889325141907,-0.393674224615097,0.000765032891649753,0.919249773025513,-0.393674314022064,3.17874878419389e-007,0.919250011444092,-0.393673270940781,-0.00229183188639581,0.919247627258301,-0.393674105405808,-0.000951873371377587,0.919249594211578,0.27933269739151,-0.000953595677856356,-0.960193932056427,0.0397231392562389,-0.00339947058819234,-0.999204933643341,0.0397636704146862,-0.0032772240228951,-0.999203741550446,0.279332548379898,-0.0013186460128054,-0.960193634033203,0.0397636704146862,-0.0032772240228951,-0.999203741550446,0.0397231392562389,-0.00339947058819234,-0.999204933643341,-0.805815637111664,-0.00515942694619298,-0.592144012451172,-0.805818378925323,-0.00503467721864581,-0.592141509056091,-0.805818378925323,-0.00503467721864581,-0.592141509056091,-0.805815637111664,-0.00515942694619298,-0.592144012451172,-0.936416625976563,-0.000771082646679133,-0.350889325141907,-0.936416208744049,-0.00143719522748142,-0.35088837146759,-0.393666177988052,0.0023955418728292,0.91925036907196,-0.393674224615097,0.000765032891649753,0.919249773025513,-0.393674105405808,-0.000951873371377587,0.919249594211578,-0.393674373626709,-3.53485802406794e-006,0.919250071048737,0.279332548379898,-0.0013186460128054,-0.960193634033203,0.0397636704146862,-0.0032772240228951,-0.999203741550446,0.0398644879460335,-0.00140852341428399,-0.999204099178314,0.279332607984543,-0.000219459048821591,-0.960194408893585,0.0398644879460335,-0.00140852341428399,-0.999204099178314,0.0397636704146862,-0.0032772240228951,-0.999203741550446,
- -0.805818378925323,-0.00503467721864581,-0.592141509056091,-0.805821597576141,-0.00456876493990421,-0.592140913009644,-0.805821597576141,-0.00456876493990421,-0.592140913009644,-0.805818378925323,-0.00503467721864581,-0.592141509056091,-0.936416208744049,-0.00143719522748142,-0.35088837146759,-0.936415195465088,-0.0020390038844198,-0.350888192653656,-0.393673539161682,-0.00194897432811558,0.919248282909393,-0.39366090297699,-8.38160849525593e-006,0.91925585269928,-0.393666177988052,0.0023955418728292,0.91925036907196,-0.393674373626709,-3.53485802406794e-006,0.919250071048737,0.0398640371859074,-0.00575743103399873,-0.999188601970673,0.0398707576096058,-0.00304638012312353,-0.999200224876404,0.279332667589188,-0.000912850315216929,-0.960193932056427,0.279332250356674,-0.00182534346822649,-0.960192859172821,-0.805816888809204,-0.0056912275031209,-0.592137455940247,-0.805815815925598,-0.00573948072269559,-0.592138469219208,0.0398707576096058,-0.00304638012312353,-0.999200224876404,0.0398640371859074,-0.00575743103399873,-0.999188601970673,-0.936412155628204,0.00324869831092656,-0.350887060165405,-0.936415791511536,-0.0017892902251333,-0.350887835025787,-0.805815815925598,-0.00573948072269559,-0.592138469219208,-0.805816888809204,-0.0056912275031209,-0.592137455940247,-0.393675416707993,0.00109866820275784,0.919248878955841,-0.39366090297699,2.86844169750111e-006,0.91925585269928,-0.393672198057175,-0.00329275312833488,0.91924512386322,-0.393674552440643,-0.000707280763890594,0.919249594211578,0.278011590242386,-0.00160749605856836,-0.960576415061951,0.0350627601146698,0.0102695878595114,-0.999332427978516,0.018022695556283,0.0308852437883615,-0.99936044216156,0.270887225866318,-0.00260684662498534,-0.962607622146606,0.018022695556283,0.0308852437883615,-0.99936044216156,0.0350627601146698,0.0102695878595114,-0.999332427978516,-0.815438389778137,0.0448817908763886,-0.577101230621338,-0.827818632125854,0.160181567072868,-0.537641286849976,-0.827818632125854,0.160181567072868,-0.537641286849976,-0.815438389778137,0.0448817908763886,-0.577101230621338,
- -0.935701608657837,0.0531930588185787,-0.348759382963181,-0.919629156589508,0.208154752850533,-0.333097249269485,-0.381679385900497,0.00267518684267998,0.924291014671326,-0.391710162162781,0.000108369626104832,0.920088648796082,-0.391798555850983,-0.00210707914084196,0.920048713684082,-0.382134974002838,6.66081978124566e-005,0.924106597900391,0.0398707576096058,-0.00304638012312353,-0.999200224876404,0.0398723818361759,-0.00308721233159304,-0.999200105667114,0.27933269739151,-0.00105044839438051,-0.960193812847137,0.279332667589188,-0.000912850315216929,-0.960193932056427,-0.805815815925598,-0.00573948072269559,-0.592138469219208,-0.805818498134613,-0.00478479312732816,-0.592143356800079,0.0398723818361759,-0.00308721233159304,-0.999200105667114,0.0398707576096058,-0.00304638012312353,-0.999200224876404,-0.936415791511536,-0.0017892902251333,-0.350887835025787,-0.936417639255524,-0.000735385227017105,-0.350886791944504,-0.805818498134613,-0.00478479312732816,-0.592143356800079,-0.805815815925598,-0.00573948072269559,-0.592138469219208,-0.393694549798965,0.000709027051925659,0.919241070747375,-0.393675416707993,0.00109866820275784,0.919248878955841,-0.393674552440643,-0.000707280763890594,0.919249594211578,-0.393675059080124,-0.000877944461535662,0.91924923658371,0.0398723818361759,-0.00308721233159304,-0.999200105667114,0.0398552231490612,-0.00299375201575458,-0.999201059341431,0.279332637786865,-0.000945899868384004,-0.960193932056427,0.27933269739151,-0.00105044839438051,-0.960193812847137,-0.805818498134613,-0.00478479312732816,-0.592143356800079,-0.805815041065216,-0.00509074656292796,-0.592145562171936,0.0398552231490612,-0.00299375201575458,-0.999201059341431,0.0398723818361759,-0.00308721233159304,-0.999200105667114,-0.936417639255524,-0.000735385227017105,-0.350886791944504,-0.936417639255524,-0.00120399601291865,-0.350885659456253,-0.805815041065216,-0.00509074656292796,-0.592145562171936,-0.805818498134613,-0.00478479312732816,-0.592143356800079,-0.393701463937759,0.000878029793966562,0.919237911701202,-0.393694549798965,0.000709027051925659,0.919241070747375,
- -0.393675059080124,-0.000877944461535662,0.91924923658371,-0.393675476312637,-0.000767053221352398,0.91924923658371,0.0398552231490612,-0.00299375201575458,-0.999201059341431,0.0398385338485241,-0.00343434372916818,-0.999200284481049,0.279332429170609,-0.00115290971007198,-0.960193812847137,0.279332637786865,-0.000945899868384004,-0.960193932056427,-0.805815041065216,-0.00509074656292796,-0.592145562171936,-0.805813670158386,-0.0052156513556838,-0.592146217823029,0.0398385338485241,-0.00343434372916818,-0.999200284481049,0.0398552231490612,-0.00299375201575458,-0.999201059341431,-0.936417639255524,-0.00120399601291865,-0.350885659456253,-0.936418056488037,-0.000763966585509479,-0.350885510444641,-0.805813670158386,-0.0052156513556838,-0.592146217823029,-0.805815041065216,-0.00509074656292796,-0.592145562171936,-0.393701434135437,0.00076851958874613,0.919238090515137,-0.393701463937759,0.000878029793966562,0.919237911701202,-0.393675476312637,-0.000767053221352398,0.91924923658371,-0.393675416707993,-0.000968645268585533,0.919248998165131,0.0398385338485241,-0.00343434372916818,-0.999200284481049,0.0397989675402641,-0.00273304455913603,-0.999204039573669,0.279332607984543,-0.000795585860032588,-0.960194051265717,0.279332429170609,-0.00115290971007198,-0.960193812847137,-0.805813670158386,-0.0052156513556838,-0.592146217823029,-0.805814206600189,-0.00503512658178806,-0.592147052288055,0.0397989675402641,-0.00273304455913603,-0.999204039573669,0.0398385338485241,-0.00343434372916818,-0.999200284481049,-0.936418056488037,-0.000763966585509479,-0.350885510444641,-0.936416923999786,-0.00150561355985701,-0.35088637471199,-0.805814206600189,-0.00503512658178806,-0.592147052288055,-0.805813670158386,-0.0052156513556838,-0.592146217823029,-0.393686413764954,0.000969044165685773,0.919244289398193,-0.393701434135437,0.00076851958874613,0.919238090515137,-0.393675416707993,-0.000968645268585533,0.919248998165131,-0.393675118684769,-0.000622184714302421,0.919249475002289,0.0397989675402641,-0.00273304455913603,-0.999204039573669,
- 0.0347563251852989,-0.00134764064569026,-0.999394953250885,0.2780502140522,-0.000215694337384775,-0.960566520690918,0.279332607984543,-0.000795585860032588,-0.960194051265717,-0.805814206600189,-0.00503512658178806,-0.592147052288055,-0.816454291343689,-0.00437432387843728,-0.577393531799316,0.0347563251852989,-0.00134764064569026,-0.999394953250885,0.0397989675402641,-0.00273304455913603,-0.999204039573669,-0.936416923999786,-0.00150561355985701,-0.35088637471199,-0.937023103237152,-0.00197737198323011,-0.349262028932571,-0.816454291343689,-0.00437432387843728,-0.577393531799316,-0.805814206600189,-0.00503512658178806,-0.592147052288055,-0.391653835773468,0.00186705985106528,0.920110821723938,-0.393686413764954,0.000969044165685773,0.919244289398193,-0.393675118684769,-0.000622184714302421,0.919249475002289,-0.391729086637497,-5.98840358634334e-007,0.920080602169037,0.270887225866318,-0.00260684662498534,-0.962607622146606,0.018022695556283,0.0308852437883615,-0.99936044216156,0.00407103123143315,0.0964637026190758,-0.995328187942505,0.243213146924973,-0.00464283674955368,-0.969961762428284,0.00407103123143315,0.0964637026190758,-0.995328187942505,0.018022695556283,0.0308852437883615,-0.99936044216156,-0.827818632125854,0.160181567072868,-0.537641286849976,-0.783989489078522,0.389259576797485,-0.483567386865616,-0.783989489078522,0.389259576797485,-0.483567386865616,-0.827818632125854,0.160181567072868,-0.537641286849976,-0.919629156589508,0.208154752850533,-0.333097249269485,-0.852594494819641,0.443202555179596,-0.276865243911743,-0.34438419342041,0.00621841195970774,0.938808262348175,-0.381679385900497,0.00267518684267998,0.924291014671326,-0.382134974002838,6.66081978124566e-005,0.924106597900391,-0.347975552082062,-0.00130480527877808,0.93750274181366,0.243213146924973,-0.00464283674955368,-0.969961762428284,0.00407103123143315,0.0964637026190758,-0.995328187942505,-0.00383744388818741,0.160942301154137,-0.986956357955933,0.198115348815918,-0.0100332871079445,-0.980127334594727,-0.00383744388818741,0.160942301154137,-0.986956357955933,
- 0.00407103123143315,0.0964637026190758,-0.995328187942505,-0.783989489078522,0.389259576797485,-0.483567386865616,-0.675369501113892,0.617848336696625,-0.402665436267853,-0.675369501113892,0.617848336696625,-0.402665436267853,-0.783989489078522,0.389259576797485,-0.483567386865616,-0.852594494819641,0.443202555179596,-0.276865243911743,-0.713351666927338,0.674274623394012,-0.191005915403366,-0.281916588544846,0.0145527590066195,0.959328591823578,-0.34438419342041,0.00621841195970774,0.938808262348175,-0.347975552082062,-0.00130480527877808,0.93750274181366,-0.29409784078598,3.52263450622559e-005,0.955775380134583,0.198115348815918,-0.0100332871079445,-0.980127334594727,-0.00383744388818741,0.160942301154137,-0.986956357955933,-0.00604233052581549,0.218734011054039,-0.975765824317932,0.142047539353371,-0.00446130754426122,-0.989849865436554,-0.00604233052581549,0.218734011054039,-0.975765824317932,-0.00383744388818741,0.160942301154137,-0.986956357955933,-0.675369501113892,0.617848336696625,-0.402665436267853,-0.499219685792923,0.808461844921112,-0.31171989440918,-0.499219685792923,0.808461844921112,-0.31171989440918,-0.675369501113892,0.617848336696625,-0.402665436267853,-0.713351666927338,0.674274623394012,-0.191005915403366,-0.505570113658905,0.857444941997528,-0.0958487838506699,-0.190546646714211,0.0147726684808731,0.981566965579987,-0.281916588544846,0.0145527590066195,0.959328591823578,-0.29409784078598,3.52263450622559e-005,0.955775380134583,-0.214537292718887,-0.0005133225931786,0.976715624332428,0.142047539353371,-0.00446130754426122,-0.989849865436554,-0.00604233052581549,0.218734011054039,-0.975765824317932,-0.00882043316960335,0.252355217933655,-0.967594504356384,0.0706888660788536,-0.00506571866571903,-0.997485637664795,-0.00882043316960335,0.252355217933655,-0.967594504356384,-0.00604233052581549,0.218734011054039,-0.975765824317932,-0.499219685792923,0.808461844921112,-0.31171989440918,-0.265016436576843,0.933653116226196,-0.240952610969543,-0.265016436576843,0.933653116226196,-0.240952610969543,-0.499219685792923,0.808461844921112,-0.31171989440918,
- -0.505570113658905,0.857444941997528,-0.0958487838506699,-0.237122818827629,0.971107482910156,-0.0268928781151772,-0.101115137338638,0.00825290754437447,0.994840562343597,-0.190546646714211,0.0147726684808731,0.981566965579987,-0.214537292718887,-0.0005133225931786,0.976715624332428,-0.103017784655094,0.00735774356871843,0.994652330875397,0.0706888660788536,-0.00506571866571903,-0.997485637664795,-0.00882043316960335,0.252355217933655,-0.967594504356384,-0.00389715423807502,0.264283567667007,-0.964437127113342,0.0357698649168015,-0.00705910753458738,-0.999335169792175,-0.00389715423807502,0.264283567667007,-0.964437127113342,-0.00882043316960335,0.252355217933655,-0.967594504356384,-0.265016436576843,0.933653116226196,-0.240952610969543,-0.130801916122437,0.968878984451294,-0.21015302836895,-0.130801916122437,0.968878984451294,-0.21015302836895,-0.265016436576843,0.933653116226196,-0.240952610969543,-0.237122818827629,0.971107482910156,-0.0268928781151772,-0.136476561427116,0.990629732608795,-0.00519997300580144,-0.053003616631031,0.0108676925301552,0.99853527545929,-0.0514728836715221,0.0114402109757066,0.998608946800232,-0.101115137338638,0.00825290754437447,0.994840562343597,-0.103017784655094,0.00735774356871843,0.994652330875397,-0.00287771946750581,0.264248818159103,-0.964450240135193,0.00157731771469116,0.24925309419632,-0.968437075614929,-0.100059814751148,-0.000673800706863403,-0.994981169700623,-0.0499142706394196,-0.00423589162528515,-0.998744606971741,0.168179631233215,0.962164878845215,-0.214369714260101,0.309040129184723,0.917508900165558,-0.250343263149261,0.00157731771469116,0.24925309419632,-0.968437075614929,-0.00287771946750581,0.264248818159103,-0.964450240135193,0.191928446292877,0.98136967420578,-0.00878156442195177,0.291217774152756,0.955917060375214,-0.0376153998076916,0.309040129184723,0.917508900165558,-0.250343263149261,0.168179631233215,0.962164878845215,-0.214369714260101,0.142250075936317,0.00190822430886328,0.989829003810883,0.069188728928566,0.00722676049917936,0.997577488422394,0.0668739005923271,0.00694206729531288,0.997737348079681,
- 0.106505803763866,0.0135875474661589,0.994219243526459,-0.278535157442093,0.0013865769142285,-0.960425078868866,-0.0379375852644444,0.00438032811507583,-0.999270558357239,-0.0391099452972412,0.00302928499877453,-0.999230325222015,-0.278711289167404,0.000994615140371025,-0.960374534130096,-0.0391099452972412,0.00302928499877453,-0.999230325222015,-0.0379375852644444,0.00438032811507583,-0.999270558357239,0.809364914894104,0.00433751987293363,-0.587290048599243,0.806201279163361,0.00507118413224816,-0.591619610786438,0.806201279163361,0.00507118413224816,-0.591619610786438,0.809364914894104,0.00433751987293363,-0.587290048599243,0.936723113059998,-0.00246916059404612,-0.350062608718872,0.936639606952667,0.00111340777948499,-0.350292652845383,0.393072485923767,-0.000836210208944976,0.919507145881653,0.392814427614212,-1.17381568998098e-006,0.919617772102356,0.392809152603149,0.00250473129563034,0.91961658000946,0.393082320690155,0.000810119090601802,0.919502973556519,0.00157731771469116,0.24925309419632,-0.968437075614929,-9.13068652153015e-005,0.208552956581116,-0.978011131286621,-0.168787866830826,0.000709280371665955,-0.985652148723602,-0.100059814751148,-0.000673800706863403,-0.994981169700623,0.309040129184723,0.917508900165558,-0.250343263149261,0.548836946487427,0.766071677207947,-0.334533184766769,-9.13068652153015e-005,0.208552956581116,-0.978011131286621,0.00157731771469116,0.24925309419632,-0.968437075614929,0.291217774152756,0.955917060375214,-0.0376153998076916,0.567863285541534,0.814123570919037,-0.121384635567665,0.548836946487427,0.766071677207947,-0.334533184766769,0.309040129184723,0.917508900165558,-0.250343263149261,0.239636018872261,-0.000139951720484532,0.970862865447998,0.142250075936317,0.00190822430886328,0.989829003810883,0.106505803763866,0.0135875474661589,0.994219243526459,0.217902630567551,0.0161714181303978,0.975836575031281,-9.13068652153015e-005,0.208552956581116,-0.978011131286621,-0.00545082986354828,0.153591424226761,-0.98811948299408,-0.220564991235733,0.00214921683073044,-0.975369930267334,
- -0.168787866830826,0.000709280371665955,-0.985652148723602,0.548836946487427,0.766071677207947,-0.334533184766769,0.712074458599091,0.556255459785461,-0.42840388417244,-0.00545082986354828,0.153591424226761,-0.98811948299408,-9.13068652153015e-005,0.208552956581116,-0.978011131286621,0.567863285541534,0.814123570919037,-0.121384635567665,0.764721691608429,0.606152415275574,-0.218586444854736,0.712074458599091,0.556255459785461,-0.42840388417244,0.548836946487427,0.766071677207947,-0.334533184766769,0.312239974737167,-0.00232966267503798,0.950000524520874,0.239636018872261,-0.000139951720484532,0.970862865447998,0.217902630567551,0.0161714181303978,0.975836575031281,0.303308099508286,0.0100829312577844,0.952839255332947,-0.00545082986354828,0.153591424226761,-0.98811948299408,-0.013988378457725,0.0894710719585419,-0.995891213417053,-0.257114857435226,0.000664040504489094,-0.966380655765533,-0.220564991235733,0.00214921683073044,-0.975369930267334,0.712074458599091,0.556255459785461,-0.42840388417244,0.80318146944046,0.320138812065125,-0.502404868602753,-0.013988378457725,0.0894710719585419,-0.995891213417053,-0.00545082986354828,0.153591424226761,-0.98811948299408,0.764721691608429,0.606152415275574,-0.218586444854736,0.880813300609589,0.366082578897476,-0.300252467393875,0.80318146944046,0.320138812065125,-0.502404868602753,0.712074458599091,0.556255459785461,-0.42840388417244,0.363122701644897,-4.61488962173462e-005,0.931741416454315,0.312239974737167,-0.00232966267503798,0.950000524520874,0.303308099508286,0.0100829312577844,0.952839255332947,0.361161947250366,0.00565861212089658,0.932485997676849,-0.013988378457725,0.0894710719585419,-0.995891213417053,-0.024845652282238,0.0299715455621481,-0.999241948127747,-0.274125218391418,0.000533310754690319,-0.961693942546844,-0.257114857435226,0.000664040504489094,-0.966380655765533,0.80318146944046,0.320138812065125,-0.502404868602753,0.827279686927795,0.105410106480122,-0.551812589168549,-0.024845652282238,0.0299715455621481,-0.999241948127747,-0.013988378457725,0.0894710719585419,-0.995891213417053,
- 0.880813300609589,0.366082578897476,-0.300252467393875,0.929961085319519,0.137257501482964,-0.341076195240021,0.827279686927795,0.105410106480122,-0.551812589168549,0.80318146944046,0.320138812065125,-0.502404868602753,0.385953634977341,-0.000314220756990835,0.922518134117126,0.363122701644897,-4.61488962173462e-005,0.931741416454315,0.361161947250366,0.00565861212089658,0.932485997676849,0.385749965906143,0.00143497809767723,0.922602295875549,-0.024845652282238,0.0299715455621481,-0.999241948127747,-0.0379341393709183,0.00344388140365481,-0.99927431344986,-0.278530865907669,0.000232459366088733,-0.960427284240723,-0.274125218391418,0.000533310754690319,-0.961693942546844,0.827279686927795,0.105410106480122,-0.551812589168549,0.809304237365723,0.0124938543885946,-0.587256968021393,-0.0379341393709183,0.00344388140365481,-0.99927431344986,-0.024845652282238,0.0299715455621481,-0.999241948127747,0.929961085319519,0.137257501482964,-0.341076195240021,0.936664402484894,0.0114764412865043,-0.350040286779404,0.809304237365723,0.0124938543885946,-0.587256968021393,0.827279686927795,0.105410106480122,-0.551812589168549,0.392822533845901,-0.00177657953463495,0.919612586498261,0.385953634977341,-0.000314220756990835,0.922518134117126,0.385749965906143,0.00143497809767723,0.922602295875549,0.392823368310928,4.52902168035507e-006,0.91961395740509,-0.278711289167404,0.000994615140371025,-0.960374534130096,-0.0391099452972412,0.00302928499877453,-0.999230325222015,-0.0390748158097267,0.00321698188781738,-0.999231159687042,-0.278711229562759,0.00107164785731584,-0.960374355316162,-0.0390748158097267,0.00321698188781738,-0.999231159687042,-0.0391099452972412,0.00302928499877453,-0.999230325222015,0.806201279163361,0.00507118413224816,-0.591619610786438,0.806196987628937,0.00515943951904774,-0.591624677181244,0.806196987628937,0.00515943951904774,-0.591624677181244,0.806201279163361,0.00507118413224816,-0.591619610786438,0.936639606952667,0.00111340777948499,-0.350292652845383,0.936640083789825,0.000955896219238639,-0.350292176008224,
- 0.393087148666382,-0.000811982026789337,0.919500946998596,0.393072485923767,-0.000836210208944976,0.919507145881653,0.393082320690155,0.000810119090601802,0.919502973556519,0.393082350492477,0.000884818262420595,0.919502854347229,-0.278711229562759,0.00107164785731584,-0.960374355316162,-0.0390748158097267,0.00321698188781738,-0.999231159687042,-0.0390686206519604,0.00261847767978907,-0.999233186244965,-0.278711408376694,0.000288746814476326,-0.960374891757965,-0.0390686206519604,0.00261847767978907,-0.999233186244965,-0.0390748158097267,0.00321698188781738,-0.999231159687042,0.806196987628937,0.00515943951904774,-0.591624677181244,0.806197226047516,0.00512719061225653,-0.591624677181244,0.806197226047516,0.00512719061225653,-0.591624677181244,0.806196987628937,0.00515943951904774,-0.591624677181244,0.936640083789825,0.000955896219238639,-0.350292176008224,0.936640083789825,0.00121872848831117,-0.350291162729263,0.393093585968018,-0.000886134395841509,0.919498085975647,0.393087148666382,-0.000811982026789337,0.919500946998596,0.393082350492477,0.000884818262420595,0.919502854347229,0.393082499504089,0.0007701400318183,0.919502973556519,-0.278711408376694,0.000288746814476326,-0.960374891757965,-0.0390686206519604,0.00261847767978907,-0.999233186244965,-0.0390562154352665,0.00298202852718532,-0.999232649803162,-0.278711289167404,0.000943162536714226,-0.960374534130096,-0.0390562154352665,0.00298202852718532,-0.999232649803162,-0.0390686206519604,0.00261847767978907,-0.999233186244965,0.806197226047516,0.00512719061225653,-0.591624677181244,0.806199073791504,0.00478556985035539,-0.591625154018402,0.806199073791504,0.00478556985035539,-0.591625154018402,0.806197226047516,0.00512719061225653,-0.591624677181244,0.936640083789825,0.00121872848831117,-0.350291162729263,0.936640560626984,0.000928264926187694,-0.350290834903717,0.393093675374985,-0.000771622115280479,0.919498145580292,0.393093585968018,-0.000886134395841509,0.919498085975647,0.393082499504089,0.0007701400318183,0.919502973556519,0.393082439899445,0.000797642220277339,0.919502973556519,
- -0.278711289167404,0.000943162536714226,-0.960374534130096,-0.0390562154352665,0.00298202852718532,-0.999232649803162,-0.0390973687171936,0.00295542413368821,-0.999231040477753,-0.278711199760437,0.00115780124906451,-0.960374355316162,-0.0390973687171936,0.00295542413368821,-0.999231040477753,-0.0390562154352665,0.00298202852718532,-0.999232649803162,0.806199073791504,0.00478556985035539,-0.591625154018402,0.806201934814453,0.00438489159569144,-0.591624319553375,0.806201934814453,0.00438489159569144,-0.591624319553375,0.806199073791504,0.00478556985035539,-0.591625154018402,0.936640560626984,0.000928264926187694,-0.350290834903717,0.93664026260376,0.00114593259058893,-0.350291073322296,0.393086165189743,-0.00210337666794658,0.919499278068542,0.393093675374985,-0.000771622115280479,0.919498145580292,0.393082439899445,0.000797642220277339,0.919502973556519,0.393082499504089,3.40785027219681e-006,0.919503271579742,-0.278711199760437,0.00115780124906451,-0.960374355316162,-0.0390973687171936,0.00295542413368821,-0.999231040477753,-0.0391875058412552,0.00132021564058959,-0.999231100082397,-0.278711289167404,0.000205788863240741,-0.96037495136261,-0.0391875058412552,0.00132021564058959,-0.999231100082397,-0.0390973687171936,0.00295542413368821,-0.999231040477753,0.806201934814453,0.00438489159569144,-0.591624319553375,0.806202054023743,0.00428238045424223,-0.591624736785889,0.806202054023743,0.00428238045424223,-0.591624736785889,0.806201934814453,0.00438489159569144,-0.591624319553375,0.93664026260376,0.00114593259058893,-0.350291073322296,0.936639130115509,0.00191112456377596,-0.350290775299072,0.393081873655319,0.00182675628457218,0.919501721858978,0.393080204725266,7.83717950980645e-006,0.919504225254059,0.393086165189743,-0.00210337666794658,0.919499278068542,0.393082499504089,3.40785027219681e-006,0.919503271579742,-0.0391872599720955,0.00439651124179363,-0.999222278594971,-0.0392224937677383,0.00260986271314323,-0.999227106571198,-0.278711259365082,0.000815782172139734,-0.960374593734741,-0.278711080551147,0.00139388954266906,-0.960374057292938,
- 0.806201815605164,0.00434598186984658,-0.591624617576599,0.806199431419373,0.00466100731864572,-0.591625511646271,-0.0392224937677383,0.00260986271314323,-0.999227106571198,-0.0391872599720955,0.00439651124179363,-0.999222278594971,0.936637938022614,-0.00248066219501197,-0.350290358066559,0.936639845371246,0.00126149971038103,-0.350291639566422,0.806199431419373,0.00466100731864572,-0.591625511646271,0.806201815605164,0.00434598186984658,-0.591624617576599,0.393093019723892,-0.000840823515318334,0.919498324394226,0.393080204725266,-2.19958610614412e-006,0.919504225254059,0.393081277608871,0.00251435954123735,0.919500350952148,0.393082141876221,0.000647529435809702,0.919503211975098,-0.0392224937677383,0.00260986271314323,-0.999227106571198,-0.0393789671361446,0.00138557387981564,-0.999223470687866,-0.278711289167404,0.000226549731451087,-0.96037495136261,-0.278711259365082,0.000815782172139734,-0.960374593734741,0.806199431419373,0.00466100731864572,-0.591625511646271,0.806203842163086,0.00461013521999121,-0.591619908809662,-0.0393789671361446,0.00138557387981564,-0.999223470687866,-0.0392224937677383,0.00260986271314323,-0.999227106571198,0.936639845371246,0.00126149971038103,-0.350291639566422,0.936638176441193,0.00215932121500373,-0.350291818380356,0.806203842163086,0.00461013521999121,-0.591619908809662,0.806199431419373,0.00466100731864572,-0.591625511646271,0.393105149269104,-0.00195069040637463,0.919491529464722,0.393093019723892,-0.000840823515318334,0.919498324394226,0.393082141876221,0.000647529435809702,0.919503211975098,0.393081873655319,-1.85335488822602e-006,0.919503509998322,-0.329452663660049,-4.16216607845854e-006,0.944172143936157,-0.336219251155853,-4.72906913273619e-006,0.941783845424652,-0.350883305072784,-5.96179597778246e-006,0.936419188976288,-0.336814045906067,-4.77896173833869e-006,0.941571176052094,-0.341768234968185,-5.19486866323859e-006,0.939784288406372,-0.350889325141907,-5.96230529481545e-006,0.936416923999786,-0.343945354223251,-5.37784717380418e-006,0.938989639282227,-0.337266653776169,-4.8169276851695e-006,0.941409230232239,
- 0.328844845294952,1.5990503015928e-005,0.944384038448334,0.336807131767273,1.87254554475658e-005,0.941573739051819,0.32984983921051,1.6335341570084e-005,0.94403350353241,0.336620390415192,1.86612251127372e-005,0.941640555858612,0.350294888019562,2.33741739066318e-005,0.936639547348022,0.336346536874771,1.85670505743474e-005,0.941738307476044,0.350282788276672,2.3369982955046e-005,0.936644077301025,0.335611879825592,1.83144602488028e-005,0.942000448703766
- }
- BinormalsW: *2078 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *6234 {
- a: -0.195093840360641,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474542617798,0,-0.555562913417816,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474542617798,0,-0.555562913417816,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785071849823,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785071849823,0,-0.195091173052788,-1,0,-3.91374133101863e-009,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,-3.91374133101863e-009,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,0,0.382685154676437,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,0,0.382685154676437,-0.831473886966705,-7.74484021803801e-007,0.555564045906067,-0.831473767757416,-1.23917607197654e-006,0.555564045906067,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.831473827362061,0,0.555563986301422,-0.707110047340393,-4.1305028730676e-007,0.707103610038757,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.831473767757416,-8.26097164008388e-007,0.555563986301422,-0.707110047340393,-4.1305028730676e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.555560410022736,0,0.831476211547852,
- -0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477284431458,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477284431458,0.707108378410339,0,0.707105278968811,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,0,0.707105278968811,0.831474542617798,-1.5489339943997e-007,0.555562913417816,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.831474542617798,-1.5489339943997e-007,0.555562913417816,0.89970064163208,-5.14232390003144e-008,0.436507523059845,0.89970064163208,-1.02846563265757e-007,0.436507552862167,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.956954777240753,-0,-0.290237456560135,0.956954658031464,-0,-0.290237426757813,0.899700701236725,0,-0.43650758266449,0.89970064163208,0,-0.436507552862167,0.899700701236725,0,-0.43650758266449,0.831473767757416,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.89970064163208,0,-0.436507552862167,0.831473767757416,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560410022736,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560410022736,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,
- 0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.195093557238579,0,-0.98078465461731,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.195093557238579,0,-0.98078465461731,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093840360641,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093840360641,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474542617798,0,-0.555562913417816,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474542617798,0,-0.555562913417816,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785071849823,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,3.91374133101863e-009,-0.980785071849823,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089757442474,-1,0,3.91374133101863e-009,-0.980785489082336,0,0.195089742541313,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.923878848552704,8.2611853713388e-007,0.382685124874115,-0.980785489082336,0,0.195089757442474,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.831473767757416,1.65223741532827e-006,0.555564045906067,-0.831473886966705,-0,0.555564045906067,-0.923878848552704,8.2611853713388e-007,0.382685124874115,-0.831473767757416,-6.1957166508364e-007,0.555563986301422,
- -0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.707110047340393,0,0.707103610038757,-0.831473827362061,-9.29360169266147e-007,0.555563986301422,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,0,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477284431458,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.707108378410339,-1.85872784186358e-006,0.707105278968811,0.555558919906616,0,0.831477284431458,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.831474542617798,-1.44568309679016e-006,0.555562913417816,0.707108378410339,-1.85872784186358e-006,0.707105278968811,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.923878848552704,2.06535588631596e-007,0.382685154676437,0.831474542617798,-1.44568309679016e-006,0.555562913417816,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.979528605937958,0.0161890517920256,0.200653463602066,0.98076456785202,0.00645945034921169,0.195087119936943,0.923878848552704,2.06535588631596e-007,0.382685154676437,0.979528605937958,0.0161890517920256,0.200653463602066,
- 1,5.63008361496031e-005,1.51532753989159e-006,0.999979734420776,-0.00636540865525603,1.54224699144834e-006,0.98076456785202,0.00645945034921169,0.195087119936943,1,5.63008361496031e-005,1.51532753989159e-006,0.979563415050507,-0.0138356070965528,-0.200659185647964,0.980785489082336,0,-0.195089757442474,0.999979734420776,-0.00636540865525603,1.54224699144834e-006,0.979563415050507,-0.0138356070965528,-0.200659185647964,0.923878312110901,0,-0.382686465978622,0.923878312110901,0,-0.382686465978622,0.980785489082336,0,-0.195089757442474,0.923878312110901,0,-0.382686465978622,0.831473827362061,0,-0.555563986301422,0.831473767757416,0,-0.555563986301422,0.923878312110901,0,-0.382686465978622,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473767757416,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.195093557238579,0,-0.98078465461731,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.195093557238579,0,-0.98078465461731,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093840360641,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,
- -0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.831473767757416,4.13060433857027e-007,0.555564045906067,-0.831473767757416,1.65223741532827e-006,0.555564045906067,-0.923878848552704,7.22854792911676e-007,0.38268518447876,-0.831473767757416,3.20114168061991e-006,0.555563986301422,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.831473767757416,-6.1957166508364e-007,0.555563986301422,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,-6.19575530436123e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,
- 0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.707108378410339,-1.13588919248286e-006,0.707105219364166,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.915080428123474,-0.00056157069047913,0.403271019458771,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.831474483013153,-1.65220558301371e-006,0.555562973022461,0.915080428123474,-0.00056157069047913,0.403271019458771,0.973621368408203,0.0148864593356848,0.227683708071709,0.979528605937958,0.0161890517920256,0.200653463602066,0.923878848552704,4.2632564145606e-012,0.382685154676437,0.973621368408203,0.0148864593356848,0.227683708071709,1,-4.66110749997029e-009,1.47354751334206e-006,1,5.63008361496031e-005,1.51532753989159e-006,0.979528605937958,0.0161890517920256,0.200653463602066,1,-4.66110749997029e-009,1.47354751334206e-006,0.973537623882294,-0.0198492165654898,-0.227663204073906,0.979563415050507,-0.0138356070965528,-0.200659185647964,1,5.63008361496031e-005,1.51532753989159e-006,0.973537623882294,-0.0198492165654898,-0.227663204073906,0.91507887840271,0.00158896064385772,-0.403271734714508,0.923878312110901,0,-0.382686465978622,0.979563415050507,-0.0138356070965528,-0.200659185647964,0.91507887840271,0.00158896064385772,-0.403271734714508,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.923878312110901,0,-0.382686465978622,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,
- 0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.831473767757416,-2.27182226808509e-006,0.555564045906067,-0.831473767757416,4.13060433857027e-007,0.555564045906067,
- -0.923878848552704,-7.22854053947231e-007,0.38268518447876,-0.831473767757416,5.16312275067321e-006,0.555563986301422,-0.707110047340393,2.27178156819718e-006,0.707103610038757,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.831473767757416,3.20114168061991e-006,0.555563986301422,-0.707110047340393,2.27178156819718e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,3.09788873664729e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.707108378410339,-8.26101256734546e-007,0.707105219364166,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.902050018310547,-0.000483613170217723,0.431631326675415,0.915080428123474,-0.00056157069047913,0.403271019458771,0.831474483013153,-1.342418272543e-006,0.555562973022461,0.956938683986664,0.00368061615154147,-0.290267139673233,0.95695024728775,5.30082193417325e-011,-0.290252327919006,
- 0.902048885822296,0.0015957891009748,-0.431630998849869,0.91507887840271,0.00158896064385772,-0.403271734714508,0.902048885822296,0.0015957891009748,-0.431630998849869,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.91507887840271,0.00158896064385772,-0.403271734714508,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,
- -0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.831473767757416,-1.44570435622882e-006,0.555564045906067,-0.831473767757416,-2.27182226808509e-006,0.555564045906067,-0.923878848552704,-1.13591215722408e-006,0.38268518447876,-0.831473767757416,2.06524714485568e-006,0.555563986301422,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.707110047340393,2.27178156819718e-006,0.707103610038757,-0.831473767757416,5.16312275067321e-006,0.555563986301422,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.27178156819718e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-3.8723501916138e-007,0.707105219364166,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-3.8723501916138e-007,0.707105219364166,
- 0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.707108378410339,-5.6794470992827e-007,0.707105219364166,0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.89970064163208,-2.05693140742369e-007,0.436507523059845,0.902050018310547,-0.000483613170217723,0.431631326675415,0.831474483013153,-9.80998834165803e-007,0.555562973022461,0.95695024728775,5.30082193417325e-011,-0.290252327919006,0.956954777240753,-0,-0.290237456560135,0.899700582027435,0,-0.436507552862167,0.902048885822296,0.0015957891009748,-0.431630998849869,0.899700582027435,0,-0.436507552862167,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.902048885822296,0.0015957891009748,-0.431630998849869,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.382668673992157,0,-0.923885703086853,-0.195093855261803,0,-0.980784595012665,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.555559635162354,0,-0.83147668838501,-0.382668673992157,0,-0.923885703086853,-0.555559635162354,0,-0.83147668838501,-0.707109153270721,0,-0.707104384899139,-0.707109153270721,0,-0.707104384899139,-0.555559635162354,0,-0.83147668838501,
- -0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.831474483013153,0,-0.555562973022461,-0.707109153270721,0,-0.707104384899139,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.923878848552704,0,-0.382685154676437,-0.831474483013153,0,-0.555562973022461,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-0.980785131454468,0,-0.195091173052788,-0.923878848552704,0,-0.382685154676437,-0.980785131454468,0,-0.195091173052788,-1,0,0,-1,0,0,-0.980785131454468,0,-0.195091173052788,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.980785489082336,0,0.195089742541313,-1,0,0,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.980785489082336,0,0.195089742541313,-0.923878848552704,-5.16323780175298e-007,0.38268518447876,-0.831473767757416,-1.23917607197654e-006,0.555564045906067,-0.831473767757416,-1.44570435622882e-006,0.555564045906067,-0.923878848552704,-4.64691908064196e-007,0.38268518447876,-0.831473767757416,-8.26097164008388e-007,0.555563986301422,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.831473767757416,2.06524714485568e-006,0.555563986301422,-0.707110047340393,2.06526323154321e-007,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.555560350418091,0,0.831476211547852,-0.707110047340393,2.22014637074608e-006,0.707103610038757,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.38266921043396,0,0.923885464668274,-0.555560350418091,0,0.831476211547852,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,-0.195093870162964,0,0.980784595012665,-0.38266921043396,0,0.923885464668274,-0.195093870162964,0,0.980784595012665,0,0,1,0,0,1,-0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,0.195093870162964,0,0.980784595012665,0,0,1,0.195093870162964,0,0.980784595012665,
- 0.38266921043396,0,0.923885464668274,0.38266921043396,0,0.923885464668274,0.195093870162964,0,0.980784595012665,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.555558919906616,0,0.831477165222168,0.38266921043396,0,0.923885464668274,0.555558919906616,0,0.831477165222168,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.707108378410339,-3.8723501916138e-007,0.707105219364166,0.555558919906616,0,0.831477165222168,0.707108378410339,-1.5489391103074e-007,0.707105219364166,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.707108378410339,-3.8723501916138e-007,0.707105219364166,0.831474483013153,-3.61419495220616e-007,0.555562973022461,0.89970064163208,-1.02846563265757e-007,0.436507552862167,0.89970064163208,-2.05693140742369e-007,0.436507523059845,0.831474483013153,-6.45393072318257e-007,0.555562973022461,0.956954777240753,-0,-0.290237456560135,0.956954777240753,-0,-0.290237456560135,0.89970064163208,0,-0.436507552862167,0.899700582027435,0,-0.436507552862167,0.89970064163208,0,-0.436507552862167,0.831473827362061,0,-0.555563986301422,0.831473827362061,0,-0.555563986301422,0.899700582027435,0,-0.436507552862167,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.707110047340393,0,-0.707103610038757,0.831473827362061,0,-0.555563986301422,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.555560350418091,0,-0.831476211547852,0.707110047340393,0,-0.707103610038757,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.382668077945709,0,-0.923885941505432,0.555560350418091,0,-0.831476211547852,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0.19509357213974,0,-0.980784714221954,0.382668077945709,0,-0.923885941505432,0.19509357213974,0,-0.980784714221954,0,0,-1,0,0,-1,0.19509357213974,0,-0.980784714221954,0,0,-1,-0.195093855261803,0,-0.980784595012665,-0.195093855261803,0,-0.980784595012665,0,0,-1,0.195091545581818,0,0.980785071849823,
- 0.382661193609238,0,0.923888683319092,0.382661193609238,0,0.923888683319092,0.19509157538414,0,0.980785071849823,0.382661193609238,0,0.923888683319092,0.555571615695953,0,0.83146870136261,0.555571615695953,0,0.83146870136261,0.382661193609238,0,0.923888683319092,0.555571615695953,0,0.83146870136261,0.707103908061981,0,0.707109689712524,0.707103908061981,0,0.707109689712524,0.555571615695953,0,0.83146870136261,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.831473350524902,0,0.555564641952515,0.707103908061981,0,0.707109689712524,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682204246521,0.923880040645599,0,0.382682204246521,0.831473350524902,0,0.555564641952515,0.923880040645599,0,0.382682204246521,0.980785548686981,0,0.195089027285576,0.980785548686981,0,0.195089027285576,0.923880040645599,0,0.382682204246521,0.980785548686981,0,0.195089027285576,1,0,3.91375287733808e-009,1,0,-3.91375287733808e-009,0.980785548686981,0,0.195089027285576,1,0,3.91375287733808e-009,0.980784475803375,0,-0.195094883441925,0.980784475803375,0,-0.195094883441925,1,0,-3.91375287733808e-009,0.980784475803375,0,-0.195094883441925,0.923880696296692,0,-0.382680594921112,0.923880696296692,0,-0.382680594921112,0.980784475803375,0,-0.195094883441925,0.923880696296692,0,-0.382680594921112,0.831474304199219,-0,-0.55556321144104,0.831474304199219,-0,-0.55556321144104,0.923880696296692,0,-0.382680594921112,0.831474304199219,0,-0.55556321144104,0.707102954387665,0,-0.707110643386841,0.707102954387665,0,-0.707110643386841,0.831474304199219,0,-0.55556321144104,0.707102954387665,0,-0.707110643386841,0.555571556091309,0,-0.831468760967255,0.555571556091309,0,-0.831468760967255,0.707102954387665,0,-0.707110643386841,0.555571556091309,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.382662534713745,0,-0.923888206481934,0.555571556091309,0,-0.831468760967255,0.382662534713745,0,-0.923888206481934,0.195120796561241,0,-0.98077917098999,0.195120826363564,0,-0.98077917098999,0.382662534713745,0,-0.923888206481934,
- 0.195120796561241,0,-0.98077917098999,0,0,-1,0,0,-1,0.195120826363564,0,-0.98077917098999,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.195120453834534,0,-0.980779349803925,0,0,-1,-0.195120483636856,0,-0.980779349803925,-0.382661193609238,0,-0.923888683319092,-0.382661193609238,0,-0.923888683319092,-0.195120453834534,0,-0.980779349803925,-0.382661193609238,0,-0.923888683319092,-0.555571675300598,0,-0.83146870136261,-0.555571675300598,0,-0.83146870136261,-0.382661193609238,0,-0.923888683319092,-0.555571675300598,0,-0.83146870136261,-0.70710301399231,1.22552262382669e-006,-0.707110643386841,-0.70710301399231,1.22552262382669e-006,-0.707110643386841,-0.555571675300598,0,-0.83146870136261,-0.70710301399231,1.22552262382669e-006,-0.707110643386841,-0.831473469734192,1.4706133697473e-006,-0.555564641952515,-0.831473350524902,5.51438006368699e-007,-0.55556458234787,-0.70710301399231,1.22552262382669e-006,-0.707110643386841,-0.831473469734192,1.4706133697473e-006,-0.555564641952515,-0.903945803642273,4.85980308440048e-007,-0.427647113800049,-0.899008452892303,-0.00643032137304544,-0.4378841817379,-0.899299263954163,-0.0128595549613237,-0.437144875526428,-0.831473350524902,5.51438006368699e-007,-0.55556458234787,-0.903945803642273,4.85980308440048e-007,-0.427647113800049,-0.979559421539307,-0.0140437996014953,-0.200663939118385,-0.974348723888397,-0.0187787413597107,-0.224258601665497,-0.899008452892303,-0.00643032137304544,-0.4378841817379,-0.979559421539307,-0.0140437996014953,-0.200663939118385,-1,0,-1.71153556038917e-006,-1,4.66028549084285e-009,-1.71124906955811e-006,-0.974348723888397,-0.0187787413597107,-0.224258601665497,-1,0,-1.71153556038917e-006,-0.97948557138443,0.0187256056815386,0.200642481446266,-0.974425673484802,0.0140829170122743,0.224268332123756,-1,4.66028549084285e-009,-1.71124906955811e-006,-0.97948557138443,0.0187256056815386,0.200642481446266,-0.903939843177795,0,0.427659690380096,-0.89901739358902,-0.00231854524463415,0.43790677189827,-0.974425673484802,0.0140829170122743,0.224268332123756,-0.89901739358902,-0.00231854524463415,0.43790677189827,
- -0.903939843177795,0,0.427659690380096,-0.831473350524902,-8.16986513996198e-008,0.555564641952515,-0.831473350524902,-6.1273986773358e-008,0.555564641952515,-0.899356961250305,-0.00463645020499825,0.437190741300583,-0.831473350524902,-8.16986513996198e-008,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.70710301399231,0,0.707110643386841,-0.831473350524902,-6.1273986773358e-008,0.555564641952515,-0.70710301399231,0,0.707110643386841,-0.555571615695953,0,0.83146870136261,-0.555571615695953,0,0.83146870136261,-0.70710301399231,0,0.707110643386841,-0.555571615695953,0,0.83146870136261,-0.382661193609238,0,0.923888683319092,-0.382661193609238,0,0.923888683319092,-0.555571615695953,0,0.83146870136261,-0.382661193609238,0,0.923888683319092,-0.19509157538414,0,0.980785071849823,-0.195091545581818,0,0.980785071849823,-0.382661193609238,0,0.923888683319092,-0.19509157538414,0,0.980785071849823,0,0,1,0,0,1,-0.195091545581818,0,0.980785071849823,0,0,1,0.195091545581818,0,0.980785071849823,0.19509157538414,0,0.980785071849823,0,0,1,-0.899008452892303,-0.00643032137304544,-0.4378841817379,-0.974348723888397,-0.0187787413597107,-0.224258601665497,-0.956854581832886,-0.0126999858766794,-0.290289521217346,-0.974425673484802,0.0140829170122743,0.224268332123756,-0.89901739358902,-0.00231854524463415,0.43790677189827,-0.956925868988037,-0.00457876175642014,0.290296107530594,-0.195092514157295,-0,0.980784833431244,-0.195093095302582,-0,0.980784714221954,-0.0980479642748833,-0,0.995181679725647,-0.0980771481990814,-0,0.995178818702698,-0.195121675729752,0,0.980778992176056,-0.195108070969582,0,0.98078179359436,-0.0980476513504982,-0,0.995181739330292,-0.0980768203735352,0,0.995178937911987,-0.412777274847031,0,0.910832047462463,-0.195108070969582,0,0.98078179359436,-0.195121675729752,0,0.980778992176056,-0.352141350507736,0,0.935946822166443,-0.582553088665009,0,0.812792658805847,-0.412777274847031,0,0.910832047462463,-0.352141350507736,0,0.935946822166443,-0.52798593044281,0,0.849253177642822,-0.72992342710495,0,0.683528959751129,
- -0.582553088665009,0,0.812792658805847,-0.52798593044281,0,0.849253177642822,-0.683518826961517,0,0.729932844638824,-0.849260747432709,0,0.527973771095276,-0.72992342710495,0,0.683528959751129,-0.683518826961517,0,0.729932844638824,-0.812797546386719,0,0.582546472549438,-0.935936748981476,-0,0.352168172597885,-0.849260747432709,0,0.527973771095276,-0.812797546386719,0,0.582546472549438,-0.910827279090881,0,0.412787824869156,-0.986658573150635,0,0.162803262472153,-0.935936748981476,-0,0.352168172597885,-0.910827279090881,0,0.412787824869156,-0.973854422569275,0,0.227172866463661,-0.995184719562531,-0,0.0980182662606239,-0.986658573150635,0,0.162803262472153,-0.973854422569275,0,0.227172866463661,-0.995184659957886,0,0.098017692565918,0.97385561466217,-0,0.227168053388596,0.995184600353241,-0,0.0980183929204941,0.995184600353241,-0,0.0980185270309448,0.986658573150635,-0,0.162802994251251,0.91082501411438,-0,0.412792682647705,0.97385561466217,-0,0.227168053388596,0.986658573150635,-0,0.162802994251251,0.935939073562622,-0,0.352161973714828,0.81279855966568,-0,0.58254486322403,0.91082501411438,-0,0.412792682647705,0.935939073562622,-0,0.352161973714828,0.849254190921783,-0,0.527984082698822,0.683518886566162,-0,0.729932844638824,0.81279855966568,-0,0.58254486322403,0.849254190921783,-0,0.527984082698822,0.729930222034454,-0,0.683521628379822,0.527990281581879,-0,0.849250435829163,0.683518886566162,-0,0.729932844638824,0.729930222034454,-0,0.683521628379822,0.58255136013031,-0,0.812793970108032,0.352126091718674,-0,0.935952544212341,0.527990281581879,-0,0.849250435829163,0.58255136013031,-0,0.812793970108032,0.412774354219437,-0,0.910833299160004,0.195093557238579,-0,0.98078465461731,0.352126091718674,-0,0.935952544212341,0.412774354219437,-0,0.910833299160004,0.19509319961071,-0,0.980784714221954,0.0981056392192841,-0,0.995176017284393,0.0980768203735352,-0,0.995178937911987,0.195093557238579,-0,0.98078465461731,0.19509319961071,-0,0.980784714221954,-0.412792444229126,-0,0.910825073719025,-0.195093095302582,-0,0.980784714221954,
- -0.195092514157295,-0,0.980784833431244,-0.352138340473175,-0,0.935947895050049,-0.582540988922119,-0,0.81280130147934,-0.412792444229126,-0,0.910825073719025,-0.352138340473175,-0,0.935947895050049,-0.527988135814667,-0,0.849251747131348,-0.729931592941284,-0,0.683520138263702,-0.582540988922119,-0,0.81280130147934,-0.527988135814667,-0,0.849251747131348,-0.683516800403595,-0,0.729934811592102,-0.849255561828613,-0,0.5279820561409,-0.729931592941284,-0,0.683520138263702,-0.683516800403595,-0,0.729934811592102,-0.812798678874969,-0,0.58254462480545,-0.93593817949295,-0,0.352164268493652,-0.849255561828613,-0,0.5279820561409,-0.812798678874969,-0,0.58254462480545,-0.910825312137604,-0,0.412792056798935,-0.98665863275528,-0,0.162802413105965,-0.93593817949295,-0,0.352164268493652,-0.910825312137604,-0,0.412792056798935,-0.973855555057526,-0,0.227168098092079,-0.99518495798111,-0,0.098015084862709,-0.98665863275528,-0,0.162802413105965,-0.973855555057526,-0,0.227168098092079,-0.99518495798111,-0,0.0980149284005165,-0.973854184150696,0,-0.227173790335655,-0.995184600353241,0,-0.0980183929204941,-0.995184600353241,0,-0.0980185270309448,-0.986657679080963,0,-0.162808761000633,-0.910829365253448,0,-0.412782996892929,-0.973854184150696,0,-0.227173790335655,-0.986657679080963,0,-0.162808761000633,-0.935940682888031,0,-0.35215750336647,-0.812790334224701,0,-0.582556247711182,-0.910829365253448,0,-0.412782996892929,-0.935940682888031,0,-0.35215750336647,-0.849252641201019,0,-0.527986764907837,-0.683529615402222,0,-0.729922890663147,-0.812790334224701,0,-0.582556247711182,-0.849252641201019,0,-0.527986764907837,-0.729931116104126,0,-0.683520793914795,-0.527974724769592,0,-0.849260091781616,-0.683529615402222,0,-0.729922890663147,-0.729931116104126,0,-0.683520793914795,-0.582549452781677,0,-0.812795281410217,-0.352144092321396,0,-0.935945808887482,-0.527974724769592,0,-0.849260091781616,-0.582549452781677,0,-0.812795281410217,-0.412775278091431,0,-0.91083288192749,-0.16283518075943,0,-0.986653208732605,-0.352144092321396,0,-0.935945808887482,
- -0.412775278091431,0,-0.91083288192749,-0.227180331945419,0,-0.973852694034576,-0.0980476513504982,0,-0.995181739330292,-0.16283518075943,0,-0.986653208732605,-0.227180331945419,0,-0.973852694034576,-0.0980768203735352,0,-0.995178937911987,-0.195092514157295,0,0.980784833431244,-0.0980771481990814,0,0.995178818702698,-0.0980479642748833,0,0.995181679725647,-0.195093110203743,0,0.980784714221954,-0.195121675729752,0,0.980778992176056,-0.0980768203735352,0,0.995178937911987,-0.0980476513504982,0,0.995181739330292,-0.195108070969582,0,0.98078179359436,-0.412777274847031,0,0.910832047462463,-0.352141350507736,0,0.935946822166443,-0.195121675729752,0,0.980778992176056,-0.195108070969582,0,0.98078179359436,-0.582553088665009,0,0.812792658805847,-0.52798593044281,0,0.849253177642822,-0.352141350507736,0,0.935946822166443,-0.412777274847031,0,0.910832047462463,-0.72992342710495,0,0.683528959751129,-0.683518826961517,0,0.729932844638824,-0.52798593044281,0,0.849253177642822,-0.582553088665009,0,0.812792658805847,-0.849260747432709,0,0.527973771095276,-0.812797546386719,0,0.582546472549438,-0.683518826961517,0,0.729932844638824,-0.72992342710495,0,0.683528959751129,-0.935936748981476,0,0.352168172597885,-0.910827279090881,0,0.412787824869156,-0.812797546386719,0,0.582546472549438,-0.849260747432709,0,0.527973771095276,-0.986658573150635,0,0.162803262472153,-0.973854422569275,0,0.227172866463661,-0.910827279090881,0,0.412787824869156,-0.935936748981476,0,0.352168172597885,-0.995184719562531,0,0.0980182662606239,-0.995184659957886,0,0.098017692565918,-0.973854422569275,0,0.227172866463661,-0.986658573150635,0,0.162803262472153,0.97385561466217,0,0.227168053388596,0.986658573150635,0,0.162802994251251,0.995184600353241,0,0.0980185270309448,0.995184600353241,0,0.0980183929204941,0.91082501411438,0,0.412792682647705,0.935939073562622,0,0.352161973714828,0.986658573150635,0,0.162802994251251,0.97385561466217,0,0.227168053388596,0.81279855966568,0,0.58254486322403,0.849254190921783,0,0.527984082698822,0.935939073562622,0,0.352161973714828,
- 0.91082501411438,0,0.412792682647705,0.683518826961517,0,0.729932904243469,0.729930222034454,0,0.683521628379822,0.849254190921783,0,0.527984082698822,0.81279855966568,0,0.58254486322403,0.527990281581879,0,0.849250435829163,0.58255136013031,0,0.812793970108032,0.729930222034454,0,0.683521628379822,0.683518826961517,0,0.729932904243469,0.352126091718674,0,0.935952544212341,0.412774354219437,0,0.910833299160004,0.58255136013031,0,0.812793970108032,0.527990281581879,0,0.849250435829163,0.195093557238579,0,0.98078465461731,0.19509319961071,0,0.980784714221954,0.412774354219437,0,0.910833299160004,0.352126091718674,0,0.935952544212341,0.0981056392192841,0,0.995176017284393,0.19509319961071,0,0.980784714221954,0.195093557238579,0,0.98078465461731,0.0980768203735352,0,0.995178937911987,-0.412792444229126,0,0.910825073719025,-0.352138340473175,0,0.935947895050049,-0.195092514157295,0,0.980784833431244,-0.195093110203743,0,0.980784714221954,-0.582540988922119,0,0.81280130147934,-0.527988135814667,0,0.849251747131348,-0.352138340473175,0,0.935947895050049,-0.412792444229126,0,0.910825073719025,-0.729931592941284,0,0.683520138263702,-0.683516800403595,0,0.729934811592102,-0.527988135814667,0,0.849251747131348,-0.582540988922119,0,0.81280130147934,-0.849255561828613,0,0.5279820561409,-0.812798678874969,0,0.58254462480545,-0.683516800403595,0,0.729934811592102,-0.729931592941284,0,0.683520138263702,-0.923888862133026,0,0.382661074399948,-0.923880755901337,0,0.382680356502533,-0.812798678874969,0,0.58254462480545,-0.849255561828613,0,0.5279820561409,-0.956941902637482,0,0.290279507637024,-0.956928730010986,0,0.290322959423065,-0.923880755901337,0,0.382680356502533,-0.923888862133026,0,0.382661074399948,-0.812790334224701,0,-0.582556247711182,-0.849252641201019,0,-0.527986764907837,-0.935944378376007,0,-0.352147817611694,-0.910835087299347,0,-0.412770479917526,-0.683529615402222,0,-0.729922890663147,-0.729931116104126,0,-0.683520793914795,-0.849252641201019,0,-0.527986764907837,-0.812790334224701,0,-0.582556247711182,-0.527974724769592,0,-0.849260091781616,
- -0.582549452781677,0,-0.812795281410217,-0.729931116104126,0,-0.683520793914795,-0.683529615402222,0,-0.729922890663147,-0.352144092321396,0,-0.935945808887482,-0.412775278091431,0,-0.91083288192749,-0.582549452781677,0,-0.812795281410217,-0.527974724769592,0,-0.849260091781616,-0.16283518075943,0,-0.986653208732605,-0.227180331945419,0,-0.973852694034576,-0.412775278091431,0,-0.91083288192749,-0.352144092321396,0,-0.935945808887482,-0.0980476513504982,0,-0.995181739330292,-0.0980768203735352,0,-0.995178937911987,-0.227180331945419,0,-0.973852694034576,-0.16283518075943,0,-0.986653208732605,-0.899299263954163,-0.0128595549613237,-0.437144875526428,-0.899008452892303,-0.00643032137304544,-0.4378841817379,-0.956854581832886,-0.0126999858766794,-0.290289521217346,-0.956931471824646,1.02638047800446e-012,-0.290313959121704,0.89970064163208,-2.05693140742369e-007,0.436507523059845,0.956951260566711,0,0.290248602628708,0.956947565078735,-3.49794672394044e-011,0.290260910987854,0.902050018310547,-0.000483613170217723,0.431631326675415,0.89970064163208,-1.02846563265757e-007,0.436507552862167,0.956951260566711,0,0.290248602628708,0.956951260566711,0,0.290248602628708,0.89970064163208,-2.05693140742369e-007,0.436507523059845,0.89970064163208,-5.14232390003144e-008,0.436507523059845,0.956951379776001,0,0.290248662233353,0.956951260566711,0,0.290248602628708,0.89970064163208,-1.02846563265757e-007,0.436507552862167,-0.910835087299347,0,-0.412770479917526,-0.935944378376007,0,-0.352147817611694,-0.956932961940765,0,-0.290309071540833,-0.95694226026535,0,-0.290278375148773,0.902050018310547,-0.000483613170217723,0.431631326675415,0.956947565078735,-3.49794672394044e-011,0.290260910987854,0.956942975521088,-0.00111455505248159,0.290273696184158,0.915080428123474,-0.00056157069047913,0.403271019458771,-0.95693564414978,-2.31950656598423e-011,0.290300101041794,-0.956925868988037,-0.00457876175642014,0.290296107530594,-0.89901739358902,-0.00231854524463415,0.43790677189827,-0.899356961250305,-0.00463645020499825,0.437190741300583,
- 0.915080428123474,-0.00056157069047913,0.403271019458771,0.956942975521088,-0.00111455505248159,0.290273696184158,0.973621368408203,0.0148864593356848,0.227683708071709,0.973537623882294,-0.0198492165654898,-0.227663204073906,0.956938683986664,0.00368061615154147,-0.290267139673233,0.91507887840271,0.00158896064385772,-0.403271734714508,-7.40821778890677e-005,1,0.000254654267337173,-0.00025865450152196,0.999999523162842,0.000917010416742414,-0.00192674354184419,0.999993860721588,0.00293068028986454,-0.00178655644413084,0.999994814395905,0.00270861503668129,-0.00192674354184419,0.999993860721588,0.00293068028986454,-0.00576093792915344,0.999983191490173,-0.000567311479244381,-0.00440040742978454,0.999990165233612,-0.000433346576755866,-0.00178655644413084,0.999994814395905,0.00270861503668129,-0.00576093792915344,0.999983191490173,-0.000567311479244381,-0.000887988484464586,0.999999463558197,-0.00033273542067036,0.00247535808011889,0.999996602535248,0.000927534478250891,-0.00440040742978454,0.999990165233612,-0.000433346576755866,-0.000301173655316234,0.999999642372131,0.000703256286215037,0.000374728057067841,0.999999523162842,-0.000875009573064744,0.000902235275134444,0.99999737739563,-0.00210676644928753,-1.25146797813613e-007,1,2.92203225171761e-007,-0.00025865450152196,0.999999523162842,0.000917010416742414,-0.00039181494503282,0.999999165534973,0.00126111868303269,-0.00187217886559665,0.999994337558746,0.00281069823540747,-0.00192674354184419,0.999993860721588,0.00293068028986454,-0.00187217886559665,0.999994337558746,0.00281069823540747,-0.00561962695792317,0.999983966350555,-0.000553417426999658,-0.00576093792915344,0.999983191490173,-0.000567311479244381,-0.00192674354184419,0.999993860721588,0.00293068028986454,-0.00561962695792317,0.999983966350555,-0.000553417426999658,-0.0016550924628973,0.999998450279236,-0.000620175153017044,-0.000887988484464586,0.999999463558197,-0.00033273542067036,-0.00576093792915344,0.999983191490173,-0.000567311479244381,-0.00093499943614006,0.999997138977051,0.00220555509440601,
- 9.02591091289651e-006,1,1.08967981304886e-006,0.000374728057067841,0.999999523162842,-0.000875009573064744,-0.000301173655316234,0.999999642372131,0.000703256286215037,-0.00039181494503282,0.999999165534973,0.00126111868303269,-0.000119711832667235,1,0.000203468021936715,-0.000822707719635218,0.999998927116394,0.00117908755782992,-0.00187217886559665,0.999994337558746,0.00281069823540747,-0.000822707719635218,0.999998927116394,0.00117908755782992,-0.00510185724124312,0.99998676776886,-0.000502441253047436,-0.00561962695792317,0.999983966350555,-0.000553417426999658,-0.00187217886559665,0.999994337558746,0.00281069823540747,-0.00510185724124312,0.99998676776886,-0.000502441253047436,-0.00234819599427283,0.999996900558472,-0.000879886909388006,-0.0016550924628973,0.999998450279236,-0.000620175153017044,-0.00561962695792317,0.999983966350555,-0.000553417426999658,0.000765750010032207,0.999998092651367,-0.00178796297404915,9.02591091289651e-006,1,1.08967981304886e-006,-0.00093499943614006,0.999997138977051,0.00220555509440601,2.52551876656071e-006,1,-5.89697128816624e-006,-0.00331696961075068,0.999982178211212,0.00496227294206619,-0.000564502959605306,0.999998390674591,0.00173241971060634,-0.000277733313851058,0.999999582767487,0.000866988091729581,-0.00173821416683495,0.999995112419128,0.00260734418407083,-0.00636631483212113,0.999979555606842,-0.000626967521384358,-0.00331696961075068,0.999982178211212,0.00496227294206619,-0.00173821416683495,0.999995112419128,0.00260734418407083,-0.00643344689160585,0.999979019165039,-0.000634252035524696,0.00374134862795472,0.9999920129776,0.00140191183891147,-0.00636631483212113,0.999979555606842,-0.000626967521384358,-0.00643344689160585,0.999979019165039,-0.000634252035524696,-0.00206324318423867,0.999997496604919,-0.000774082029238343,-0.000432926754001528,0.999999344348907,0.0010087713599205,0.000278646504739299,0.999999701976776,-0.000651722017209977,0.00129809370264411,0.999994575977325,-0.00303101330064237,-2.37081096088332e-007,1,5.53674283310102e-007,0.0270639173686504,0.999589800834656,0.00937184877693653,
- 0.162200316786766,0.985728740692139,0.0450561679899693,0.173201039433479,0.98377251625061,0.046830091625452,0.0331388153135777,0.999446153640747,0.00305112078785896,0.173201039433479,0.98377251625061,0.046830091625452,0.191115915775299,0.979493796825409,0.0637702196836472,0.0553606413304806,0.998371481895447,0.0137640191242099,0.0331388153135777,0.999446153640747,0.00305112078785896,0.191115915775299,0.979493796825409,0.0637702196836472,0.198437213897705,0.977391600608826,0.0729962289333344,0.0611847005784512,0.997860848903656,0.0230280868709087,0.0553606413304806,0.998371481895447,0.0137640191242099,0.175708413124084,0.981868743896484,0.0711354315280914,0.167618736624718,0.983519494533539,0.0677743032574654,0.03426893055439,0.999340176582336,0.01204520650208,0.0351154208183289,0.999273538589478,0.0148150362074375,-0.00173821416683495,0.999995112419128,0.00260734418407083,-0.000277733313851058,0.999999582767487,0.000866988091729581,-0.000286136491922662,0.999999344348907,0.00100998405832797,-0.00174929678905755,0.999994874000549,0.00266207871027291,-0.00643344689160585,0.999979019165039,-0.000634252035524696,-0.00173821416683495,0.999995112419128,0.00260734418407083,-0.00174929678905755,0.999994874000549,0.00266207871027291,-0.00535353319719434,0.99998551607132,-0.000527836557012051,-0.00206324318423867,0.999997496604919,-0.000774082029238343,-0.00643344689160585,0.999979019165039,-0.000634252035524696,-0.00535353319719434,0.99998551607132,-0.000527836557012051,-0.000849626667331904,0.999999523162842,-0.000319252081681043,-0.000272038567345589,0.999999761581421,0.000653804338071495,0.000352965289494023,0.999999582767487,-0.000804907933343202,0.000278646504739299,0.999999701976776,-0.000651722017209977,-0.000432926754001528,0.999999344348907,0.0010087713599205,-0.00174929678905755,0.999994874000549,0.00266207871027291,-0.000286136491922662,0.999999344348907,0.00100998405832797,-0.000250405428232625,0.999999523162842,0.000915454293135554,-0.00168952171225101,0.999995231628418,0.00258060684427619,-0.00535353319719434,0.99998551607132,-0.000527836557012051,
- -0.00174929678905755,0.999994874000549,0.00266207871027291,-0.00168952171225101,0.999995231628418,0.00258060684427619,-0.00569214625284076,0.999983668327332,-0.000560536398552358,-0.000849626667331904,0.999999523162842,-0.000319252081681043,-0.00535353319719434,0.99998551607132,-0.000527836557012051,-0.00569214625284076,0.999983668327332,-0.000560536398552358,-0.00138654699549079,0.999998867511749,-0.000519554188940674,-0.000345635053236037,0.999999582767487,0.000807136239018291,0.00030196929583326,0.999999701976776,-0.000705111306160688,0.000352965289494023,0.999999582767487,-0.000804907933343202,-0.000272038567345589,0.999999761581421,0.000653804338071495,-0.00168952171225101,0.999995231628418,0.00258060684427619,-0.000250405428232625,0.999999523162842,0.000915454293135554,-0.000307238136883825,0.999999284744263,0.0011143796145916,-0.00194330187514424,0.999993622303009,0.00296650431118906,-0.00569214625284076,0.999983668327332,-0.000560536398552358,-0.00168952171225101,0.999995231628418,0.00258060684427619,-0.00194330187514424,0.999993622303009,0.00296650431118906,-0.00582368113100529,0.999982833862305,-0.00057347962865606,-0.00138654699549079,0.999998867511749,-0.000519554188940674,-0.00569214625284076,0.999983668327332,-0.000560536398552358,-0.00582368113100529,0.999982833862305,-0.00057347962865606,-0.000879799481481314,0.999999523162842,-0.000329670438077301,-0.000302526750601828,0.999999701976776,0.000706467893905938,0.000381331046810374,0.999999642372131,-0.000890424358658493,0.00030196929583326,0.999999701976776,-0.000705111306160688,-0.000345635053236037,0.999999582767487,0.000807136239018291,-0.00194330187514424,0.999993622303009,0.00296650431118906,-0.000307238136883825,0.999999284744263,0.0011143796145916,-0.000214469677302986,0.999999642372131,0.0007652742206119,-0.00154399871826172,0.99999612569809,0.00235080975107849,-0.00582368113100529,0.999982833862305,-0.00057347962865606,-0.00194330187514424,0.999993622303009,0.00296650431118906,-0.00154399871826172,0.99999612569809,0.00235080975107849,-0.0056194793432951,0.999984085559845,-0.000552698620595038,
- -0.000879799481481314,0.999999523162842,-0.000329670438077301,-0.00582368113100529,0.999982833862305,-0.00057347962865606,-0.0056194793432951,0.999984085559845,-0.000552698620595038,-0.00173116312362254,0.999998271465302,-0.000647730252239853,-0.00038157103699632,0.999999523162842,0.000893124612048268,0.000244827242568135,0.999999761581421,-0.00057062873383984,0.000381331046810374,0.999999642372131,-0.000890424358658493,-0.000302526750601828,0.999999701976776,0.000706467893905938,-0.00154399871826172,0.99999612569809,0.00235080975107849,-0.000214469677302986,0.999999642372131,0.0007652742206119,0.0274146273732185,0.999590933322906,0.00816040020436049,0.0236330553889275,0.99957001209259,0.0173567999154329,-0.0056194793432951,0.999984085559845,-0.000552698620595038,-0.00154399871826172,0.99999612569809,0.00235080975107849,0.0236330553889275,0.99957001209259,0.0173567999154329,-0.00571923376992345,0.999960780143738,0.00676912628114223,-0.00173116312362254,0.999998271465302,-0.000647730252239853,-0.0056194793432951,0.999984085559845,-0.000552698620595038,-0.00571923376992345,0.999960780143738,0.00676912628114223,-0.00234689959324896,0.999997138977051,-0.000652379589155316,0.034333273768425,0.99927169084549,0.016651863232255,0.0333507135510445,0.999342858791351,0.0142021449282765,0.000244827242568135,0.999999761581421,-0.00057062873383984,-0.00038157103699632,0.999999523162842,0.000893124612048268,0.162200316786766,0.985728740692139,0.0450561679899693,0.442441999912262,0.889469087123871,0.114410758018494,0.468013346195221,0.876760125160217,0.110702805221081,0.173201039433479,0.98377251625061,0.046830091625452,0.468013346195221,0.876760125160217,0.110702805221081,0.448714077472687,0.881900787353516,0.144591271877289,0.191115915775299,0.979493796825409,0.0637702196836472,0.173201039433479,0.98377251625061,0.046830091625452,0.448714077472687,0.881900787353516,0.144591271877289,0.408268183469772,0.902830064296722,0.134962320327759,0.198437213897705,0.977391600608826,0.0729962289333344,0.191115915775299,0.979493796825409,0.0637702196836472,
- 0.446932852268219,0.880242228507996,0.159451529383659,0.428316086530685,0.889471888542175,0.159327179193497,0.167618736624718,0.983519494533539,0.0677743032574654,0.175708413124084,0.981868743896484,0.0711354315280914,0.442441999912262,0.889469087123871,0.114410758018494,0.657473862171173,0.740221440792084,0.140713721513748,0.688247621059418,0.715206384658813,0.12163420021534,0.468013346195221,0.876760125160217,0.110702805221081,0.688247621059418,0.715206384658813,0.12163420021534,0.685981631278992,0.706186056137085,0.175301179289818,0.448714077472687,0.881900787353516,0.144591271877289,0.468013346195221,0.876760125160217,0.110702805221081,0.685981631278992,0.706186056137085,0.175301179289818,0.65069442987442,0.73838746547699,0.17714624106884,0.408268183469772,0.902830064296722,0.134962320327759,0.448714077472687,0.881900787353516,0.144591271877289,0.664774417877197,0.723637223243713,0.185537293553352,0.6429643034935,0.74005800485611,0.197258770465851,0.428316086530685,0.889471888542175,0.159327179193497,0.446932852268219,0.880242228507996,0.159451529383659,0.657473862171173,0.740221440792084,0.140713721513748,0.847821354866028,0.513935625553131,0.130648747086525,0.867385923862457,0.486366510391235,0.105305351316929,0.688247621059418,0.715206384658813,0.12163420021534,0.867385923862457,0.486366510391235,0.105305351316929,0.862275183200836,0.482894420623779,0.152625128626823,0.685981631278992,0.706186056137085,0.175301179289818,0.688247621059418,0.715206384658813,0.12163420021534,0.862275183200836,0.482894420623779,0.152625128626823,0.840515792369843,0.518162727355957,0.158241882920265,0.65069442987442,0.73838746547699,0.17714624106884,0.685981631278992,0.706186056137085,0.175301179289818,0.853777945041656,0.495522528886795,0.159751698374748,0.838160037994385,0.513613104820251,0.183546498417854,0.6429643034935,0.74005800485611,0.197258770465851,0.664774417877197,0.723637223243713,0.185537293553352,0.847821354866028,0.513935625553131,0.130648747086525,0.962450861930847,0.258793383836746,0.0819405540823936,0.969967544078827,0.238286942243576,0.0488097779452801,
- 0.867385923862457,0.486366510391235,0.105305351316929,0.969967544078827,0.238286942243576,0.0488097779452801,0.966349184513092,0.242425322532654,0.086018018424511,0.862275183200836,0.482894420623779,0.152625128626823,0.867385923862457,0.486366510391235,0.105305351316929,0.966349184513092,0.242425322532654,0.086018018424511,0.955591022968292,0.280558109283447,0.090182363986969,0.840515792369843,0.518162727355957,0.158241882920265,0.862275183200836,0.482894420623779,0.152625128626823,0.963774442672729,0.247308194637299,0.0998871549963951,0.961072146892548,0.258473753929138,0.09763003885746,0.838160037994385,0.513613104820251,0.183546498417854,0.853777945041656,0.495522528886795,0.159751698374748,0.962450861930847,0.258793383836746,0.0819405540823936,0.998767733573914,-0.0326479785144329,0.0373803712427616,0.997052371501923,-0.00311837578192353,0.0766617134213448,0.969967544078827,0.238286942243576,0.0488097779452801,0.997052371501923,-0.00311837578192353,0.0766617134213448,0.992318212985992,0.122281022369862,0.0187595952302217,0.966349184513092,0.242425322532654,0.086018018424511,0.969967544078827,0.238286942243576,0.0488097779452801,0.992318212985992,0.122281022369862,0.0187595952302217,0.993302941322327,0.114885412156582,-0.012275111861527,0.955591022968292,0.280558109283447,0.090182363986969,0.966349184513092,0.242425322532654,0.086018018424511,0.998225271701813,-0.0321695692837238,0.0501144751906395,0.961072146892548,0.258473753929138,0.09763003885746,0.963774442672729,0.247308194637299,0.0998871549963951,0.998213291168213,-0.0303303617984056,0.051481232047081,0.995429635047913,-0.0537466630339623,-0.0789387449622154,0.998372793197632,-0.0331281684339046,-0.0464141517877579,0.946311056613922,-0.309601008892059,-0.0929666683077812,0.956854939460754,-0.285114824771881,-0.0560199357569218,0.987525522708893,-0.153441950678825,-0.0353406444191933,0.995429635047913,-0.0537466630339623,-0.0789387449622154,0.956854939460754,-0.285114824771881,-0.0560199357569218,0.953027665615082,-0.28617525100708,-0.0992070510983467,0.988395273685455,-0.151575282216072,-0.00999610871076584,
- 0.987525522708893,-0.153441950678825,-0.0353406444191933,0.953027665615082,-0.28617525100708,-0.0992070510983467,0.936749517917633,-0.333866655826569,-0.105039589107037,0.945605993270874,-0.296380519866943,-0.134119212627411,0.946085631847382,-0.308730959892273,-0.0980159938335419,0.996941566467285,-0.0332332253456116,-0.0707322657108307,0.997145771980286,-0.0313452258706093,-0.0686871707439423,0.00432438822463155,-0.999990701675415,0.000188584395800717,0.000262580200796947,-0.999999463558197,0.00095789204351604,0.00170852907467633,-0.999995112419128,0.00261194980703294,0.00602679187431932,-0.999980747699738,0.00146435224451125,0.00170852907467633,-0.999995112419128,0.00261194980703294,0.00568165723234415,-0.999983608722687,-0.000555873732082546,0.00473161647096276,-0.999987423419952,-0.00163987895939499,0.00602679187431932,-0.999980747699738,0.00146435224451125,0.00568165723234415,-0.999983608722687,-0.000555873732082546,0.00128062884323299,-0.999999105930328,-0.00047893202281557,-0.0028564294334501,-0.999995410442352,0.00103134906385094,0.00473161647096276,-0.999987423419952,-0.00163987895939499,0.000335490563884377,-0.999999582767487,0.000764429103583097,-0.00031174227478914,-0.999999701976776,-0.000749315600842237,0.0041923588141799,-0.999981045722961,-0.00451449537649751,0.0054432712495327,-0.999982476234436,-0.00232394062913954,0.956854939460754,-0.285114824771881,-0.0560199357569218,0.946311056613922,-0.309601008892059,-0.0929666683077812,0.797806739807129,-0.587587475776672,-0.13507553935051,0.82410079240799,-0.556589603424072,-0.105194255709648,0.953027665615082,-0.28617525100708,-0.0992070510983467,0.956854939460754,-0.285114824771881,-0.0560199357569218,0.82410079240799,-0.556589603424072,-0.105194255709648,0.824224472045898,-0.542267858982086,-0.163093656301498,0.936749517917633,-0.333866655826569,-0.105039589107037,0.953027665615082,-0.28617525100708,-0.0992070510983467,0.824224472045898,-0.542267858982086,-0.163093656301498,0.792686641216278,-0.585523009300232,-0.169736862182617,0.79889053106308,-0.56863409280777,-0.196033537387848,
- 0.7922642827034,-0.586736440658569,-0.167504325509071,0.946085631847382,-0.308730959892273,-0.0980159938335419,0.945605993270874,-0.296380519866943,-0.134119212627411,0.82410079240799,-0.556589603424072,-0.105194255709648,0.797806739807129,-0.587587475776672,-0.13507553935051,0.599023282527924,-0.789234280586243,-0.135205268859863,0.630636930465698,-0.766720533370972,-0.120152622461319,0.824224472045898,-0.542267858982086,-0.163093656301498,0.82410079240799,-0.556589603424072,-0.105194255709648,0.630636930465698,-0.766720533370972,-0.120152622461319,0.624014019966125,-0.76243644952774,-0.171163812279701,0.792686641216278,-0.585523009300232,-0.169736862182617,0.824224472045898,-0.542267858982086,-0.163093656301498,0.624014019966125,-0.76243644952774,-0.171163812279701,0.58034074306488,-0.796730160713196,-0.168599009513855,0.600869178771973,-0.774458408355713,-0.1979149132967,0.58794093132019,-0.788826406002045,-0.179104059934616,0.7922642827034,-0.586736440658569,-0.167504325509071,0.79889053106308,-0.56863409280777,-0.196033537387848,0.630636930465698,-0.766720533370972,-0.120152622461319,0.599023282527924,-0.789234280586243,-0.135205268859863,0.34005531668663,-0.936203718185425,-0.0887982323765755,0.369356334209442,-0.926139831542969,-0.0764259025454521,0.624014019966125,-0.76243644952774,-0.171163812279701,0.630636930465698,-0.766720533370972,-0.120152622461319,0.369356334209442,-0.926139831542969,-0.0764259025454521,0.371774673461914,-0.920469582080841,-0.120496116578579,0.58034074306488,-0.796730160713196,-0.168599009513855,0.624014019966125,-0.76243644952774,-0.171163812279701,0.371774673461914,-0.920469582080841,-0.120496116578579,0.320467978715897,-0.94069105386734,-0.111357420682907,0.342422246932983,-0.930265247821808,-0.131733149290085,0.329639434814453,-0.936084985733032,-0.122811958193779,0.58794093132019,-0.788826406002045,-0.179104059934616,0.600869178771973,-0.774458408355713,-0.1979149132967,0.369356334209442,-0.926139831542969,-0.0764259025454521,0.34005531668663,-0.936203718185425,-0.0887982323765755,
- 0.105508647859097,-0.993998408317566,-0.0288954265415668,0.118418745696545,-0.992671489715576,-0.0240917019546032,0.371774673461914,-0.920469582080841,-0.120496116578579,0.369356334209442,-0.926139831542969,-0.0764259025454521,0.118418745696545,-0.992671489715576,-0.0240917019546032,0.124331802129745,-0.991362690925598,-0.0417319051921368,0.320467978715897,-0.94069105386734,-0.111357420682907,0.371774673461914,-0.920469582080841,-0.120496116578579,0.124331802129745,-0.991362690925598,-0.0417319051921368,0.117575615644455,-0.992095291614532,-0.043851725757122,0.121063709259033,-0.991413652896881,-0.049421563744545,0.115047432482243,-0.992211759090424,-0.0477502681314945,0.329639434814453,-0.936084985733032,-0.122811958193779,0.342422246932983,-0.930265247821808,-0.131733149290085,0.118418745696545,-0.992671489715576,-0.0240917019546032,0.105508647859097,-0.993998408317566,-0.0288954265415668,0.00399972731247544,-0.999991595745087,-0.000930924026761204,0.00582301011309028,-0.999982357025146,0.00115565001033247,0.124331802129745,-0.991362690925598,-0.0417319051921368,0.118418745696545,-0.992671489715576,-0.0240917019546032,0.00582301011309028,-0.999982357025146,0.00115565001033247,0.0148064102977514,-0.999886751174927,-0.00267714634537697,0.117575615644455,-0.992095291614532,-0.043851725757122,0.124331802129745,-0.991362690925598,-0.0417319051921368,0.0148064102977514,-0.999886751174927,-0.00267714634537697,0.0132053038105369,-0.999900460243225,-0.00497098360210657,0.00614149402827024,-0.999980926513672,-0.000689394248183817,0.00517724128440022,-0.99998414516449,-0.00220889155752957,0.115047432482243,-0.992211759090424,-0.0477502681314945,0.121063709259033,-0.991413652896881,-0.049421563744545,0.000262580200796947,-0.999999463558197,0.00095789204351604,0.000283101748209447,-0.999999344348907,0.0010320779401809,0.00181396014522761,-0.999994456768036,0.00277714617550373,0.00170852907467633,-0.999995112419128,0.00261194980703294,0.00181396014522761,-0.999994456768036,0.00277714617550373,0.00577451381832361,-0.999983191490173,-0.000563778274226934,
- 0.00568165723234415,-0.999983608722687,-0.000555873732082546,0.00170852907467633,-0.999995112419128,0.00261194980703294,0.00577451381832361,-0.999983191490173,-0.000563778274226934,0.00110314320772886,-0.999999284744263,-0.000413526751799509,0.00128062884323299,-0.999999105930328,-0.00047893202281557,0.00568165723234415,-0.999983608722687,-0.000555873732082546,0.000326923531247303,-0.999999642372131,0.000743298965971917,-0.000340704136760905,-0.999999642372131,-0.000818172353319824,-0.00031174227478914,-0.999999701976776,-0.000749315600842237,0.000335490563884377,-0.999999582767487,0.000764429103583097,0.000283101748209447,-0.999999344348907,0.0010320779401809,7.29781604604796e-005,-1,0.000278321473160759,0.0014788341941312,-0.999996423721313,0.00225425558164716,0.00181396014522761,-0.999994456768036,0.00277714617550373,0.0014788341941312,-0.999996423721313,0.00225425558164716,0.00573321804404259,-0.999983370304108,-0.000560877611860633,0.00577451381832361,-0.999983191490173,-0.000563778274226934,0.00181396014522761,-0.999994456768036,0.00277714617550373,0.00573321804404259,-0.999983370304108,-0.000560877611860633,0.00140386132989079,-0.999998807907104,-0.000525016686879098,0.00110314320772886,-0.999999284744263,-0.000413526751799509,0.00577451381832361,-0.999983191490173,-0.000563778274226934,0.000348310393746942,-0.999999582767487,0.000814799102954566,-0.000302725413348526,-0.999999701976776,-0.000708138919435441,-0.000340704136760905,-0.999999642372131,-0.000818172353319824,0.000326923531247303,-0.999999642372131,0.000743298965971917,7.29781604604796e-005,-1,0.000278321473160759,0.000255785649642348,-0.999999523162842,0.000907131645362824,0.00168735301122069,-0.999995291233063,0.00257051363587379,0.0014788341941312,-0.999996423721313,0.00225425558164716,0.00168735301122069,-0.999995291233063,0.00257051363587379,0.00534483511000872,-0.999985575675964,-0.000522881688084453,0.00573321804404259,-0.999983370304108,-0.000560877611860633,0.0014788341941312,-0.999996423721313,0.00225425558164716,0.00534483511000872,-0.999985575675964,-0.000522881688084453,
- 0.00106928055174649,-0.999999284744263,-0.000399889628170058,0.00140386132989079,-0.999998807907104,-0.000525016686879098,0.00573321804404259,-0.999983370304108,-0.000560877611860633,0.000303299369988963,-0.999999642372131,0.000709505402483046,-0.000313535885652527,-0.999999642372131,-0.000733426888473332,-0.000302725413348526,-0.999999701976776,-0.000708138919435441,0.000348310393746942,-0.999999582767487,0.000814799102954566,0.000255785649642348,-0.999999523162842,0.000907131645362824,0.000343552848789841,-0.999999344348907,0.00110758549999446,0.00168732379097492,-0.999995410442352,0.00253709126263857,0.00168735301122069,-0.999995291233063,0.00257051363587379,0.00168732379097492,-0.999995410442352,0.00253709126263857,0.00489413365721703,-0.999987900257111,-0.000478801899589598,0.00534483511000872,-0.999985575675964,-0.000522881688084453,0.00168735301122069,-0.999995291233063,0.00257051363587379,0.00489413365721703,-0.999987900257111,-0.000478801899589598,0.00132002006284893,-0.999998986721039,-0.00049366126768291,0.00106928055174649,-0.999999284744263,-0.000399889628170058,0.00534483511000872,-0.999985575675964,-0.000522881688084453,0.000819783599581569,-0.999997854232788,0.00193703779950738,-7.92068385635503e-006,-1,6.93138417773298e-007,-0.000313535885652527,-0.999999642372131,-0.000733426888473332,0.000303299369988963,-0.999999642372131,0.000709505402483046,0.000343552848789841,-0.999999344348907,0.00110758549999446,0.000107078594737686,-1,0.00019217528461013,0.000767595134675503,-0.999998986721039,0.00110746722202748,0.00168732379097492,-0.999995410442352,0.00253709126263857,0.000767595134675503,-0.999998986721039,0.00110746722202748,0.0047823335044086,-0.999988377094269,-0.00046786610619165,0.00489413365721703,-0.999987900257111,-0.000478801899589598,0.00168732379097492,-0.999995410442352,0.00253709126263857,0.0047823335044086,-0.999988377094269,-0.00046786610619165,0.00220149219967425,-0.99999725818634,-0.000823314767330885,0.00132002006284893,-0.999998986721039,-0.00049366126768291,0.00489413365721703,-0.999987900257111,-0.000478801899589598,
- -0.000716626818757504,-0.999998331069946,-0.00167624978348613,-7.92068385635503e-006,-1,6.93138417773298e-007,0.000819783599581569,-0.999997854232788,0.00193703779950738,-2.34818821809313e-006,-1,-5.4928914323682e-006,0.00253325398080051,-0.999989569187164,0.0037891564425081,0.000434906251030043,-0.999999046325684,0.00132179411593825,0.000246532174060121,-0.999999582767487,0.000775639666244388,0.00148872460704297,-0.999996304512024,0.0022367883939296,0.0048618046566844,-0.999988079071045,-0.000475640961667523,0.00253325398080051,-0.999989569187164,0.0037891564425081,0.00148872460704297,-0.999996304512024,0.0022367883939296,0.00522339809685946,-0.999986231327057,-0.000510408252011985,-0.00285757961682975,-0.999995350837708,0.00106867833528668,0.0048618046566844,-0.999988079071045,-0.000475640961667523,0.00522339809685946,-0.999986231327057,-0.000510408252011985,0.00145460548810661,-0.999998688697815,-0.000543143367394805,0.000330179464071989,-0.999999582767487,0.000772367464378476,-0.000254823040449992,-0.999999761581421,-0.000596542260609567,-0.000989748863503337,-0.999996840953827,-0.00231514032930136,1.77010065272043e-007,-1,4.1409063555875e-007,0.00148872460704297,-0.999996304512024,0.0022367883939296,0.000246532174060121,-0.999999582767487,0.000775639666244388,6.31428847555071e-005,-1,0.000217575841816142,0.000773982203099877,-0.999998927116394,0.00117607391439378,0.00522339809685946,-0.999986231327057,-0.000510408252011985,0.00148872460704297,-0.999996304512024,0.0022367883939296,0.000773982203099877,-0.999998927116394,0.00117607391439378,0.00516892317682505,-0.999986469745636,-0.000504526717122644,0.00145460548810661,-0.999998688697815,-0.000543143367394805,0.00522339809685946,-0.999986231327057,-0.000510408252011985,0.00516892317682505,-0.999986469745636,-0.000504526717122644,0.00248974934220314,-0.999996483325958,-0.000929429777897894,0.000752618885599077,-0.999998092651367,0.00179698201827705,-1.24136513477424e-005,-1,5.9642011365213e-006,-0.000254823040449992,-0.999999761581421,-0.000596542260609567,0.000330179464071989,-0.999999582767487,0.000772367464378476,
- 7.40812902222387e-005,1,-0.000254651211434975,0.000124320198665373,0.999995112419128,-0.00312984152697027,0.000140118529088795,0.999994218349457,-0.00339658535085619,0.000273852841928601,0.999999523162842,-0.000913460389710963,0.000140118529088795,0.999994218349457,-0.00339658535085619,0.000124320198665373,0.999995112419128,-0.00312984152697027,-0.00317950663156807,0.999992191791534,-0.00233640940859914,-0.00415760185569525,0.99998664855957,-0.00305516459047794,-0.00415760185569525,0.99998664855957,-0.00305516459047794,-0.00317950663156807,0.999992191791534,-0.00233640940859914,0.00201273988932371,0.999997675418854,0.000754204986151308,-0.000722054799553007,0.999999701976776,-0.000270564807578921,0.000301173713523895,0.999999642372131,-0.000703256402630359,1.25146797813613e-007,1,-2.92203225171761e-007,-0.000902235275134444,0.99999737739563,0.00210676644928753,-0.000374728057067841,0.999999523162842,0.000875009573064744,0.000273852841928601,0.999999523162842,-0.000913460389710963,0.000140118529088795,0.999994218349457,-0.00339658535085619,0.000114597278297879,0.999994575977325,-0.00327525730244815,0.000345347478287295,0.999999165534973,-0.00127284554764628,0.000114597278297879,0.999994575977325,-0.00327525730244815,0.000140118529088795,0.999994218349457,-0.00339658535085619,-0.00415760185569525,0.99998664855957,-0.00305516459047794,-0.00405708607286215,0.999987304210663,-0.00298127834685147,-0.00405708607286215,0.999987304210663,-0.00298127834685147,-0.00415760185569525,0.99998664855957,-0.00305516459047794,-0.000722054799553007,0.999999701976776,-0.000270564807578921,-0.00134581420570612,0.999998927116394,-0.000504295574501157,0.000951007532421499,0.999997138977051,-0.00219869962893426,0.000301173713523895,0.999999642372131,-0.000703256402630359,-0.000374728057067841,0.999999523162842,0.000875009573064744,6.62978482068866e-006,1,6.68461689201649e-006,0.000345347478287295,0.999999165534973,-0.00127284554764628,0.000114597278297879,0.999994575977325,-0.00327525730244815,1.80553324753419e-005,0.999998927116394,-0.00140892353374511,
- 5.5038476602931e-006,1,-0.000226955744437873,1.80553324753419e-005,0.999998927116394,-0.00140892353374511,0.000114597278297879,0.999994575977325,-0.00327525730244815,-0.00405708607286215,0.999987304210663,-0.00298127834685147,-0.00368164712563157,0.999989569187164,-0.0027053807862103,-0.00368164712563157,0.999989569187164,-0.0027053807862103,-0.00405708607286215,0.999987304210663,-0.00298127834685147,-0.00134581420570612,0.999998927116394,-0.000504295574501157,-0.00190935807768255,0.999997973442078,-0.000715463829692453,-0.000767223653383553,0.999998092651367,0.00179161061532795,-3.22473965752579e-006,1,7.73686042521149e-006,0.000951007532421499,0.999997138977051,-0.00219869962893426,6.62978482068866e-006,1,6.68461689201649e-006,0.000191422688658349,0.999983429908752,-0.00575437396764755,0.000105363353213761,0.999995410442352,-0.00304460013285279,0.000231464466196485,0.999999582767487,-0.000883357308339328,0.000454079796327278,0.999998390674591,-0.00176891696173698,-0.00458616111427546,0.999983727931976,-0.00337004382163286,-0.00462542613968253,0.999983489513397,-0.00339809758588672,0.000105363353213761,0.999995410442352,-0.00304460013285279,0.000191422688658349,0.999983429908752,-0.00575437396764755,0.00304213725030422,0.999994814395905,0.00113993231207132,-0.0016758426791057,0.999998331069946,-0.000626985740382224,-0.00462542613968253,0.999983489513397,-0.00339809758588672,-0.00458616111427546,0.999983727931976,-0.00337004382163286,0.000432518863817677,0.999999344348907,-0.001009950065054,1.20397385217075e-006,1,-2.60480715041922e-006,-0.00129623466636986,0.999994575977325,0.00302687892690301,-0.000278825144050643,0.999999701976776,0.000650002097245306,0.0279217530041933,0.999589562416077,0.00640837661921978,0.0261644162237644,0.999595105648041,0.011190296150744,0.153190195560455,0.987635970115662,0.033285565674305,0.162743240594864,0.985725402832031,0.0431280992925167,0.153190195560455,0.987635970115662,0.033285565674305,0.0261644162237644,0.999595105648041,0.011190296150744,0.0407192595303059,0.998967289924622,0.0201548598706722,
- 0.154320627450943,0.986416935920715,0.0562760345637798,0.154320627450943,0.986416935920715,0.0562760345637798,0.0407192595303059,0.998967289924622,0.0201548598706722,0.0497838221490383,0.99858433008194,0.0187377166002989,0.195432648062706,0.978095591068268,0.0716598257422447,0.159889802336693,0.985111355781555,0.0631741359829903,0.0316778868436813,0.999408781528473,0.0133685423061252,0.0325257331132889,0.99934059381485,0.0161396078765392,0.16710039973259,0.9835205078125,0.0690281838178635,0.000105363353213761,0.999995410442352,-0.00304460013285279,0.000127826046082191,0.999995231628418,-0.0030845683068037,0.000300506188068539,0.999999344348907,-0.00100657436996698,0.000231464466196485,0.999999582767487,-0.000883357308339328,-0.00462542613968253,0.999983489513397,-0.00339809758588672,-0.00385607313364744,0.999988555908203,-0.00283283297903836,0.000127826046082191,0.999995231628418,-0.0030845683068037,0.000105363353213761,0.999995410442352,-0.00304460013285279,-0.0016758426791057,0.999998331069946,-0.000626985740382224,-0.000688922184053808,0.999999761581421,-0.000257251551374793,-0.00385607313364744,0.999988555908203,-0.00283283297903836,-0.00462542613968253,0.999983489513397,-0.00339809758588672,0.00028638425283134,0.999999761581421,-0.000648664368782192,0.000432518863817677,0.999999344348907,-0.001009950065054,-0.000278825144050643,0.999999701976776,0.000650002097245306,-0.000338647048920393,0.999999582767487,0.000810038414783776,0.000127826046082191,0.999995231628418,-0.0030845683068037,0.000129284002468921,0.999995529651642,-0.00299097527749836,0.000278891064226627,0.999999523162842,-0.000903979933355004,0.000300506188068539,0.999999344348907,-0.00100657436996698,-0.00385607313364744,0.999988555908203,-0.00283283297903836,-0.00410225242376328,0.999987006187439,-0.00301450164988637,0.000129284002468921,0.999995529651642,-0.00299097527749836,0.000127826046082191,0.999995231628418,-0.0030845683068037,-0.000688922184053808,0.999999761581421,-0.000257251551374793,-0.0011274436255917,0.999999165534973,-0.000422465236624703,
- -0.00410225242376328,0.999987006187439,-0.00301450164988637,-0.00385607313364744,0.999988555908203,-0.00283283297903836,0.000345681823091581,0.999999582767487,-0.000807118602097034,0.00028638425283134,0.999999761581421,-0.000648664368782192,-0.000338647048920393,0.999999582767487,0.000810038414783776,-0.000301970081636682,0.999999701976776,0.000705113110598177,0.000129284002468921,0.999995529651642,-0.00299097527749836,0.000147486396599561,0.999994099140167,-0.00343119166791439,0.000337671779561788,0.999999403953552,-0.00110247149132192,0.000278891064226627,0.999999523162842,-0.000903979933355004,-0.00410225242376328,0.999987006187439,-0.00301450164988637,-0.00420289998874068,0.999986350536346,-0.0030884703155607,0.000147486396599561,0.999994099140167,-0.00343119166791439,0.000129284002468921,0.999995529651642,-0.00299097527749836,-0.0011274436255917,0.999999165534973,-0.000422465236624703,-0.00071539223426953,0.999999642372131,-0.000268064759438857,-0.00420289998874068,0.999986350536346,-0.0030884703155607,-0.00410225242376328,0.999987006187439,-0.00301450164988637,0.000302567292237654,0.999999701976776,-0.000706452643498778,0.000345681823091581,0.999999582767487,-0.000807118602097034,-0.000301970081636682,0.999999701976776,0.000705113110598177,-0.000381332036340609,0.999999642372131,0.000890426686964929,0.000147486396599561,0.999994099140167,-0.00343119166791439,0.00011386468395358,0.999996244907379,-0.00273067620582879,0.000229754848987795,0.999999642372131,-0.000761728908400983,0.000337671779561788,0.999999403953552,-0.00110247149132192,-0.00420289998874068,0.999986350536346,-0.0030884703155607,-0.00405704695731401,0.999987304210663,-0.00298209139145911,0.00011386468395358,0.999996244907379,-0.00273067620582879,0.000147486396599561,0.999994099140167,-0.00343119166791439,-0.00071539223426953,0.999999642372131,-0.000268064759438857,-0.00140956696122885,0.999998807907104,-0.000529143610037863,-0.00405704695731401,0.999987304210663,-0.00298209139145911,-0.00420289998874068,0.999986350536346,-0.0030884703155607,0.00038149970350787,0.999999642372131,-0.000890788796823472,
- 0.000302567292237654,0.999999701976776,-0.000706452643498778,-0.000381332036340609,0.999999642372131,0.000890426686964929,-0.000244557188125327,0.999999761581421,0.000572106393519789,0.00011386468395358,0.999996244907379,-0.00273067620582879,0.0265701301395893,0.999646902084351,-0.000423941120970994,0.0275346245616674,0.999590814113617,0.00774584757164121,0.000229754848987795,0.999999642372131,-0.000761728908400983,-0.00405704695731401,0.999987304210663,-0.00298209139145911,0.000507456134073436,0.999965488910675,-0.0082932822406292,0.0265701301395893,0.999646902084351,-0.000423941120970994,0.00011386468395358,0.999996244907379,-0.00273067620582879,-0.00140956696122885,0.999998807907104,-0.000529143610037863,-0.00191233772784472,0.999998092651367,-0.000531015743035823,0.000507456134073436,0.999965488910675,-0.0082932822406292,-0.00405704695731401,0.999987304210663,-0.00298209139145911,0.0323671363294125,0.99940699338913,0.0117494110018015,0.00038149970350787,0.999999642372131,-0.000890788796823472,-0.000244557188125327,0.999999761581421,0.000572106393519789,0.0333515256643295,0.999342858791351,0.0142002357169986,0.162743240594864,0.985725402832031,0.0431280992925167,0.153190195560455,0.987635970115662,0.033285565674305,0.422224372625351,0.902096390724182,0.0891549661755562,0.44427764415741,0.889459311962128,0.107142925262451,0.422224372625351,0.902096390724182,0.0891549661755562,0.153190195560455,0.987635970115662,0.033285565674305,0.154320627450943,0.986416935920715,0.0562760345637798,0.384148925542831,0.916124820709229,0.114651329815388,0.384148925542831,0.916124820709229,0.114651329815388,0.154320627450943,0.986416935920715,0.0562760345637798,0.195432648062706,0.978095591068268,0.0716598257422447,0.421214640140533,0.896421074867249,0.137867897748947,0.413524866104126,0.898752927780151,0.145740732550621,0.159889802336693,0.985111355781555,0.0631741359829903,0.16710039973259,0.9835205078125,0.0690281838178635,0.428025901317596,0.889471113681793,0.160109534859657,0.44427764415741,0.889459311962128,0.107142925262451,
- 0.422224372625351,0.902096390724182,0.0891549661755562,0.635430216789246,0.762480914592743,0.121866583824158,0.66053831577301,0.740154266357422,0.125939354300499,0.635430216789246,0.762480914592743,0.121866583824158,0.422224372625351,0.902096390724182,0.0891549661755562,0.384148925542831,0.916124820709229,0.114651329815388,0.613604664802551,0.773658156394959,0.157931476831436,0.613604664802551,0.773658156394959,0.157931476831436,0.384148925542831,0.916124820709229,0.114651329815388,0.421214640140533,0.896421074867249,0.137867897748947,0.651468992233276,0.738480567932129,0.173880681395531,0.629719316959381,0.757183909416199,0.173568487167358,0.413524866104126,0.898752927780151,0.145740732550621,0.428025901317596,0.889471113681793,0.160109534859657,0.64280754327774,0.740058243274689,0.197768479585648,0.66053831577301,0.740154266357422,0.125939354300499,0.635430216789246,0.762480914592743,0.121866583824158,0.83453631401062,0.538691461086273,0.115588799118996,0.849463224411011,0.513917803764343,0.11958522349596,0.83453631401062,0.538691461086273,0.115588799118996,0.635430216789246,0.762480914592743,0.121866583824158,0.613604664802551,0.773658156394959,0.157931476831436,0.816278636455536,0.559480845928192,0.143771827220917,0.816278636455536,0.559480845928192,0.143771827220917,0.613604664802551,0.773658156394959,0.157931476831436,0.651468992233276,0.738480567932129,0.173880681395531,0.843429923057556,0.514568209648132,0.154420033097267,0.831752300262451,0.533522188663483,0.153434321284294,0.629719316959381,0.757183909416199,0.173568487167358,0.64280754327774,0.740058243274689,0.197768479585648,0.837987124919891,0.513612806797028,0.184335276484489,0.849463224411011,0.513917803764343,0.11958522349596,0.83453631401062,0.538691461086273,0.115588799118996,0.95911693572998,0.275862276554108,0.0632036030292511,0.963620603084564,0.25874650478363,0.0669749081134796,0.95911693572998,0.275862276554108,0.0632036030292511,0.83453631401062,0.538691461086273,0.115588799118996,0.816278636455536,0.559480845928192,0.143771827220917,0.95275604724884,0.292009592056274,0.0835835337638855,
- 0.95275604724884,0.292009592056274,0.0835835337638855,0.816278636455536,0.559480845928192,0.143771827220917,0.843429923057556,0.514568209648132,0.154420033097267,0.967085123062134,0.238589778542519,0.0884380862116814,0.957718729972839,0.27153816819191,0.0950894802808762,0.831752300262451,0.533522188663483,0.153434321284294,0.837987124919891,0.513612806797028,0.184335276484489,0.961072444915771,0.258473753929138,0.0976278558373451,0.963620603084564,0.25874650478363,0.0669749081134796,0.95911693572998,0.275862276554108,0.0632036030292511,0.999334394931793,-0.033952746540308,-0.0133422007784247,0.998818695545197,-0.0326578840613365,0.0359820686280727,0.999334394931793,-0.033952746540308,-0.0133422007784247,0.95911693572998,0.275862276554108,0.0632036030292511,0.95275604724884,0.292009592056274,0.0835835337638855,0.991234302520752,0.123833037912846,-0.0460432134568691,0.991234302520752,0.123833037912846,-0.0460432134568691,0.95275604724884,0.292009592056274,0.0835835337638855,0.967085123062134,0.238589778542519,0.0884380862116814,0.990581154823303,0.136407315731049,-0.0119171775877476,0.998059868812561,-0.032134760171175,0.0533281266689301,0.998067498207092,-0.0342688746750355,0.0518375635147095,0.957718729972839,0.27153816819191,0.0950894802808762,0.961072444915771,0.258473753929138,0.0976278558373451,0.99933785200119,-0.0342222638428211,-0.0123583432286978,0.941580414772034,-0.32652536034584,-0.0825064331293106,0.946114778518677,-0.309602916240692,-0.0949359312653542,0.998211860656738,-0.0331424921751022,-0.0497470833361149,0.98558109998703,-0.168225839734077,0.0181633364409208,0.934656381607056,-0.341664642095566,-0.0984010547399521,0.941580414772034,-0.32652536034584,-0.0825064331293106,0.99933785200119,-0.0342222638428211,-0.0123583432286978,0.981346189975739,-0.192009642720222,-0.0095887016505003,0.950376152992249,-0.293580293655396,-0.10293623059988,0.934656381607056,-0.341664642095566,-0.0984010547399521,0.98558109998703,-0.168225839734077,0.0181633364409208,0.93658059835434,-0.323833167552948,-0.133973360061646,
- 0.99699592590332,-0.0353978648781776,-0.0688919648528099,0.997226536273956,-0.0332048125565052,-0.0666086301207542,0.946179807186127,-0.308719128370285,-0.0971404537558556,0.00355225265957415,-0.999990701675415,-0.00247389543801546,0.00365709234029055,-0.999983072280884,-0.00452229427173734,-0.000128175626741722,-0.999995470046997,-0.0030265876557678,-0.000291424046736211,-0.999999463558197,-0.00095107831293717,-0.000128175626741722,-0.999995470046997,-0.0030265876557678,0.00365709234029055,-0.999983072280884,-0.00452229427173734,0.00414966279640794,-0.999989986419678,-0.00166678265668452,0.00408844789490104,-0.999987125396729,-0.00300025031901896,0.00408844789490104,-0.999987125396729,-0.00300025031901896,0.00414966279640794,-0.999989986419678,-0.00166678265668452,-0.0023220416624099,-0.999996960163116,0.000839972810354084,0.00104286253917962,-0.999999403953552,-0.000390018860343844,-0.000321521889418364,-0.999999582767487,-0.0007719662389718,0.0049093128181994,-0.999985814094543,-0.00209828768856823,0.006160210352391,-0.999981045722961,9.23175539355725e-005,0.000325702858390287,-0.999999701976776,0.000741803843993694,0.941580414772034,-0.32652536034584,-0.0825064331293106,0.780912339687347,-0.610890686511993,-0.130340397357941,0.797480881214142,-0.587587177753448,-0.136987328529358,0.946114778518677,-0.309602916240692,-0.0949359312653542,0.934656381607056,-0.341664642095566,-0.0984010547399521,0.768776118755341,-0.619721651077271,-0.157887026667595,0.780912339687347,-0.610890686511993,-0.130340397357941,0.941580414772034,-0.32652536034584,-0.0825064331293106,0.950376152992249,-0.293580293655396,-0.10293623059988,0.797006130218506,-0.580686628818512,-0.166084975004196,0.768776118755341,-0.619721651077271,-0.157887026667595,0.934656381607056,-0.341664642095566,-0.0984010547399521,0.771341264247894,-0.607249140739441,-0.190476059913635,0.93658059835434,-0.323833167552948,-0.133973360061646,0.946179807186127,-0.308719128370285,-0.0971404537558556,0.792331576347351,-0.586731493473053,-0.167203053832054,0.780912339687347,-0.610890686511993,-0.130340397357941,
- 0.576740920543671,-0.806744694709778,-0.128580376505852,0.598595440387726,-0.789231598377228,-0.137102261185646,0.797480881214142,-0.587587177753448,-0.136987328529358,0.768776118755341,-0.619721651077271,-0.157887026667595,0.551003634929657,-0.820904135704041,-0.150037840008736,0.576740920543671,-0.806744694709778,-0.128580376505852,0.780912339687347,-0.610890686511993,-0.130340397357941,0.797006130218506,-0.580686628818512,-0.166084975004196,0.582825124263763,-0.795348525047302,-0.166539922356606,0.551003634929657,-0.820904135704041,-0.150037840008736,0.768776118755341,-0.619721651077271,-0.157887026667595,0.564287960529327,-0.804018616676331,-0.187438175082207,0.771341264247894,-0.607249140739441,-0.190476059913635,0.792331576347351,-0.586731493473053,-0.167203053832054,0.588027060031891,-0.78882360458374,-0.17883363366127,0.576740920543671,-0.806744694709778,-0.128580376505852,0.321820735931396,-0.942589223384857,-0.0892027318477631,0.339479714632034,-0.936204493045807,-0.0909651443362236,0.598595440387726,-0.789231598377228,-0.137102261185646,0.551003634929657,-0.820904135704041,-0.150037840008736,0.311447650194168,-0.944557249546051,-0.103980764746666,0.321820735931396,-0.942589223384857,-0.0892027318477631,0.576740920543671,-0.806744694709778,-0.128580376505852,0.582825124263763,-0.795348525047302,-0.166539922356606,0.346106231212616,-0.930581629276276,-0.119282245635986,0.311447650194168,-0.944557249546051,-0.103980764746666,0.551003634929657,-0.820904135704041,-0.150037840008736,0.313037157058716,-0.94186669588089,-0.12204498052597,0.564287960529327,-0.804018616676331,-0.187438175082207,0.588027060031891,-0.78882360458374,-0.17883363366127,0.329915523529053,-0.936080873012543,-0.122099436819553,0.321820735931396,-0.942589223384857,-0.0892027318477631,0.100335493683815,-0.994428515434265,-0.0323219634592533,0.10505261272192,-0.993998944759369,-0.0304958578199148,0.339479714632034,-0.936204493045807,-0.0909651443362236,0.311447650194168,-0.944557249546051,-0.103980764746666,0.101284772157669,-0.994129300117493,-0.0380572080612183,
- 0.100335493683815,-0.994428515434265,-0.0323219634592533,0.321820735931396,-0.942589223384857,-0.0892027318477631,0.346106231212616,-0.930581629276276,-0.119282245635986,0.128672584891319,-0.990535199642181,-0.0477837212383747,0.101284772157669,-0.994129300117493,-0.0380572080612183,0.311447650194168,-0.944557249546051,-0.103980764746666,0.109016321599483,-0.992977559566498,-0.0459473468363285,0.313037157058716,-0.94186669588089,-0.12204498052597,0.329915523529053,-0.936080873012543,-0.122099436819553,0.115471340715885,-0.992210745811462,-0.0467365644872189,0.100335493683815,-0.994428515434265,-0.0323219634592533,0.00369261880405247,-0.999986708164215,-0.00358651438727975,0.00387371494434774,-0.999991655349731,-0.00136544089764357,0.10505261272192,-0.993998944759369,-0.0304958578199148,0.101284772157669,-0.994129300117493,-0.0380572080612183,0.0107511570677161,-0.999921381473541,-0.00645699258893728,0.00369261880405247,-0.999986708164215,-0.00358651438727975,0.100335493683815,-0.994428515434265,-0.0323219634592533,0.128672584891319,-0.990535199642181,-0.0477837212383747,0.0107411649078131,-0.999934136867523,-0.0040418729186058,0.0107511570677161,-0.999921381473541,-0.00645699258893728,0.101284772157669,-0.994129300117493,-0.0380572080612183,0.00421189097687602,-0.99998414516449,-0.00373100256547332,0.109016321599483,-0.992977559566498,-0.0459473468363285,0.115471340715885,-0.992210745811462,-0.0467365644872189,0.00517807202413678,-0.99998414516449,-0.00220694625750184,-0.000291424046736211,-0.999999463558197,-0.00095107831293717,-0.000128175626741722,-0.999995470046997,-0.0030265876557678,-0.000138622708618641,-0.999994874000549,-0.00321401958353817,-0.000313823722535744,-0.999999344348907,-0.00102478894405067,-0.000138622708618641,-0.999994874000549,-0.00321401958353817,-0.000128175626741722,-0.999995470046997,-0.0030265876557678,0.00408844789490104,-0.999987125396729,-0.00300025031901896,0.00415779231116176,-0.999986708164215,-0.00305492873303592,0.00415779231116176,-0.999986708164215,-0.00305492873303592,0.00408844789490104,-0.999987125396729,-0.00300025031901896,
- 0.00104286253917962,-0.999999403953552,-0.000390018860343844,0.000895016477443278,-0.999999463558197,-0.00033568381331861,-0.00031161421793513,-0.999999642372131,-0.000749852624721825,-0.000321521889418364,-0.999999582767487,-0.0007719662389718,0.000325702858390287,-0.999999701976776,0.000741803843993694,0.000355466734617949,-0.999999642372131,0.000810318510048091,-0.000313823722535744,-0.999999344348907,-0.00102478894405067,-0.000138622708618641,-0.999994874000549,-0.00321401958353817,-0.000107232699519955,-0.999996542930603,-0.00261628534644842,-8.76654157764278e-005,-1,-0.000275219033937901,-0.000107232699519955,-0.999996542930603,-0.00261628534644842,-0.000138622708618641,-0.999994874000549,-0.00321401958353817,0.00415779231116176,-0.999986708164215,-0.00305492873303592,0.00413358118385077,-0.999986827373505,-0.00303341215476394,0.00413358118385077,-0.999986827373505,-0.00303341215476394,0.00415779231116176,-0.999986708164215,-0.00305492873303592,0.000895016477443278,-0.999999463558197,-0.00033568381331861,0.00114151078741997,-0.999999284744263,-0.000426910119131207,-0.00034833385143429,-0.999999582767487,-0.000814799102954566,-0.00031161421793513,-0.999999642372131,-0.000749852624721825,0.000355466734617949,-0.999999642372131,0.000810318510048091,0.000302728556562215,-0.999999701976776,0.000708146137185395,-8.76654157764278e-005,-1,-0.000275219033937901,-0.000107232699519955,-0.999996542930603,-0.00261628534644842,-0.000121147371828556,-0.999995589256287,-0.00297957006841898,-0.000269763491814956,-0.999999523162842,-0.000903789012227207,-0.000121147371828556,-0.999995589256287,-0.00297957006841898,-0.000107232699519955,-0.999996542930603,-0.00261628534644842,0.00413358118385077,-0.999986827373505,-0.00303341215476394,0.00385816558264196,-0.999988555908203,-0.00283129583112895,0.00385816558264196,-0.999988555908203,-0.00283129583112895,0.00413358118385077,-0.999986827373505,-0.00303341215476394,0.00114151078741997,-0.999999284744263,-0.000426910119131207,0.000869450916070491,-0.999999582767487,-0.000325162749504671,
- -0.000303319829981774,-0.999999642372131,-0.000709505169652402,-0.00034833385143429,-0.999999582767487,-0.000814799102954566,0.000302728556562215,-0.999999701976776,0.000708146137185395,0.000313539145281538,-0.999999642372131,0.000733434455469251,-0.000269763491814956,-0.999999523162842,-0.000903789012227207,-0.000121147371828556,-0.999995589256287,-0.00297957006841898,-0.000101606477983296,-0.999995648860931,-0.00295371003448963,-0.00030229109688662,-0.999999344348907,-0.0011178437853232,-0.000101606477983296,-0.999995648860931,-0.00295371003448963,-0.000121147371828556,-0.999995589256287,-0.00297957006841898,0.00385816558264196,-0.999988555908203,-0.00283129583112895,0.00353514193557203,-0.999990403652191,-0.00259423349052668,0.00353514193557203,-0.999990403652191,-0.00259423349052668,0.00385816558264196,-0.999988555908203,-0.00283129583112895,0.000869450916070491,-0.999999582767487,-0.000325162749504671,0.00107332703191787,-0.999999225139618,-0.000401410186896101,-0.000833705649711192,-0.999997854232788,-0.00193110981490463,-0.000303319829981774,-0.999999642372131,-0.000709505169652402,0.000313539145281538,-0.999999642372131,0.000733434455469251,-5.60781154490542e-006,-1,6.10349434282398e-006,-0.00030229109688662,-0.999999344348907,-0.0011178437853232,-0.000101606477983296,-0.999995648860931,-0.00295371003448963,-1.94293497770559e-005,-0.999999105930328,-0.0013204684946686,-1.00339930213522e-005,-1,-0.000211367732845247,-1.94293497770559e-005,-0.999999105930328,-0.0013204684946686,-0.000101606477983296,-0.999995648860931,-0.00295371003448963,0.00353514193557203,-0.999990403652191,-0.00259423349052668,0.00345249567180872,-0.999990880489349,-0.00253358576446772,0.00345249567180872,-0.999990880489349,-0.00253358576446772,0.00353514193557203,-0.999990403652191,-0.00259423349052668,0.00107332703191787,-0.999999225139618,-0.000401410186896101,0.00179003702942282,-0.999998152256012,-0.000669450499117374,0.000718032591976225,-0.999998331069946,0.0016797223361209,3.01411409964203e-006,-1,7.23475886843516e-006,-0.000833705649711192,-0.999997854232788,-0.00193110981490463,
- -5.60781154490542e-006,-1,6.10349434282398e-006,-0.000139981944812462,-0.999990284442902,-0.00439440086483955,-8.88421200215817e-005,-0.999996542930603,-0.0026083851698786,-0.000207599601708353,-0.999999642372131,-0.000789193669334054,-0.000341171107720584,-0.999999046325684,-0.00135238980874419,0.00350377196446061,-0.999990582466125,-0.00257121422328055,0.00375741813331842,-0.999989151954651,-0.00275804265402257,-8.88421200215817e-005,-0.999996542930603,-0.0026083851698786,-0.000139981944812462,-0.999990284442902,-0.00439440086483955,-0.0023234891705215,-0.999996900558472,0.000868954579345882,0.0011813030578196,-0.999999225139618,-0.00044261195580475,0.00375741813331842,-0.999989151954651,-0.00275804265402257,0.00350377196446061,-0.999990582466125,-0.00257121422328055,-0.000330198556184769,-0.999999582767487,-0.000773274339735508,-9.31150964333938e-007,-1,-1.99408441403648e-006,0.000988317420706153,-0.999996840953827,0.00231197569519281,0.000254697311902419,-0.999999761581421,0.0005953349173069,-8.88421200215817e-005,-0.999996542930603,-0.0026083851698786,-5.45625043741893e-005,-0.999999046325684,-0.00138449913356453,-6.31419679848477e-005,-1,-0.000217572684050538,-0.000207599601708353,-0.999999642372131,-0.000789193669334054,0.00375741813331842,-0.999989151954651,-0.00275804265402257,0.00371610559523106,-0.99998939037323,-0.00272835232317448,-5.45625043741893e-005,-0.999999046325684,-0.00138449913356453,-8.88421200215817e-005,-0.999996542930603,-0.0026083851698786,0.0011813030578196,-0.999999225139618,-0.00044261195580475,0.00202197441831231,-0.999997735023499,-0.000757818866986781,0.00371610559523106,-0.99998939037323,-0.00272835232317448,0.00375741813331842,-0.999989151954651,-0.00275804265402257,-0.000779004825744778,-0.999998092651367,-0.00178844050969929,-0.000330198556184769,-0.999999582767487,-0.000773274339735508,0.000254697311902419,-0.999999761581421,0.0005953349173069,-1.33797839225736e-005,-1,3.70416796613426e-006,0.944172143936157,7.90185804362409e-005,0.329452663660049,0.941783785820007,7.89866753621027e-005,0.336219251155853,
- 0.936419188976288,7.89032055763528e-005,0.350883305072784,0.941571176052094,7.8983670391608e-005,0.336814045906067,0.939784228801727,7.89573969086632e-005,0.341768234968185,0.936416923999786,7.89031764725223e-005,0.350889325141907,0.938989758491516,7.8945180575829e-005,0.343945384025574,0.941409230232239,7.89813711890019e-005,0.337266653776169,0.944383919239044,0.000323972519254312,-0.32884481549263,0.941573619842529,0.000323825923260301,-0.336807101964951,0.94403338432312,0.000323955406202003,-0.329849809408188,0.941640377044678,0.000323829619446769,-0.336620360612869,0.936639428138733,0.000323523679981008,-0.350294858217239,0.941738188266754,0.000323835061863065,-0.336346507072449,0.936643958091736,0.000323523971019313,-0.35028275847435,0.942000269889832,0.000323849468259141,-0.33561185002327
- }
- TangentsW: *2078 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1614 {
- a: 4.81237649917603,0,5.03111696243286,0,5.03111696243286,0.25287526845932,4.81237649917603,0.25287526845932,5.24986171722412,0,5.24986219406128,0.25287526845932,5.4686074256897,0,5.4686074256897,0.25287526845932,5.68736171722412,0,5.68736171722412,0.25287526845932,5.90611553192139,0,5.90611553192139,0.25287526845932,6.12487077713013,0,6.12487077713013,0.25287526845932,6.34362506866455,0,6.34362506866455,0.25287526845932,6.56236934661865,0,6.56236934661865,0.25287526845932,6.78111267089844,0,6.78111267089844,0.25287526845932,6.99985551834106,0,6.99984931945801,0.252875566482544,0,0,0.218744769692421,0,0.218744769692421,0.252875208854675,1.39064965765101e-007,0.252874970436096,0.437487870454788,0,0.437487989664078,0.252875208854675,0.65623015165329,0,0.65623015165329,0.252875208854675,0.874972522258759,0,0.874972581863403,0.252875208854675,1.09371721744537,0,1.09371721744537,0.252875208854675,1.31245994567871,0,1.31245994567871,0.252875208854675,1.53120315074921,0,1.53120315074921,0.252875208854675,1.74994730949402,0,1.74994719028473,0.252875208854675,1.9686906337738,0,1.96869087219238,0.252875208854675,2.18743562698364,0,2.18743538856506,0.252875298261642,2.40618658065796,0,2.40618658065796,0.252875328063965,3.28118872642517,0,3.28118872642517,0.25287526845932,3.4999463558197,0,3.4999463558197,0.25287526845932,3.71869206428528,0,3.71869206428528,0.25287526845932,3.93743300437927,0,3.93743324279785,0.25287526845932,4.1561713218689,0,4.1561713218689,0.25287526845932,4.37490129470825,0,4.37490177154541,0.25287526845932,4.59364032745361,0,4.59364032745361,0.25287526845932,4.81237697601318,1.26437556743622,5.0311164855957,1.26437556743622,5.0311164855957,1.5172506570816,4.81237697601318,1.5172506570816,5.2498631477356,1.26437556743622,5.2498631477356,1.5172506570816,5.46860694885254,1.26437556743622,5.46860647201538,1.5172506570816,5.68736219406128,1.26437556743622,5.68736219406128,1.5172506570816,5.90611696243286,1.26437556743622,5.90611696243286,1.5172506570816,6.12487125396729,1.26437556743622,6.12487125396729,
- 1.5172506570816,6.34362506866455,1.26437556743622,6.34362506866455,1.5172506570816,6.56236934661865,1.26437556743622,6.56236934661865,1.5172506570816,6.78111267089844,1.26437556743622,6.78111267089844,1.5172506570816,6.99984502792358,1.26437509059906,6.99985551834106,1.5172506570816,3.32234264988074e-007,1.26437473297119,0.218744844198227,1.26437509059906,0.218744859099388,1.51725006103516,4.1724371158125e-007,1.51725006103516,0.437488287687302,1.26437509059906,0.437488406896591,1.51725006103516,0.65623015165329,1.26437509059906,0.65623015165329,1.51725006103516,0.874972701072693,1.26437509059906,0.874972820281982,1.51725006103516,1.09371733665466,1.26437509059906,1.09371745586395,1.51725006103516,1.31245982646942,1.26437509059906,1.31245982646942,1.51725006103516,1.53120338916779,1.26437509059906,1.53120338916779,1.51725006103516,1.74994671344757,1.26437509059906,1.74994659423828,1.51725006103516,1.96869111061096,1.26437509059906,1.96869111061096,1.51725006103516,2.18743467330933,1.26437556743622,2.18743467330933,1.5172506570816,2.4061872959137,1.26437568664551,2.4061872959137,1.51725077629089,2.62493300437927,1.26437556743622,2.62493276596069,1.5172506570816,2.84368419647217,1.26064670085907,2.84368014335632,1.5172506570816,3.06243753433228,1.26437556743622,3.06243777275085,1.5172506570816,3.28118944168091,1.26437556743622,3.28118968009949,1.5172506570816,3.4999463558197,1.26437556743622,3.4999463558197,1.5172506570816,3.71869206428528,1.26437556743622,3.71869206428528,1.5172506570816,3.93743491172791,1.26437556743622,3.93743491172791,1.5172506570816,4.15617275238037,1.26437556743622,4.15617275238037,1.5172506570816,4.37490320205688,1.26437556743622,4.37490320205688,1.5172506570816,4.59364032745361,1.26437556743622,4.59364032745361,1.5172506570816,4.81237697601318,1.01150047779083,5.0311164855957,1.01150047779083,5.2498631477356,1.01150047779083,5.46860694885254,1.01150047779083,5.68736219406128,1.01150047779083,5.90611696243286,1.01150047779083,6.12487125396729,1.01150047779083,6.34362506866455,1.01150047779083,
- 6.56236934661865,1.01150047779083,6.78111267089844,1.01150047779083,6.99986028671265,1.01150059700012,4.13082290151578e-007,1.01150047779083,0.218744844198227,1.01150012016296,0.437488228082657,1.01150012016296,0.65623015165329,1.01150012016296,0.874972581863403,1.01150012016296,1.09371733665466,1.01150012016296,1.31245982646942,1.01150012016296,1.53120338916779,1.01150012016296,1.74994683265686,1.01150012016296,1.96869111061096,1.01150012016296,2.18743491172791,1.01150047779083,2.40618681907654,1.01150059700012,2.62493300437927,1.01150047779083,2.84368467330933,1.11076807975769,3.06243753433228,1.01150047779083,3.28118944168091,1.01150047779083,3.4999463558197,1.01150047779083,3.71869206428528,1.01150047779083,3.93743443489075,1.01150047779083,4.15617179870605,1.01150047779083,4.37490272521973,1.01150047779083,4.59364032745361,1.01150047779083,4.81237697601318,0.758625388145447,5.0311164855957,0.758625388145447,5.24986267089844,0.758625388145447,5.46860694885254,0.758625388145447,5.68736219406128,0.758625388145447,5.9061164855957,0.758625388145447,6.12487125396729,0.758625388145447,6.34362506866455,0.758625388145447,6.56236934661865,0.758625388145447,6.78111267089844,0.758625388145447,6.99987125396729,0.758625984191895,2.75767831681151e-007,0.758626282215118,0.218744829297066,0.758625149726868,0.43748813867569,0.758625149726868,0.65623015165329,0.758625149726868,0.874972581863403,0.758625149726868,1.09371733665466,0.758625149726868,1.31245994567871,0.758625149726868,1.5312032699585,0.758625149726868,1.74994695186615,0.758625149726868,1.96869111061096,0.758625149726868,2.18743491172791,0.758625388145447,2.40618681907654,0.758625507354736,3.28118944168091,0.758625388145447,3.4999463558197,0.758625388145447,3.71869206428528,0.758625388145447,3.93743395805359,0.758625388145447,4.15617179870605,0.758625388145447,4.37490224838257,0.758625388145447,4.59364032745361,0.758625388145447,4.81237649917603,0.505750298500061,5.03111696243286,0.505750298500061,5.24986267089844,0.505750298500061,5.4686074256897,0.505750298500061,
- 5.68736219406128,0.505750298500061,5.9061164855957,0.505750298500061,6.12487125396729,0.505750298500061,6.34362506866455,0.505750298500061,6.56236934661865,0.505750298500061,6.78111267089844,0.505750298500061,6.9998574256897,0.505750417709351,2.13233107615451e-007,0.505750894546509,0.218744814395905,0.505750179290771,0.437488049268723,0.505750179290771,0.65623015165329,0.505750179290771,0.874972581863403,0.505750179290771,1.09371733665466,0.505750179290771,1.31245994567871,0.505750179290771,1.5312032699585,0.505750179290771,1.74994719028473,0.505750179290771,1.96869111061096,0.505750179290771,2.18743515014648,0.505750358104706,2.40618658065796,0.505750417709351,3.28118920326233,0.505750298500061,3.4999463558197,0.505750298500061,3.71869206428528,0.505750298500061,3.93743371963501,0.505750298500061,4.1561713218689,0.505750298500061,4.37490177154541,0.505750298500061,4.59364032745361,0.505750298500061,1.87497711181641,0,1.68748712539673,0,1.49999380111694,0,1.31249904632568,0,1.12499713897705,0,0.937496185302734,0,0.749993324279785,0,0.562491416931152,0,0.374998092651367,0,0.187505722045898,0,1.38282775878906e-005,0,5.999831199646,0,5.81233739852905,0,5.62484550476074,0,5.43735361099243,0,5.24986219406128,0,5.06236839294434,0,4.87487649917603,0,4.68738412857056,0,4.49989128112793,0,4.3123984336853,0,4.12490463256836,0,3.93740558624268,0,3.18741130828857,0,2.99990630149841,0,2.81241202354431,0,2.62492156028748,0,2.43743324279785,0,2.24995231628418,0,2.0624635219574,0,1.87497663497925,1.5172506570816,1.68748760223389,1.5172506570816,1.49999237060547,1.5172506570816,1.3125,1.5172506570816,1.12499666213989,1.5172506570816,0.93749475479126,1.5172506570816,0.749992847442627,1.5172506570816,0.562491416931152,1.5172506570816,0.374998092651367,1.5172506570816,0.187505722045898,1.5172506570816,1.38282775878906e-005,1.5172506570816,5.99983072280884,1.51725006103516,5.81233739852905,1.51725006103516,5.62484455108643,1.51725006103516,5.43735361099243,1.51725006103516,5.24986171722412,1.51725006103516,5.06236839294434,1.51725006103516,
- 4.87487649917603,1.51725006103516,4.68738412857056,1.51725006103516,4.49989175796509,1.51725006103516,4.31239795684814,1.51725006103516,4.12490558624268,1.5172506570816,3.93740510940552,1.51725077629089,3.74991083145142,1.5172506570816,3.56241488456726,1.5172506570816,3.37491011619568,1.5172506570816,3.18741035461426,1.5172506570816,2.99990630149841,1.5172506570816,2.81241202354431,1.5172506570816,2.62491989135742,1.5172506570816,2.43743205070496,1.5172506570816,2.24995064735413,1.5172506570816,2.0624635219574,1.5172506570816,3.9374053478241,1.01150059700012,3.74991059303284,1.01150047779083,3.56241226196289,1.11308324337006,3.37491035461426,1.01150047779083,3.18741059303284,1.01150047779083,0.937394380569458,-1.79020059108734,0.937394380569458,-1.62766551971436,2.31334066390991,-1.62766551971436,0.775774478912354,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.62766551971436,2.31334066390991,-1.62766551971436,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.75361084938049,-1.79020071029663,1.75361084938049,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.32405114173889,-1.79020059108734,1.32405114173889,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.937394380569458,-1.79020059108734,0.937394380569458,-1.62766540050507,0.775774478912354,-1.79020059108734,0.775774478912354,-1.79020059108734,0.937394380569458,-1.62766551971436,0.937394380569458,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020071029663,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020071029663,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.32405114173889,
- -1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.62766551971436,0.775774478912354,-1.79020059108734,0.937394380569458,-1.62766551971436,0.937394380569458,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.79020059108734,0.775774478912354,-1.62766551971436,0.775774478912354,-1.62766563892365,0.775774478912354,-1.62766551971436,2.31334066390991,-1.79020059108734,2.31334066390991,-1.79020059108734,0.775774478912354,-1.62766551971436,2.31334066390991,-1.79020059108734,0.937394380569458,-1.79020059108734,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766551971436,0.937394380569458,-1.62766551971436,2.13562393188477,-1.62766551971436,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,2.13562393188477,-1.79020059108734,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.75361084938049,-1.79020071029663,1.75361084938049,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.32405114173889,-1.79020059108734,1.32405114173889,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.937394380569458,-1.79020059108734,0.937394380569458,-1.62766540050507,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766563892365,0.937394380569458,-1.62766551971436,0.937394380569458,-1.79020059108734,0.775774478912354,-1.79020059108734,
- 0.775774478912354,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020071029663,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020071029663,2.31334066390991,-1.79020059108734,2.31334066390991,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.32405114173889,-1.62766551971436,1.32405114173889,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.75361084938049,-1.62766551971436,1.75361084938049,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.13562393188477,-1.62766551971436,2.13562393188477,-1.79020059108734,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,2.51453614234924,0.939526677131653,3.84702157974243,0.936098635196686,3.17913794517517,0.940270721912384,3.28729295730591,0.94032222032547,2.46087336540222,0.758625507354736,2.46087312698364,0.505750417709351,2.46087312698364,0.252875328063965,2.46087312698364,0,1.07442986965179,-1.62766551971436,1.07442986965179,-1.79020059108734,3.89053177833557,0,3.22650146484375,0.758625388145447,3.22650146484375,0.505750298500061,3.22650098800659,0.25287526845932,3.22650098800659,0,1.99868321418762,-1.62766551971436,1.99868321418762,-1.79020059108734,3.23428606987,0,0.530890941619873,0.445408821105957,0.687326431274414,0.445363253355026,0.687326431274414,0.570710778236389,0.530890941619873,
- 0.571098804473877,0.687326431274414,0.63417649269104,0.530890941619873,0.635376334190369,0.687326431274414,0.780276775360107,0.530890941619873,0.779917538166046,0.687326431274414,0.949245393276215,0.530890941619873,0.94960606098175,0.857775747776031,0.445313632488251,0.857775747776031,0.570288062095642,0.857775747776031,0.632869124412537,0.857775747776031,0.780668199062347,0.857775747776031,0.948852479457855,0.98311448097229,0.445277124643326,0.98311448097229,0.569977223873138,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.0159221459180117,0.445558786392212,0.204082757234573,0.445503979921341,0.204082757234573,0.571909248828888,0.0159221459180117,0.639326155185699,0.204082772135735,0.637882947921753,0.0159221459180117,0.778735160827637,0.204082772135735,0.779167234897614,0.204082757234573,0.950359582901001,0.0159221459180117,0.950793385505676,0.0159221459180117,0.445558786392212,0.204003781080246,0.445504009723663,0.204003781080246,0.571909427642822,0.0159221459180117,0.572375893592834,0.204003810882568,0.637883543968201,0.0159221459180117,0.639326155185699,0.204003810882568,0.779166996479034,0.0159221459180117,0.778735160827637,0.204003781080246,0.950359761714935,0.0159221459180117,0.950793385505676,0.351649463176727,0.445461004972458,0.351649463176727,0.571543276309967,0.351649433374405,0.636751115322113,0.351649433374405,0.779506027698517,0.351649463176727,0.950019359588623,0.530034720897675,0.445409059524536,0.530034720897675,0.571100890636444,0.530034720897675,0.635382890701294,0.530034720897675,0.779915630817413,0.530034720897675,0.949608087539673,0.687407612800598,0.445363223552704,0.687407612800598,0.570710599422455,0.687407612800598,0.634175896644592,0.687407612800598,0.780277013778687,0.687407612800598,0.949245274066925,0.85692036151886,0.44531387090683,0.85692036151886,0.570290207862854,0.85692036151886,0.632875740528107,0.85692036151886,0.78066623210907,0.85692036151886,0.948854446411133,0.98311448097229,0.445277124643326,
- 0.98311448097229,0.569977223873138,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.352039992809296,0.445460915565491,0.352039992809296,0.571542322635651,0.352039963006973,0.636748075485229,0.352039963006973,0.779506862163544,0.352039992809296,0.950018465518951,0.530890941619873,0.445408821105957,0.530890941619873,0.571098804473877,0.530890941619873,0.635376334190369,0.530890941619873,0.779917538166046,0.530890941619873,0.94960606098175,0.687326431274414,0.445363253355026,0.687326431274414,0.570710778236389,0.687326431274414,0.63417649269104,0.687326431274414,0.780276775360107,0.687326431274414,0.949245393276215,0.857775747776031,0.445313632488251,0.857775747776031,0.570288062095642,0.857775747776031,0.632869124412537,0.857775747776031,0.780668199062347,0.857775747776031,0.948852479457855,0.98311448097229,0.445277124643326,0.98311448097229,0.569977223873138,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.0159221459180117,0.445558786392212,0.204082757234573,0.445503979921341,0.204082757234573,0.571909248828888,0.0159221459180117,0.639326155185699,0.204082772135735,0.637882947921753,0.0159221459180117,0.778735160827637,0.204082772135735,0.779167234897614,0.204082757234573,0.950359582901001,0.0159221459180117,0.950793385505676,0.0159221459180117,0.445558786392212,0.204003781080246,0.445504009723663,0.204003781080246,0.571909427642822,0.0159221459180117,0.572375893592834,0.204003810882568,0.637883543968201,0.0159221459180117,0.639326155185699,0.204003810882568,0.779166996479034,0.0159221459180117,0.778735160827637,0.204003781080246,0.950359761714935,0.0159221459180117,0.950793385505676,0.351649463176727,0.445461004972458,0.351649463176727,0.571543276309967,0.351649433374405,0.636751115322113,0.351649433374405,0.779506027698517,0.351649463176727,0.950019359588623,0.530034720897675,0.445409059524536,0.530034720897675,0.571100890636444,0.530034720897675,0.635382890701294,
- 0.530034720897675,0.779915630817413,0.530034720897675,0.949608087539673,0.687407612800598,0.445363223552704,0.687407612800598,0.570710599422455,0.687407612800598,0.634175896644592,0.687407612800598,0.780277013778687,0.687407612800598,0.949245274066925,0.85692036151886,0.44531387090683,0.85692036151886,0.570290207862854,0.85692036151886,0.632875740528107,0.85692036151886,0.78066623210907,0.85692036151886,0.948854446411133,0.98311448097229,0.445277124643326,0.98311448097229,0.569977223873138,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.352039992809296,0.445460915565491,0.352039992809296,0.571542322635651,0.352039963006973,0.636748075485229,0.352039963006973,0.779506862163544,0.352039992809296,0.950018465518951,0.530890941619873,0.445408821105957,0.530890941619873,0.571098804473877,0.530890941619873,0.635376334190369,0.530890941619873,0.779917538166046,0.530890941619873,0.94960606098175,0.687326431274414,0.445363253355026,0.687326431274414,0.570710778236389,0.687326431274414,0.63417649269104,0.687326431274414,0.780276775360107,0.687326431274414,0.949245393276215,0.857775747776031,0.445313632488251,0.857775747776031,0.570288062095642,0.857775747776031,0.632869124412537,0.857775747776031,0.780668199062347,0.857775747776031,0.948852479457855,0.98311448097229,0.445277124643326,0.98311448097229,0.569977223873138,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.0159221459180117,0.445558786392212,0.204082757234573,0.445503979921341,0.204082757234573,0.571909248828888,0.0159221459180117,0.639326155185699,0.204082772135735,0.637882947921753,0.0159221459180117,0.778735160827637,0.204082772135735,0.779167234897614,0.204082757234573,0.950359582901001,0.0159221459180117,0.950793385505676,0.351649463176727,0.445461004972458,0.351649463176727,0.571543276309967,0.351649433374405,0.636751115322113,0.351649433374405,0.779506027698517,0.351649463176727,0.950019359588623,0.530890941619873,
- 0.445408821105957,0.530890941619873,0.571098804473877,0.687326431274414,0.570710778236389,0.687326431274414,0.445363253355026,0.530890941619873,0.635376334190369,0.687326431274414,0.63417649269104,0.530890941619873,0.779917538166046,0.687326431274414,0.780276775360107,0.530890941619873,0.94960606098175,0.687326431274414,0.949245393276215,0.857775747776031,0.570288062095642,0.857775747776031,0.445313632488251,0.857775747776031,0.632869124412537,0.857775747776031,0.780668199062347,0.857775747776031,0.948852479457855,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.204082757234573,0.571909248828888,0.204082757234573,0.445503979921341,0.0159221459180117,0.445558786392212,0.0159221459180117,0.639326155185699,0.204082772135735,0.637882947921753,0.0159221459180117,0.778735160827637,0.204082772135735,0.779167234897614,0.0159221459180117,0.950793385505676,0.204082757234573,0.950359582901001,0.0159221459180117,0.445558786392212,0.0159221459180117,0.572375893592834,0.204003781080246,0.571909427642822,0.204003781080246,0.445504009723663,0.0159221459180117,0.639326155185699,0.204003810882568,0.637883543968201,0.0159221459180117,0.778735160827637,0.204003810882568,0.779166996479034,0.0159221459180117,0.950793385505676,0.204003781080246,0.950359761714935,0.351649463176727,0.571543276309967,0.351649463176727,0.445461004972458,0.351649433374405,0.636751115322113,0.351649433374405,0.779506027698517,0.351649463176727,0.950019359588623,0.530034720897675,0.571100890636444,0.530034720897675,0.445409059524536,0.530034720897675,0.635382890701294,0.530034720897675,0.779915630817413,0.530034720897675,0.949608087539673,0.687407612800598,0.570710599422455,0.687407612800598,0.445363223552704,0.687407612800598,0.634175896644592,0.687407612800598,0.780277013778687,0.687407612800598,0.949245274066925,0.85692036151886,0.570290207862854,0.85692036151886,0.44531387090683,0.85692036151886,
- 0.632875740528107,0.85692036151886,0.78066623210907,0.85692036151886,0.948854446411133,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.352039992809296,0.571542322635651,0.352039992809296,0.445460915565491,0.352039963006973,0.636748075485229,0.352039963006973,0.779506862163544,0.352039992809296,0.950018465518951,0.530890941619873,0.571098804473877,0.530890941619873,0.445408821105957,0.530890941619873,0.635376334190369,0.530890941619873,0.779917538166046,0.530890941619873,0.94960606098175,0.687326431274414,0.570710778236389,0.687326431274414,0.445363253355026,0.687326431274414,0.63417649269104,0.687326431274414,0.780276775360107,0.687326431274414,0.949245393276215,0.857775747776031,0.570288062095642,0.857775747776031,0.445313632488251,0.857775747776031,0.632869124412537,0.857775747776031,0.780668199062347,0.857775747776031,0.948852479457855,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.204082757234573,0.571909248828888,0.204082757234573,0.445503979921341,0.0159221459180117,0.445558786392212,0.0159221459180117,0.639326155185699,0.204082772135735,0.637882947921753,0.0159221459180117,0.778735160827637,0.204082772135735,0.779167234897614,0.0159221459180117,0.950793385505676,0.204082757234573,0.950359582901001,0.0159221459180117,0.445558786392212,0.0159221459180117,0.572375893592834,0.204003781080246,0.571909427642822,0.204003781080246,0.445504009723663,0.0159221459180117,0.639326155185699,0.204003810882568,0.637883543968201,0.0159221459180117,0.778735160827637,0.204003810882568,0.779166996479034,0.0159221459180117,0.950793385505676,0.204003781080246,0.950359761714935,0.351649463176727,0.571543276309967,0.351649463176727,0.445461004972458,0.351649433374405,0.636751115322113,0.351649433374405,0.779506027698517,0.351649463176727,0.950019359588623,
- 0.530034720897675,0.571100890636444,0.530034720897675,0.445409059524536,0.530034720897675,0.635382890701294,0.530034720897675,0.779915630817413,0.530034720897675,0.949608087539673,0.687407612800598,0.570710599422455,0.687407612800598,0.445363223552704,0.687407612800598,0.634175896644592,0.687407612800598,0.780277013778687,0.687407612800598,0.949245274066925,0.85692036151886,0.570290207862854,0.85692036151886,0.44531387090683,0.85692036151886,0.632875740528107,0.85692036151886,0.78066623210907,0.85692036151886,0.948854446411133,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.352039992809296,0.571542322635651,0.352039992809296,0.445460915565491,0.352039963006973,0.636748075485229,0.352039963006973,0.779506862163544,0.352039992809296,0.950018465518951,0.530890941619873,0.571098804473877,0.530890941619873,0.445408821105957,0.530890941619873,0.635376334190369,0.530890941619873,0.779917538166046,0.530890941619873,0.94960606098175,0.687326431274414,0.570710778236389,0.687326431274414,0.445363253355026,0.687326431274414,0.63417649269104,0.687326431274414,0.780276775360107,0.687326431274414,0.949245393276215,0.857775747776031,0.570288062095642,0.857775747776031,0.445313632488251,0.857775747776031,0.632869124412537,0.857775747776031,0.780668199062347,0.857775747776031,0.948852479457855,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.631907820701599,0.98311448097229,0.780955970287323,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.204082757234573,0.571909248828888,0.204082757234573,0.445503979921341,0.0159221459180117,0.445558786392212,0.0159221459180117,0.639326155185699,0.204082772135735,0.637882947921753,0.0159221459180117,0.778735160827637,0.204082772135735,0.779167234897614,0.0159221459180117,0.950793385505676,0.204082757234573,0.950359582901001,0.351649463176727,0.571543276309967,0.351649463176727,0.445461004972458,0.351649433374405,
- 0.636751115322113,0.351649433374405,0.779506027698517,0.351649463176727,0.950019359588623,0.329310595989227,0.92772102355957,0.307473838329315,0.950106143951416,0.238795801997185,0.950106143951416,0.238795801997185,0.880502343177795,0.238795801997185,0.810898423194885,0.307473838329315,0.810898423194885,0.329310595989227,0.833283662796021,0.328861743211746,0.880502343177795,0.566411793231964,0.916627645492554,0.566872119903564,0.869408965110779,0.566411793231964,0.822190284729004,0.588248610496521,0.799805045127869,0.656926691532135,0.799805045127869,0.656926691532135,0.869408965110779,0.656926691532135,0.939012765884399,0.588248610496521,0.939012765884399
- }
- UVIndex: *2078 {
- a: 0,1,2,3,1,4,5,2,4,6,7,5,6,8,9,7,8,10,11,9,10,12,13,11,12,14,15,13,14,16,17,15,16,18,19,17,18,20,21,19,22,23,24,25,23,26,27,24,26,28,29,27,28,30,31,29,30,32,33,31,32,34,35,33,34,36,37,35,36,38,39,37,38,40,41,39,40,42,43,41,42,44,45,43,436,437,46,47,46,48,49,47,48,50,51,49,50,52,53,51,52,54,55,53,54,56,57,55,56,58,59,57,58,0,3,59,60,61,62,63,61,64,65,62,64,66,67,65,66,68,69,67,68,70,71,69,70,72,73,71,72,74,75,73,74,76,77,75,76,78,79,77,78,80,81,79,82,83,84,85,83,86,87,84,86,88,89,87,88,90,91,89,90,92,93,91,92,94,95,93,94,96,97,95,96,98,99,97,98,100,101,99,100,102,103,101,102,104,105,103,104,106,107,105,106,108,109,107,108,110,111,109,110,112,113,111,112,114,115,113,114,116,117,115,116,118,119,117,118,120,121,119,120,122,123,121,122,124,125,123,124,60,63,125,126,127,61,60,127,128,64,61,128,129,66,64,129,130,68,66,130,131,70,68,131,132,72,70,132,133,74,72,133,134,76,74,134,135,78,76,135,136,80,78,137,138,83,82,138,139,86,83,139,140,88,86,140,141,90,88,141,142,92,90,142,143,94,92,143,144,96,94,144,145,98,96,145,146,100,98,146,147,102,100,147,148,104,102,148,149,106,104,149,150,108,106,150,151,110,108,151,152,112,110,152,153,114,112,153,154,116,114,154,155,118,116,155,156,120,118,156,157,122,120,157,158,124,122,158,126,60,124,159,160,127,126,160,161,128,127,161,162,129,128,162,163,130,129,163,164,131,130,164,165,132,131,165,166,133,132,166,167,134,133,167,168,135,134,168,169,136,135,170,171,138,137,171,172,139,138,172,173,140,139,173,174,141,140,174,175,142,141,175,176,143,142,176,177,144,143,177,178,145,144,178,179,146,145,179,180,147,146,180,181,148,147,425,434,182,152,182,183,153,152,183,184,154,153,184,185,155,154,185,186,156,155,186,187,157,156,187,188,158,157,188,159,126,158,189,190,160,159,190,191,161,160,191,192,162,161,192,193,163,162,193,194,164,163,194,195,165,164,195,196,166,165,196,197,167,166,197,198,168,167,198,199,169,168,200,201,171,170,201,202,172,171,202,203,173,172,203,204,174,173,204,205,175,174,205,206,176,175,206,207,177,176,207,208,178,177,208,209,179,178,209,210,180,179,210,
- 211,181,180,434,435,212,182,212,213,183,182,213,214,184,183,214,215,185,184,215,216,186,185,216,217,187,186,217,218,188,187,218,189,159,188,3,2,190,189,2,5,191,190,5,7,192,191,7,9,193,192,9,11,194,193,11,13,195,194,13,15,196,195,15,17,197,196,17,19,198,197,19,21,199,198,25,24,201,200,24,27,202,201,27,29,203,202,29,31,204,203,31,33,205,204,33,35,206,205,35,37,207,206,37,39,208,207,39,41,209,208,41,43,210,209,43,45,211,210,435,436,47,212,47,49,213,212,49,51,214,213,51,53,215,214,53,55,216,215,55,57,217,216,57,59,218,217,59,3,189,218,249,250,220,219,250,251,221,220,251,252,222,221,252,253,223,222,253,254,224,223,254,255,225,224,255,256,226,225,256,257,227,226,257,258,228,227,258,259,229,228,260,261,231,230,261,262,232,231,262,263,233,232,263,264,234,233,264,265,235,234,265,266,236,235,266,267,237,236,267,268,238,237,268,269,239,238,269,270,240,239,270,271,282,241,240,271,272,283,282,272,273,284,283,273,274,285,284,274,275,286,285,286,275,276,243,242,276,277,244,243,277,278,245,244,278,279,246,245,279,280,247,246,280,281,248,247,281,249,219,248,282,283,424,285,286,426,287,288,357,290,291,292,355,294,295,292,291,296,297,295,296,298,299,297,298,300,301,299,300,302,303,301,302,304,305,303,304,306,307,305,306,353,309,354,308,310,311,309,310,312,313,311,312,314,315,313,314,316,317,315,316,318,319,317,318,320,321,319,320,322,358,289,321,322,323,288,287,324,325,323,324,326,327,325,326,328,329,327,328,330,331,329,330,332,333,331,332,334,335,333,334,351,337,352,336,338,339,337,338,340,341,339,340,342,343,341,342,344,345,343,344,346,347,345,346,348,349,347,348,350,293,349,350,356,359,360,361,362,363,364,365,366,367,368,363,366,369,370,368,367,371,372,370,369,373,374,372,371,375,376,374,373,377,378,376,375,379,380,378,377,381,382,383,384,385,386,382,381,387,388,386,385,389,390,388,387,391,392,390,389,393,394,392,391,395,396,394,393,397,396,395,398,399,400,359,362,401,402,400,399,403,404,402,401,405,406,404,403,407,408,406,405,438,439,408,407,411,412,410,409,413,414,412,411,415,416,414,413,417,418,416,415,419,420,418,417,421,422,
- 420,419,241,282,424,433,211,428,427,181,45,429,428,211,44,430,429,45,409,410,432,431,181,427,423,148,440,426,286,242,148,423,149,151,425,152,441,442,443,444,443,445,446,444,445,447,448,446,447,449,450,448,442,451,452,443,452,453,445,443,453,454,447,445,454,455,449,447,451,456,457,452,457,458,453,452,458,459,454,453,460,455,454,459,461,462,463,464,465,461,464,466,467,465,466,468,468,469,470,467,471,472,473,474,473,475,476,474,475,477,478,476,477,479,480,478,464,463,481,482,466,464,482,483,468,466,483,484,484,485,469,468,482,481,486,487,483,482,487,488,484,483,488,489,489,490,485,484,487,486,491,492,488,487,492,493,489,488,493,494,494,495,490,489,492,491,496,497,493,492,497,498,494,493,498,499,499,500,495,494,497,496,501,502,498,497,502,503,499,498,503,504,504,505,500,499,472,506,507,473,507,508,475,473,508,509,477,475,509,510,479,477,506,511,512,507,512,513,508,507,513,514,509,508,514,515,510,509,511,516,517,512,517,518,513,512,518,519,514,513,519,520,515,514,516,521,522,517,522,523,518,517,523,524,519,518,524,525,520,519,521,526,527,522,527,528,523,522,528,529,524,523,530,525,524,529,531,532,533,534,535,531,534,536,537,535,536,538,538,539,540,537,541,542,543,544,543,545,546,544,545,547,548,546,547,549,550,548,534,533,551,552,536,534,552,553,538,536,553,554,554,555,539,538,552,551,556,557,553,552,557,558,554,553,558,559,559,560,555,554,557,556,561,562,558,557,562,563,559,558,563,564,564,565,560,559,562,561,566,567,563,562,567,568,564,563,568,569,569,570,565,564,567,566,571,572,568,567,572,573,569,568,573,574,574,575,570,569,542,576,577,543,577,578,545,543,578,579,547,545,579,580,549,547,576,581,582,577,582,583,578,577,583,584,579,578,584,585,580,579,581,586,587,582,587,588,583,582,588,589,584,583,589,590,585,584,586,591,592,587,592,593,588,587,593,594,589,588,594,595,590,589,591,596,597,592,597,598,593,592,598,599,594,593,600,595,594,599,601,602,603,604,605,601,604,606,607,605,606,608,608,609,610,607,604,603,611,612,606,604,612,613,608,606,613,614,614,615,609,608,616,617,618,619,618,617,620,621,621,620,622,623,623,
- 622,624,625,619,618,626,627,626,618,621,628,628,621,623,629,629,623,625,630,627,626,631,632,631,626,628,633,633,628,629,634,635,634,629,630,636,637,638,639,640,641,637,636,642,643,641,640,643,642,644,645,646,647,648,649,648,647,650,651,651,650,652,653,653,652,654,655,637,656,657,638,641,658,656,637,643,659,658,641,659,643,645,660,656,661,662,657,658,663,661,656,659,664,663,658,664,659,660,665,661,666,667,662,663,668,666,661,664,669,668,663,669,664,665,670,666,671,672,667,668,673,671,666,669,674,673,668,674,669,670,675,671,676,677,672,673,678,676,671,674,679,678,673,679,674,675,680,649,648,681,682,681,648,651,683,683,651,653,684,684,653,655,685,682,681,686,687,686,681,683,688,688,683,684,689,689,684,685,690,687,686,691,692,691,686,688,693,693,688,689,694,694,689,690,695,692,691,696,697,696,691,693,698,698,693,694,699,699,694,695,700,697,696,701,702,701,696,698,703,703,698,699,704,705,704,699,700,706,707,708,709,710,711,707,706,712,713,711,710,713,712,714,715,716,717,718,719,718,717,720,721,721,720,722,723,723,722,724,725,707,726,727,708,711,728,726,707,713,729,728,711,729,713,715,730,726,731,732,727,728,733,731,726,729,734,733,728,734,729,730,735,731,736,737,732,733,738,736,731,734,739,738,733,739,734,735,740,736,741,742,737,738,743,741,736,739,744,743,738,744,739,740,745,741,746,747,742,743,748,746,741,744,749,748,743,749,744,745,750,719,718,751,752,751,718,721,753,753,721,723,754,754,723,725,755,752,751,756,757,756,751,753,758,758,753,754,759,759,754,755,760,757,756,761,762,761,756,758,763,763,758,759,764,764,759,760,765,762,761,766,767,766,761,763,768,768,763,764,769,769,764,765,770,767,766,771,772,771,766,768,773,773,768,769,774,775,774,769,770,776,777,778,779,780,781,777,776,782,783,781,780,783,782,784,785,777,786,787,778,781,788,786,777,783,789,788,781,789,783,785,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1049 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,
- 1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *518 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509543136, "Geometry::", "Mesh" {
- Vertices: *462 {
- a: 360.3125,0,-149.24609375,275.7734375,0,-275.771484375,149.24609375,0,-360.3125,0,0,-390,-149.24609375,0,-360.31298828125,-275.7734375,0,-275.771484375,-360.3125,0,-149.24658203125,-390,0,0,-360.3125,0,149.24609375,-275.7734375,0,275.771484375,-149.24609375,0,360.3125,149.24609375,0,360.31298828125,275.7734375,0,275.771484375,360.3125,0,149.24658203125,390,0,0,360.3125,600,-149.24609375,275.7734375,600,-275.771484375,149.24609375,600,-360.3125,0,600,-390,-149.24609375,600,-360.31298828125,-275.7734375,600,-275.771484375,-360.3125,600,-149.24658203125,-390,600,0,-360.3125,600,149.24609375,-275.7734375,600,275.771484375,-149.24609375,600,360.3125,0,600,390,149.24609375,600,360.31298828125,275.7734375,600,275.771484375,360.3125,600,149.24658203125,390,600,0,360.3125,400,-149.24609375,275.7734375,400,-275.771484375,149.24609375,400,-360.3125,0,400,-390,-149.24609375,400,-360.31298828125,-275.7734375,400,-275.771484375,-360.3125,400,-149.24658203125,-390,400,0,-360.3125,400,149.24609375,-275.7734375,400,275.771484375,-149.24609375,400,360.3125,-76.0859375,400,382.505859375,0,443.775146484375,390,76.0859375,400,382.505859375,149.24609375,400,360.31298828125,275.7734375,400,275.771484375,360.3125,400,149.24658203125,390,400,0,360.3125,200,-149.24609375,275.7734375,200,-275.771484375,149.24609375,200,-360.3125,0,200,-390,-149.24609375,200,-360.31298828125,-275.7734375,200,-275.771484375,-360.3125,200,-149.24658203125,-390,200,0,-360.3125,200,149.24609375,-275.7734375,200,275.771484375,-149.24609375,200,360.3125,149.24609375,200,360.31298828125,275.7734375,200,275.771484375,360.3125,200,149.24658203125,390,200,0,303.6171875,0,-125.76123046875,232.37890625,0,-232.37646484375,125.76171875,0,-303.61474609375,0,0,-328.6298828125,-125.7578125,0,-303.61474609375,-232.375,0,-232.376953125,-303.61328125,0,-125.76171875,-328.6328125,0,0,-303.61328125,0,125.76123046875,-232.375,0,232.37646484375,-125.7578125,0,303.61474609375,125.76171875,0,303.61474609375,232.37890625,0,232.37646484375,303.6171875,0,125.76123046875,
- 328.6328125,0,0,303.6171875,600,-125.76123046875,232.37890625,600,-232.37646484375,125.76171875,600,-303.61474609375,0,600,-328.6298828125,-125.7578125,600,-303.61474609375,-232.375,600,-232.376953125,-303.61328125,600,-125.76171875,-328.6328125,600,0,-303.61328125,600,125.76123046875,-232.375,600,232.37646484375,-125.7578125,600,303.61474609375,0,600,328.6298828125,125.76171875,600,303.61474609375,232.37890625,600,232.37646484375,303.6171875,600,125.76123046875,328.6328125,600,0,-125.7578125,400,303.61474609375,-64.11328125,400,322.3154296875,0,443.775146484375,328.6298828125,64.11328125,400,322.3154296875,125.76171875,400,303.61474609375,-112.6640625,371.409912109375,371.4091796875,-94.9375,371.409912109375,312.96484375,112.6640625,371.409912109375,371.4091796875,94.9375,371.409912109375,312.96533203125,-130.953125,200,365.861328125,-130.953125,0,365.861328125,-110.34765625,0,308.2900390625,130.953125,200,365.861328125,130.953125,0,365.861328125,110.3515625,0,308.2900390625,-155.9619140625,95.91650390625,363.94873046875,-110.748046875,95.92919921875,380.14697265625,-110.74609375,-1.4052734375,380.1474609375,-155.962890625,-1.41015625,363.9482421875,-155.9619140625,291.04296875,363.94873046875,-110.748046875,291.0556640625,380.14697265625,2.234375,450.023681640625,395.95703125,1.572265625,406.460205078125,395.9599609375,-100.3779296875,348.192138671875,383.01513671875,-141.7294921875,366.79736328125,369.72021484375,-57.3359375,392.08642578125,391.77783203125,-81.5888671875,429.494873046875,387.45263671875,155.9580078125,279.6572265625,364.048828125,110.734375,279.64501953125,380.21826171875,155.9580078125,73.25732421875,364.048828125,110.734375,73.2451171875,380.21826171875,64.537109375,387.777099609375,390.69384765625,91.7275390625,423.3525390625,385.2333984375,103.525390625,341.26171875,382.2392578125,146.064453125,356.924072265625,368.12158203125,110.7353515625,-1.7041015625,380.2177734375,155.9580078125,-1.68408203125,364.048828125,-126.79296875,95.91650390625,295.8349609375,-89.93359375,95.91650390625,309.0341796875,
- -89.93359375,-1.41015625,309.0341796875,-126.79296875,-1.41015625,295.8349609375,-126.79296875,291.04296875,295.8349609375,-89.93359375,291.04296875,309.0341796875,1.837890625,450.02392578125,321.86181640625,1.2900390625,406.3505859375,321.8642578125,-81.513671875,348.1396484375,311.3603515625,-115.2197265625,366.79736328125,300.5283203125,-46.5517578125,391.99169921875,318.470703125,-66.318359375,429.4951171875,314.94677734375,126.8330078125,279.6572265625,295.91650390625,89.96484375,279.6572265625,309.091796875,126.8330078125,73.25732421875,295.91650390625,89.96484375,73.25732421875,309.091796875,52.427734375,387.6962890625,317.59375,74.6064453125,423.35205078125,313.14208984375,84.10546875,341.23486328125,310.73291015625,118.7880859375,356.92333984375,299.228515625,89.96484375,-1.68359375,309.091796875,126.83203125,-1.6845703125,295.9169921875
- }
- PolygonVertexIndex: *578 {
- a: 0,1,50,-50,50,1,2,-52,51,2,3,-53,52,3,4,-54,53,4,5,-55,54,5,6,-56,55,6,7,-57,56,7,8,-58,57,8,9,-59,58,9,10,-60,107,108,11,-61,60,11,12,-62,61,12,13,-63,62,13,14,-64,63,14,0,-50,15,31,32,-17,16,32,33,-18,18,17,33,-35,18,34,35,-20,19,35,36,-21,20,36,37,-22,21,37,38,-23,22,38,39,-24,23,39,40,-25,24,40,41,-26,25,41,42,43,-27,26,43,44,45,-28,27,45,46,-29,28,46,47,-30,29,47,48,-31,30,48,31,-16,31,49,50,-33,32,50,51,-34,34,33,51,-53,34,52,53,-36,35,53,54,-37,36,54,55,-38,37,55,56,-39,38,56,57,-40,39,57,58,-41,40,58,59,-42,102,107,60,-46,45,60,61,-47,46,61,62,-48,47,62,63,-49,48,63,49,-32,78,94,79,-65,79,80,65,-65,65,80,81,-67,82,67,66,-82,67,82,83,-69,68,83,84,-70,69,84,85,-71,70,85,86,-72,71,86,87,-73,72,87,88,-74,73,88,89,95,-75,89,90,97,96,-96,90,91,99,98,-98,75,99,91,92,-77,76,92,93,-78,77,93,94,-79,95,96,-102,98,99,-104,86,85,21,-23,20,21,85,-85,19,20,84,-84,18,19,83,-83,17,18,82,-82,16,17,81,-81,15,16,80,-80,30,15,79,-95,94,93,29,-31,28,29,93,-93,27,28,92,-92,26,27,91,-91,25,26,90,-90,24,25,89,-89,23,24,88,-88,22,23,87,-87,77,78,14,-14,70,71,7,-7,6,5,69,-71,5,4,68,-70,4,3,67,-69,3,2,66,-68,2,1,65,-67,1,0,64,-66,0,14,78,-65,13,12,76,-78,12,11,75,-77,108,109,75,-12,10,9,73,-75,9,8,72,-74,8,7,71,-73,74,95,101,-107,41,59,104,-101,59,10,105,-105,10,74,106,-106,109,103,99,-76,41,100,-43,44,102,-46,113,112,111,-111,110,111,115,-115,114,115,118,-120,119,118,120,-122,121,120,117,-117,116,117,126,-128,122,123,125,-125,127,126,128,-130,129,128,123,-123,124,125,130,-132,133,111,112,-135,132,133,134,-136,113,110,132,-136,137,115,111,-134,136,137,133,-133,110,114,136,-133,137,140,118,-116,141,140,137,-137,114,119,141,-137,140,142,120,-119,143,142,140,-142,119,121,143,-142,139,117,120,-143,138,139,142,-144,121,116,138,-144,139,148,126,-118,149,148,139,-139,116,127,149,-139,148,150,128,-127,151,150,148,-150,127,129,151,-150,145,123,128,-151,144,145,150,-152,129,122,144,-152,145,147,125,-124,146,147,145,-145,122,124,146,-145,147,152,130,-126,153,152,147,-147,124,131,153,-147,112,113,135,-135,130,152,153,-132
- }
- Edges: *297 {
- a: 0,5,9,13,17,21,25,29,33,37,393,45,49,53,57,125,63,67,68,75,79,83,87,91,95,99,104,109,113,117,121,1,6,10,14,18,22,26,30,34,38,42,46,50,54,60,62,66,71,74,78,82,86,90,94,98,103,108,112,116,120,61,65,70,73,77,81,85,89,93,97,405,102,106,169,111,115,119,123,126,128,132,137,140,144,148,152,156,160,164,168,172,176,180,2,7,11,15,19,23,27,31,35,39,43,47,51,55,59,3,189,192,197,199,205,209,213,217,221,225,230,387,245,249,253,190,195,201,203,207,211,215,219,223,227,231,236,243,247,251,187,188,228,232,237,255,233,239,258,229,191,196,198,204,208,212,216,220,224,241,244,248,186,291,263,261,267,271,275,279,283,287,293,299,303,307,311,315,319,325,329,331,333,337,341,345,349,353,327,361,365,375,373,377,391,256,407,259,389,394,398,386,390,41,369,166,40,368,400,101,234,107,238,412,410,411,413,416,428,415,417,419,421,420,423,425,424,427,429,434,436,431,433,432,439,441,440,443,445,435,437,447,449,448,454,459,450,452,457,456,461,453,466,471,462,502,507,498,481,469,465,474,475,493,478,483,486,487,505,490,495,501,538,543,534,550,555,547,553,517,510,511,529,514,519,522,523,541,526,531,537,546,565,558,559,562,567
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1734 {
- a: 0.923881590366364,0,-0.382678478956223,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.923881590366364,0,-0.382678478956223,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.528214871883392,0,0.849110662937164,-0.523045122623444,-2.62308219589613e-008,0.852304935455322,0.290255725383759,-7.16321665095165e-007,0.956949174404144,0.290248602628708,0,0.956951200962067,0.528214871883392,0,0.849110662937164,0.523045182228088,-9.26822636415636e-008,0.852304935455322,0.523045182228088,-9.26822636415636e-008,0.852304935455322,0.528214871883392,0,0.849110662937164,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,1,0,0,1,0,0,1,0,0,1,0,0,0.923881590366364,0,-0.382678478956223,
- 0.923881590366364,0,-0.382678478956223,0.923881590366364,0,-0.382678478956223,0.923881590366364,0,-0.382678478956223,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,1.57251258769975e-006,0,-1,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.442849546670914,0.00621035508811474,0.8965744972229,-0.390373885631561,0.00981309916824102,0.920604109764099,-0.390373885631561,0.00981309916824102,0.920604109764099,-0.442849546670914,0.00621035508811474,0.8965744972229,-0.201488360762596,0.0196304228156805,0.979294180870056,-1.74803540176072e-006,0.0202257130295038,0.999795436859131,-1.75330558249698e-006,0.0202257130295038,0.999795436859131,-1.75330558249698e-006,0.0202257130295038,0.999795436859131,-1.74803540176072e-006,0.0202257130295038,0.999795436859131,0.201485082507133,0.0196297243237495,0.979294836521149,0.442849814891815,0.00621008314192295,0.896574258804321,0.390373796224594,0.00981278065592051,0.920604228973389,0.390373796224594,0.00981278065592051,0.920604228973389,
- 0.442849814891815,0.00621008314192295,0.896574258804321,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,1,0,0,1,0,0,1,0,0,1,0,0,0.923881590366364,0,-0.382678478956223,0.923881590366364,0,-0.382678478956223,0.923881590366364,0,-0.382678478956223,0.923881590366364,0,-0.382678478956223,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.70710676908493,0,-0.70710676908493,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,1.57251258769975e-006,0,-1,0.382681757211685,0,-0.923880219459534,0.382681757211685,0,-0.923880219459534,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,1.57251258769975e-006,0,-1,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.382681757211685,0,-0.923880219459534,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.707106709480286,0,-0.707106828689575,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-0.923881590366364,0,-0.382678508758545,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.923881590366364,0,0.382678478956223,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.70710676908493,0,0.70710676908493,-0.523045122623444,-2.62308219589613e-008,0.852304935455322,-0.442849546670914,0.00621035508811474,0.8965744972229,0.290263950824738,-5.20246976520866e-006,0.956946611404419,0.290255725383759,-7.16321665095165e-007,0.956949174404144,0.523045182228088,-9.26822636415636e-008,0.852304935455322,
- 0.442849814891815,0.00621008314192295,0.896574258804321,0.442849814891815,0.00621008314192295,0.896574258804321,0.523045182228088,-9.26822636415636e-008,0.852304935455322,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.707106709480286,0,0.707106828689575,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,0.923881590366364,0,0.382678508758545,1,0,0,1,0,0,1,0,0,1,0,0,0.923881590366364,0,-0.382678478956223,0.923881590366364,0,-0.382678478956223,-1,0,0,-1,0,0,-0.923878908157349,0,0.382684886455536,-0.923878908157349,0,0.382684886455536,-0.923878908157349,0,0.382684886455536,-0.70710289478302,0,0.707110643386841,-0.70710289478302,0,0.707110643386841,-0.923878908157349,0,0.382684886455536,-0.70710289478302,0,0.707110643386841,-0.70710289478302,0,0.707110643386841,-0.382679849863052,0,0.923880994319916,-0.382679849863052,0,0.923880994319916,0,0,0.999999940395355,0,0,0.999999940395355,-0.382679849863052,0,0.923880994319916,-0.382679849863052,0,0.923880994319916,0,0,0.999999940395355,0,0,0.999999940395355,0.38268369436264,0,0.923879504203796,0.38268369436264,0,0.923879504203796,0.38268369436264,0,0.923879504203796,0.38268369436264,0,0.923879504203796,0.707101881504059,0,0.707111597061157,0.707101881504059,0,0.707111597061157,0.707101881504059,0,0.707111597061157,0.707101881504059,0,0.707111597061157,0.923873722553253,0,0.382697433233261,0.923873722553253,0,0.382697433233261,0.923873722553253,0,0.382697433233261,0.923873722553253,0,0.382697433233261,1,0,0,1,0,0,1,0,0,1,0,0,0.923873424530029,0,-0.382698118686676,0.923873424530029,0,-0.382698118686676,0.923873424530029,0,-0.382698118686676,0.923873424530029,0,-0.382698118686676,0.70710289478302,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,0.70710289478302,0,-0.707110643386841,0.477003782987595,-0.00405642716214061,-0.878891825675964,0.505479156970978,-0.00222573173232377,-0.862836003303528,0.528816521167755,-4.32895213009488e-008,-0.848736107349396,
- 0.477003782987595,-0.00405642716214061,-0.878891825675964,-7.85233922329098e-008,-0.0170447621494532,-0.999854743480682,-8.53544293022424e-008,-0.0170447584241629,-0.999854683876038,0.201634734869003,-0.016518609598279,-0.979321539402008,0.505479156970978,-0.00222573173232377,-0.862836003303528,-7.85233922329098e-008,-0.0170447621494532,-0.999854743480682,-0.477000445127487,-0.00405627535656095,-0.878893613815308,-0.50547593832016,-0.00222565489821136,-0.862837851047516,-0.201628491282463,-0.0165175441652536,-0.979322791099548,-8.53544293022424e-008,-0.0170447584241629,-0.999854683876038,-0.528813242912292,-1.06448766246103e-007,-0.848738133907318,-0.50547593832016,-0.00222565489821136,-0.862837851047516,-0.477000445127487,-0.00405627535656095,-0.878893613815308,-0.70710289478302,0,-0.707110643386841,-0.70710289478302,0,-0.707110643386841,-0.70710289478302,0,-0.707110643386841,-0.70710289478302,0,-0.707110643386841,-0.923878908157349,0,-0.382684886455536,-0.923878908157349,0,-0.382684886455536,-0.923878908157349,0,-0.382684886455536,-0.923878908157349,0,-0.382684886455536,-1,0,0,-1,0,0,0.505479156970978,-0.00222573173232377,-0.862836003303528,0.201634734869003,-0.016518609598279,-0.979321539402008,0.29031229019165,-1.16354749479797e-006,-0.956932008266449,-0.201628491282463,-0.0165175441652536,-0.979322791099548,-0.50547593832016,-0.00222565489821136,-0.862837851047516,-0.290298908948898,-1.46499223774299e-006,-0.956936120986938,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,0.999999940395355,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,
- 0,1,0,0,1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.528816521167755,-4.32895213009488e-008,-0.848736107349396,0.505479156970978,-0.00222573173232377,-0.862836003303528,0.29031229019165,-1.16354749479797e-006,-0.956932008266449,0.290313273668289,-3.94734314568268e-007,-0.95693165063858,-0.442849546670914,0.00621035508811474,0.8965744972229,-0.523045122623444,-2.62308219589613e-008,0.852304935455322,-0.29027333855629,-2.02731399667755e-007,0.956943809986115,-0.2902772128582,-3.27230350194441e-006,0.956942617893219,-0.523045122623444,-2.62308219589613e-008,0.852304935455322,-0.528214871883392,0,0.849110662937164,-0.290271103382111,0,0.956944465637207,-0.29027333855629,-2.02731399667755e-007,0.956943809986115,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.290300101041794,-9.70578298620239e-007,-0.956935703754425,-0.290298908948898,-1.46499223774299e-006,-0.956936120986938,-0.50547593832016,-0.00222565489821136,-0.862837851047516,-0.528813242912292,-1.06448766246103e-007,-0.848738133907318,-0.442849546670914,0.00621035508811474,0.8965744972229,-0.2902772128582,-3.27230350194441e-006,0.956942617893219,-0.201488360762596,0.0196304228156805,0.979294180870056,0.201485082507133,0.0196297243237495,0.979294836521149,0.290263950824738,-5.20246976520866e-006,0.956946611404419,0.442849814891815,0.00621008314192295,0.896574258804321,-0.337267100811005,-1.66729216743988e-006,0.941409051418304,-0.337267071008682,-1.66729205375304e-006,0.941409051418304,-0.337267220020294,-5.54771872884885e-007,0.941408932209015,
- -0.337267190217972,-5.55018857539835e-007,0.941408932209015,-0.337267190217972,-5.55018857539835e-007,0.941408932209015,-0.337267220020294,-5.54771872884885e-007,0.941408932209015,-0.333323955535889,-0.000482951640151441,0.942812263965607,-0.333994746208191,-0.000400852644816041,0.942574858665466,-0.333994746208191,-0.000400852644816041,0.942574858665466,-0.333323955535889,-0.000482951640151441,0.942812263965607,-0.286689609289169,0.00239525339566171,0.958020508289337,-0.290478855371475,0.00196170760318637,0.956879377365112,-0.290478855371475,0.00196170760318637,0.956879377365112,-0.286689609289169,0.00239525339566171,0.958020508289337,-0.174627959728241,0.0159503314644098,0.984505295753479,-0.181824132800102,0.0150693384930491,0.983215570449829,-0.181824132800102,0.0150693384930491,0.983215570449829,-0.174627959728241,0.0159503314644098,0.984505295753479,0.0135433888062835,0.027458667755127,0.999531090259552,0.0122831938788295,0.0274388678371906,0.999548017978668,0.0122831938788295,0.0274388678371906,0.999548017978668,0.0135433888062835,0.027458667755127,0.999531090259552,0.186591982841492,0.0169058777391911,0.982291996479034,0.195344269275665,0.015468287281692,0.980612754821777,0.334290474653244,-0.000297042744932696,0.942470014095306,0.333975940942764,-0.000336261960910633,0.942581534385681,0.33667129278183,-2.3493979028899e-007,0.941622257232666,0.336671262979507,-2.34829855116914e-007,0.941622257232666,0.195344269275665,0.015468287281692,0.980612754821777,0.186591982841492,0.0169058777391911,0.982291996479034,0.296201318502426,0.00114456377923489,0.955124855041504,0.29938006401062,0.000891170464456081,0.9541335105896,0.29938006401062,0.000891170464456081,0.9541335105896,0.296201318502426,0.00114456377923489,0.955124855041504,0.333975940942764,-0.000336261960910633,0.942581534385681,0.334290474653244,-0.000297042744932696,0.942470014095306,0.336671262979507,-2.34829855116914e-007,0.941622257232666,0.33667129278183,-2.3493979028899e-007,0.941622257232666,0.336669951677322,-8.81769494753826e-007,0.941622793674469,
- 0.336669921875,-8.81769551597245e-007,0.941622734069824,0.95973527431488,3.4479885471228e-006,0.28090626001358,0.959735214710236,3.44698287335632e-006,0.280906200408936,0.959737777709961,1.03589427453699e-005,0.280897498130798,0.959737777709961,1.03589427453699e-005,0.280897468328476,0.337132453918457,0,-0.941457211971283,0.337132453918457,0,-0.941457211971283,0.33713236451149,0,-0.941457271575928,0.33713236451149,0,-0.941457271575928,-0.919252872467041,5.6874705478549e-006,-0.393667578697205,-0.919254899024963,1.89275510820153e-006,-0.393663018941879,-0.919254839420319,1.89275590400939e-006,-0.393662989139557,-0.919252932071686,5.6874714573496e-006,-0.393667578697205,0.959876477718353,-0.0386490263044834,0.277746975421906,0.959877729415894,-0.038565918803215,0.277754247188568,0.959735214710236,3.44698287335632e-006,0.280906200408936,0.95973527431488,3.4479885471228e-006,0.28090626001358,0.333795040845871,0.000335029442794621,-0.942645668983459,0.333249866962433,0.000389715249184519,-0.942838370800018,0.337132453918457,0,-0.941457211971283,0.337132453918457,0,-0.941457211971283,-0.919254899024963,1.89275510820153e-006,-0.393663018941879,-0.920159757137299,0.0512372963130474,-0.388176023960114,-0.920158803462982,0.0514014735817909,-0.388156771659851,-0.919254839420319,1.89275590400939e-006,-0.393662989139557,0.959876477718353,-0.0386490263044834,0.277746975421906,0.870509147644043,-0.443181246519089,0.214019060134888,0.87310516834259,-0.437394052743912,0.215345829725266,0.959877729415894,-0.038565918803215,0.277754247188568,0.286413460969925,-0.00194930972065777,-0.958104074001312,0.289324730634689,-0.00167867937125266,-0.957229495048523,0.333249866962433,0.000389715249184519,-0.942838370800018,0.333795040845871,0.000335029442794621,-0.942645668983459,-0.920159757137299,0.0512372963130474,-0.388176023960114,-0.841027975082397,0.450886070728302,-0.298954278230667,-0.837641179561615,0.458873301744461,-0.296297907829285,-0.920158803462982,0.0514014735817909,-0.388156771659851,0.870509147644043,-0.443181246519089,0.214019060134888,
- 0.518605053424835,-0.850310385227203,0.0895596668124199,0.52394425868988,-0.846872985363007,0.0910417214035988,0.87310516834259,-0.437394052743912,0.215345829725266,0.171291753649712,-0.0132866017520428,-0.985130786895752,0.181824758648872,-0.0122370840981603,-0.983254790306091,0.289324730634689,-0.00167867937125266,-0.957229495048523,0.286413460969925,-0.00194930972065777,-0.958104074001312,-0.841027975082397,0.450886070728302,-0.298954278230667,-0.517345070838928,0.846177279949188,-0.127820312976837,-0.509916663169861,0.851122498512268,-0.124801822006702,-0.837641179561615,0.458873301744461,-0.296297907829285,-0.038766898214817,-0.99894380569458,0.0246645417064428,-0.038088109344244,-0.998970150947571,0.0246558077633381,0.52394425868988,-0.846872985363007,0.0910417214035988,0.518605053424835,-0.850310385227203,0.0895596668124199,-0.0116354618221521,-0.0222988054156303,-0.999683618545532,-0.013909594155848,-0.0223278310149908,-0.999653875827789,0.181824758648872,-0.0122370840981603,-0.983254790306091,0.171291753649712,-0.0132866017520428,-0.985130786895752,-0.517345070838928,0.846177279949188,-0.127820312976837,0.0375680960714817,0.998744904994965,-0.0331243723630905,0.0385933518409729,0.998705208301544,-0.0331433787941933,-0.509916663169861,0.851122498512268,-0.124801822006702,-0.038766898214817,-0.99894380569458,0.0246645417064428,-0.559136807918549,-0.822943687438965,0.100646130740643,-0.566145777702332,-0.817871510982513,0.10278731584549,-0.038088109344244,-0.998970150947571,0.0246558077633381,-0.184450566768646,-0.0140071604400873,-0.982741892337799,-0.193903595209122,-0.0127434162423015,-0.980937838554382,-0.013909594155848,-0.0223278310149908,-0.999653875827789,-0.0116354618221521,-0.0222988054156303,-0.999683618545532,0.0375680960714817,0.998744904994965,-0.0331243723630905,0.558372259140015,0.816863119602203,-0.144759342074394,0.548819363117218,0.824055254459381,-0.140463978052139,0.0385933518409729,0.998705208301544,-0.0331433787941933,-0.559136807918549,-0.822943687438965,0.100646130740643,-0.89982408285141,-0.371517807245255,0.228672668337822,
- -0.901637613773346,-0.366471260786057,0.229670464992523,-0.566145777702332,-0.817871510982513,0.10278731584549,-0.296275854110718,-0.000899973907507956,-0.95510196685791,-0.298127293586731,-0.000780401576776057,-0.954525828361511,-0.193903595209122,-0.0127434162423015,-0.980937838554382,-0.184450566768646,-0.0140071604400873,-0.982741892337799,0.558372259140015,0.816863119602203,-0.144759342074394,0.864880383014679,0.38893848657608,-0.317346572875977,0.862518191337585,0.395739763975143,-0.315360546112061,0.548819363117218,0.824055254459381,-0.140463978052139,-0.960210561752319,-0.0253294091671705,0.278126031160355,-0.960210621356964,-0.0252916887402534,0.278129428625107,-0.901637613773346,-0.366471260786057,0.229670464992523,-0.89982408285141,-0.371517807245255,0.228672668337822,-0.334108084440231,0.000246919866185635,-0.942534685134888,-0.333851039409637,0.000273221958195791,-0.942625761032104,-0.298127293586731,-0.000780401576776057,-0.954525828361511,-0.296275854110718,-0.000899973907507956,-0.95510196685791,0.864880383014679,0.38893848657608,-0.317346572875977,0.920408844947815,0.0341426022350788,-0.389463752508163,0.920409321784973,0.0341955199837685,-0.389457762241364,0.862518191337585,0.395739763975143,-0.315360546112061,-0.960210561752319,-0.0253294091671705,0.278126031160355,-0.959911227226257,-1.89692093499616e-006,0.280304193496704,-0.959911227226257,-1.89750267054478e-006,0.280304193496704,-0.960210621356964,-0.0252916887402534,0.278129428625107,-0.336519122123718,-2.36383854712585e-007,-0.941676497459412,-0.336519181728363,-2.36385488960877e-007,-0.941676676273346,-0.333851039409637,0.000273221958195791,-0.942625761032104,-0.334108084440231,0.000246919866185635,-0.942534685134888,0.920408844947815,0.0341426022350788,-0.389463752508163,0.919508278369904,-1.96751625480829e-006,-0.393070757389069,0.919508159160614,-1.96751534531359e-006,-0.393070757389069,0.920409321784973,0.0341955199837685,-0.389457762241364,-0.959911227226257,-1.89692093499616e-006,0.280304193496704,-0.959909677505493,-7.1221761572815e-006,0.2803093791008,
- -0.959909737110138,-7.1221761572815e-006,0.280309408903122,-0.959911227226257,-1.89750267054478e-006,0.280304193496704,-0.336517751216888,-8.87435817276128e-007,-0.941677212715149,-0.336517721414566,-8.87435760432709e-007,-0.941677093505859,-0.336519181728363,-2.36385488960877e-007,-0.941676676273346,-0.336519122123718,-2.36383854712585e-007,-0.941676497459412,0.919508278369904,-1.96751625480829e-006,-0.393070757389069,0.919506072998047,-7.38633661967469e-006,-0.393075734376907,0.919506132602692,-7.3863375291694e-006,-0.393075793981552,0.919508159160614,-1.96751534531359e-006,-0.393070757389069,4.15823305957019e-005,-1,4.99993620906025e-005,4.15823269577231e-005,-1,4.99993620906025e-005,4.15823269577231e-005,-1,4.99993620906025e-005,4.15823269577231e-005,-1,4.99993620906025e-005,0.000160085750394501,-1,-0.000201117160031572,0.000160085764946416,-1,-0.000201117160031572,0.000160085764946416,-1,-0.000201117174583487,0.000160085764946416,-0.999999940395355,-0.000201117174583487
- }
- NormalsW: *578 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1734 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-7.3846742054684e-008,1,3.05881648898776e-008,9.72720783920522e-008,1,-4.02912085917251e-008,9.72720783920522e-008,1,-4.02912085917251e-008,-7.3846742054684e-008,1,3.05881648898776e-008,-1.69559882579051e-007,1,1.69559854157342e-007,-5.65199655966353e-008,1,5.65199549384943e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,1.48898294582978e-007,1,1.48898294582978e-007,2.97796646009374e-007,1,2.97796646009374e-007,2.97796646009374e-007,1,2.97796646009374e-007,1.48898294582978e-007,1,1.48898294582978e-007,0,1,-0,0.000491214042995125,0.999999821186066,0.0003014805552084,2.07910716198967e-007,1,6.85485133544717e-007,0,1,-0,-0,1,0,-0.00138964282814413,0.99999874830246,0.000852909113746136,-0.00138964282814413,0.99999874830246,0.000852909113746136,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,3.89088370411628e-007,1,-1.6116486278861e-007,3.89088285146499e-007,1,-1.61164820156046e-007,3.89088285146499e-007,1,-1.61164820156046e-007,3.89088370411628e-007,1,-1.6116486278861e-007,2.97795963888348e-007,1,-2.97795907044929e-007,6.70040833483654e-007,1,-6.70040719796816e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,5.21144215781533e-007,1,5.21144215781533e-007,4.46695054279189e-007,1,4.46695054279189e-007,4.46695054279189e-007,1,4.46695054279189e-007,5.21144215781533e-007,1,5.21144215781533e-007,0.0031603763345629,0.999980568885803,-0.00536560360342264,0.00398033065721393,0.999951839447021,-0.00897107645869255,0.00398033065721393,0.999951839447021,-0.00897107645869255,0.0031603763345629,0.999980568885803,-0.00536560360342264,-0.0137612018734217,0.999643802642822,-0.0228696875274181,1.29484067912244e-008,0.999795436859131,-0.0202257130295038,-5.78025947106653e-008,0.999795436859131,-0.0202257130295038,
- -5.78025947106653e-008,0.999795436859131,-0.0202257130295038,1.29484067912244e-008,0.999795436859131,-0.0202257130295038,0.0137610565871,0.999643862247467,-0.0228688847273588,-0.00432591326534748,0.999979197978973,-0.00478959083557129,-0.00345644610933959,0.999951839447021,-0.00919287744909525,-0.00345644610933959,0.999951839447021,-0.00919287744909525,-0.00432591326534748,0.999979197978973,-0.00478959083557129,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,9.72720783920522e-008,1,-4.02912085917251e-008,3.89088370411628e-007,1,-1.6116486278861e-007,3.89088370411628e-007,1,-1.6116486278861e-007,9.72720783920522e-008,1,-4.02912085917251e-008,-5.65199655966353e-008,1,5.65199549384943e-008,2.97795963888348e-007,1,-2.97795907044929e-007,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,2.97796646009374e-007,1,2.97796646009374e-007,5.21144215781533e-007,1,5.21144215781533e-007,5.21144215781533e-007,1,5.21144215781533e-007,2.97796646009374e-007,1,2.97796646009374e-007,0.000491214042995125,0.999999821186066,0.0003014805552084,0.0031603763345629,0.999980568885803,-0.00536560360342264,-0.00352064939215779,0.99999326467514,0.00107333064079285,2.07910716198967e-007,1,6.85485133544717e-007,-0.00138964282814413,0.99999874830246,0.000852909113746136,-0.00432591326534748,0.999979197978973,-0.00478959083557129,-0.00432591326534748,0.999979197978973,-0.00478959083557129,-0.00138964282814413,0.99999874830246,0.000852909113746136,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,0,1,-0,-0,1,0,0,1,0,0,1,-0,0,1,-0,0,1,0,-0,1,0,-9.91998518884429e-008,1,4.10899581027024e-008,-3.30074072962816e-007,1,1.36721254762051e-007,-3.30074072962816e-007,1,1.36721254762051e-007,-9.91998518884429e-008,1,4.10899581027024e-008,5.3011552836324e-007,1,-5.30108252405626e-007,
- -1.13887530517331e-007,1,1.13885967323313e-007,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,-0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,8.61434045873466e-007,1,8.61424609865935e-007,0,1,0,0,1,0,8.61434045873466e-007,1,8.61424609865935e-007,0.00143162941094488,0.999991655349731,-0.00383835704997182,-0.00586573872715235,0.999964714050293,-0.0060158153064549,-0.00837003905326128,0.999951481819153,-0.00521511770784855,0.00143162941094488,0.999991655349731,-0.00383835704997182,-6.84823504570886e-008,0.999854743480682,-0.0170447621494532,-1.45491096947836e-009,0.999854743480682,-0.0170447584241629,-0.0135768260806799,0.999714612960815,-0.019657950848341,-0.00586573872715235,0.999964714050293,-0.0060158153064549,-6.84823504570886e-008,0.999854743480682,-0.0170447621494532,-0.00143122859299183,0.999991655349731,-0.00383839942514896,-0.00333179510198534,0.999994277954102,-0.000627580098807812,0.0135767962783575,0.99971467256546,-0.0196567475795746,-1.45491096947836e-009,0.999854743480682,-0.0170447584241629,-0.00301820994354784,0.999993741512299,0.00188039499334991,-0.00333179510198534,0.999994277954102,-0.000627580098807812,-0.00143122859299183,0.999991655349731,-0.00383839942514896,-2.65056652182238e-008,1,2.65053738957022e-008,0,1,0,0,1,0,-2.65056652182238e-008,1,2.65053738957022e-008,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0,0,1,-0,-0.00586573872715235,0.999964714050293,-0.0060158153064549,-0.0135768260806799,0.999714612960815,-0.019657950848341,-0.0121527127921581,0.999919414520264,-0.00368808372877538,0.0135767962783575,0.99971467256546,-0.0196567475795746,-0.00333179510198534,0.999994277954102,-0.000627580098807812,-0.00438200728967786,0.99998950958252,0.00132780754938722,0.980779349803925,-0,0.195120111107826,0.947169601917267,-0,0.320733457803726,0.896538555622101,-0,0.442965686321259,0.980782032012939,-0,0.195106834173203,0.831476211547852,-0,0.555560350418091,0.896538555622101,-0,0.442965686321259,0.947169601917267,-0,0.320733457803726,0.831472456455231,-0,0.5555659532547,0.320721000432968,-0,0.947173714637756,0.555562853813171,-0,0.831474542617798,
- 0.555561661720276,-0,0.83147531747818,0.442963272333145,-0,0.896539866924286,0.195091083645821,-0,0.980785191059113,0.320721000432968,-0,0.947173714637756,0.442963272333145,-0,0.896539866924286,0.195092037320137,-0,0.980785012245178,0.442963778972626,0,-0.896539509296417,0.195090666413307,0,-0.980785310268402,0.195087149739265,0,-0.980785965919495,0.320720314979553,0,-0.94717401266098,0.752339363098145,0,-0.658775806427002,0.442963778972626,0,-0.896539509296417,0.320720314979553,0,-0.94717401266098,0.658771455287933,0,-0.752343118190765,0.947174310684204,0,-0.320719510316849,0.752339363098145,0,-0.658775806427002,0.658771455287933,0,-0.752343118190765,0.896539092063904,0,-0.442964673042297,0.980784714221954,0,-0.195093601942062,0.947174310684204,0,-0.320719510316849,0.896539092063904,0,-0.442964673042297,0.980784893035889,0,-0.19509257376194,0.980785191059113,-0,0.19509120285511,0.947172701358795,-0,0.320724159479141,0.896538555622101,-0,0.442965865135193,0.980784952640533,-0,0.195092380046844,0.658775568008423,-0,0.752339661121368,0.896538555622101,-0,0.442965865135193,0.947172701358795,-0,0.320724159479141,0.752339720726013,-0,0.658775448799133,0.320719093084335,-0,0.947174370288849,0.658775568008423,-0,0.752339661121368,0.752339720726013,-0,0.658775448799133,0.442962616682053,-0,0.89654016494751,0.195091083645821,-0,0.980785191059113,0.320719093084335,-0,0.947174370288849,0.442962616682053,-0,0.89654016494751,0.195089116692543,-0,0.980785548686981,-0.442963898181915,0,0.896539509296417,-0.19509357213974,0,0.980784714221954,-0.195092976093292,0,0.980784833431244,-0.320722192525864,0,0.947173297405243,-0.752339363098145,0,0.658775746822357,-0.442963898181915,0,0.896539509296417,-0.320722192525864,0,0.947173297405243,-0.658771455287933,0,0.752343237400055,-0.947171092033386,0,0.32072901725769,-0.752339363098145,0,0.658775746822357,-0.658771455287933,0,0.752343237400055,-0.89653480052948,0,0.44297331571579,-0.98078453540802,0,0.195094153285027,-0.947171092033386,0,0.32072901725769,-0.89653480052948,0,0.44297331571579,
- -0.98078191280365,0,0.195107325911522,0.896538853645325,0,0.442965120077133,0.980784952640533,0,0.195092380046844,0.980784714221954,0,0.195093557238579,0.947174191474915,0,0.320719867944717,0.896534621715546,0,0.442973583936691,0.980782032012939,0,0.195106834173203,0.98078465461731,0,0.195093542337418,0.947170913219452,0,0.320729225873947,0.947170913219452,0,0.320729225873947,0.831472456455231,0,0.5555659532547,0.831468760967255,0,0.555571615695953,0.896534621715546,0,0.442973583936691,0.555564045906067,0,0.831473767757416,0.44296270608902,0,0.896540105342865,0.320720136165619,0,0.94717401266098,0.555562853813171,0,0.831474602222443,0.44296270608902,0,0.896540105342865,0.195092037320137,0,0.980785012245178,0.195092976093292,0,0.980784833431244,0.320720136165619,0,0.94717401266098,0.195094168186188,-0,-0.980784595012665,0.320719182491302,-0,-0.947174370288849,0.442961722612381,-0,-0.896540582180023,0.195090666413307,-0,-0.980785310268402,0.320719182491302,-0,-0.947174370288849,0.658775210380554,-0,-0.752339899539948,0.752340137958527,-0,-0.658774971961975,0.442961722612381,-0,-0.896540582180023,0.658775210380554,-0,-0.752339899539948,0.89653879404068,-0,-0.442965269088745,0.947172701358795,-0,-0.320724189281464,0.752340137958527,-0,-0.658774971961975,0.89653879404068,-0,-0.442965269088745,0.980784893035889,-0,-0.19509257376194,0.980785071849823,-0,-0.195091545581818,0.947172701358795,-0,-0.320724189281464,0.947174191474915,0,0.320719867944717,0.752339541912079,0,0.658775568008423,0.658772110939026,0,0.752342522144318,0.896538853645325,0,0.442965120077133,0.752339541912079,0,0.658775568008423,0.471661418676376,0,0.881779730319977,0.382388234138489,0,0.924001812934875,0.658772110939026,0,0.752342522144318,0.290285348892212,0,0.956940174102783,0.290322959423065,0,0.956928730010986,0.382388234138489,0,0.924001812934875,0.471661418676376,0,0.881779730319977,-0.427544116973877,-0,0.903994500637054,-0.658775269985199,-0,0.752339720726013,-0.752340137958527,-0,0.65877503156662,-0.427557110786438,-0,0.903988361358643,-0.658775269985199,-0,0.752339720726013,
- -0.896538734436035,-0,0.442965477705002,-0.947169423103333,-0,0.320733904838562,-0.752340137958527,-0,0.65877503156662,-0.896538734436035,-0,0.442965477705002,-0.98078191280365,-0,0.195107325911522,-0.98077929019928,-0,0.195120498538017,-0.947169423103333,-0,0.320733904838562,-0.00837003905326128,0.999951481819153,-0.00521511770784855,-0.00586573872715235,0.999964714050293,-0.0060158153064549,-0.0121527127921581,0.999919414520264,-0.00368808372877538,1.14600432254974e-007,1,-3.77732590095547e-007,0.0031603763345629,0.999980568885803,-0.00536560360342264,0.000491214042995125,0.999999821186066,0.0003014805552084,-5.88470747686642e-008,1,1.94002694797746e-007,0.00106561556458473,0.999999403953552,0.000326661363942549,0.000491214042995125,0.999999821186066,0.0003014805552084,0,1,-0,0,1,0,-5.88470747686642e-008,1,1.94002694797746e-007,-0.427544116973877,-0,0.903994500637054,-0.427557110786438,-0,0.903988361358643,-0.290322959423065,-0,0.956928730010986,-0.290297031402588,-0,0.956936597824097,-2.81781183275598e-007,1,-9.28774284147948e-007,-0.00438200728967786,0.99998950958252,0.00132780754938722,-0.00333179510198534,0.999994277954102,-0.000627580098807812,-0.00301820994354784,0.999993741512299,0.00188039499334991,0.0031603763345629,0.999980568885803,-0.00536560360342264,0.00106561556458473,0.999999403953552,0.000326661363942549,-0.0137612018734217,0.999643802642822,-0.0228696875274181,0.0137610565871,0.999643862247467,-0.0228688847273588,-0.00352064939215779,0.99999326467514,0.00107333064079285,-0.00432591326534748,0.999979197978973,-0.00478959083557129,-0.941405475139618,0.00275490363128483,-0.337265819311142,-0.941409051418304,-9.74971917457879e-005,-0.337267071008682,-0.941404938697815,-0.00294989766553044,-0.33726578950882,-0.941409051418304,-9.74971408140846e-005,-0.337267220020294,-0.94140487909317,0.00296567985787988,-0.337265729904175,-0.941408932209015,-7.96389649622142e-005,-0.337267220020294,-0.942807257175446,-0.00312492973171175,-0.333323776721954,-0.942574918270111,-7.96385284047574e-005,-0.333994805812836,
- -0.925251722335815,0.190978452563286,-0.327775210142136,-0.927267491817474,0.181009590625763,-0.327735513448715,-0.845868289470673,0.468869179487228,-0.254300087690353,-0.841944754123688,0.474663376808167,-0.256561398506165,-0.841944754123688,0.474663376808167,-0.256561398506165,-0.845868289470673,0.468869179487228,-0.254300087690353,-0.400482594966888,0.912276983261108,-0.0858162716031075,-0.558006882667542,0.821719110012054,-0.115785270929337,-0.558006882667542,0.821719110012054,-0.115785270929337,-0.400482594966888,0.912276983261108,-0.0858162716031075,-0.238033533096313,0.97097384929657,-0.0234488621354103,-0.235912203788757,0.971483707427979,-0.0237694010138512,0.281633794307709,0.959059476852417,-0.0297883301973343,0.279244095087051,0.959746718406677,-0.0301494151353836,0.448082059621811,0.888336360454559,-0.100404590368271,0.61003565788269,0.780988395214081,-0.133842349052429,0.942466080188751,-0.0028036586008966,-0.334289968013763,0.942581653594971,7.52878913772292e-005,-0.333975940942764,0.941618144512177,0.00295424344949424,-0.336669832468033,0.941622257232666,7.5288196967449e-005,-0.336671262979507,0.61003565788269,0.780988395214081,-0.133842349052429,0.448082059621811,0.888336360454559,-0.100404590368271,0.872387528419495,0.406795412302017,-0.271030485630035,0.870763838291168,0.408548921346664,-0.273602604866028,0.870763838291168,0.408548921346664,-0.273602604866028,0.872387528419495,0.406795412302017,-0.271030485630035,0.935401797294617,0.123311333358288,-0.331388026475906,0.934597969055176,0.129083976149559,-0.331457585096359,0.941618919372559,-0.00268029398284853,-0.336670070886612,0.941622257232666,0.000102022189821582,-0.33667129278183,0.941618859767914,0.00288433767855167,-0.33666855096817,0.941622734069824,0.000102022204373498,-0.336669921875,0.280899703502655,-0.0068472963757813,-0.9597128033638,0.280904173851013,-0.00382207077927887,-0.959728300571442,0.280897408723831,-0.000796810956671834,-0.959737479686737,0.280895441770554,-0.00382207054644823,-0.959730744361877,-0.941455006599426,0.00221095560118556,-0.337131649255753,
- -0.941457211971283,-0.000102389458334073,-0.337132453918457,-0.941454529762268,-0.00241573387756944,-0.337131381034851,-0.941457271575928,-0.000102389458334073,-0.33713236451149,-0.393663287162781,-0.00467805517837405,0.919242799282074,-0.393663018941879,1.93672149180202e-005,0.919254899024963,-0.393658578395844,0.00471678888425231,0.919244587421417,-0.393667578697205,1.93672476598294e-005,0.919252932071686,0.277675867080688,-0.00730417016893625,-0.960647165775299,0.277807682752609,-0.00407380145043135,-0.960628092288971,0.280906111001968,-0.000843394198454916,-0.959734857082367,0.280903905630112,-0.00407382380217314,-0.959727227687836,-0.942643344402313,0.00235844636335969,-0.333793371915817,-0.942838549613953,-0.000126395563711412,-0.3332499563694,-0.941454112529755,-0.00261125341057777,-0.337131351232529,-0.941457211971283,-0.000126396567793563,-0.337132453918457,-0.393658250570297,-0.00492131430655718,0.91924375295639,-0.388684034347534,5.50709737581201e-005,0.921371221542358,-0.388427048921585,0.00503138545900583,0.921465754508972,-0.393662989139557,5.50770964764524e-005,0.919254839420319,0.277556300163269,-0.0103222280740738,-0.960653901100159,0.233731389045715,-0.0104105556383729,-0.972245514392853,0.230518892407417,-0.0188379883766174,-0.972885549068451,0.277703791856766,-0.00676769064739347,-0.960642993450165,-0.83552622795105,0.488889515399933,-0.25076499581337,-0.905852019786835,0.322735011577606,-0.274361729621887,-0.932492852210999,0.147870913147926,-0.32953205704689,-0.931092441082001,0.156201601028442,-0.329648494720459,-0.388759911060333,-0.0015603753272444,0.921337842941284,-0.332030117511749,0.00608081370592117,0.94324916601181,-0.323156386613846,0.0210122931748629,0.946112275123596,-0.388548403978348,0.00254925317130983,0.921424806118011,0.233731389045715,-0.0104105556383729,-0.972245514392853,0.132298469543457,-0.0236812960356474,-0.99092710018158,0.135811999440193,-0.0224556680768728,-0.990480184555054,0.230518892407417,-0.0188379883766174,-0.972885549068451,-0.46108141541481,0.882567942142487,-0.0920748487114906,
- -0.627781093120575,0.768181622028351,-0.125650510191917,-0.905852019786835,0.322735011577606,-0.274361729621887,-0.83552622795105,0.488889515399933,-0.25076499581337,-0.332030117511749,0.00608081370592117,0.94324916601181,-0.218096613883972,0.0140622649341822,0.975825905799866,-0.167155250906944,0.0442786365747452,0.984935879707336,-0.323156386613846,0.0210122931748629,0.946112275123596,0.0698532536625862,-0.0273319184780121,-0.997182846069336,0.0732242614030838,-0.0273975282907486,-0.996939182281494,0.135811999440193,-0.0224556680768728,-0.990480184555054,0.132298469543457,-0.0236812960356474,-0.99092710018158,-0.28465735912323,0.958459079265594,-0.0180660896003246,-0.287068992853165,0.957751929759979,-0.0173975303769112,-0.627781093120575,0.768181622028351,-0.125650510191917,-0.46108141541481,0.882567942142487,-0.0920748487114906,-0.218096613883972,0.0140622649341822,0.975825905799866,-0.11047986894846,0.0370957367122173,0.993185877799988,-0.10760822147131,0.0371289774775505,0.99349981546402,-0.167155250906944,0.0442786365747452,0.984935879707336,-0.100082710385323,-0.0206773485988379,-0.99476432800293,-0.137342900037766,-0.0277779474854469,-0.990134000778198,-0.167138695716858,-0.00820797681808472,-0.985899209976196,-0.095279224216938,-0.0209307633340359,-0.995230555534363,0.51392525434494,0.850934624671936,-0.108586996793747,0.674572825431824,0.724274277687073,-0.142753005027771,0.340450137853622,0.939910531044006,-0.0257305949926376,0.343487173318863,0.938826262950897,-0.0249392278492451,0.123581670224667,0.0282498598098755,0.991932213306427,0.188188746571541,0.0452251359820366,0.981091141700745,0.234014749526978,0.00985962990671396,0.972183108329773,0.128501623868942,0.0279324147850275,0.991315841674805,-0.137342900037766,-0.0277779474854469,-0.990134000778198,-0.244350671768188,-0.00502080470323563,-0.969673991203308,-0.243299409747124,-0.00925344228744507,-0.969907164573669,-0.167138695716858,-0.00820797681808472,-0.985899209976196,0.86239892244339,0.429517298936844,-0.267923802137375,0.919350981712341,0.268733471632004,-0.287360846996307,
- 0.674572825431824,0.724274277687073,-0.142753005027771,0.51392525434494,0.850934624671936,-0.108586996793747,0.188188746571541,0.0452251359820366,0.981091141700745,0.337437778711319,0.0175813790410757,0.941183626651764,0.34192430973053,0.00362569140270352,0.939720571041107,0.234014749526978,0.00985962990671396,0.972183108329773,-0.278360515832901,0.00618670973926783,-0.960456728935242,-0.278289675712585,0.00298335403203964,-0.960492551326752,-0.243299409747124,-0.00925344228744507,-0.969907164573669,-0.244350671768188,-0.00502080470323563,-0.969673991203308,0.937306344509125,0.105270989239216,-0.332227170467377,0.937857985496521,0.100548379123211,-0.332133293151855,0.919350981712341,0.268733471632004,-0.287360846996307,0.86239892244339,0.429517298936844,-0.267923802137375,0.337437778711319,0.0175813790410757,0.941183626651764,0.389652520418167,0.00121103494893759,0.920961141586304,0.389771699905396,-0.00277644791640341,0.920907437801361,0.34192430973053,0.00362569140270352,0.939720571041107,-0.27837410569191,0.00679004425182939,-0.960448741912842,-0.280302196741104,0.00380048155784607,-0.959904372692108,-0.280304133892059,0.000810870435088873,-0.959910988807678,-0.278308779001236,0.0038004731759429,-0.960484206676483,0.9416743516922,-0.00222965609282255,-0.336518347263336,0.941676676273346,0.000119493684906047,-0.336519181728363,0.942623257637024,0.00246863323263824,-0.333849430084229,0.942534744739532,0.000119493139209226,-0.334108084440231,0.389540314674377,0.00465247174724936,0.920997619628906,0.393070757389069,-5.20687208336312e-005,0.919508278369904,0.393066376447678,-0.00475664343684912,0.919497847557068,0.389687299728394,-5.2071176469326e-005,0.920947253704071,-0.280298292636871,0.00649142125621438,-0.959891021251678,-0.280307590961456,0.00363038387149572,-0.959903419017792,-0.280309319496155,0.000769316335208714,-0.959909439086914,-0.280302375555038,0.00363038387149572,-0.959904968738556,0.941674947738647,-0.00218050880357623,-0.336516946554184,0.941677212715149,8.98331854841672e-005,-0.336517751216888,0.941674053668976,0.00236017466522753,-0.336518228054047,
- 0.941676616668701,8.98332218639553e-005,-0.336519151926041,0.393066883087158,0.00444786017760634,0.919499158859253,0.393075793981552,-1.05395056380075e-005,0.919506192207336,0.393071800470352,-0.0044689392670989,0.919496893882751,0.393070816993713,-1.05394528873148e-005,0.919508278369904,-0.148866593837738,4.32520137110259e-005,0.988857328891754,-0.48751163482666,2.3383401639876e-005,0.873116493225098,-0.148866593837738,4.32520173490047e-005,0.988857328891754,0.208844751119614,5.75810663576704e-005,0.977948784828186,0.148238271474838,-0.000175164313986897,0.988951742649078,-0.209481924772263,-0.000230189951253124,0.977812528610229,0.148238271474838,-0.000175164328538813,0.988951742649078,0.486970961093903,-9.77022937149741e-005,0.873418271541595
- }
- BinormalsW: *578 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1734 {
- a: -0.382678478956223,0,-0.923881590366364,-0.707106828689575,0,-0.707106828689575,-0.70710676908493,0,-0.70710676908493,-0.382678478956223,0,-0.923881649971008,-0.70710676908493,0,-0.70710676908493,-0.707106828689575,0,-0.707106828689575,-0.923880219459534,0,-0.382681757211685,-0.923880219459534,0,-0.382681757211685,-0.923880219459534,0,-0.382681757211685,-0.923880219459534,0,-0.382681757211685,-1,0,-1.57251270138659e-006,-1,0,-1.57251247401291e-006,-1,0,-1.57251247401291e-006,-1,0,-1.57251270138659e-006,-0.923880219459534,-7.99310768684336e-008,0.382681757211685,-0.923880279064178,1.05286474649802e-007,0.38268181681633,-0.923880279064178,1.05286474649802e-007,0.38268181681633,-0.923880219459534,-7.99310768684336e-008,0.382681757211685,-0.707106828689575,-2.3979387719919e-007,0.707106709480286,-0.707106828689575,-7.99312971366817e-008,0.70710676908493,-0.707106828689575,0,0.70710676908493,-0.707106828689575,0,0.707106709480286,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,0,0,1,0,0,1,0,0,1,0,0,1,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.707106828689575,-2.10573986691998e-007,0.707106828689575,0.707106828689575,-4.21148058649123e-007,0.707106828689575,0.707106828689575,-4.21148058649123e-007,0.707106828689575,0.707106828689575,-2.10573986691998e-007,0.707106828689575,0.849110722541809,0,0.528214871883392,0.852304875850677,-0.000576352176722139,0.523045003414154,0.9569491147995,5.9836684218606e-012,-0.290255695581436,0.956951379776001,-0,-0.290248662233353,0.849110722541809,0,-0.528214871883392,0.852303802967072,0.00163050927221775,-0.523044466972351,0.852303802967072,0.00163050927221775,-0.523044466972351,0.849110722541809,0,-0.528214871883392,0.707106828689575,0,-0.70710676908493,0.70710688829422,0,-0.70710676908493,0.70710688829422,0,-0.70710676908493,0.707106828689575,0,-0.70710676908493,
- 0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.382678478956223,0,-0.923881590366364,-0.382678478956223,0,-0.923881649971008,-0.382678478956223,0,-0.923881649971008,-0.382678478956223,0,-0.923881649971008,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.923880279064178,0,-0.38268181681633,-0.923880219459534,0,-0.382681757211685,-1,0,-1.57251258769975e-006,-0.923880219459534,0,-0.382681757211685,-0.923880279064178,0,-0.38268181681633,-1,0,-1.57251258769975e-006,-1,0,-1.57251258769975e-006,-1,0,-1.57251258769975e-006,-0.923880279064178,4.21145955442626e-007,0.38268181681633,-0.923880219459534,4.21145813334078e-007,0.382681757211685,-0.923880219459534,4.21145813334078e-007,0.382681757211685,-0.923880279064178,4.21145955442626e-007,0.38268181681633,-0.707106828689575,4.21147063889293e-007,0.70710676908493,-0.707106828689575,9.4758075874779e-007,0.707106709480286,-0.707106828689575,0,0.707106709480286,-0.707106828689575,0,0.70710676908493,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,0,0,1,0,0,1,0,0,1,0,0,1,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.707106828689575,-7.37009202111949e-007,0.707106828689575,0.707106828689575,-6.31722230082232e-007,0.707106828689575,0.707106828689575,-6.31722230082232e-007,0.707106828689575,0.707106828689575,-7.37009202111949e-007,0.707106828689575,0.896590411663055,-0.00045735778985545,0.442860573530197,0.920647859573364,-0.00016223501006607,0.390394151210785,0.920647859573364,-0.00016223501006607,0.390394151210785,0.896590411663055,-0.00045735778985545,0.442860573530197,0.979394197463989,0.0180842392146587,0.201146423816681,
- 1,2.24094414136289e-008,1.7479364942119e-006,1,9.32526944552592e-008,1.75178104200313e-006,1,9.32526944552592e-008,1.75178104200313e-006,1,2.24094414136289e-008,1.7479364942119e-006,0.979394912719727,-0.018083868548274,-0.201143190264702,0.896585404872894,0.001757433405146,-0.442867428064346,0.920650005340576,-0.000406639621360227,-0.390388876199722,0.920650005340576,-0.000406639621360227,-0.390388876199722,0.896585404872894,0.001757433405146,-0.442867428064346,0.70710688829422,0,-0.70710676908493,0.707106828689575,0,-0.70710676908493,0.707106828689575,0,-0.70710676908493,0.70710688829422,0,-0.70710676908493,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.382678478956223,0,-0.923881649971008,-0.382678478956223,0,-0.923881649971008,-0.382678478956223,0,-0.923881649971008,-0.382678478956223,0,-0.923881649971008,-0.70710676908493,0,-0.70710676908493,-0.707106828689575,0,-0.707106828689575,-0.707106828689575,0,-0.707106828689575,-0.70710676908493,0,-0.70710676908493,-0.923880219459534,0,-0.382681757211685,-0.923880279064178,0,-0.38268181681633,-1,0,-1.57251258769975e-006,-0.923880279064178,0,-0.38268181681633,-0.923880219459534,0,-0.382681757211685,-1,0,-1.57251247401291e-006,-1,0,-1.57251258769975e-006,-1,0,-1.57251247401291e-006,-0.923880279064178,1.05286474649802e-007,0.38268181681633,-0.923880279064178,4.21145955442626e-007,0.38268181681633,-0.923880279064178,4.21145955442626e-007,0.38268181681633,-0.923880279064178,1.05286474649802e-007,0.38268181681633,-0.707106828689575,-7.99312971366817e-008,0.70710676908493,-0.707106828689575,4.21147063889293e-007,0.70710676908493,-0.707106828689575,0,0.70710676908493,-0.707106828689575,0,0.70710676908493,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,-0.382678508758545,0,0.923881649971008,0,0,1,0,0,1,0,0,1,0,0,1,0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,
- 0.382678478956223,0,0.923881649971008,0.382678478956223,0,0.923881649971008,0.707106828689575,-4.21148058649123e-007,0.707106828689575,0.707106828689575,-7.37009202111949e-007,0.707106828689575,0.707106828689575,-7.37009202111949e-007,0.707106828689575,0.707106828689575,-4.21148058649123e-007,0.707106828689575,0.852304875850677,-0.000576352176722139,0.523045003414154,0.896590411663055,-0.00045735778985545,0.442860573530197,0.956940174102783,0.00368062290363014,-0.29026198387146,0.9569491147995,5.9836684218606e-012,-0.290255695581436,0.852303802967072,0.00163050927221775,-0.523044466972351,0.896585404872894,0.001757433405146,-0.442867428064346,0.896585404872894,0.001757433405146,-0.442867428064346,0.852303802967072,0.00163050927221775,-0.523044466972351,0.70710688829422,0,-0.70710676908493,0.70710688829422,0,-0.70710676908493,0.70710688829422,0,-0.70710676908493,0.70710688829422,0,-0.70710676908493,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0.382678508758545,0,-0.923881649971008,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.382678478956223,0,-0.923881649971008,-0.382678478956223,0,-0.923881649971008,0,0,1,0,0,1,0.382684946060181,0,0.923879027366638,0.382684916257858,0,0.923878908157349,0.382684946060181,0,0.923879027366638,0.707110643386841,0,0.70710289478302,0.707110643386841,0,0.70710289478302,0.382684916257858,0,0.923878908157349,0.707110643386841,0,0.70710289478302,0.707110643386841,0,0.70710289478302,0.923881113529205,0,0.382679909467697,0.923881113529205,0,0.382679909467697,1,0,-7.90442467035746e-009,1,0,7.90368748226911e-009,0.923881113529205,0,0.382679909467697,0.923881113529205,0,0.382679909467697,1,0,7.90368748226911e-009,1,0,-7.90442467035746e-009,0.923879504203796,1.07373168134473e-007,-0.38268369436264,0.923879504203796,3.57269641426683e-007,-0.38268369436264,0.923879504203796,3.57269641426683e-007,-0.38268369436264,0.923879504203796,1.07373168134473e-007,-0.38268369436264,0.707111656665802,-7.49691423607146e-007,-0.707101881504059,0.707111656665802,1.61060171421923e-007,-0.707101881504059,
- 0.707111656665802,0,-0.707102000713348,0.707111656665802,0,-0.707102000713348,0.382697433233261,0,-0.923873782157898,0.382697433233261,0,-0.923873782157898,0.382697433233261,0,-0.923873782157898,0.382697433233261,0,-0.923873782157898,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.382698148488998,0,-0.923873424530029,-0.382698148488998,0,-0.923873424530029,-0.382698148488998,0,-0.923873424530029,-0.382698148488998,0,-0.923873424530029,-0.707110643386841,1.21824507459678e-006,-0.70710289478302,-0.707110643386841,0,-0.707102954387665,-0.707110643386841,0,-0.707102954387665,-0.707110643386841,1.21824507459678e-006,-0.70710289478302,-0.878900051116943,-0.000572663440834731,-0.477005630731583,-0.862818896770477,-0.00810203887522221,-0.505448222160339,-0.848694860935211,-0.00986179430037737,-0.528790771961212,-0.878900051116943,-0.000572663440834731,-0.477005630731583,-1,-6.71342519353857e-008,7.96636427935482e-008,-0.999999940395355,0,8.53582520221607e-008,-0.979366660118103,-0.0172598026692867,-0.201352894306183,-0.862818896770477,-0.00810203887522221,-0.505448222160339,-1,-6.71342519353857e-008,7.96636427935482e-008,-0.878901839256287,0.000573020428419113,0.47700223326683,-0.862834274768829,-0.00255757221020758,0.505480468273163,-0.979368031024933,0.0172594264149666,0.201346710324287,-0.999999940395355,0,8.53582520221607e-008,-0.848732829093933,-0.00355604756623507,0.528809905052185,-0.862834274768829,-0.00255757221020758,0.505480468273163,-0.878901839256287,0.000573020428419113,0.47700223326683,-0.707110643386841,-3.74844653094897e-008,0.70710289478302,-0.707110643386841,0,0.70710289478302,-0.707110643386841,0,0.70710289478302,-0.707110643386841,-3.74844653094897e-008,0.70710289478302,-0.382684886455536,0,0.923878908157349,-0.382684916257858,0,0.923878908157349,-0.382684916257858,0,0.923878908157349,-0.382684886455536,0,0.923878908157349,0,0,1,0,0,1,-0.862818896770477,-0.00810203887522221,-0.505448222160339,-0.979366660118103,-0.0172598026692867,-0.201352894306183,-0.956854820251465,-0.0127000147476792,-0.290288865566254,-0.979368031024933,0.0172594264149666,0.201346710324287,
- -0.862834274768829,-0.00255757221020758,0.505480468273163,-0.956925988197327,-0.00457876175642014,0.290295839309692,-0.195120111107826,-0,0.980779349803925,-0.320733428001404,0,0.947169482707977,-0.442965686321259,0,0.896538555622101,-0.195106834173203,-0,0.980782032012939,-0.555560350418091,-0,0.831476211547852,-0.442965686321259,0,0.896538555622101,-0.320733428001404,0,0.947169482707977,-0.5555659532547,0,0.831472456455231,-0.947173714637756,0,0.320721000432968,-0.831474542617798,0,0.555562853813171,-0.831475436687469,0,0.555561721324921,-0.896539747714996,0,0.4429632127285,-0.980785131454468,-0,0.195091068744659,-0.947173714637756,0,0.320721000432968,-0.896539747714996,0,0.4429632127285,-0.980784952640533,0,0.195092022418976,0.896539509296417,-0,0.442963778972626,0.980785250663757,-0,0.195090651512146,0.98078590631485,-0,0.195087134838104,0.947173953056335,-0,0.320720314979553,0.658775806427002,-0,0.752339363098145,0.896539509296417,-0,0.442963778972626,0.947173953056335,-0,0.320720314979553,0.752343118190765,-0,0.658771455287933,0.320719480514526,-0,0.947174191474915,0.658775806427002,-0,0.752339363098145,0.752343118190765,-0,0.658771455287933,0.442964673042297,-0,0.896539092063904,0.195093587040901,-0,0.98078465461731,0.320719480514526,-0,0.947174191474915,0.442964673042297,-0,0.896539092063904,0.195092558860779,-0,0.980784833431244,-0.195091187953949,0,0.980785131454468,-0.320724159479141,0,0.947172701358795,-0.442965805530548,0,0.896538436412811,-0.195092365145683,0,0.980784893035889,-0.752339541912079,-0,0.658775508403778,-0.442965805530548,0,0.896538436412811,-0.320724159479141,0,0.947172701358795,-0.658775448799133,-0,0.752339720726013,-0.947174370288849,-0,0.320719093084335,-0.752339541912079,-0,0.658775508403778,-0.658775448799133,-0,0.752339720726013,-0.89654004573822,-0,0.442962557077408,-0.980785131454468,-0,0.195091068744659,-0.947174370288849,-0,0.320719093084335,-0.89654004573822,-0,0.442962557077408,-0.980785608291626,-0,0.195089131593704,-0.896539509296417,0,-0.442963898181915,-0.98078465461731,0,-0.195093557238579,
- -0.980784773826599,0,-0.195092961192131,-0.947173297405243,0,-0.320722192525864,-0.658775746822357,0,-0.752339363098145,-0.896539509296417,0,-0.442963898181915,-0.947173297405243,0,-0.320722192525864,-0.752343118190765,0,-0.658771395683289,-0.320728987455368,0,-0.947170972824097,-0.658775746822357,0,-0.752339363098145,-0.752343118190765,0,-0.658771395683289,-0.44297331571579,0,-0.89653480052948,-0.195094153285027,0,-0.98078453540802,-0.320728987455368,0,-0.947170972824097,-0.44297331571579,0,-0.89653480052948,-0.195107325911522,0,-0.98078191280365,-0.442965120077133,0,0.896538853645325,-0.195092365145683,0,0.980784893035889,-0.195093542337418,0,0.98078465461731,-0.320719838142395,0,0.947174072265625,-0.442973643541336,0,0.896534740924835,-0.195106834173203,0,0.980782032012939,-0.195093542337418,0,0.98078465461731,-0.320729225873947,0,0.947170913219452,-0.320729225873947,0,0.947170913219452,-0.5555659532547,0,0.831472456455231,-0.555571615695953,0,0.83146870136261,-0.442973643541336,0,0.896534740924835,-0.831473767757416,0,0.555564045906067,-0.896539986133575,0,0.442962646484375,-0.94717401266098,0,0.320720136165619,-0.831474542617798,0,0.555562853813171,-0.896539986133575,0,0.442962646484375,-0.980784952640533,0,0.195092022418976,-0.980784773826599,0,0.195092961192131,-0.94717401266098,0,0.320720136165619,0.98078453540802,0,0.195094153285027,0.947174370288849,0,0.320719182491302,0.896540582180023,0,0.442961722612381,0.980785250663757,0,0.195090651512146,0.947174370288849,0,0.320719182491302,0.752339899539948,0,0.658775210380554,0.65877491235733,0,0.752340018749237,0.896540582180023,0,0.442961722612381,0.752339899539948,0,0.658775210380554,0.442965269088745,0,0.89653879404068,0.320724189281464,0,0.947172701358795,0.65877491235733,0,0.752340018749237,0.442965269088745,0,0.89653879404068,0.195092558860779,0,0.980784833431244,0.195091560482979,0,0.980785131454468,0.320724189281464,0,0.947172701358795,-0.320719838142395,0,0.947174072265625,-0.658775568008423,0,0.752339541912079,-0.752342522144318,0,0.658772110939026,-0.442965120077133,0,0.896538853645325,
- -0.658775568008423,0,0.752339541912079,-0.881779789924622,0,0.471661448478699,-0.924001812934875,0,0.382388234138489,-0.752342522144318,0,0.658772110939026,-0.956940174102783,0,0.290285348892212,-0.956928730010986,0,0.290322959423065,-0.924001812934875,0,0.382388234138489,-0.881779789924622,0,0.471661448478699,-0.903994500637054,0,-0.427544116973877,-0.752339839935303,0,-0.658775329589844,-0.658774971961975,0,-0.752340018749237,-0.903988361358643,0,-0.427557110786438,-0.752339839935303,0,-0.658775329589844,-0.442965418100357,0,-0.896538615226746,-0.32073387503624,0,-0.947169303894043,-0.658774971961975,0,-0.752340018749237,-0.442965418100357,0,-0.896538615226746,-0.195107325911522,0,-0.98078191280365,-0.195120498538017,0,-0.98077929019928,-0.32073387503624,0,-0.947169303894043,-0.848694860935211,-0.00986179430037737,-0.528790771961212,-0.862818896770477,-0.00810203887522221,-0.505448222160339,-0.956854820251465,-0.0127000147476792,-0.290288865566254,-0.95693165063858,3.99321634786398e-012,-0.290313273668289,0.896590411663055,-0.00045735778985545,0.442860573530197,0.852304875850677,-0.000576352176722139,0.523045003414154,0.95694375038147,-4.7070919211023e-013,0.290273368358612,0.956942021846771,-0.00111455516889691,0.290277063846588,0.852304875850677,-0.000576352176722139,0.523045003414154,0.849110722541809,0,0.528214871883392,0.956944465637207,-0,0.290271103382111,0.95694375038147,-4.7070919211023e-013,0.290273368358612,-0.903994500637054,0,-0.427544116973877,-0.903988361358643,0,-0.427557110786438,-0.956928730010986,0,-0.290322959423065,-0.956936597824097,0,-0.290297031402588,-0.95693564414978,-2.31950656598423e-011,0.290300101041794,-0.956925988197327,-0.00457876175642014,0.290295839309692,-0.862834274768829,-0.00255757221020758,0.505480468273163,-0.848732829093933,-0.00355604756623507,0.528809905052185,0.896590411663055,-0.00045735778985545,0.442860573530197,0.956942021846771,-0.00111455516889691,0.290277063846588,0.979394197463989,0.0180842392146587,0.201146423816681,0.979394912719727,-0.018083868548274,-0.201143190264702,
- 0.956940174102783,0.00368062290363014,-0.29026198387146,0.896585404872894,0.001757433405146,-0.442867428064346,0.00259292870759964,0.999996185302734,0.000930707901716232,-9.2347057943698e-005,1,-3.13129676214885e-005,-0.00277724675834179,0.999995648860931,-0.000994381378404796,-9.19718513614498e-005,1,-3.23600979754701e-005,0.00279173022136092,0.999995589256287,0.00100074894726276,-7.51599436625838e-005,1,-2.63373422058066e-005,-0.00310720107518137,0.999994993209839,-0.000586283509619534,-0.000208947967621498,0.999999940395355,0.000351234775735065,0.17988009750843,0.981594204902649,0.0641566812992096,0.17049977183342,0.983481228351593,0.0607826560735703,0.449795424938202,0.883264362812042,0.132393851876259,0.454698890447617,0.880165278911591,0.136228024959564,0.454698890447617,0.880165278911591,0.136228024959564,0.449795424938202,0.883264362812042,0.132393851876259,0.899510324001312,0.409263134002686,0.152921259403229,0.809671700000763,0.569693565368652,0.140999555587769,0.809671700000763,0.569693565368652,0.140999555587769,0.899510324001312,0.409263134002686,0.152921259403229,0.971162497997284,0.237604364752769,-0.0196863450109959,0.971696794033051,0.235513612627983,-0.0184060875326395,0.959443330764771,-0.281872391700745,-0.00405259942635894,0.960124611854553,-0.279521495103836,-0.00533056771382689,0.874303102493286,-0.458882063627243,-0.158181235194206,0.767917454242706,-0.624354064464569,-0.143125385046005,-0.00274166301824152,-0.99999612569809,0.000657283759210259,-4.13384368584957e-005,-1,-0.000342098705004901,0.00278170220553875,-0.999995648860931,-0.000994830159470439,7.08139923517592e-005,-1,-2.55684626608854e-005,0.767917454242706,-0.624354064464569,-0.143125385046005,0.874303102493286,-0.458882063627243,-0.158181235194206,0.388850569725037,-0.913518488407135,-0.119494818150997,0.390053987503052,-0.912735998630524,-0.121535390615463,0.390053987503052,-0.912735998630524,-0.121535390615463,0.388850569725037,-0.913518488407135,-0.119494818150997,0.116119541227818,-0.99236798286438,-0.0414975546300411,0.121559321880341,-0.991633653640747,-0.0434291586279869,
- -0.00252390350215137,-0.999996423721313,0.000902156811207533,9.59872559178621e-005,-1,-3.45691987604368e-005,0.00271566095761955,-0.999995827674866,-0.00097190000815317,9.57695592660457e-005,-1,-3.51781127392314e-005,0.0019201390678063,0.999976575374603,-0.00657255947589874,0.00107033539097756,0.999992787837982,-0.003669144352898,0.000213880324736238,0.999999701976776,-0.000767639372497797,0.00106366816908121,0.999992787837982,-0.00367109570652246,0.00208151992410421,0.999997556209564,0.000745384837500751,-9.63952916208655e-005,1,-3.45188091159798e-005,-0.00227431021630764,0.999997079372406,-0.000814422033727169,-9.63952916208655e-005,1,-3.45188091159798e-005,-0.00183637044392526,0.999989032745361,0.00430255429819226,9.36408650886733e-006,1,-1.70582934515551e-005,0.00185856537427753,0.999988973140717,-0.00433518644422293,1.28524525280227e-005,1,-1.55644356709672e-005,0.0391567833721638,0.999226152896881,0.00372080015949905,0.0381790213286877,0.999247789382935,0.00680355820804834,0.000233606493566185,0.999999642372131,-0.000810403435025364,0.00114105339162052,0.999991714954376,-0.00391076086089015,0.00211134855635464,0.99999725818634,0.00110305100679398,-0.000249043194344267,0.999999940395355,0.000325317261740565,-0.00245838309638202,0.999996602535248,-0.000880338193383068,-0.000118996969831642,1,-4.26123879151419e-005,-0.00193559937179089,0.999987900257111,0.00452468683943152,0.0472299382090569,0.998686552047729,0.0198644418269396,0.0493176653981209,0.998665392398834,0.0153360478579998,2.34216568060219e-005,1,-4.98848166898824e-005,0.0399953126907349,0.999199628829956,0.000819218286778778,0.433109015226364,0.89637154340744,0.0945228785276413,0.429591000080109,0.899072706699371,0.0843800380825996,0.0389278344810009,0.999233245849609,0.00421374524012208,0.468895852565765,0.87234354019165,0.138395845890045,0.309392035007477,0.946487843990326,0.0918545871973038,0.139289945363998,0.989006578922272,0.0496413670480251,0.147132307291031,0.98772519826889,0.0524512603878975,0.0466011799871922,0.998685300350189,0.0213548094034195,
- 0.427115827798843,0.89256078004837,0.144593641161919,0.440371572971344,0.888253152370453,0.130687072873116,0.0483521036803722,0.998674929141998,0.0176262445747852,0.433109015226364,0.89637154340744,0.0945228785276413,0.844716429710388,0.525748372077942,0.100213512778282,0.840855181217194,0.531320869922638,0.103249989449978,0.429591000080109,0.899072706699371,0.0843800380825996,0.870668113231659,0.469997137784958,0.145050391554832,0.75685578584671,0.640115141868591,0.131992191076279,0.309392035007477,0.946487843990326,0.0918545871973038,0.468895852565765,0.87234354019165,0.138395845890045,0.427115827798843,0.89256078004837,0.144593641161919,0.827519118785858,0.532715857028961,0.177273347973824,0.843827128410339,0.52309650182724,0.119691178202629,0.440371572971344,0.888253152370453,0.130687072873116,0.996803820133209,-0.0369347706437111,0.0708390548825264,0.996587991714478,-0.0361661203205585,0.0741923749446869,0.840855181217194,0.531320869922638,0.103249989449978,0.844716429710388,0.525748372077942,0.100213512778282,0.958558738231659,0.284357100725174,-0.0174996294081211,0.957808971405029,0.286727666854858,-0.0197315588593483,0.75685578584671,0.640115141868591,0.131992191076279,0.870668113231659,0.469997137784958,0.145050391554832,0.827519118785858,0.532715857028961,0.177273347973824,0.993168115615845,-0.0336525179445744,0.111734822392464,0.99344402551651,-0.0347759947180748,0.10890182107687,0.843827128410339,0.52309650182724,0.119691178202629,0.994223594665527,-0.041032437235117,-0.0991753935813904,0.81762033700943,-0.567443430423737,-0.0974938049912453,0.807182490825653,-0.575342416763306,-0.132051050662994,0.994721710681915,-0.040255643427372,-0.0943838879466057,0.837770104408264,-0.525084853172302,-0.149756744503975,0.712287187576294,-0.689394295215607,-0.131843030452728,0.940159738063812,-0.340690225362778,-0.00547227170318365,0.939085304737091,-0.343668639659882,-0.00326432869769633,0.991623044013977,-0.0413585789501667,-0.122365273535252,0.807963788509369,-0.575056076049805,-0.128471955657005,0.802517533302307,-0.566423535346985,-0.187429934740067,
- 0.990958094596863,-0.0425171740353107,-0.127257242798805,0.81762033700943,-0.567443430423737,-0.0974938049912453,0.361399263143539,-0.928412258625031,-0.0862627774477005,0.357568323612213,-0.930383384227753,-0.0808189883828163,0.807182490825653,-0.575342416763306,-0.132051050662994,0.410473883152008,-0.903058171272278,-0.12647944688797,0.256737262010574,-0.963214218616486,-0.0793993026018143,0.712287187576294,-0.689394295215607,-0.131843030452728,0.837770104408264,-0.525084853172302,-0.149756744503975,0.807963788509369,-0.575056076049805,-0.128471955657005,0.371641904115677,-0.92109602689743,-0.116036742925644,0.373028188943863,-0.918355524539948,-0.132185831665993,0.802517533302307,-0.566423535346985,-0.187429934740067,0.0226071178913116,-0.999660015106201,-0.0129912523552775,0.0234627146273851,-0.999675750732422,-0.00990306306630373,0.357568323612213,-0.930383384227753,-0.0808189883828163,0.361399263143539,-0.928412258625031,-0.0862627774477005,0.0991395339369774,-0.994443595409393,-0.0354033298790455,0.09468874335289,-0.994932115077972,-0.0338244214653969,0.256737262010574,-0.963214218616486,-0.0793993026018143,0.410473883152008,-0.903058171272278,-0.12647944688797,0.371641904115677,-0.92109602689743,-0.116036742925644,0.0319156460464001,-0.999416291713715,-0.0121890967711806,0.0304095968604088,-0.999411284923553,-0.0158839132636786,0.373028188943863,-0.918355524539948,-0.132185831665993,0.0224391110241413,-0.999656081199646,-0.0135709252208471,-0.00106347003020346,-0.999992847442627,-0.00364865665324032,-0.000225468946155161,-0.999999761581421,-0.000778895511757582,0.0232352446764708,-0.999672949314117,-0.010688154026866,-0.00209953566081822,-0.999997615814209,0.000750544713810086,0.000112603956949897,-1,-3.99892960558645e-005,0.00223578209988773,-0.999996900558472,-0.00108170101884753,3.01284871966345e-005,-1,-0.000272654258878902,0.0332572273910046,-0.999406158924103,-0.00901774503290653,-2.22757953451946e-005,-1,-4.71042585559189e-005,-0.00187150645069778,-0.999988675117493,-0.00437299907207489,0.0314719900488853,-0.999415159225464,-0.0133734866976738,
- -0.00181775179225951,-0.999978959560394,-0.0062317200936377,-0.00101079407613724,-0.999993503093719,-0.00348683726042509,-0.000208809942705557,-0.999999701976776,-0.000740470597520471,-0.00101579038891941,-0.999993503093719,-0.00348537811078131,-0.00205303635448217,-0.999997615814209,0.000734615430701524,8.48924901220016e-005,-1,-2.93947996397037e-005,0.00222260062582791,-0.999997198581696,-0.000794021296314895,8.46733964863233e-005,-1,-3.0007990062586e-005,0.00174651469569653,-0.999990105628967,0.0040906174108386,-1.09345346572809e-005,-1,-6.78777951179654e-006,-0.00176342355553061,-0.999990105628967,-0.00410631392151117,-5.95190931562684e-006,-1,-8.91773561306763e-006,0.988857328891754,4.85622258565854e-005,0.148866593837738,0.873116493225098,6.06814865022898e-005,0.48751163482666,0.988857328891754,4.85622222186066e-005,0.148866593837738,0.977948904037476,3.02232856483897e-005,-0.208844780921936,0.988951563835144,0.000188130317837931,-0.148238211870193,0.977812528610229,0.00011440346861491,0.209481954574585,0.988951563835144,0.000188130332389846,-0.148238211870193,0.873418152332306,0.000237760046729818,-0.486970871686935
- }
- TangentsW: *578 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *640 {
- a: 5.03111696243286,0,5.4686074256897,0,5.90611553192139,0,6.34362506866455,0,6.78111267089844,0,7.21860074996948,9.05009898133358e-008,0.65623015165329,0,1.09371721744537,0,1.53120315074921,0,1.9686906337738,0,2.40618658065796,0,3.28118872642517,0,3.71869206428528,0,4.1561713218689,0,4.59364032745361,0,5.0311164855957,1.5172506570816,5.46860647201538,1.5172506570816,5.90611696243286,1.5172506570816,6.34362506866455,1.5172506570816,6.78111267089844,1.5172506570816,0.218744859099388,1.51725006103516,0.65623015165329,1.51725006103516,1.09371745586395,1.51725006103516,1.53120338916779,1.51725006103516,1.96869111061096,1.51725006103516,2.4061872959137,1.51725077629089,2.84368014335632,1.5172506570816,3.28118968009949,1.5172506570816,3.71869206428528,1.5172506570816,4.15617275238037,1.5172506570816,4.59364032745361,1.5172506570816,5.0311164855957,1.01150047779083,5.46860694885254,1.01150047779083,5.90611696243286,1.01150047779083,6.34362506866455,1.01150047779083,6.78111267089844,1.01150047779083,7.21860074996948,1.01150023937225,0.65623015165329,1.01150012016296,1.09371733665466,1.01150012016296,1.53120338916779,1.01150012016296,1.96869111061096,1.01150012016296,2.40618681907654,1.01150059700012,2.62493300437927,1.01150047779083,2.84368467330933,1.11076807975769,3.06243753433228,1.01150047779083,3.28118944168091,1.01150047779083,3.71869206428528,1.01150047779083,4.15617179870605,1.01150047779083,4.59364032745361,1.01150047779083,5.03111696243286,0.505750298500061,5.4686074256897,0.505750298500061,5.9061164855957,0.505750298500061,6.34362506866455,0.505750298500061,6.78111267089844,0.505750298500061,7.21860074996948,0.505750298500061,0.65623015165329,0.505750179290771,1.09371733665466,0.505750179290771,1.5312032699585,0.505750179290771,1.96869111061096,0.505750179290771,2.40618658065796,0.505750417709351,3.28118920326233,0.505750298500061,3.71869206428528,0.505750298500061,4.1561713218689,0.505750298500061,4.59364032745361,0.505750298500061,1.68748712539673,0,1.31249904632568,0,0.937496185302734,0,0.562491416931152,
- 0,0.187505722045898,0,5.81233739852905,0,5.43735361099243,0,5.06236839294434,0,4.68738412857056,0,4.3123984336853,0,3.93740558624268,0,3.18741130828857,0,2.81241202354431,0,2.43743324279785,0,2.0624635219574,0,1.68748760223389,1.5172506570816,1.3125,1.5172506570816,0.93749475479126,1.5172506570816,0.562491416931152,1.5172506570816,0.187505722045898,1.5172506570816,-0.187479943037033,1.51725041866302,5.43735361099243,1.51725006103516,5.06236839294434,1.51725006103516,4.68738412857056,1.51725006103516,4.31239795684814,1.51725006103516,3.93740510940552,1.51725077629089,3.56241488456726,1.5172506570816,3.18741035461426,1.5172506570816,2.81241202354431,1.5172506570816,2.43743205070496,1.5172506570816,2.0624635219574,1.5172506570816,3.9374053478241,1.01150059700012,3.74991059303284,1.01150047779083,3.56241226196289,1.11308324337006,3.37491035461426,1.01150047779083,3.18741059303284,1.01150047779083,2.31334066390991,-1.62766551971436,0.775774478912354,-1.79020059108734,2.31334066390991,-1.62766551971436,2.31334066390991,-1.62766551971436,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.775774478912354,-1.79020059108734,0.775774478912354,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,2.31334066390991,-1.62766551971436,0.775774478912354,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.31334066390991,-1.79020059108734,
- 0.775774478912354,-1.62766551971436,0.775774478912354,-1.62766563892365,0.775774478912354,-1.62766551971436,2.31334066390991,-1.79020059108734,2.31334066390991,-1.79020059108734,0.775774478912354,-1.62766551971436,2.31334066390991,-1.79020059108734,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766551971436,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,1.95303630828857,-1.79020059108734,1.95303630828857,-1.62766551971436,1.53891265392303,-1.79020059108734,1.53891265392303,-1.62766551971436,1.12010836601257,-1.79020059108734,1.12010836601257,-1.62766563892365,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766563892365,0.775774478912354,-1.79020059108734,0.775774478912354,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.53891265392303,-1.62766563892365,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766575813293,1.95303630828857,-1.79020059108734,2.31334066390991,-1.79020059108734,2.31334066390991,-1.62766551971436,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020071029663,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020059108734,1.12010836601257,-1.62766551971436,1.12010836601257,-1.79020059108734,1.53891265392303,-1.62766551971436,1.53891265392303,-1.79020059108734,1.95303630828857,-1.62766551971436,1.95303630828857,-1.79020071029663,2.31334066390991,-1.62766551971436,2.31334066390991,-1.79020059108734,2.51453614234924,0.939526677131653,3.84702157974243,0.936098635196686,3.17913794517517,0.940270721912384,3.28729295730591,0.94032222032547,2.46087312698364,0.505750417709351,2.46087312698364,0,1.07442986965179,-1.62766551971436,1.07442986965179,-1.79020059108734,3.89053177833557,0,3.22650146484375,0.505750298500061,3.22650098800659,0,1.99868321418762,-1.62766551971436,1.99868321418762,-1.79020059108734,3.23428606987,0,-0.187481909990311,3.40860140113364e-007,1.53891265392303,-1.62766551971436,0.218744769692421,0,1.53891265392303,
- -1.79020059108734,5.81233739852905,1.51725006103516,1.53891265392303,-1.62766551971436,7.21860122680664,1.51725018024445,1.53891265392303,-1.79020059108734,0.218744814395905,0.505750179290771,0.218744844198227,1.01150012016296,0.530890941619873,0.779917538166046,0.530890941619873,0.593142509460449,0.98311448097229,0.592020869255066,0.98311448097229,0.780955970287323,0.0159221459180117,0.778735160827637,0.0159221459180117,0.594419598579407,0.98311448097229,0.592020869255066,0.98311448097229,0.780955970287323,0.0159221459180117,0.778735160827637,0.0159221459180117,0.594419598579407,0.352039992809296,0.593585968017578,0.352039963006973,0.779506862163544,0.687326431274414,0.592754483222961,0.687326431274414,0.780276775360107,0.98311448097229,0.592020869255066,0.98311448097229,0.780955970287323,0.0159221459180117,0.778735160827637,0.0159221459180117,0.594419598579407,0.351649463176727,0.593586921691895,0.351649433374405,0.779506027698517,0.0159221459180117,0.778735160827637,0.0159221459180117,0.594419598579407,0.98311448097229,0.592020869255066,0.98311448097229,0.780955970287323,0.687407612800598,0.592754244804382,0.687407612800598,0.780277013778687,0.98311448097229,0.592020869255066,0.98311448097229,0.780955970287323,0.0159221459180117,0.778735160827637,0.0159221459180117,0.594419598579407,0.351649463176727,0.593586921691895,0.351649433374405,0.779506027698517,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.530890941619873,0.445408821105957,0.530890941619873,0.571098804473877,0.98311448097229,0.780955970287323,0.98311448097229,0.592020869255066,0.530890941619873,0.593142509460449,0.530890941619873,0.779917538166046,0.530890941619873,0.94960606098175,0.98311448097229,0.948563516139984,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.0159221459180117,0.445558786392212,0.0159221459180117,0.572375893592834,0.98311448097229,0.780955970287323,0.98311448097229,0.592020869255066,0.0159221459180117,0.594419598579407,0.0159221459180117,0.778735160827637,0.0159221459180117,0.950793385505676,
- 0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.352039992809296,0.571542322635651,0.352039992809296,0.445460915565491,0.0159221459180117,0.445558786392212,0.352039963006973,0.779506862163544,0.352039992809296,0.593585968017578,0.0159221459180117,0.594419598579407,0.0159221459180117,0.778735160827637,0.0159221459180117,0.950793385505676,0.352039992809296,0.950018465518951,0.687326431274414,0.570710778236389,0.687326431274414,0.445363253355026,0.687326431274414,0.780276775360107,0.687326431274414,0.592754483222961,0.687326431274414,0.949245393276215,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.780955970287323,0.98311448097229,0.592020869255066,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.351649463176727,0.571543276309967,0.351649463176727,0.445461004972458,0.0159221459180117,0.445558786392212,0.351649433374405,0.779506027698517,0.351649463176727,0.593586921691895,0.0159221459180117,0.594419598579407,0.0159221459180117,0.778735160827637,0.0159221459180117,0.950793385505676,0.351649463176727,0.950019359588623,0.687407612800598,0.570710599422455,0.687407612800598,0.445363223552704,0.687407612800598,0.780277013778687,0.687407612800598,0.592754244804382,0.687407612800598,0.949245274066925,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.98311448097229,0.780955970287323,0.98311448097229,0.592020869255066,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.98311448097229,0.569977223873138,0.98311448097229,0.445277124643326,0.0159221459180117,0.445558786392212,0.98311448097229,0.780955970287323,0.98311448097229,0.592020869255066,0.0159221459180117,0.594419598579407,0.0159221459180117,0.778735160827637,0.0159221459180117,0.950793385505676,0.98311448097229,0.948563516139984,0.0159221459180117,0.572375893592834,0.351649463176727,0.571543276309967,0.351649463176727,0.445461004972458,0.0159221459180117,0.445558786392212,0.351649433374405,0.779506027698517,0.351649463176727,0.593586921691895,
- 0.0159221459180117,0.594419598579407,0.0159221459180117,0.778735160827637,0.0159221459180117,0.950793385505676,0.351649463176727,0.950019359588623,0.329086184501648,0.904111683368683,0.238795801997185,0.915304243564606,0.238795801997185,0.810898423194885,0.329310595989227,0.833283662796021,0.566641926765442,0.893018305301666,0.566411793231964,0.822190284729004,0.656926691532135,0.799805045127869,0.656926691532135,0.904210865497589
- }
- UVIndex: *578 {
- a: 0,1,50,49,50,1,2,51,51,2,3,52,52,3,4,53,53,4,5,54,198,192,6,55,55,6,7,56,56,7,8,57,57,8,9,58,58,9,10,59,185,186,11,60,60,11,12,61,61,12,13,62,62,13,14,63,63,14,0,49,15,31,32,16,16,32,33,17,18,17,33,34,18,34,35,19,19,35,36,196,20,199,37,21,21,37,38,22,22,38,39,23,23,39,40,24,24,40,41,25,25,41,42,43,26,26,43,44,45,27,27,45,46,28,28,46,47,29,29,47,48,30,30,48,31,15,31,49,50,32,32,50,51,33,34,33,51,52,34,52,53,35,35,53,54,36,199,198,55,37,37,55,56,38,38,56,57,39,39,57,58,40,40,58,59,41,178,185,60,45,45,60,61,46,46,61,62,47,47,62,63,48,48,63,49,31,78,94,79,64,79,80,65,64,65,80,81,66,82,67,66,81,67,82,83,68,68,83,84,190,69,194,85,70,70,85,86,71,71,86,87,72,72,87,88,73,73,88,89,95,74,89,90,97,96,95,90,91,99,98,97,75,99,91,92,76,76,92,93,77,77,93,94,78,95,96,177,98,99,179,103,105,104,136,106,104,105,195,108,197,107,109,110,108,109,134,112,135,111,113,114,112,113,115,116,114,115,117,100,116,117,139,101,119,118,138,120,118,119,121,122,120,121,123,124,122,123,132,126,133,125,127,128,126,127,129,130,128,129,131,102,130,131,137,163,140,141,162,145,142,143,144,144,193,147,145,146,148,149,191,148,150,151,149,153,154,155,152,154,156,157,155,156,158,159,157,158,161,160,159,162,164,165,163,164,166,167,165,187,188,167,166,168,170,171,169,170,172,173,171,172,174,175,173,74,95,177,184,41,59,180,176,59,10,181,180,168,169,183,182,189,179,99,75,41,176,42,44,178,45,200,201,202,203,204,205,206,207,208,209,210,211,211,210,212,213,213,212,214,215,216,217,218,219,220,221,222,223,219,218,224,225,225,224,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,236,239,242,243,244,245,246,247,248,249,250,251,246,249,252,253,254,255,256,257,258,259,260,261,256,259,253,262,263,254,264,265,257,256,261,266,264,256,267,268,263,262,269,270,265,264,266,271,269,264,272,273,274,275,276,277,278,279,280,281,276,279,273,282,283,274,284,285,277,276,281,286,284,276,287,288,283,282,289,290,285,284,286,291,289,284,292,293,294,295,296,297,298,299,300,301,296,299,302,303,304,305,306,307,308,309,310,311,306,309,312,313,314,315,316,317,
- 318,319
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *297 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *144 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509535456, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 275.38671875,0,-276.158203125,359.921875,600,-150.1865234375,231.9921875,0,-232.76318359375,303.2890625,600,-126.553466796875,359.921875,0,-150.1865234375,275.38671875,600,-276.158203125,303.2890625,0,-126.553466796875,231.9921875,600,-232.76318359375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.540559768676758,-0.0804727375507355,-0.837448060512543,0.979863047599792,0.0804373323917389,-0.182751446962357,-0.977816939353943,-0.103030502796173,0.182369828224182,-0.539430260658264,0.103071071207523,0.835698068141937,0.979863047599792,-0.0804373323917389,-0.182751446962357,0.540559768676758,0.0804727375507355,-0.837448060512543,-0.539430260658264,-0.103071071207523,0.835698068141937,-0.977816939353943,0.103030502796173,0.182369828224182
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0726789608597755,0.996162176132202,0.0487722903490067,0.0726789608597755,0.996162176132202,-0.0487722903490067,0.0727080404758453,0.996159076690674,-0.0487918071448803,-0.0727080404758453,0.996159076690674,0.0487918071448803,0.0930537804961205,0.993699729442596,-0.0624655112624168,-0.0930537804961205,0.993699729442596,0.0624655112624168,-0.0119464006274939,0.993316888809204,0.114799812436104,0.0119464006274939,0.993316888809204,-0.114799812436104,9.68575619708645e-008,-0.91526597738266,-0.402850240468979,-7.45058130746656e-008,-0.995414853096008,-0.0956522673368454,-8.34465026855469e-007,0.870659291744232,-0.491886645555496,-8.56816839700514e-008,0.992479979991913,-0.122407868504524,6.33299421792799e-008,-0.995414853096008,0.0956522598862648,-1.34110450744629e-007,-0.915266036987305,0.402850031852722,7.07805227762037e-008,0.992479979991913,0.122407868504524,8.04662704467773e-007,0.870659351348877,0.491886496543884,-0.138497576117516,0.933096647262573,-0.331887125968933,0.0119464006274939,0.993316888809204,-0.114799812436104,-0.0119464006274939,0.993316888809204,0.114799812436104,0.138497576117516,0.933096647262573,0.331887125968933,0.127405151724815,0.983634173870087,0.127403736114502,0.253103166818619,0.933744668960571,0.253100365400314,-0.253103166818619,0.933744668960571,-0.253100365400314,-0.127405151724815,0.983634173870087,-0.127403736114502
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.185973271727562,0.0345079749822617,-0.981948673725128,-0.185973271727562,-0.0345079749822617,-0.981948673725128,-0.838157892227173,0.0345143228769302,-0.544334530830383,-0.838157892227173,-0.0345143228769302,-0.544334530830383,0.187656715512276,0.0441096276044846,0.981243848800659,0.187656715512276,-0.0441096276044846,0.981243848800659,0.84194552898407,-0.0519429035484791,0.537056446075439,0.84194552898407,0.0519429035484791,0.537056446075439,0.199671119451523,-0.394737988710403,0.896835207939148,0.841305613517761,-0.0517058186233044,0.538081169128418,0.209461286664009,0.480975240468979,0.851345300674438,0.84203028678894,0.0660305768251419,0.535373687744141,0.841305613517761,0.0517058074474335,0.538081169128418,0.199671149253845,0.394737839698792,0.896835386753082,0.84203028678894,-0.0660305619239807,0.535373687744141,0.209461286664009,-0.480975091457367,0.851345360279083,-0.143828019499779,-0.350514560937881,-0.925447583198547,0.84194552898407,0.0519429035484791,0.537056446075439,0.84194552898407,-0.0519429035484791,0.537056446075439,-0.143828019499779,0.350514560937881,-0.925447583198547,0.166258752346039,-0.147812396287918,0.974940896034241,-0.802330374717712,0.348776608705521,-0.484376788139343,-0.802330374717712,-0.348776608705521,-0.484376788139343,0.166258752346039,0.147812396287918,0.974940896034241
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *44 {
- a: 0.00959655176848173,0.990196049213409,0.00959655176848173,0.00980386231094599,0.215432330965996,0.00980386231094599,0.215432330965996,0.990196049213409,0.23879012465477,0.990196049213409,0.23879012465477,0.00980386231094599,0.355288296937943,0.00980386231094599,0.355288296937943,0.990196049213409,0.772254645824432,0.0484199374914169,0.634124636650085,0.254255712032318,0.563217580318451,0.183349058032036,0.679715752601624,0.00980386231094599,0.831113576889038,0.273798108100891,0.969243586063385,0.479633897542953,0.876704692840576,0.518249988555908,0.760206520557404,0.344704777002335,0.447827160358429,0.990196049213409,0.447827160358429,0.00980386231094599,0.54061359167099,0.990196049213409,0.469706922769547,0.990196049213409,0.469706922769547,0.00980386231094599,0.54061359167099,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,19,20,21
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509526240, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 149.05078125,0,-360.506103515625,274.88671875,600,-276.65625,125.56640625,0,-303.80810546875,231.62890625,600,-233.1220703125,274.88671875,0,-276.65625,149.05078125,600,-360.506103515625,231.62890625,0,-233.1220703125,125.56640625,600,-303.80810546875
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.17832313477993,-0.0804258584976196,-0.980679631233215,0.836390256881714,0.080442950129509,-0.542199432849884,-0.834646821022034,-0.102998659014702,0.541069328784943,-0.177951544523239,0.102978460490704,0.978636145591736,0.836390256881714,-0.080442950129509,-0.542199432849884,0.17832313477993,0.0804258584976196,-0.980679631233215,-0.177951544523239,-0.102978460490704,0.978636145591736,-0.834646821022034,0.102998659014702,0.541069328784943
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.153474673628807,0.98397558927536,-0.0907614901661873,0.153474673628807,0.983975529670715,0.0907614827156067,0.0485540255904198,0.996159136295319,-0.0728664547204971,-0.0485540255904198,0.996159136295319,0.0728664547204971,0.114592865109444,0.993336200714111,-0.0123232398182154,-0.114592865109444,0.993336200714111,0.0123232398182154,-0.0621547624468803,0.993699729442596,0.0932615548372269,0.0621547624468803,0.993699729442596,-0.0932615548372269,-0.0957367792725563,0.995406687259674,2.57045030593872e-007,-0.411134511232376,0.91157466173172,-6.33299350738525e-007,-0.122475296258926,-0.992471575737,-6.96629285812378e-007,-0.500871419906616,-0.865521728992462,-7.67409801483154e-007,-0.411146879196167,-0.911569118499756,-3.33040952682495e-006,-0.095736987888813,-0.995406746864319,-4.84287809854322e-008,-0.500853717327118,0.865531980991364,3.53157520294189e-006,-0.122474893927574,0.992471635341644,-6.33299279684252e-008,-0.153474673628807,0.98397558927536,-0.0907614901661873,-0.127507537603378,0.983712077140808,-0.126698076725006,0.127507537603378,0.983712077140808,0.126698076725006,0.153474673628807,0.983975529670715,0.0907614827156067,0.114592865109444,0.993336200714111,-0.0123232398182154,0.329699277877808,0.934157013893127,0.136561810970306,-0.329699277877808,0.934157013893127,-0.136561810970306,-0.114592865109444,0.993336200714111,0.0123232398182154
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.526209771633148,-0.15912589430809,-0.835333585739136,-0.526209771633148,0.15912589430809,-0.835333645343781,-0.982773303985596,0.0346221700310707,-0.181543216109276,-0.982773303985596,-0.0346221700310707,-0.181543216109276,0.538732945919037,-0.0517171248793602,0.840887665748596,0.538732945919037,0.0517171248793602,0.840887665748596,0.982074379920959,0.0442308597266674,0.183230981230736,0.982074379920959,-0.0442308597266674,0.183230981230736,-0.539708971977234,-0.0519082136452198,-0.840249836444855,-0.893962681293488,-0.403191357851028,-0.195620715618134,-0.536995887756348,0.0662682130932808,-0.840977966785431,-0.847030758857727,0.490171015262604,-0.205599784851074,0.893957018852234,-0.403203964233398,0.195620715618134,0.539708912372589,-0.0519085749983788,0.840249836444855,0.847041249275208,0.490152925252914,0.205599784851074,0.536996006965637,0.0662674680352211,0.84097808599472,-0.526209771633148,-0.15912589430809,-0.835333585739136,0.975743472576141,0.147329613566399,0.161922588944435,0.975743472576141,-0.147329613566399,0.161922588944435,-0.526209771633148,0.15912589430809,-0.835333645343781,0.538732945919037,-0.0517171248793602,0.840887665748596,-0.927091836929321,0.347681492567062,-0.14006544649601,-0.927091836929321,-0.347681492567062,-0.14006544649601,0.538732945919037,0.0517171248793602,0.840887665748596
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.0800928771495819,0.990196049213409,0.0800928771495819,0.00980386231094599,0.217102289199829,0.00980386231094599,0.217102289199829,0.990196049213409,0.330960839986801,0.990196049213409,0.330960839986801,0.00980386231094599,0.446460396051407,0.00980386231094599,0.446460396051407,0.990196049213409,0.538629770278931,0.00980386231094599,0.675639569759369,0.215418145060539,0.582994878292084,0.253790348768234,0.467492431402206,0.0804868787527084,0.696673929691315,0.215418145060539,0.833683729171753,0.00980386231094599,0.9048210978508,0.0804868787527084,0.7893186211586,0.253790348768234,0.00895867496728897,0.990196049213409,0.00895867496728897,0.00980386231094599,0.238316774368286,0.990196049213409,0.238316774368286,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509542112, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -0.1953125,0,-389.999755859375,148.2265625,600,-360.7333984375,-0.1953125,0,-328.630126953125,124.90234375,600,-303.96923828125,148.2265625,0,-360.7333984375,-0.1953125,600,-389.999755859375,124.90234375,0,-303.96923828125,-0.1953125,600,-328.630126953125
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.210723534226418,-0.0804328918457031,-0.974231004714966,0.564809203147888,0.0804198682308197,-0.821293532848358,-0.563631176948547,-0.102993614971638,0.819580435752869,0.21028396487236,0.103007793426514,0.972198605537415,0.564809203147888,-0.0804198682308197,-0.821293532848358,-0.210723534226418,0.0804328918457031,-0.974231004714966,0.21028396487236,-0.103007793426514,0.972198605537415,-0.563631176948547,0.102993614971638,0.819580435752869
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0169370491057634,-0.996160268783569,-0.085894837975502,-0.0169370491057634,-0.996160268783569,0.085894837975502,-0.0169395003467798,-0.996159195899963,0.0859072580933571,0.0169395003467798,-0.996159195899963,-0.0859072580933571,0.021678002551198,0.993698954582214,-0.109966322779655,-0.021678002551198,0.993698954582214,0.109966322779655,-0.0216797087341547,0.993697941303253,0.10997498780489,0.0216797087341547,0.993697941303253,-0.10997498780489,-0.140963211655617,0.990014910697937,-5.43892440418858e-007,-0.3566013276577,-0.934256732463837,-6.92904052357335e-007,-0.179755821824074,-0.983711302280426,7.45058148510225e-009,-0.439904123544693,0.898044764995575,-8.56816654959403e-007,-0.356604099273682,0.934255599975586,0,-0.140962883830071,-0.990014910697937,-3.20374965667725e-007,-0.439899921417236,-0.898046791553497,-1.98185421140806e-006,-0.17975640296936,0.983711183071136,-4.09781932830811e-007,-0.330401539802551,0.934025645256042,-0.135760977864265,-0.166183516383171,0.983727753162384,-0.0682843029499054,0.166183516383171,0.983727753162384,0.0682843029499054,0.330401539802551,0.934025645256042,0.135760977864265,0.179755821824074,0.983711302280426,-7.45058148510225e-009,0.356604099273682,0.934255599975586,0,-0.356604099273682,0.934255599975586,0,-0.179755821824074,0.983711302280426,7.45058148510225e-009
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.825047731399536,-0.0346039012074471,0.564002513885498,0.825047731399536,0.0346039012074471,0.564002513885498,0.977398931980133,-0.0346056632697582,-0.208551645278931,0.977398931980133,0.0346056632697582,-0.208551645278931,0.825742065906525,0.0442135781049728,0.562312364578247,0.825742065906525,-0.0442135781049728,0.562312364578247,0.977399945259094,0.0442029573023319,-0.206725582480431,0.977399945259094,-0.0442029573023319,-0.206725582480431,-0.813092708587646,-0.11577246338129,-0.570505917072296,0.910181820392609,-0.347411900758743,-0.22555273771286,-0.806230485439301,0.147324338555336,-0.572964191436768,0.873078107833862,0.427674055099487,-0.234157666563988,-0.910180747509003,-0.347414761781693,0.22555273771286,0.813092827796936,-0.11577208340168,0.570505976676941,-0.873080193996429,0.427669733762741,0.234157666563988,0.806230425834656,0.147325053811073,0.572964251041412,-0.75619101524353,-0.348035663366318,-0.554117619991302,0.963412642478943,0.14720430970192,-0.223980277776718,0.963412642478943,-0.14720430970192,-0.223980277776718,-0.75619101524353,0.348035663366318,-0.554117619991302,0.806230485439301,-0.147324338555336,0.572964191436768,-0.910180747509003,0.347414761781693,0.22555273771286,-0.910180747509003,-0.347414761781693,0.22555273771286,0.806230485439301,0.147324338555336,0.572964191436768
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.246304228901863,0.00956071261316538,0.246304228901863,0.965637862682343,0.00980119127780199,0.965637862682343,0.00980119127780199,0.00956071261316538,0.2692990899086,0.965637862682343,0.2692990899086,0.00956071261316538,0.468636512756348,0.00956071261316538,0.468636512756348,0.965637862682343,0.815962791442871,0.00956071261316538,0.862595856189728,0.246063753962517,0.764808475971222,0.246063753962517,0.725512683391571,0.0467263422906399,0.853104174137115,0.502531051635742,0.899743258953094,0.266027987003326,0.990193367004395,0.303193628787994,0.950897574424744,0.502531051635742,0.58200865983963,0.965637862682343,0.491557031869888,0.965637862682343,0.491557031869888,0.00956071261316538,0.58200865983963,0.00956071261316538,0.702426016330719,0.965637862682343,0.604635834693909,0.965637862682343,0.604635834693909,0.00956071261316538,0.702426016330719,0.00956071261316538
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509533920, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -149.24609375,0,-360.31298828125,-0.80859375,600,-389.9990234375,-125.7578125,0,-303.61474609375,-0.6796875,600,-328.62939453125,-0.80859375,0,-389.9990234375,-149.24609375,600,-360.31298828125,-0.6796875,0,-328.62939453125,-125.7578125,600,-303.61474609375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.56683886051178,-0.0804050713777542,-0.819895505905151,0.207896545529366,0.0804071575403214,-0.97484028339386,-0.207461982965469,-0.103026896715164,0.972802698612213,0.565654039382935,0.103025659918785,0.818181693553925,0.207896545529366,-0.0804071575403214,-0.97484028339386,-0.56683886051178,0.0804050713777542,-0.819895505905151,0.565654039382935,-0.103025659918785,0.818181693553925,-0.207461982965469,0.103026896715164,0.972802698612213
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0171644277870655,-0.996162295341492,-0.0858263671398163,0.0171644277870655,-0.996162295341492,0.0858263671398163,0.0171640794724226,-0.996162414550781,0.0858246386051178,-0.0171640794724226,-0.996162414550781,-0.0858246386051178,-0.0219847857952118,0.993696391582489,-0.109928213059902,0.0219847857952118,0.993696391582489,0.109928213059902,0.0219846144318581,0.993696451187134,0.109927356243134,-0.0219846144318581,0.993696451187134,-0.109927356243134,-0.360739171504974,0.932666778564453,-3.42726752933231e-006,-0.14043627679348,-0.990089774131775,-4.2691831367847e-006,-0.444865971803665,-0.895597219467163,-2.279132604599e-005,-0.179179981350899,0.983816385269165,-5.44637441635132e-006,-0.140433415770531,0.990090191364288,-6.28829093329841e-006,-0.360765039920807,-0.932656705379486,-9.77516174316406e-006,-0.179185226559639,-0.983815371990204,-1.69128179550171e-006,-0.44482558965683,0.895617246627808,-1.20550375868334e-005,-0.357658803462982,0.933852076530457,0.00075126439332962,-0.179716035723686,0.983718514442444,0.000377491058316082,0.179716035723686,0.983718514442444,-0.000377491058316082,0.357658803462982,0.933852076530457,-0.00075126439332962,0.166020974516869,0.98372083902359,-0.0687772259116173,0.330501288175583,0.933821737766266,-0.136916175484657,-0.330501288175583,0.933821737766266,0.136916175484657,-0.166020974516869,0.98372083902359,0.0687772259116173
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.978000223636627,-0.0345755778253078,0.205718502402306,0.978000223636627,0.0345755778253078,0.205718502402306,0.823649883270264,-0.0345759876072407,-0.566043615341187,0.823649883270264,0.0345759876072407,-0.566043615341187,0.977995991706848,0.0441927835345268,0.203889220952988,0.977995991706848,-0.0441927835345268,0.203889220952988,0.824349522590637,0.0441934466362,-0.564353406429291,0.824349522590637,-0.0441934466362,-0.564353406429291,-0.90920078754425,-0.351663768291473,-0.222904801368713,0.811770439147949,-0.115140646696091,-0.572513222694397,-0.87123703956604,0.432771533727646,-0.231635078787804,0.804941177368164,0.14659871160984,-0.574959754943848,-0.811770915985107,-0.115137152373791,0.572513222694397,0.909190535545349,-0.351690322160721,0.222904801368713,-0.804939925670624,0.146605119109154,0.574959695339203,0.871257781982422,0.432730078697205,0.231635108590126,-0.910417020320892,-0.348504036664963,-0.222903564572334,0.804821670055389,0.147253915667534,-0.574959635734558,0.804821670055389,-0.147253915667534,-0.574959635734558,-0.910417020320892,0.348504036664963,-0.222903564572334,0.964052200317383,-0.147237002849579,0.221189141273499,-0.754627227783203,0.348585873842239,0.555900752544403,-0.754627227783203,-0.348585873842239,0.555900752544403,0.964052200317383,0.147237002849579,0.221189141273499
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.246294885873795,0.00955893658101559,0.246294885873795,0.965458512306213,0.00980543810874224,0.965458512306213,0.00980543810874224,0.00955893658101559,0.269303679466248,0.965458512306213,0.269303679466248,0.00955893658101559,0.468573749065399,0.00955893658101559,0.468573749065399,0.965458512306213,0.863139450550079,0.00976523943245411,0.815847635269165,0.246254697442055,0.725517451763153,0.208828985691071,0.76537024974823,0.00955893658101559,0.899867415428162,0.502914786338806,0.852575540542603,0.266425311565399,0.950344741344452,0.266219019889832,0.990197539329529,0.465489059686661,0.589331269264221,0.965458512306213,0.491559028625488,0.965458512306213,0.491559028625488,0.00955893658101559,0.589331269264221,0.00955893658101559,0.702765822410584,0.965458512306213,0.612436354160309,0.965458512306213,0.612436354160309,0.00955893658101559,0.702765822410584,0.00955893658101559
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509527264, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -275.7734375,0,-275.771484375,-149.84375,600,-360.0146484375,-232.375,0,-232.376708984375,-126.35546875,600,-303.31640625,-149.84375,0,-360.0146484375,-275.7734375,600,-275.771484375,-126.35546875,0,-303.31640625,-232.375,600,-232.376708984375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.837028682231903,-0.080353856086731,-0.541226506233215,-0.180707439780235,0.0803273022174835,-0.980251133441925,0.180327907204628,-0.103063084185123,0.978192150592804,0.835269749164581,0.103092357516289,0.540089190006256,-0.180707439780235,-0.0803273022174835,-0.980251133441925,-0.837028682231903,0.080353856086731,-0.541226506233215,0.835269749164581,-0.103092357516289,0.540089190006256,0.180327907204628,0.103063084185123,0.978192150592804
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0486139953136444,0.99617063999176,0.0726699382066727,-0.0486139953136444,0.99617063999176,-0.0726699382066727,-0.154084593057632,0.983742296695709,0.0922455415129662,0.154084578156471,0.983742296695709,-0.092245526611805,-0.0623618513345718,0.993692517280579,-0.0931999236345291,0.0623618513345718,0.993692517280579,0.0931999236345291,0.114639341831207,0.993330955505371,0.0123128797858953,-0.114639341831207,0.993330955505371,-0.0123128797858953,-0.406102389097214,-0.91382759809494,-1.99750065803528e-005,-0.0955579578876495,-0.995423913002014,-2.58535169450624e-006,-0.496196180582047,0.868210434913635,-2.48104333877563e-006,-0.122492432594299,0.992469429969788,-3.31550791088375e-006,-0.0955585241317749,0.995423913002014,-1.70245789377077e-006,-0.406137615442276,0.913811922073364,-1.21966004371643e-005,-0.122491255402565,-0.992469668388367,-5.17070338901249e-006,-0.49614542722702,-0.868239462375641,-1.49011611938477e-005,-0.33252277970314,0.932980537414551,0.137753620743752,-0.114639341831207,0.993330955505371,-0.0123128797858953,0.114639341831207,0.993330955505371,0.0123128797858953,0.33252277970314,0.932980537414551,-0.137753620743752,0.127057924866676,0.983722448348999,-0.127068653702736,0.154084578156471,0.983742296695709,-0.092245526611805,-0.154084593057632,0.983742296695709,0.0922455415129662,-0.127057924866676,0.983722448348999,0.127068653702736
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.982334733009338,0.0345219224691391,0.183920487761498,-0.982334733009338,-0.0345219224691391,0.183920487761498,-0.525014877319336,-0.160606816411018,0.835801959037781,-0.525014877319336,0.160606786608696,0.835801839828491,0.981627643108368,0.0441953279078007,-0.185617670416832,0.981627643108368,-0.0441953279078007,-0.185617670416832,0.537756621837616,-0.0516308881342411,-0.841517686843872,0.537756621837616,0.0516308881342411,-0.841517686843872,0.895782113075256,-0.398078739643097,-0.197756856679916,0.538749933242798,-0.0517163276672363,-0.840876877307892,0.849276900291443,0.485374748706818,-0.207701906561852,0.536022365093231,0.0661540701985359,-0.841607928276062,-0.538749873638153,-0.0517173744738102,0.840876877307892,-0.895766139030457,-0.398114651441574,0.197756856679916,-0.53602260351181,0.0661518797278404,0.841607809066772,-0.849306583404541,0.485322862863541,0.207701906561852,-0.92562061548233,-0.350848913192749,0.141885593533516,0.537756621837616,0.0516308881342411,-0.841517686843872,0.537756621837616,-0.0516308881342411,-0.841517686843872,-0.92562061548233,0.350848913192749,0.141885593533516,0.97536563873291,-0.147201091051102,-0.164297670125961,-0.525014877319336,0.160606786608696,0.835801839828491,-0.525014877319336,-0.160606816411018,0.835801959037781,0.97536563873291,0.147201091051102,-0.164297670125961
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.00896450877189636,0.990196049213409,0.00896450877189636,0.00980386231094599,0.146616280078888,0.00980386231094599,0.146616280078888,0.990196049213409,0.238385215401649,0.990196049213409,0.238385215401649,0.00980386231094599,0.354299753904343,0.00980386231094599,0.354299753904343,0.990196049213409,0.676180958747864,0.0481885112822056,0.538530170917511,0.253952145576477,0.467623144388199,0.183038875460625,0.58354252576828,0.00980386231094599,0.834517657756805,0.253952145576477,0.696866869926453,0.0481885112822056,0.789505302906036,0.00980386231094599,0.90542471408844,0.183038875460625,0.446943670511246,0.990196049213409,0.446943670511246,0.00980386231094599,0.217522948980331,0.990196049213409,0.217522948980331,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509541600, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -360.3125,0,-149.24658203125,-276.22265625,600,-275.32421875,-303.61328125,0,-125.761474609375,-232.82421875,600,-231.92919921875,-276.22265625,0,-275.32421875,-360.3125,600,-149.24658203125,-232.82421875,0,-231.92919921875,-303.61328125,600,-125.761474609375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.980458855628967,-0.0803666114807129,-0.179559275507927,-0.542375028133392,0.080323226749897,-0.83628785610199,0.5412358045578,-0.10305904597044,0.834531426429749,0.978398442268372,0.103103838860989,0.179181978106499,-0.542375028133392,-0.080323226749897,-0.83628785610199,-0.980458855628967,0.0803666114807129,-0.179559275507927,0.978398442268372,-0.103103838860989,0.179181978106499,0.5412358045578,0.10305904597044,0.834531426429749
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0727314203977585,0.996171236038208,0.0485095903277397,-0.0727314203977585,0.996171236038208,-0.0485095903277397,-0.0727660432457924,0.996167540550232,-0.0485326796770096,0.0727660432457924,0.996167540550232,0.0485326796770096,-0.0123055353760719,0.993325352668762,-0.114688269793987,0.0123055279254913,0.993325352668762,0.114688269793987,0.093319945037365,0.993690013885498,0.0622225925326347,-0.093319945037365,0.993690013885498,-0.0622225925326347,9.68575619708645e-008,-0.995419144630432,-0.0956074371933937,-7.45058130746656e-008,-0.912747502326965,-0.408524394035339,-1.7508864402771e-007,0.992460906505585,-0.122562170028687,-9.68575335491551e-008,0.866751372814178,-0.498740434646606,9.68575477600098e-008,-0.912747442722321,0.40852427482605,-8.94069813739407e-008,-0.995419144630432,0.0956074297428131,1.04308128356934e-007,0.866751492023468,0.498740434646606,1.67638063430786e-007,0.992460906505585,0.122562170028687,-0.254861950874329,0.932781100273132,0.254882037639618,-0.12691330909729,0.983759880065918,0.126923307776451,0.12691330909729,0.983759880065918,-0.126923307776451,0.254861950874329,0.932781100273132,-0.254882037639618,-0.0123055353760719,0.993325352668762,-0.114688269793987,0.137170493602753,0.933548986911774,-0.331165581941605,-0.137170493602753,0.933548986911774,0.331165581941605,0.0123055279254913,0.993325352668762,0.114688269793987
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.836982309818268,0.0345140136778355,0.546140432357788,-0.836982309818268,-0.0345140136778355,0.546140432357788,-0.182771578431129,0.0345184728503227,0.982549250125885,-0.182771578431129,-0.0345184728503227,0.982549250125885,0.840780794620514,-0.0518040433526039,-0.538891434669495,0.840780794620514,0.0518040433526039,-0.53889137506485,0.184466674923897,0.0441572368144989,-0.981846332550049,0.184466674923897,-0.0441572368144989,-0.981846332550049,0.840136528015137,0.0518551543354988,-0.53989040851593,0.196724519133568,0.400541305541992,-0.894911229610443,0.84087085723877,-0.0663348883390427,-0.537155389785767,0.206727832555771,-0.487966895103455,-0.848028302192688,0.196724519133568,-0.400541245937347,-0.894911289215088,0.840136528015137,-0.0518551468849182,-0.53989040851593,0.206727832555771,0.48796683549881,-0.848028302192688,0.84087085723877,0.0663348957896233,-0.537155389785767,0.800546884536743,0.351379603147507,-0.485445439815521,-0.163185894489288,-0.146922171115875,0.975594401359558,-0.163185894489288,0.146922171115875,0.975594401359558,0.800546884536743,-0.351379603147507,-0.485445439815521,0.840780794620514,-0.0518040433526039,-0.538891434669495,-0.141012266278267,0.349324434995651,0.926330387592316,-0.141012266278267,-0.349324434995651,0.926330387592316,0.840780794620514,0.0518040433526039,-0.53889137506485
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.00893942173570395,0.990196049213409,0.00893942173570395,0.00980386231094599,0.214948296546936,0.00980386231094599,0.214948296546936,0.990196049213409,0.329051315784454,0.990196049213409,0.329051315784454,0.00980386231094599,0.444721788167953,0.00980386231094599,0.444721788167953,0.990196049213409,0.602890431880951,0.254187256097794,0.465488582849503,0.0481784008443356,0.558133244514465,0.00980386231094599,0.673803746700287,0.183280602097511,0.694570541381836,0.215812727808952,0.831972360610962,0.00980386231094599,0.902885675430298,0.0807105302810669,0.787215173244476,0.254187256097794,0.0798460841178894,0.990196049213409,0.0798460841178894,0.00980386231094599,0.23640663921833,0.990196049213409,0.23640663921833,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509542624, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -360.4609375,600,-148.64990234375,-390,600,-0.000244140625,-303.76171875,600,-125.164794921875,-328.6328125,600,-0.000244140625,-360.4609375,0,-148.64990234375,-390,0,-0.000244140625,-303.76171875,0,-125.164794921875,-328.6328125,0,-0.000244140625
- }
- PolygonVertexIndex: *24 {
- a: 0,4,5,-2,3,7,6,-3,3,2,0,-2,6,7,5,-5,0,2,6,-5,3,1,5,-8
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,9,15,13,2,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.820803463459015,0.0803369283676147,-0.565532982349396,-0.974675238132477,0.0803471654653549,0.208692640066147,0.972627460956573,0.103083379566669,-0.208254158496857,0.819078922271729,0.103075444698334,0.564344823360443,-0.820803463459015,-0.0803369283676147,-0.565532982349396,-0.974675238132477,-0.0803471654653549,0.208692640066147,0.972627460956573,-0.103083379566669,-0.208254158496857,0.819078922271729,-0.103075444698334,0.564344823360443
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0857593640685081,0.996170163154602,0.0170417539775372,-0.0857593640685081,0.996170163154602,-0.0170417539775372,-0.0857683047652245,0.996169328689575,-0.0170435309410095,0.0857683047652245,0.996169328689575,0.0170435309410095,-0.109990626573563,0.993692338466644,-0.0218559261411428,0.109990626573563,0.993692338466644,0.0218559261411428,0.109995767474175,0.993691742420197,0.0218569505959749,-0.109995767474175,0.993691742420197,-0.0218569505959749,0,0.983726263046265,-0.179673880338669,-3.20374937246015e-007,-0.896216034889221,-0.44361799955368,-2.01165704538653e-007,-0.990060448646545,-0.140642985701561,-2.68220901489258e-007,0.933224201202393,-0.35929474234581,8.49366188049316e-007,-0.896215081214905,0.443619966506958,1.63912787343179e-007,0.983726322650909,0.17967364192009,0,0.933224618434906,0.359293669462204,1.34110464955484e-007,-0.990060448646545,0.140643075108528,0.137655690312386,-0.933061122894287,-0.332336992025375,0.0687315613031387,-0.983738362789154,-0.165936037898064,-0.0687315613031387,-0.983738362789154,0.165936037898064,-0.137655690312386,-0.933061122894287,0.332336992025375,0,0.983726263046265,-0.179673880338669,0,0.933224618434906,-0.359293669462204,0,0.933224618434906,0.359293669462204,0,0.983726263046265,0.179673880338669
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.564736127853394,0.0345118120312691,0.824549615383148,-0.564736127853394,-0.0345118120312691,0.824549615383148,0.206523865461349,0.0345111265778542,0.977832853794098,0.206523865461349,-0.0345111265778542,0.977832853794098,0.563037931919098,0.0441709086298943,-0.825249791145325,0.563037931919098,-0.0441709086298943,-0.825249791145325,-0.204687386751175,0.0441657453775406,-0.977830469608307,-0.204687386751175,-0.0441657453775406,-0.977830469608307,0.573680937290192,-0.147167086601257,-0.805749475955963,0.232369720935822,-0.431475162506104,0.871684432029724,0.571210741996765,0.115440122783184,-0.812644958496094,0.223624870181084,0.3501957654953,0.909590482711792,0.232369691133499,0.431477129459381,0.871683299541473,0.573680877685547,0.147166788578033,-0.805749416351318,0.223624870181084,-0.350194662809372,0.909590899944305,0.571210741996765,-0.115440241992474,-0.812644958496094,0.554376184940338,0.350632190704346,-0.754800856113434,0.22197262942791,-0.147080332040787,0.963896036148071,0.22197262942791,0.147080332040787,0.963896036148071,0.554376184940338,-0.350632190704346,-0.754800856113434,0.573680937290192,-0.147167086601257,-0.805749475955963,0.223624870181084,0.350194662809372,0.909590899944305,0.223624870181084,-0.350194662809372,0.909590899944305,0.573680937290192,0.147167086601257,-0.805749475955963
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.00980384275317192,0.965264081954956,0.00980384275317192,0.00955701246857643,0.246579900383949,0.00955701246857643,0.246579900383949,0.965264081954956,0.269299119710922,0.965264081954956,0.269299119710922,0.00955701246857643,0.468666881322861,0.00955701246857643,0.468666881322861,0.965264081954956,0.823260426521301,0.00955701246857643,0.862874627113342,0.208924755454063,0.772562682628632,0.246333062648773,0.725510895252228,0.00955701246857643,0.990198373794556,0.303705483675003,0.95058411359787,0.503073215484619,0.852834582328796,0.503073215484619,0.8998863697052,0.266297161579132,0.491556346416473,0.00955701246857643,0.581868350505829,0.00955701246857643,0.581868350505829,0.965264081954956,0.491556346416473,0.965264081954956,0.702385425567627,0.965264081954956,0.604635894298553,0.965264081954956,0.604635894298553,0.00955701246857643,0.702385425567627,0.00955701246857643
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509532384, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -390,0,0.447265625,-360.3125,0,149.24609375,-328.6328125,0,0.447265625,-303.61328125,0,125.76123046875,-390,600,0.447265625,-360.3125,600,149.24609375,-328.6328125,600,0.447265625,-303.61328125,600,125.76123046875
- }
- PolygonVertexIndex: *24 {
- a: 4,0,1,-6,7,3,2,-7,4,5,7,-7,1,0,2,-4,4,6,2,-1,7,5,1,-4
- }
- Edges: *12 {
- a: 1,0,5,7,4,13,15,2,11,3,9,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.974916934967041,-0.0803424343466759,-0.207562550902367,-0.820661842823029,-0.0803731605410576,0.565733373165131,0.81893652677536,-0.103117078542709,-0.564543962478638,0.9728684425354,-0.10308151692152,0.207126423716545,-0.974916934967041,0.0803424343466759,-0.207562550902367,-0.820661842823029,0.0803731605410576,0.565733373165131,0.81893652677536,0.103117078542709,-0.564543962478638,0.9728684425354,0.10308151692152,0.207126423716545
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0857357978820801,0.996171116828918,-0.0171055234968662,-0.0857357978820801,0.996171116828918,0.0171055234968662,-0.0857657343149185,0.996168494224548,0.0171114914119244,0.0857657343149185,0.996168494224548,-0.0171114914119244,-0.109962217509747,0.993693351745605,0.0219544805586338,0.109962217509747,0.993693351745605,-0.0219544805586338,0.109983846545219,0.993690848350525,-0.0219588056206703,-0.109983846545219,0.993690848350525,0.0219588056206703,0,-0.93257474899292,-0.360977113246918,2.75671510507891e-007,0.990058541297913,-0.14065620303154,1.76578737409727e-006,0.895255148410797,-0.445553809404373,3.57627868652344e-007,-0.9837247133255,-0.17968225479126,-4.91738262553554e-007,0.990058541297913,0.140655890107155,-6.25848713298183e-007,-0.932573735713959,0.360979676246643,7.45058148510225e-009,-0.9837247133255,0.179682776331902,-7.7486026839324e-007,0.895256996154785,0.445550084114075,0,-0.93257474899292,-0.360977113246918,-7.45058148510225e-009,-0.9837247133255,-0.179682776331902,7.45058148510225e-009,-0.9837247133255,0.179682776331902,0,-0.93257474899292,0.360977113246918,-0.0688421651721001,0.983685374259949,-0.166204825043678,-0.137568891048431,0.933147311210632,-0.332130938768387,0.137568891048431,0.933147311210632,0.332130938768387,0.0688421651721001,0.983685374259949,0.166204825043678
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.205393552780151,0.0344720035791397,0.978072166442871,-0.205393552780151,-0.0344720035791397,0.978072166442871,0.564940989017487,0.0344777852296829,0.824410676956177,0.564940989017487,-0.0344777852296829,0.824410676956177,0.203557088971138,0.0441349036991596,-0.978067815303802,0.203557088971138,-0.0441349036991596,-0.978067815303802,-0.563246488571167,0.0441078506410122,-0.825110852718353,-0.563246488571167,-0.0441078506410122,-0.825110852718353,0.222568735480309,0.3519227206707,-0.909183025360107,0.571414172649384,0.115431010723114,0.812503218650818,0.23135869204998,-0.433465659618378,-0.870965361595154,0.573884069919586,-0.147148162126541,0.805608153343201,0.571414232254028,-0.115430660545826,0.812503397464752,0.222568735480309,-0.35192534327507,-0.909182012081146,0.573884069919586,0.14714877307415,0.805608034133911,0.23135869204998,0.433461844921112,-0.870967268943787,0.222568735480309,0.3519227206707,-0.909183025360107,0.573884069919586,-0.14714877307415,0.805608034133911,0.573884069919586,0.14714877307415,0.805608034133911,0.222568735480309,-0.3519227206707,-0.909183025360107,0.220879644155502,-0.147436395287514,-0.964092791080475,0.554607152938843,0.350394487380981,0.754741430282593,0.554607152938843,-0.350394487380981,0.754741430282593,0.220879644155502,0.147436395287514,-0.964092791080475
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.00980395171791315,0.964938998222351,0.00980395171791315,0.00955379288643599,0.246737912297249,0.00955379288643599,0.246737912297249,0.964938998222351,0.269300520420074,0.964938998222351,0.269300520420074,0.00955379288643599,0.468838959932327,0.00955379288643599,0.468838959932327,0.964938998222351,0.725515186786652,0.246487751603127,0.772787630558014,0.00955379288643599,0.863069176673889,0.046949315816164,0.823231756687164,0.246487751603127,0.89991682767868,0.503385901451111,0.852644383907318,0.266451954841614,0.950361013412476,0.266451954841614,0.990198373794556,0.465990364551544,0.491560578346252,0.00955379288643599,0.58927720785141,0.00955379288643599,0.58927720785141,0.964938998222351,0.491560578346252,0.964938998222351,0.702718913555145,0.964938998222351,0.61243736743927,0.964938998222351,0.61243736743927,0.00955379288643599,0.702718913555145,0.00955379288643599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509551328, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -275.7734375,0,275.771484375,-360.015625,600,149.54443359375,-232.375,0,232.37646484375,-303.31640625,600,126.0595703125,-360.015625,0,149.54443359375,-275.7734375,600,275.771484375,-303.31640625,0,126.0595703125,-232.375,600,232.37646484375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.542607247829437,-0.08034947514534,0.836134791374207,-0.980312645435333,0.0803774893283844,0.180351212620735,0.978251755237579,-0.103119559586048,-0.179972022771835,0.541466891765594,0.103091225028038,-0.834377467632294,-0.980312645435333,-0.0803774893283844,0.180351212620735,-0.542607247829437,0.08034947514534,0.836134791374207,0.541466891765594,-0.103091225028038,-0.834377467632294,0.978251755237579,0.103119559586048,-0.179972022771835
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0727457106113434,0.996168196201324,-0.0485494807362556,-0.0727457106113434,0.996168196201324,0.0485494807362556,-0.0727234706282616,0.996170520782471,0.048534631729126,0.0727234706282616,0.996170520782471,-0.048534631729126,0.0932943224906921,-0.993690550327301,-0.0622519105672836,-0.0932943224906921,-0.993690550327301,0.0622519105672836,-0.0122733358293772,-0.993317008018494,0.114764206111431,0.0122733358293772,-0.993317008018494,-0.114764206111431,1.55717157213076e-006,0.913398146629334,-0.407067537307739,6.33299350738525e-008,0.99541449546814,-0.0956556349992752,-1.27404928207397e-006,-0.867661416530609,-0.497155636548996,8.56816839700514e-008,-0.992453515529633,-0.122622206807137,7.82310891622728e-008,0.99541449546814,0.0956557169556618,-4.32133617778163e-007,0.913395762443542,0.407072603702545,-3.53902606775591e-007,-0.992453515529633,0.122622027993202,-5.21540641784668e-007,-0.867665648460388,0.497148305177689,-0.137638747692108,-0.933076977729797,-0.332299560308456,0.0122733358293772,-0.993317008018494,-0.114764206111431,-0.0122733358293772,-0.993317008018494,0.114764206111431,0.137638747692108,-0.933076977729797,0.332299560308456,-0.127076208591461,0.983717858791351,-0.127086207270622,-0.255225449800491,0.932582378387451,-0.255245566368103,0.255225449800491,0.932582378387451,0.255245566368103,0.127076208591461,0.983717858791351,0.127086207270622
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.183562427759171,0.034473892301321,0.98240339756012,0.183562427759171,-0.034473892301321,0.98240339756012,0.836832642555237,0.0344713814556599,0.546372652053833,0.836832642555237,-0.0344713814556599,0.546372652053833,0.185255855321884,-0.0441076755523682,0.98169994354248,0.185255855321884,0.0441076755523682,0.98169994354248,0.840632498264313,0.0519004203379154,0.539113521575928,0.840632498264313,-0.0519004203379154,0.539113521575928,0.197451591491699,0.399053126573563,0.895415782928467,0.839986503124237,0.051903385668993,0.540119171142578,0.207420915365219,-0.486343592405319,0.848791182041168,0.84072208404541,-0.0663957893848419,0.537380695343018,0.839986622333527,-0.0519035570323467,0.540119171142578,0.197451621294022,-0.399058401584625,0.89541357755661,0.84072208404541,0.0663954690098763,0.537380695343018,0.207420915365219,0.4863361120224,0.848795473575592,-0.141572088003159,0.350580781698227,-0.925770223140717,0.840632498264313,-0.0519004203379154,0.539113521575928,0.840632498264313,0.0519004203379154,0.539113521575928,-0.141572088003159,-0.350580781698227,-0.925770223140717,0.163936704397202,0.14719246327877,0.975427687168121,-0.800273180007935,-0.351900935173035,-0.485518872737885,-0.800273180007935,0.351900935173035,-0.485518872737885,0.163936704397202,-0.14719246327877,0.975427687168121
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.00894331093877554,0.990196049213409,0.00894331093877554,0.00980386231094599,0.215196251869202,0.00980386231094599,0.215196251869202,0.990196049213409,0.445020496845245,0.00980386231094599,0.445020496845245,0.990196049213409,0.329101085662842,0.990196049213409,0.329101085662842,0.00980386231094599,0.465575695037842,0.216056793928146,0.603226482868195,0.00980386231094599,0.674139797687531,0.0807105302810669,0.558220386505127,0.254431128501892,0.832351982593536,0.254431128501892,0.694701194763184,0.04817820712924,0.787345886230469,0.00980386231094599,0.903265297412872,0.18352447450161,0.236456423997879,0.00980386231094599,0.236456423997879,0.990196049213409,0.144289582967758,0.990196049213409,0.144289582967758,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509521120, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -149.24609375,0,360.312744140625,-275.32421875,600,276.21875,-125.7578125,0,303.61474609375,-231.92578125,600,232.823974609375,-275.32421875,0,276.21875,-149.24609375,600,360.312744140625,-231.92578125,0,232.823974609375,-125.7578125,600,303.61474609375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.179589092731476,-0.0803670510649681,0.980453372001648,-0.836297750473022,0.0803211554884911,0.542360246181488,0.834541082382202,-0.103058286011219,-0.541221082210541,0.179211601614952,0.103105932474136,-0.978392720222473,-0.836297750473022,-0.0803211554884911,0.542360246181488,-0.179589092731476,0.0803670510649681,0.980453372001648,0.179211601614952,-0.103105932474136,-0.978392720222473,0.834541082382202,0.103058286011219,-0.541221082210541
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.154723361134529,0.983579039573669,0.0929135158658028,-0.15472337603569,0.983579039573669,-0.092913530766964,-0.048534270375967,0.996167480945587,0.072765126824379,0.048534270375967,0.996167480945587,-0.072765126824379,-0.114690586924553,0.993325173854828,0.012298833578825,0.114690601825714,0.993325233459473,-0.0122988279908895,0.062224268913269,0.993689894676209,-0.093320406973362,-0.062224268913269,0.993689894676209,0.093320406973362,-0.0956027209758759,-0.99541962146759,1.67638063430786e-006,-0.408414840698242,-0.912796378135681,1.21369939733995e-005,-0.122556701302528,0.992461562156677,5.14090015713009e-006,-0.498625755310059,0.866817474365234,1.48192066262709e-005,-0.408414840698242,0.912796378135681,1.21369939733995e-005,-0.0956027209758759,0.99541962146759,1.67638063430786e-006,-0.498625755310059,-0.866817474365234,1.48192066262709e-005,-0.122556701302528,-0.992461562156677,5.14090015713009e-006,0.154723361134529,0.983579039573669,0.0929135158658028,0.126906394958496,0.983761668205261,0.126917093992233,-0.126906394958496,0.983761668205261,-0.126917093992233,-0.15472337603569,0.983579039573669,-0.092913530766964,-0.114690586924553,0.993325173854828,0.012298833578825,-0.331126034259796,0.933562278747559,-0.137175589799881,0.331126034259796,0.933562278747559,0.137175589799881,0.114690601825714,0.993325233459473,-0.0122988279908895
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.525991380214691,-0.161619186401367,0.834992468357086,0.525991380214691,0.161619201302528,0.834992468357086,0.98254382610321,0.0345177724957466,0.182801425457001,0.98254382610321,-0.0345177724957466,0.182801425457001,-0.538876056671143,-0.051809087395668,-0.840790390968323,-0.538875997066498,0.051809087395668,-0.840790390968323,-0.981840789318085,0.044155664741993,-0.184496462345123,-0.981840789318085,-0.044155664741993,-0.184496462345123,-0.539876163005829,0.0518497191369534,-0.840146005153656,-0.894955396652222,0.400429576635361,-0.196751803159714,-0.537141680717468,-0.0663259848952293,-0.840880453586578,-0.848089337348938,-0.487849086523056,-0.206755250692368,0.894955396652222,0.400429576635361,0.196751803159714,0.539876163005829,0.0518497191369534,0.840146005153656,0.848089337348938,-0.487849086523056,0.206755250692368,0.537141680717468,-0.0663259848952293,0.840880453586578,0.525991380214691,-0.161619186401367,0.834992468357086,-0.975591123104095,0.146909281611443,-0.16321662068367,-0.975591123104095,-0.146909281611443,-0.16321662068367,0.525991380214691,0.161619201302528,0.834992468357086,-0.538876056671143,-0.051809087395668,-0.840790390968323,0.926338732242584,0.34928885102272,0.14104562997818,0.926338732242584,-0.34928885102272,0.14104562997818,-0.538875997066498,0.051809087395668,-0.840790390968323
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.0798680633306503,0.990196049213409,0.0798680633306503,0.00980386231094599,0.21727654337883,0.00980386231094599,0.21727654337883,0.990196049213409,0.330997616052628,0.990196049213409,0.330997616052628,0.00980386231094599,0.446668654680252,0.00980386231094599,0.446668654680252,0.990196049213409,0.60497522354126,0.254194855690002,0.46756711602211,0.0481885112822056,0.560211777687073,0.00980386231094599,0.675882279872894,0.183281570672989,0.905094921588898,0.0481885112822056,0.767686784267426,0.254194855690002,0.696779727935791,0.183281570672989,0.812450230121613,0.00980386231094599,0.00896139722317457,0.990196049213409,0.00896139722317457,0.00980386231094599,0.23835352063179,0.990196049213409,0.23835352063179,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0,16,17,1,4,18,19,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509552352, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -148.6484375,0,360.312744140625,-125.16015625,0,303.61474609375,-111.486328125,0,367.734375,-93.8701171875,0,309.86865234375,-104.5322265625,317.46484375,369.123046875,-148.6484375,317.46484375,360.312744140625,-125.16015625,317.46484375,303.61474609375,-88.015625,317.46484375,311.038818359375
- }
- PolygonVertexIndex: *24 {
- a: 4,5,0,-3,5,6,1,-1,3,2,0,-2,7,4,2,-4,6,7,3,-2,5,4,7,-7
- }
- Edges: *12 {
- a: 2,1,6,5,11,3,15,8,0,4,16,12
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.963136553764343,-0.0860988944768906,0.254862278699875,-0.650697231292725,-0.0971219092607498,-0.753100574016571,0.644972801208496,-0.107395969331265,0.756621599197388,0.959574460983276,-0.109955668449402,-0.259087979793549,0.655983805656433,0.0919819846749306,0.749149143695831,-0.96167916059494,0.102053850889206,0.254476696252823,-0.649445056915283,0.115072093904018,-0.751651287078857,0.963866651058197,0.0927020683884621,-0.249734625220299
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.753114640712738,0.0139677058905363,0.657741069793701,-0.271316438913345,-0.220481440424919,-0.936896622180939,-0.246577322483063,0.661321461200714,-0.708416223526001,-0.679062724113464,0.373615682125092,0.63189023733139,0.118206389248371,0.991780936717987,0.0489693582057953,0.208051025867462,0.977655053138733,-0.0300896018743515,-0.10029037296772,0.994090378284454,-0.0415472909808159,-0.0998127907514572,0.994146704673767,-0.0413494482636452,0.172200560569763,-0.498777627944946,0.84945148229599,-0.45758181810379,-0.847246468067169,0.269800633192062,-0.0890394300222397,0.996028125286102,-8.21426510810852e-007,-0.147621437907219,0.989043951034546,-1.29640102386475e-006,0.256218791007996,-0.066100150346756,0.964356124401093,-0.749460995197296,-0.0381910838186741,0.660946011543274,-0.45758181810379,-0.847246468067169,0.269800633192062,0.172200560569763,-0.498777627944946,0.84945148229599,0.687447190284729,-0.333654701709747,-0.645051181316376,0.239781782031059,-0.71031641960144,0.661781907081604,0.223926812410355,-0.259419649839401,0.939445793628693,0.575785458087921,-0.70969021320343,-0.405969053506851,-0.271316438913345,-0.220481440424919,-0.936896622180939,-0.749460995197296,-0.0381910838186741,0.660946011543274,0.239781782031059,-0.71031641960144,0.661781907081604,0.208051025867462,0.977655053138733,-0.0300896018743515
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.050036434084177,0.995662689208984,-0.078435555100441,0.0395063757896423,0.970037639141083,-0.239721238613129,0.107552297413349,0.745144903659821,0.658172905445099,0.350548088550568,0.921345412731171,-0.168043360114098,0.247387737035751,-0.0771735981106758,0.965838372707367,-0.731393277645111,0.175923362374306,0.658873856067657,-0.752685189247131,-0.0484940260648727,0.6565922498703,0.249810233712196,0.0652636736631393,0.966092884540558,0.2226292937994,0.859727084636688,0.459679841995239,-0.612069487571716,0.520230352878571,0.595593273639679,0.253849923610687,0.0226935837417841,0.966977477073669,-0.744849681854248,-0.111172944307327,0.657905399799347,-0.0728903114795685,0.993497431278229,0.0874637439846992,-0.0894058495759964,0.995028018951416,-0.0438840575516224,-0.612069487571716,0.520230352878571,0.595593273639679,0.2226292937994,0.859727084636688,0.459679841995239,0.325019299983978,0.935645759105682,-0.137584418058395,0.11604206264019,0.697751343250275,0.70687860250473,0.17050988972187,0.959484875202179,0.224310413002968,0.495039612054825,0.697787284851074,-0.517714858055115,0.0395063757896423,0.970037639141083,-0.239721238613129,-0.0894058495759964,0.995028018951416,-0.0438840575516224,0.11604206264019,0.697751343250275,0.70687860250473,-0.731393277645111,0.175923362374306,0.658873856067657
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *36 {
- a: 0.0800671055912972,-0.0211554132401943,0.00980313401669264,0.486420184373856,0.00980313401669264,0.00955669023096561,0.0689909979701042,-0.0231984369456768,0.581865429878235,0.486420184373856,0.491557061672211,0.486420184373856,0.491557061672211,0.00955669023096561,0.581865429878235,0.00955669023096561,0.862565040588379,0.415806591510773,0.95473325252533,0.443864703178406,0.942914664745331,0.50305587053299,0.852605700492859,0.465645045042038,0.864428997039795,0.406480759382248,0.9569451212883,0.432788819074631,0.269301056861877,0.48836812376976,0.328449130058289,0.995947241783142,0.319122195243835,0.997990489006042,0.269301056861877,0.965231597423553
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,9,8,14,15,16,17,1,13,15,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509538528, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -125.240234375,599.1552734375,303.65478515625,-104.5185546875,317.884521484375,369.1259765625,-88.00390625,317.884521484375,311.041259765625,-55.001953125,383.98486328125,317.63720703125,-148.6484375,317.884521484375,360.312744140625,-125.16015625,317.884521484375,303.61474609375,-148.728515625,599.1552734375,360.352783203125,-65.32421875,383.98486328125,376.95361328125
- }
- PolygonVertexIndex: *24 {
- a: 0,3,2,-6,3,7,1,-3,6,0,5,-5,2,1,4,-6,6,4,1,-8,6,7,3,-1
- }
- Edges: *12 {
- a: 8,1,6,4,11,3,10,13,2,0,19,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.336582750082016,0.652452051639557,-0.678983390331268,0.0123468916863203,-0.248927935957909,0.968443334102631,0.432288438081741,-0.292346566915512,-0.85302996635437,0.848874747753143,0.10775126516819,-0.517495214939117,-0.93696540594101,-0.110444404184818,0.331508100032806,-0.608022749423981,-0.124323256313801,-0.784125030040741,-0.719973623752594,0.693993389606476,0.00334662012755871,0.474414080381393,0.0940945446491241,0.875258505344391
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.786645889282227,-0.201513960957527,-0.583592593669891,0.518665671348572,-0.358643442392349,0.7761190533638,0.811622023582459,-0.286071866750717,0.509345412254334,0.793861746788025,-0.0832811892032623,-0.602368533611298,0.300347864627838,-0.903932511806488,0.304462403059006,-0.789685487747192,-0.393882989883423,0.47037547826767,-0.999805986881256,-0.0179371368139982,0.00813619326800108,0.0929222404956818,-0.926508784294128,0.364618927240372,0.667594313621521,0.691252589225769,0.276564329862595,0.863261938095093,0.50182843208313,0.0542869120836258,-0.131905406713486,0.989755094051361,-0.0546444654464722,-0.136600986123085,0.989008486270905,-0.0565896965563297,-0.0298926308751106,0.940821170806885,-0.337582588195801,-0.271850854158401,-0.932872176170349,-0.236318856477737,-0.136600986123085,0.989008486270905,-0.0565896965563297,-0.0726554989814758,0.992231965065002,-0.10098047554493,-0.237978145480156,-0.242351487278938,-0.940548896789551,-0.340679049491882,0.0778448805212975,-0.936951398849487,-0.936317682266235,0.337036222219467,0.0985688492655754,-0.801264822483063,0.457918226718903,0.385079026222229,-0.237978145480156,-0.242351487278938,-0.940548896789551,-0.789685487747192,-0.393882989883423,0.47037547826767,-0.487158983945847,-0.220486655831337,-0.845021724700928,0.863261938095093,0.50182843208313,0.0542869120836258
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.517590820789337,0.730546712875366,0.445422649383545,0.101968482136726,0.927235007286072,0.360330283641815,0.392933249473572,0.912521958351135,-0.113609313964844,-0.00958554167300463,0.988740622997284,-0.149332329630852,0.434974551200867,0.413879036903381,0.799688398838043,-0.389009177684784,0.91433173418045,0.112558595836163,-0.0153457745909691,0.968355894088745,0.249101042747498,0.896934747695923,0.236886039376259,0.373353660106659,-0.189620420336723,-0.201353192329407,0.960989594459534,-0.376152724027634,0.567868411540985,0.732143819332123,-0.782885253429413,-0.0702052488923073,0.618192434310913,0.321614146232605,0.0983069092035294,0.941753745079041,0.901239812374115,0.171432361006737,0.39796707034111,0.962260127067566,-0.260354340076447,-0.0791892856359482,0.321614146232605,0.0983069092035294,0.941753745079041,0.790588021278381,-0.00442742370069027,-0.612332224845886,0.651923656463623,0.677966773509979,-0.339641928672791,-0.0776747837662697,0.990829050540924,0.110564053058624,0.350937008857727,0.907987594604492,0.228914275765419,0.36456298828125,0.884000658988953,-0.292637467384338,0.651923656463623,0.677966773509979,-0.339641928672791,-0.389009177684784,0.91433173418045,0.112558595836163,-0.205152958631516,0.969420075416565,-0.134673550724983,-0.376152724027634,0.567868411540985,0.732143819332123
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *32 {
- a: 0.269301056861877,0.00955669023096561,0.381039261817932,0.984426259994507,0.328468173742294,0.995943069458008,0.269301056861877,0.487394154071808,0.87493896484375,0.353896737098694,0.969416797161102,0.370337009429932,0.956949651241302,0.432766199111938,0.864432811737061,0.406461715698242,0.581865429878235,0.965231597423553,0.491557061672211,0.965231597423553,0.491557061672211,0.487394154071808,0.581865429878235,0.487394154071808,0.08008973300457,-0.02115124091506,0.00980313401669264,0.965231597423553,0.00980313401669264,0.487394154071808,0.14252008497715,-0.00963576696813107
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,7,12,11,3,13,14,12,15,13,5,1,9
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509525216, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 0,407.428466796875,389.999755859375,-148.3369140625,600,360.312744140625,0,407.428466796875,328.630126953125,0,600,389.999755859375,0,600,328.630126953125,-65.0126953125,384.166748046875,376.95361328125,-124.8486328125,600,303.61474609375,-54.6904296875,384.166748046875,317.63720703125
- }
- PolygonVertexIndex: *24 {
- a: 1,3,4,-7,2,0,5,-8,4,3,0,-3,1,5,0,-4,4,2,7,-7,5,1,6,-8
- }
- Edges: *12 {
- a: 0,11,4,9,1,5,7,12,3,18,2,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.268952339887619,-0.114105649292469,0.95637047290802,-0.744434952735901,0.137941464781761,0.653290688991547,0.607099890708923,-0.137564137578011,-0.782627582550049,0.299474716186523,0.298241049051285,0.906293094158173,0.596031904220581,0.361326962709427,-0.717069566249847,-0.59510463476181,-0.321304470300674,0.736623287200928,-0.461485207080841,0.20889113843441,-0.862204134464264,-0.314987599849701,-0.345071882009506,-0.884142637252808
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.182270348072052,-0.983248472213745,-8.82968306541443e-005,-0.705645859241486,0.708564758300781,0,-0.518622934818268,0.855003118515015,-0.000251203804509714,-0.411752760410309,-0.911295533180237,-0.000398710370063782,-0.177545085549355,-0.983484923839569,0.0351439788937569,-0.390563368797302,-0.920576155185699,-7.45058148510225e-009,-0.503685593605042,0.863354325294495,-0.0303357429802418,0.248249977827072,0.869176506996155,-0.427673101425171,-0.518401920795441,0.85513710975647,0,-0.705645859241486,0.708564758300781,0,0.390563368797302,0.920576155185699,7.45058148510225e-009,0.220990031957626,0.975276112556458,0,0.0338931754231453,0.984972357749939,-0.169353812932968,-0.192992940545082,0.946913838386536,0.257114678621292,-0.316692739725113,0.927269101142883,0.199694484472275,-0.0852810442447662,0.954454302787781,-0.285909652709961,0.222737655043602,-0.932386040687561,-0.284682929515839,0.249213933944702,-0.902248024940491,0.351910352706909,0.100612781941891,-0.938454389572144,0.330424576997757,0.0524049550294876,-0.963767170906067,-0.261546581983566,0.618968307971954,0.401360243558884,0.675120890140533,0.643975079059601,0.406807124614716,0.647922873497009,-0.886935770511627,-0.0873841568827629,0.453551471233368,0.248249977827072,0.869176506996155,-0.427673101425171
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.642334878444672,0.11914125084877,-0.757107257843018,0.642167329788208,0.639521956443787,-0.422649770975113,-0.613005876541138,-0.372038394212723,-0.697001576423645,0.785806059837341,-0.354830920696259,-0.506560802459717,0.774536967277527,-0.117615781724453,0.621497273445129,-0.880411744117737,0.373523235321045,0.292156755924225,0.626219809055328,0.389079421758652,0.675622582435608,-0.916054010391235,0.354200124740601,0.188115730881691,-0.613192796707153,-0.371730238199234,-0.69700163602829,0.642167329788208,0.639521956443787,-0.422649770975113,0.880411744117737,-0.373523235321045,-0.292156755924225,-0.763278007507324,0.172952890396118,-0.622490167617798,0.666834235191345,0.103930801153183,0.737923145294189,0.780130863189697,-0.0108470413833857,0.625522255897522,0.909599125385284,0.356583893299103,-0.213254749774933,0.950285196304321,-0.00833307858556509,-0.311269193887711,0.771449208259583,-0.00996171124279499,0.636212885379791,0.754534482955933,0.408686459064484,0.513471841812134,0.943747758865356,-0.0151235805824399,-0.330320119857788,0.885598719120026,0.165883645415306,-0.433817386627197,-0.512570679187775,0.857714056968689,-0.0399740673601627,-0.176387876272202,0.903039395809174,-0.391672313213348,0.0193999353796244,0.974026918411255,0.225599557161331,-0.916054010391235,0.354200124740601,0.188115730881691
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.772797524929047,0.246324211359024,0.725516796112061,0.00955669023096561,0.823263049125671,0.00955669023096561,0.863106489181519,0.20891335606575,0.892449140548706,0.266288369894028,0.990195333957672,0.266288369894028,0.969416797161102,0.370337009429932,0.87493896484375,0.353896737098694,0.702385067939758,0.965231597423553,0.604636192321777,0.965231597423553,0.604636192321777,0.00955669023096561,0.702385067939758,0.00955669023096561,0.00980313401669264,0.965231597423553,0.14252008497715,-0.00963576696813107,0.246570646762848,0.00955669023096561,0.246570646762848,0.965231597423553,0.468657732009888,0.00955669023096561,0.468657732009888,0.965231597423553,0.381039261817932,0.984426259994507,0.269301056861877,0.00955669023096561
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,13,0,19,7
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509539040, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 149.423828125,600,360.274169921875,105.072265625,317.884521484375,369.1259765625,88.5595703125,317.884521484375,311.041259765625,66.3291015625,384.166748046875,376.95361328125,125.76171875,317.884521484375,303.61474609375,149.24609375,317.884521484375,360.31298828125,125.939453125,600,303.575927734375,56.0087890625,384.166748046875,317.63720703125
- }
- PolygonVertexIndex: *24 {
- a: 0,3,1,-6,3,7,2,-2,6,0,5,-5,2,4,5,-2,6,4,2,-8,3,0,6,-8
- }
- Edges: *12 {
- a: 6,1,5,11,3,10,2,12,0,8,19,4
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.721726953983307,0.692176043987274,-0.00157718127593398,-0.0129456967115402,-0.248730465769768,0.968486189842224,-0.434682846069336,-0.291841238737106,-0.851985573768616,-0.473816424608231,0.09425338357687,0.875565111637115,0.609030902385712,-0.124649651348591,-0.783290386199951,0.937714755535126,-0.110648706555367,0.329314172267914,0.339703321456909,0.650557398796082,-0.679247200489044,-0.849512994289398,0.107806108891964,-0.516435325145721
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.051510363817215,0.0514369457960129,-0.997346997261047,-0.746678054332733,0.484116643667221,-0.456183075904846,0.937493145465851,0.333840757608414,0.0982697159051895,0.309807270765305,0.695258140563965,-0.648564279079437,-0.438411176204681,0.837039291858673,-0.327354520559311,0.517640888690948,0.359329551458359,-0.776485919952393,0.0942709371447563,0.926094830036163,-0.365323811769485,-0.493094265460968,-0.841019570827484,-0.222585141658783,-0.692893147468567,0.661462426185608,0.286995887756348,-0.602300643920898,0.629134118556976,0.491349339485168,0.136567339301109,0.989014565944672,-0.0565661005675793,-0.0238245539367199,0.98425281047821,-0.175154253840446,-0.899972021579742,0.175625011324883,0.399006485939026,-0.0238245539367199,0.98425281047821,-0.175154253840446,0.309807270765305,0.695258140563965,-0.648564279079437,-0.493094265460968,-0.841019570827484,-0.222585141658783,0.340351581573486,-0.758278429508209,-0.556034803390503,-0.79308009147644,-0.0829320996999741,-0.60344523191452,-0.899972021579742,0.175625011324883,0.399006485939026,-0.518221139907837,-0.353963822126389,0.7785604596138,-0.746678054332733,0.484116643667221,-0.456183075904846,-0.602300643920898,0.629134118556976,0.491349339485168,0.340351581573486,-0.758278429508209,-0.556034803390503,0.517640888690948,0.359329551458359,-0.776485919952393
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.690258622169495,-0.719893455505371,-0.0727776736021042,0.466872423887253,0.869912266731262,0.159005418419838,0.347762852907181,-0.909221410751343,-0.228861302137375,0.157195523381233,-0.710192203521729,-0.686233639717102,0.763736665248871,0.538963496685028,0.355281263589859,-0.101860515773296,0.926962852478027,0.361059963703156,-0.895635902881622,0.239117532968521,0.375045567750931,-0.869879603385925,0.480436533689499,0.111760012805462,-0.636003792285919,-0.373152285814285,-0.675467729568481,-0.341092497110367,0.35367015004158,-0.870961129665375,0.319437474012375,-0.0980164110660553,-0.942524552345276,-0.792788565158844,-0.125335887074471,-0.596470534801483,-0.0331834219396114,-0.940204560756683,0.338990181684494,-0.792788565158844,-0.125335887074471,-0.596470534801483,0.157195523381233,-0.710192203521729,-0.686233639717102,-0.869879603385925,0.480436533689499,0.111760012805462,0.876790940761566,0.0422959215939045,0.47900801897049,-0.0102593256160617,-0.988728940486908,0.149365395307541,-0.0331834219396114,-0.940204560756683,0.338990181684494,0.0988659039139748,-0.929025113582611,-0.356564313173294,0.466872423887253,0.869912266731262,0.159005418419838,-0.341092497110367,0.35367015004158,-0.870961129665375,0.876790940761566,0.0422959215939045,0.47900801897049,-0.101860515773296,0.926962852478027,0.361059963703156
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *32 {
- a: 0.246738478541374,0.964938998222351,0.113925084471703,-0.00963449385017157,0.176396399736404,-0.0211474653333426,0.246738478541374,0.48724639415741,0.969426155090332,0.399261474609375,0.874976992607117,0.415694177150726,0.864474177360535,0.363081187009811,0.956962883472443,0.336788892745972,0.702716529369354,0.964938998222351,0.612435519695282,0.964938998222351,0.612435519695282,0.48724639415741,0.702716529369354,0.48724639415741,0.409621864557266,0.995591282844543,0.468843132257462,0.00955379288643599,0.468843132257462,0.48724639415741,0.357002794742584,0.984096646308899
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,11,3,7,13,14,12,15,1,9,13,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509549792, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 0.44921875,600,389.999755859375,0.44921875,600,328.630126953125,0.44921875,407.428466796875,389.999755859375,0.44921875,407.428466796875,328.630126953125,125.76171875,600,303.61474609375,55.517578125,384.166748046875,317.63720703125,149.24609375,600,360.31298828125,65.837890625,384.166748046875,376.95361328125
- }
- PolygonVertexIndex: *24 {
- a: 0,6,4,-2,0,1,3,-3,3,5,7,-3,4,5,3,-2,0,2,7,-7,6,7,5,-5
- }
- Edges: *12 {
- a: 0,7,2,3,6,1,5,8,9,12,18,10
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.298423439264297,0.298392564058304,0.906589925289154,-0.594417929649353,0.36128968000412,-0.718426823616028,-0.268399357795715,-0.114455789327621,0.956484079360962,-0.605612635612488,-0.138136103749275,-0.783678293228149,0.460256814956665,0.209534823894501,-0.862704396247864,0.313246220350266,-0.344836443662643,-0.884852826595306,0.742853701114655,0.138564556837082,0.654956877231598,0.593149781227112,-0.320981085300446,0.738339006900787
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.707070231437683,-0.707143425941467,1.49011611938477e-008,-0.183368518948555,0.983044326305389,1.33365381316253e-006,-0.414329707622528,0.910126924514771,6.064772605896e-006,-0.519394338130951,-0.85453474521637,3.7848949432373e-006,0.707070231437683,0.707143425941467,-1.49011611938477e-008,0.519390940666199,0.854536771774292,1.49011611938477e-008,-0.222381636500359,0.974959671497345,7.45058059692383e-009,-0.392261028289795,0.919853985309601,0,-0.178781852126122,0.983260452747345,-0.035156287252903,-0.668115019798279,-0.742188036441803,0.0527194887399673,-0.504371643066406,-0.862964391708374,0.0300305038690567,-0.392261028289795,0.919853985309601,0,-0.0522922873497009,-0.963662683963776,-0.261953890323639,-0.528860688209534,-0.837238907814026,0.139059141278267,-0.248069167137146,-0.902969717979431,0.350866615772247,-0.221582099795341,-0.932394027709961,-0.285557210445404,0.0846267864108086,0.954403519630432,-0.286273092031479,0.315001785755157,0.927902102470398,0.199428349733353,0.192050874233246,0.947023093700409,0.257417768239975,-0.0338998548686504,0.984875679016113,-0.169913843274117,-0.652785658836365,0.366884797811508,0.662771880626678,-0.60744309425354,0.423456430435181,0.672084510326386,-0.528860688209534,-0.837238907814026,0.139059141278267,0.887407004833221,-0.0801943019032478,0.453958064317703
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.641089081764221,0.641022741794586,-0.422012776136398,0.643851518630981,0.120099470019341,-0.755666196346283,-0.785171747207642,-0.357441246509552,-0.505708515644073,0.613919317722321,-0.373149067163467,-0.695602595806122,0.641089081764221,-0.641022741794586,0.422012776136398,-0.613922119140625,0.373144388198853,0.695602536201477,-0.764054715633392,-0.174275666475296,0.621166944503784,0.879825711250305,0.375191450119019,0.291784316301346,-0.775416195392609,-0.118816360831261,0.620171308517456,0.6749067902565,-0.574669241905212,0.462878257036209,-0.62752103805542,0.390209853649139,0.673760831356049,0.879825711250305,0.375191450119019,0.291784316301346,0.886244416236877,-0.165678843855858,0.432575255632401,0.788785934448242,-0.424404144287109,0.444632351398468,0.756105184555054,-0.406895697116852,-0.512582540512085,0.773025691509247,0.0105498116463423,-0.634287059307098,0.950674414634705,0.00870879460126162,0.310068368911743,0.910349190235138,-0.35482057929039,0.212994590401649,0.781850218772888,0.0108886556699872,-0.623371183872223,0.668594896793365,-0.104018189013004,-0.736315906047821,-0.148456960916519,-0.91988879442215,0.362994641065598,-0.528380811214447,-0.847145676612854,0.0561953485012054,0.788785934448242,-0.424404144287109,0.444632351398468,0.0259360540658236,-0.974507033824921,-0.222852647304535
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.725515186786652,0.24648605287075,0.772781550884247,0.00955379288643599,0.863063156604767,0.0469472333788872,0.823231756687164,0.24648605287075,0.589277565479279,0.964938998222351,0.491558313369751,0.964938998222351,0.491558313369751,0.00955379288643599,0.589277565479279,0.00955379288643599,0.892481803894043,0.503382503986359,0.874976992607117,0.415694177150726,0.969426155090332,0.399261474609375,0.990198373794556,0.503382503986359,0.468843132257462,0.00955379288643599,0.357002794742584,0.984096646308899,0.26930433511734,0.964938998222351,0.26930433511734,0.00955379288643599,0.00980622600764036,0.964938998222351,0.00980622600764036,0.00955379288643599,0.113925084471703,-0.00963449385017157,0.246738478541374,0.964938998222351
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,19,10,13,2
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509528800, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 149.24609375,0,360.31298828125,125.76171875,0,303.61474609375,112.046875,0,367.734619140625,94.43359375,0,309.86865234375,105.0830078125,317.38427734375,369.12353515625,149.24609375,317.38427734375,360.31298828125,125.76171875,317.38427734375,303.61474609375,88.568359375,317.38427734375,311.03955078125
- }
- PolygonVertexIndex: *24 {
- a: 0,2,3,-2,5,4,2,-1,6,5,0,-2,7,6,1,-4,4,7,3,-3,5,6,7,-5
- }
- Edges: *12 {
- a: 11,3,7,0,2,1,5,4,8,15,12,16
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.96296101808548,-0.0861837044358253,0.255496352910995,0.650435090065002,-0.0972160026431084,-0.753314852714539,-0.644698023796082,-0.107503764331341,0.756840407848358,-0.959387421607971,-0.110070526599884,-0.259731113910675,-0.655733406543732,0.0920744985342026,0.749357163906097,0.961500108242035,0.10216198861599,0.255108773708344,0.649180293083191,0.115191951394081,-0.751861572265625,-0.96369731426239,0.092787891626358,-0.25035572052002
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0891425237059593,-0.996018886566162,7.13393092155457e-007,-0.457826524972916,0.847160220146179,-0.269656479358673,0.172690212726593,0.498875290155411,-0.84929484128952,-0.147819817066193,-0.989014387130737,1.10268592834473e-006,0.216109618544579,0.292327880859375,-0.931579947471619,0.389250993728638,0.891682028770447,0.231056332588196,0.6790771484375,0.374090224504471,0.631593942642212,0.24694250524044,0.662397861480713,-0.707282543182373,-0.118919029831886,0.991681456565857,0.0492561832070351,-0.118302077054977,0.991782486438751,0.0487046726047993,0.0999583899974823,0.994129836559296,-0.0414026975631714,0.100409768521786,0.994076609611511,-0.0415896624326706,-0.252192676067352,-0.00844011176377535,0.967640221118927,-0.361211240291595,-0.823212385177612,-0.438004404306412,-0.57478278875351,-0.711348652839661,-0.404484838247299,-0.224386274814606,-0.260227471590042,0.939112603664398,-0.748758137226105,0.0479799844324589,-0.661104559898376,0.256856828927994,0.0662242919206619,-0.964177846908569,0.172690212726593,0.498875290155411,-0.84929484128952,-0.457826524972916,0.847160220146179,-0.269656479358673,-0.118302077054977,0.991782486438751,0.0487046726047993,-0.361211240291595,-0.823212385177612,-0.438004404306412,0.258851617574692,0.0948427021503448,-0.961249649524689,0.389250993728638,0.891682028770447,0.231056332588196
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: -0.254479110240936,0.0227762758731842,0.966810047626495,0.612175941467285,0.52034854888916,0.595380544662476,-0.223055735230446,0.859655678272247,0.459606528282166,0.745039343833923,-0.111354142427444,0.657660067081451,0.169747442007065,-0.950845539569855,-0.258995056152344,0.646913766860962,-0.443199306726456,0.62054568529129,0.351025313138962,-0.921140372753143,0.168171867728233,0.108284093439579,-0.744178473949432,-0.659145712852478,-0.751281082630157,-0.057434506714344,-0.657478511333466,0.248036682605743,0.077009454369545,-0.96568500995636,0.250428259372711,-0.0654081851243973,-0.965923130512238,-0.752895832061768,0.0485887974500656,-0.656343698501587,-0.0876722782850266,-0.995650231838226,-0.0315341427922249,0.669396281242371,-0.555924654006958,0.492804646492004,0.496547073125839,-0.696083545684814,0.518564224243164,0.170957788825035,-0.959252893924713,-0.224960654973984,0.0968250259757042,0.994595527648926,-0.0374794602394104,0.0728844106197357,0.99348121881485,0.0876533836126328,-0.223055735230446,0.859655678272247,0.459606528282166,0.612175941467285,0.52034854888916,0.595380544662476,0.248036682605743,0.077009454369545,-0.96568500995636,0.669396281242371,-0.555924654006958,0.492804646492004,-0.0654469430446625,-0.991158664226532,-0.115417696535587,0.646913766860962,-0.443199306726456,0.62054568529129
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *36 {
- a: 0.94293200969696,0.266450226306915,0.954747200012207,0.325682640075684,0.862607002258301,0.353727757930756,0.852650463581085,0.303843677043915,0.246738478541374,0.486494779586792,0.176413878798485,-0.0211506858468056,0.187502399086952,-0.0231942161917686,0.246738478541374,0.00955379288643599,0.702716529369354,0.486494779586792,0.612435519695282,0.486494779586792,0.612435519695282,0.00955379288643599,0.702716529369354,0.00955379288643599,0.409636557102203,0.995594441890717,0.468843132257462,0.487997978925705,0.468843132257462,0.964938998222351,0.418976366519928,0.997634708881378,0.956959366798401,0.336771428585052,0.864471197128296,0.363066434860229
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,2,1,9,13,17,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509529312, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 275.7734375,0,275.771484375,149.54296875,600,360.0146484375,232.37890625,0,232.37646484375,126.05859375,600,303.31640625,149.54296875,0,360.0146484375,275.7734375,600,275.771484375,126.05859375,0,303.31640625,232.37890625,600,232.37646484375
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.836118459701538,-0.0803457871079445,0.542632818222046,0.180360123515129,0.0803748443722725,0.980311155319214,-0.179980978369713,-0.103119090199471,-0.978250026702881,-0.83436131477356,0.103088207542896,-0.541492402553558,0.180360123515129,-0.0803748443722725,0.980311155319214,0.836118459701538,0.0803457871079445,0.542632818222046,-0.83436131477356,-0.103088207542896,-0.541492402553558,-0.179980978369713,0.103119090199471,-0.978250026702881
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0485470369458199,0.996168494224548,-0.0727431699633598,0.0485470369458199,0.996168494224548,0.0727431699633598,0.154931902885437,0.983528614044189,-0.0930998548865318,-0.154931902885437,0.983528614044189,0.0930998623371124,0.0622484758496284,0.99369078874588,0.0932940915226936,-0.0622484758496284,0.99369078874588,-0.0932940915226936,-0.114763140678406,0.993317127227783,-0.0122722834348679,0.114763148128986,0.993317127227783,0.0122722834348679,-0.407050937414169,0.913405537605286,9.46223849496164e-007,-0.0956523865461349,0.995414793491364,-1.19581818580627e-006,-0.49707442522049,-0.867707908153534,-1.36122125695692e-005,-0.122620061039925,-0.992453694343567,-1.54227018356323e-006,-0.0956520065665245,-0.995414853096008,-1.79558992385864e-006,-0.407027155160904,-0.913416087627411,-4.29153487857548e-006,-0.12262088060379,0.992453694343567,-2.79396800806353e-007,-0.497108697891235,0.867688298225403,-5.2377586143848e-006,0.332304149866104,0.933075189590454,-0.137640163302422,0.114763148128986,0.993317127227783,0.0122722834348679,-0.114763140678406,0.993317127227783,-0.0122722834348679,-0.332304149866104,0.933075189590454,0.137640163302422,-0.127076983451843,0.983719110488892,0.127075552940369,-0.154931902885437,0.983528614044189,0.0930998623371124,0.154931902885437,0.983528614044189,-0.0930998548865318,0.127076983451843,0.983719110488892,-0.127075552940369
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.982401847839355,0.0344712287187576,-0.183571100234985,0.982401847839355,-0.0344712287187576,-0.183571100234985,0.52621454000473,-0.161913633346558,-0.834794700145721,0.526214599609375,0.161913648247719,-0.834794700145721,-0.981698513031006,0.0441034063696861,0.18526454269886,-0.981698513031006,-0.0441034063696861,0.18526454269886,-0.539138734340668,-0.05190384760499,0.840616106987,-0.539138793945313,0.0519038513302803,0.840616106987,0.89542144536972,0.399036705493927,-0.197459310293198,0.540144801139832,0.0519031248986721,-0.839970052242279,0.848836600780487,-0.486260563135147,-0.20742966234684,0.537406325340271,-0.0663965493440628,-0.840705633163452,-0.540144860744476,0.0519024170935154,0.839970052242279,-0.895432233810425,0.399012446403503,0.197459310293198,-0.537406086921692,-0.0663980320096016,0.840705633163452,-0.848816573619843,-0.486295580863953,0.20742966234684,0.925766944885254,-0.350586235523224,-0.141580015420914,-0.539138793945313,0.0519038513302803,0.840616106987,-0.539138734340668,-0.05190384760499,0.840616106987,0.925766944885254,0.350586235523224,-0.141580015420914,-0.975427389144897,-0.147184237837791,0.163946434855461,0.526214599609375,0.161913648247719,-0.834794700145721,0.52621454000473,-0.161913633346558,-0.834794700145721,-0.975427389144897,0.147184237837791,0.163946434855461
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *40 {
- a: 0.00896489806473255,0.990196049213409,0.00896489806473255,0.00980386231094599,0.14661705493927,0.00980386231094599,0.14661705493927,0.990196049213409,0.238397285342216,0.990196049213409,0.238397285342216,0.00980386231094599,0.354312032461166,0.00980386231094599,0.354312032461166,0.990196049213409,0.467654258012772,0.216059133410454,0.605305016040802,0.00980386231094599,0.676212072372437,0.0807109177112579,0.560298919677734,0.254431337118149,0.767811238765717,0.00980386231094599,0.905462086200714,0.216059133410454,0.812817394733429,0.254431337118149,0.696904182434082,0.0807109177112579,0.446956098079681,0.990196049213409,0.446956098079681,0.00980386231094599,0.217523723840714,0.990196049213409,0.217523723840714,0.00980386231094599
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,7,6,17,18,3,2,19
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509534432, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 360.3125,0,149.24658203125,276.22265625,600,275.47314453125,303.6171875,0,125.76123046875,232.828125,600,232.078125,276.22265625,0,275.47314453125,360.3125,600,149.24658203125,232.828125,0,232.078125,303.6171875,600,125.76123046875
- }
- PolygonVertexIndex: *24 {
- a: 1,4,0,-6,7,2,6,-4,1,5,7,-4,0,4,6,-3,1,3,6,-5,7,5,0,-3
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,15,13,2,9,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.980484247207642,-0.0803891345858574,0.179410576820374,0.543074309825897,0.0803147107362747,0.835834860801697,-0.541933476924896,-0.103052914142609,-0.834079205989838,-0.97842276096344,0.10313007235527,-0.179033413529396,0.543074309825897,-0.0803147107362747,0.835834860801697,0.980484247207642,0.0803891345858574,0.179410576820374,-0.97842276096344,-0.10313007235527,-0.179033413529396,-0.541933476924896,0.103052914142609,-0.834079205989838
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0727410688996315,0.996172964572906,-0.048458781093359,0.0727410688996315,0.996172964572906,0.048458781093359,0.0728006064891815,0.996166706085205,0.0484984442591667,-0.0728006064891815,0.996166706085205,-0.0484984442591667,-0.0122769977897406,-0.993318557739258,-0.114750564098358,0.0122769977897406,-0.993318557739258,0.114750564098358,0.0933642387390137,-0.993689477443695,0.0621647834777832,-0.0933642387390137,-0.993689477443695,-0.0621647834777832,2.38418579101563e-007,0.995415151119232,-0.0956488102674484,1.22189510420867e-006,0.912575721740723,-0.408907651901245,4.20957803726196e-007,-0.992453694343567,-0.122620806097984,1.47521518556459e-006,-0.866513848304749,-0.499153107404709,-1.2069941703885e-006,0.912575840950012,0.40890771150589,-2.30967998504639e-007,0.995415151119232,0.0956488102674484,-1.49011611938477e-006,-0.866513848304749,0.499153137207031,-4.32133674621582e-007,-0.992453694343567,0.122620820999146,0.255769014358521,0.93229079246521,-0.255766123533249,0.126915708184242,0.983760833740234,-0.126914277672768,-0.126915708184242,0.983760833740234,0.126914277672768,-0.255769014358521,0.93229079246521,0.255766123533249,-0.0122769977897406,-0.993318557739258,-0.114750564098358,0.137113705277443,-0.933615267276764,-0.33100226521492,-0.137113705277443,-0.933615267276764,0.33100226521492,0.0122769977897406,-0.993318557739258,0.114750564098358
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.83652800321579,0.034482803195715,-0.546838045120239,0.83652800321579,-0.034482803195715,-0.546838045120239,0.182621613144875,0.0344907566905022,-0.982578098773956,0.182621613144875,-0.0344907566905022,-0.982578098773956,0.840331733226776,0.0519471690058708,-0.539577662944794,0.840331733226776,-0.0519471690058708,-0.539577662944794,0.184314742684364,-0.0441081188619137,-0.981877148151398,0.184314742684364,0.0441081188619137,-0.981877148151398,0.83968460559845,-0.0519446134567261,-0.54058438539505,0.196597874164581,-0.400927811861038,-0.894766092300415,0.840421497821808,0.0664526745676994,-0.537843823432922,0.206613212823868,0.488382965326309,-0.847816646099091,0.196597844362259,0.400927752256393,-0.89476603269577,0.83968460559845,0.0519446022808552,-0.54058438539505,0.20661324262619,-0.488383054733276,-0.847816705703735,0.840421497821808,-0.0664526894688606,-0.537843823432922,0.799782633781433,-0.352680623531342,-0.485761374235153,-0.163037195801735,0.146897956728935,0.975622832775116,-0.163037195801735,-0.146897956728935,0.975622832775116,0.799782633781433,0.352680623531342,-0.485761374235153,0.840331733226776,0.0519471690058708,-0.539577662944794,-0.140891164541245,-0.349142134189606,0.926417648792267,-0.140891164541245,0.349142134189606,0.926417648792267,0.840331733226776,-0.0519471690058708,-0.539577662944794
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *44 {
- a: 0.00959460530430079,0.990196049213409,0.00959460530430079,0.00980405416339636,0.215847298502922,0.00980405416339636,0.215847298502922,0.990196049213409,0.354416966438293,0.00980385951697826,0.354416966438293,0.990195870399475,0.238746508955956,0.990195870399475,0.238746508955956,0.00980385951697826,0.63401871919632,0.00980405416339636,0.771420538425446,0.216056749224663,0.678782105445862,0.25443109869957,0.563111662864685,0.0807107016444206,0.969056665897369,0.312343508005142,0.831654787063599,0.518596231937408,0.760747790336609,0.447689563035965,0.876418232917786,0.273969173431396,0.540524184703827,0.990196049213409,0.469617545604706,0.990196049213409,0.469617545604706,0.00980405416339636,0.540524184703827,0.00980405416339636,0.447055369615555,0.00980385951697826,0.447055369615555,0.990195870399475
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,4,20,21,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509532896, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 360.3125,600,148.64990234375,390,600,0,303.6171875,600,125.16455078125,328.6328125,600,0,360.3125,0,148.64990234375,390,0,0,303.6171875,0,125.16455078125,328.6328125,0,0
- }
- PolygonVertexIndex: *24 {
- a: 0,4,5,-2,3,7,6,-3,3,2,0,-2,6,7,5,-5,0,2,6,-5,3,1,5,-8
- }
- Edges: *12 {
- a: 1,3,0,7,4,11,9,15,13,2,6,5
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.82035905122757,0.0803618654608727,0.56617397069931,0.97487610578537,0.0803214237093925,-0.207761809229851,-0.972828388214111,0.103059284389019,0.207325413823128,-0.818634808063507,0.10310222953558,-0.564984083175659,0.82035905122757,-0.0803618654608727,0.56617397069931,0.97487610578537,-0.0803214237093925,-0.207761809229851,-0.972828388214111,-0.103059284389019,0.207325413823128,-0.818634808063507,-0.10310222953558,-0.564984083175659
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0857630148530006,0.996168434619904,-0.0171280931681395,0.0857630148530006,0.996168434619904,0.0171280931681395,0.0857246443629265,0.996171832084656,0.0171204302459955,-0.0857246443629265,0.996171832084656,-0.0171204302459955,0.109979435801506,0.99369078874588,0.0219806954264641,-0.109979435801506,0.99369078874588,-0.0219806954264641,-0.109953030943871,0.993693828582764,-0.0219754222780466,0.109953030943871,0.993693828582764,0.0219754222780466,4.39584255218506e-007,-0.983753800392151,-0.179522886872292,2.16811872633116e-006,0.895471274852753,-0.445119202136993,3.35276155283282e-007,0.990076422691345,-0.140530422329903,0,-0.932722985744476,-0.360593885183334,-2.31713056564331e-006,0.895471632480621,0.44511866569519,-4.69386577606201e-007,-0.983753800392151,0.179522931575775,0,-0.932722985744476,0.360593885183334,-3.65078506092686e-007,0.990076422691345,0.140530467033386,0.137280613183975,0.9334477186203,-0.331405192613602,0.0688100904226303,0.983703136444092,-0.166112467646599,-0.0688100904226303,0.983703136444092,0.166112467646599,-0.137280613183975,0.9334477186203,0.331405192613602,0,-0.983753979206085,-0.179522275924683,0,-0.932722985744476,-0.360593885183334,0,-0.932722985744476,0.360593885183334,0,-0.983753979206085,0.179522275924683
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.565380990505219,0.0345055982470512,-0.824107825756073,0.565380990505219,-0.0345055982470512,-0.824107825756073,-0.205591320991516,0.0345006063580513,-0.978029727935791,-0.205591320991516,-0.0345006063580513,-0.978029727935791,-0.563685715198517,0.0441424660384655,0.824808955192566,-0.563685715198517,-0.0441424660384655,0.824808955192566,0.203753247857094,0.0441743768751621,0.978025197982788,0.203753247857094,-0.0441743768751621,0.978025197982788,0.574314415454865,0.14696392416954,-0.80533504486084,0.231527134776115,0.433024197816849,0.87114018201828,0.571848809719086,-0.115285590291023,-0.812218070030212,0.222747981548309,-0.351534366607666,0.909289360046387,0.231527134776115,-0.433023601770401,0.871140480041504,0.574314415454865,-0.146963983774185,-0.80533504486084,0.222747981548309,0.351534366607666,0.909289360046387,0.571848809719086,0.115285634994507,-0.812218070030212,0.555126249790192,-0.349595963954926,-0.754730105400085,0.221065938472748,0.147332862019539,0.964065909385681,0.221065938472748,-0.147332862019539,0.964065909385681,0.555126249790192,0.349595963954926,-0.754730105400085,0.574314415454865,0.146963179111481,-0.805335223674774,0.222747981548309,-0.351534366607666,0.909289360046387,0.222747981548309,0.351534366607666,0.909289360046387,0.574314415454865,-0.146963179111481,-0.805335223674774
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.00980386137962341,0.96522855758667,0.00980386137962341,0.00955666042864323,0.246571391820908,0.00955666042864323,0.246571391820908,0.96522855758667,0.269300013780594,0.96522855758667,0.269300013780594,0.00955666042864323,0.468660801649094,0.00955666042864323,0.468660801649094,0.96522855758667,0.765363872051239,0.246324181556702,0.725520610809326,0.0469634048640728,0.815823197364807,0.00955666042864323,0.863109827041626,0.246324181556702,0.852609097957611,0.465649098157883,0.892452418804169,0.266288310289383,0.990198314189911,0.266288310289383,0.942911684513092,0.503055810928345,0.581865131855011,0.96522855758667,0.491562515497208,0.96522855758667,0.491562515497208,0.00955666042864323,0.581865131855011,0.00955666042864323,0.604644000530243,0.00955666042864323,0.702389895915985,0.00955666042864323,0.702389895915985,0.96522855758667,0.604644000530243,0.96522855758667
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2399509534944, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 360.1171875,0,-149.439697265625,390,0,-0.44775390625,303.421875,0,-125.95458984375,328.6328125,0,-0.44775390625,360.1171875,600,-149.439697265625,390,600,-0.44775390625,303.421875,600,-125.95458984375,328.6328125,600,-0.44775390625
- }
- PolygonVertexIndex: *24 {
- a: 5,1,0,-5,6,2,3,-8,5,4,6,-8,0,1,3,-3,5,7,3,-2,6,4,0,-3
- }
- Edges: *12 {
- a: 1,0,5,7,4,13,15,2,9,3,11,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.820480346679688,-0.0804171413183212,-0.565990269184113,0.975231647491455,-0.0803327932953835,0.206082001328468,-0.973182022571564,-0.103078313171864,-0.20564891397953,-0.818753898143768,-0.103167869150639,0.5647993683815,0.820480346679688,0.0804171413183212,-0.565990269184113,0.975231647491455,0.0803327932953835,0.206082001328468,-0.973182022571564,0.103078313171864,-0.20564891397953,-0.818753898143768,0.103167869150639,0.5647993683815
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.0856896266341209,0.996173679828644,0.0171864777803421,0.0856896266341209,0.996173679828644,-0.0171864777803421,0.0857697352766991,0.996166467666626,-0.0172025505453348,-0.0857697352766991,0.996166467666626,0.0172025505453348,0.109916806221008,0.993695616722107,-0.0220793187618256,-0.109916806221008,0.993695616722107,0.0220793187618256,-0.109972156584263,0.993689179420471,0.0220904368907213,0.109972156584263,0.993689179420471,-0.0220904368907213,0,0.931714594364166,-0.363191515207291,-3.72529065373328e-008,-0.99005663394928,-0.140669479966164,-2.60770349314043e-007,-0.893985867500305,-0.448095262050629,-5.21540712838942e-008,0.983723402023315,-0.179689809679985,5.21540712838942e-008,-0.99005663394928,0.140669509768486,0,0.931714594364166,0.363191515207291,5.9604651880818e-008,0.983723402023315,0.179689809679985,3.35276155283282e-007,-0.893985986709595,0.448094993829727,0,0.931714594364166,-0.363191515207291,0,0.983723402023315,-0.179689735174179,0,0.983723402023315,0.179689735174179,0,0.931714594364166,0.363191515207291,-0.0689894780516624,-0.983617067337036,-0.166547253727913,-0.137483388185501,-0.933242678642273,-0.331898152828217,0.137483388185501,-0.933242678642273,0.331898152828217,0.0689894780516624,-0.983617067337036,0.166547253727913
- }
- BinormalsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.203912824392319,0.0344198904931545,-0.978383898735046,0.203912824392319,-0.0344198904931545,-0.978383898735046,-0.565203964710236,0.0344304852187634,-0.824232518672943,-0.565203964710236,-0.0344304852187634,-0.824232518672943,-0.202076464891434,0.0440914630889893,0.978376746177673,-0.202076464891434,-0.0440914630889893,0.978376746177673,0.563513994216919,0.0440255664288998,0.824932515621185,0.563513994216919,-0.0440255664288998,0.824932515621185,0.221186146140099,-0.354195833206177,-0.908637464046478,0.571674764156342,-0.115416556596756,0.812321960926056,0.230036690831184,0.436078131198883,-0.870010912418365,0.574144721031189,0.147121742367744,0.805427253246307,0.571674764156342,0.115416578948498,0.812321960926056,0.221186146140099,0.354195833206177,-0.908637464046478,0.574144721031189,-0.147121757268906,0.805427253246307,0.230036690831184,-0.436077862977982,-0.870011031627655,0.221186146140099,-0.354195833206177,-0.908637464046478,0.574144721031189,0.147121652960777,0.805427253246307,0.574144721031189,-0.147121652960777,0.805427253246307,0.221186146140099,0.354195833206177,-0.908637464046478,0.219447389245033,0.14789317548275,-0.964349746704102,0.554896950721741,-0.350130170583725,0.754651069641113,0.554896950721741,0.350130170583725,0.754651069641113,0.219447389245033,-0.14789317548275,-0.964349746704102
- }
- TangentsW: *24 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *48 {
- a: 0.00980398803949356,0.964513778686523,0.00980398803949356,0.00954958330839872,0.246940791606903,0.00954958330839872,0.246940791606903,0.964513778686523,0.269300252199173,0.964513778686523,0.269300252199173,0.00954958330839872,0.469058007001877,0.00954958330839872,0.469058007001877,0.964513778686523,0.8633131980896,0.00954958330839872,0.815752446651459,0.246686384081841,0.725516736507416,0.209307342767715,0.765639662742615,0.00954958330839872,0.942637741565704,0.266650497913361,0.990198493003845,0.503787279129028,0.89252495765686,0.503787279129028,0.852402031421661,0.304029524326324,0.589235723018646,0.964513778686523,0.491562187671661,0.964513778686523,0.491562187671661,0.00954958330839872,0.589235723018646,0.00954958330839872,0.612440228462219,0.00954996142536402,0.702675938606262,0.00954996142536402,0.702675938606262,0.964514136314392,0.612440228462219,0.964514136314392
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 2403285568096, "Model::SM_Round_Tower_Entrance_01", "Null" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2403285537936, "Model::LOD_Group_SM_Round_Tower_Entrance_01", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- }
- Shading: Y
- Culling: "CullingOff"
- }
- Model: 2403285570416, "Model::SM_Round_Tower_Entrance_01_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285540256, "Model::SM_Round_Tower_Entrance_01_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285602896, "Model::SM_Round_Tower_Entrance_01_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285577376, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_020", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285575056, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285591296, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285572736, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_03", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285584336, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_04", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285579696, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_05", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285582016, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_06", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285595936, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_07", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285586656, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_08", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285588976, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_09", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285593616, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_010", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285598256, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_011", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285600576, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_012", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285605216, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_013", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285656256, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_014", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285626096, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_015", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285677136, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_016", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285658576, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_017", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285688736, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_018", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2403285691056, "Model::UCX_SM_Round_Tower_Entrance_01_LOD0_019", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationActive", "bool", "", "",1
- P: "InheritType", "enum", "", "",1
- P: "ScalingMax", "Vector3D", "Vector", "",0,0,0
- P: "DefaultAttributeIndex", "int", "Integer", "",0
- P: "currentUVSet", "KString", "", "U", "map1"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Material: 2399064907184, "Material::MI_Wall_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2400478212032, "Material::MI_Arch_02", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Material: 2399039476032, "Material::M_Collision_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 2399065031760, "Video::file4", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- }
- Video: 2399065027760, "Video::file76", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_BC.png"
- }
- Video: 2399065034560, "Video::file24", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- }
- Video: 2399065021360, "Video::file77", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_N.png"
- }
- Texture: 2400478221152, "Texture::file4", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file4"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file4"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2400478222112, "Texture::file76", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file76"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file76"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2399452372576, "Texture::file24", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file24"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file24"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Wall_01_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Wall_01_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2399452380736, "Texture::file77", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file77"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file77"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2403887412352, "AnimStack::Take 001", "" {
- Properties70: {
- P: "LocalStart", "KTime", "Time", "",1539538600
- P: "LocalStop", "KTime", "Time", "",46186158000
- P: "ReferenceStart", "KTime", "Time", "",1539538600
- P: "ReferenceStop", "KTime", "Time", "",46186158000
- }
- }
- AnimationLayer: 2399994552736, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Round_Tower_Entrance_01, Model::RootNode
- C: "OO",2403285568096,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2399994552736,2403887412352
-
- ;NodeAttribute::, Model::SM_Round_Tower_Entrance_01
- C: "OO",2399942306176,2403285568096
-
- ;Model::LOD_Group_SM_Round_Tower_Entrance_01, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285537936,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_020, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285577376,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_01, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285575056,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_02, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285591296,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_03, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285572736,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_04, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285584336,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_05, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285579696,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_06, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285582016,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_07, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285595936,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_08, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285586656,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_09, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285588976,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_010, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285593616,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_011, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285598256,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_012, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285600576,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_013, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285605216,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_014, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285656256,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_015, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285626096,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_016, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285677136,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_017, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285658576,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_018, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285688736,2403285568096
-
- ;Model::UCX_SM_Round_Tower_Entrance_01_LOD0_019, Model::SM_Round_Tower_Entrance_01
- C: "OO",2403285691056,2403285568096
-
- ;NodeAttribute::, Model::LOD_Group_SM_Round_Tower_Entrance_01
- C: "OO",2403860671008,2403285537936
-
- ;Model::SM_Round_Tower_Entrance_01_LOD0, Model::LOD_Group_SM_Round_Tower_Entrance_01
- C: "OO",2403285570416,2403285537936
-
- ;Model::SM_Round_Tower_Entrance_01_LOD1, Model::LOD_Group_SM_Round_Tower_Entrance_01
- C: "OO",2403285540256,2403285537936
-
- ;Model::SM_Round_Tower_Entrance_01_LOD2, Model::LOD_Group_SM_Round_Tower_Entrance_01
- C: "OO",2403285602896,2403285537936
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2400478221152,2399064907184, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2399452372576,2399064907184, "NormalMap"
-
- ;Texture::file76, Material::MI_Arch_02
- C: "OP",2400478222112,2400478212032, "DiffuseColor"
-
- ;Texture::file77, Material::MI_Arch_02
- C: "OP",2399452380736,2400478212032, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2399065031760,2400478221152
-
- ;Video::file76, Texture::file76
- C: "OO",2399065027760,2400478222112
-
- ;Video::file24, Texture::file24
- C: "OO",2399065034560,2399452372576
-
- ;Video::file77, Texture::file77
- C: "OO",2399065021360,2399452380736
-
- ;Geometry::, Model::SM_Round_Tower_Entrance_01_LOD0
- C: "OO",2399509547744,2403285570416
-
- ;Material::MI_Wall_01, Model::SM_Round_Tower_Entrance_01_LOD0
- C: "OO",2399064907184,2403285570416
-
- ;Material::MI_Arch_02, Model::SM_Round_Tower_Entrance_01_LOD0
- C: "OO",2400478212032,2403285570416
-
- ;Geometry::, Model::SM_Round_Tower_Entrance_01_LOD1
- C: "OO",2399509528288,2403285540256
-
- ;Material::MI_Wall_01, Model::SM_Round_Tower_Entrance_01_LOD1
- C: "OO",2399064907184,2403285540256
-
- ;Material::MI_Arch_02, Model::SM_Round_Tower_Entrance_01_LOD1
- C: "OO",2400478212032,2403285540256
-
- ;Geometry::, Model::SM_Round_Tower_Entrance_01_LOD2
- C: "OO",2399509543136,2403285602896
-
- ;Material::MI_Wall_01, Model::SM_Round_Tower_Entrance_01_LOD2
- C: "OO",2399064907184,2403285602896
-
- ;Material::MI_Arch_02, Model::SM_Round_Tower_Entrance_01_LOD2
- C: "OO",2400478212032,2403285602896
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_020
- C: "OO",2399509535456,2403285577376
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_020
- C: "OO",2399039476032,2403285577376
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_01
- C: "OO",2399509526240,2403285575056
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_01
- C: "OO",2399039476032,2403285575056
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_02
- C: "OO",2399509542112,2403285591296
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_02
- C: "OO",2399039476032,2403285591296
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_03
- C: "OO",2399509533920,2403285572736
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_03
- C: "OO",2399039476032,2403285572736
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_04
- C: "OO",2399509527264,2403285584336
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_04
- C: "OO",2399039476032,2403285584336
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_05
- C: "OO",2399509541600,2403285579696
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_05
- C: "OO",2399039476032,2403285579696
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_06
- C: "OO",2399509542624,2403285582016
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_06
- C: "OO",2399039476032,2403285582016
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_07
- C: "OO",2399509532384,2403285595936
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_07
- C: "OO",2399039476032,2403285595936
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_08
- C: "OO",2399509551328,2403285586656
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_08
- C: "OO",2399039476032,2403285586656
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_09
- C: "OO",2399509521120,2403285588976
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_09
- C: "OO",2399039476032,2403285588976
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_010
- C: "OO",2399509552352,2403285593616
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_010
- C: "OO",2399039476032,2403285593616
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_011
- C: "OO",2399509538528,2403285598256
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_011
- C: "OO",2399039476032,2403285598256
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_012
- C: "OO",2399509525216,2403285600576
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_012
- C: "OO",2399039476032,2403285600576
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_013
- C: "OO",2399509539040,2403285605216
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_013
- C: "OO",2399039476032,2403285605216
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_014
- C: "OO",2399509549792,2403285656256
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_014
- C: "OO",2399039476032,2403285656256
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_015
- C: "OO",2399509528800,2403285626096
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_015
- C: "OO",2399039476032,2403285626096
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_016
- C: "OO",2399509529312,2403285677136
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_016
- C: "OO",2399039476032,2403285677136
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_017
- C: "OO",2399509534432,2403285658576
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_017
- C: "OO",2399039476032,2403285658576
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_018
- C: "OO",2399509532896,2403285688736
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_018
- C: "OO",2399039476032,2403285688736
-
- ;Geometry::, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_019
- C: "OO",2399509534944,2403285691056
-
- ;Material::M_Collision_01, Model::UCX_SM_Round_Tower_Entrance_01_LOD0_019
- C: "OO",2399039476032,2403285691056
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|