scene.gltf 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498
  1. {
  2. "accessors": [
  3. {
  4. "bufferView": 2,
  5. "componentType": 5126,
  6. "count": 3090,
  7. "max": [
  8. 10.993896484375,
  9. 1.122859001159668,
  10. 6.3202352523803711
  11. ],
  12. "min": [
  13. -8.6181268692016602,
  14. -2.3041958808898926,
  15. -6.3202352523803711
  16. ],
  17. "type": "VEC3"
  18. },
  19. {
  20. "bufferView": 2,
  21. "byteOffset": 37080,
  22. "componentType": 5126,
  23. "count": 3090,
  24. "max": [
  25. 1,
  26. 1,
  27. 1
  28. ],
  29. "min": [
  30. -1,
  31. -1,
  32. -1
  33. ],
  34. "type": "VEC3"
  35. },
  36. {
  37. "bufferView": 1,
  38. "componentType": 5126,
  39. "count": 3090,
  40. "max": [
  41. 1.000819206237793,
  42. 1.0000337362289429
  43. ],
  44. "min": [
  45. 0.00027027769829146564,
  46. 0.00027027769829146564
  47. ],
  48. "type": "VEC2"
  49. },
  50. {
  51. "bufferView": 0,
  52. "componentType": 5125,
  53. "count": 4866,
  54. "max": [
  55. 3089
  56. ],
  57. "min": [
  58. 0
  59. ],
  60. "type": "SCALAR"
  61. },
  62. {
  63. "bufferView": 2,
  64. "byteOffset": 74160,
  65. "componentType": 5126,
  66. "count": 1877,
  67. "max": [
  68. 8.1145896911621094,
  69. 1.9492338895797729,
  70. 1.1069803237915039
  71. ],
  72. "min": [
  73. -1.7829737663269043,
  74. -1.4095573425292969,
  75. -1.1069803237915039
  76. ],
  77. "type": "VEC3"
  78. },
  79. {
  80. "bufferView": 2,
  81. "byteOffset": 96684,
  82. "componentType": 5126,
  83. "count": 1877,
  84. "max": [
  85. 0.99976223707199097,
  86. 0.99768096208572388,
  87. 1
  88. ],
  89. "min": [
  90. -0.9993550181388855,
  91. -1,
  92. -1
  93. ],
  94. "type": "VEC3"
  95. },
  96. {
  97. "bufferView": 1,
  98. "byteOffset": 24720,
  99. "componentType": 5126,
  100. "count": 1877,
  101. "max": [
  102. 0.99978876113891602,
  103. 1.0119031667709351
  104. ],
  105. "min": [
  106. 0.0031359978020191193,
  107. 0.00021124570048414171
  108. ],
  109. "type": "VEC2"
  110. },
  111. {
  112. "bufferView": 0,
  113. "byteOffset": 19464,
  114. "componentType": 5125,
  115. "count": 3039,
  116. "max": [
  117. 1876
  118. ],
  119. "min": [
  120. 0
  121. ],
  122. "type": "SCALAR"
  123. },
  124. {
  125. "bufferView": 2,
  126. "byteOffset": 119208,
  127. "componentType": 5126,
  128. "count": 786,
  129. "max": [
  130. 1.1692826747894287,
  131. 1.0029010772705078,
  132. 1.0000003576278687
  133. ],
  134. "min": [
  135. -0.26295268535614014,
  136. -1.0029010772705078,
  137. -1
  138. ],
  139. "type": "VEC3"
  140. },
  141. {
  142. "bufferView": 2,
  143. "byteOffset": 128640,
  144. "componentType": 5126,
  145. "count": 786,
  146. "max": [
  147. 1,
  148. 1,
  149. 1
  150. ],
  151. "min": [
  152. -1,
  153. -1,
  154. -1
  155. ],
  156. "type": "VEC3"
  157. },
  158. {
  159. "bufferView": 1,
  160. "byteOffset": 39736,
  161. "componentType": 5126,
  162. "count": 786,
  163. "max": [
  164. 0.57578074932098389,
  165. 0.99989873170852661
  166. ],
  167. "min": [
  168. 0.00010130202281288803,
  169. 0.00010130202281288803
  170. ],
  171. "type": "VEC2"
  172. },
  173. {
  174. "bufferView": 0,
  175. "byteOffset": 31620,
  176. "componentType": 5125,
  177. "count": 3648,
  178. "max": [
  179. 785
  180. ],
  181. "min": [
  182. 0
  183. ],
  184. "type": "SCALAR"
  185. },
  186. {
  187. "bufferView": 2,
  188. "byteOffset": 138072,
  189. "componentType": 5126,
  190. "count": 1568,
  191. "max": [
  192. 1.1692826747894287,
  193. 1.0029010772705078,
  194. 8.7452621459960938
  195. ],
  196. "min": [
  197. -0.26295268535614014,
  198. -1.0029010772705078,
  199. -1
  200. ],
  201. "type": "VEC3"
  202. },
  203. {
  204. "bufferView": 2,
  205. "byteOffset": 156888,
  206. "componentType": 5126,
  207. "count": 1568,
  208. "max": [
  209. 1,
  210. 1,
  211. 1
  212. ],
  213. "min": [
  214. -1,
  215. -1,
  216. -1
  217. ],
  218. "type": "VEC3"
  219. },
  220. {
  221. "bufferView": 1,
  222. "byteOffset": 46024,
  223. "componentType": 5126,
  224. "count": 1568,
  225. "max": [
  226. 0.6706276535987854,
  227. 0.99991804361343384
  228. ],
  229. "min": [
  230. 8.1880163634195924e-05,
  231. 8.1880163634195924e-05
  232. ],
  233. "type": "VEC2"
  234. },
  235. {
  236. "bufferView": 0,
  237. "byteOffset": 46212,
  238. "componentType": 5125,
  239. "count": 7296,
  240. "max": [
  241. 1567
  242. ],
  243. "min": [
  244. 0
  245. ],
  246. "type": "SCALAR"
  247. },
  248. {
  249. "bufferView": 2,
  250. "byteOffset": 175704,
  251. "componentType": 5126,
  252. "count": 320,
  253. "max": [
  254. 0.98982155323028564,
  255. 1.0000001192092896,
  256. 10.611758232116699
  257. ],
  258. "min": [
  259. -0.9898216724395752,
  260. -1.0000001192092896,
  261. -1
  262. ],
  263. "type": "VEC3"
  264. },
  265. {
  266. "bufferView": 2,
  267. "byteOffset": 179544,
  268. "componentType": 5126,
  269. "count": 320,
  270. "max": [
  271. 0.9898221492767334,
  272. 1,
  273. 1
  274. ],
  275. "min": [
  276. -0.9898221492767334,
  277. -1,
  278. -1
  279. ],
  280. "type": "VEC3"
  281. },
  282. {
  283. "bufferView": 1,
  284. "byteOffset": 58568,
  285. "componentType": 5126,
  286. "count": 320,
  287. "max": [
  288. 0.69948375225067139,
  289. 0.99990659952163696
  290. ],
  291. "min": [
  292. 9.3494010798167437e-05,
  293. 9.3494010798167437e-05
  294. ],
  295. "type": "VEC2"
  296. },
  297. {
  298. "bufferView": 0,
  299. "byteOffset": 75396,
  300. "componentType": 5125,
  301. "count": 1176,
  302. "max": [
  303. 319
  304. ],
  305. "min": [
  306. 0
  307. ],
  308. "type": "SCALAR"
  309. },
  310. {
  311. "bufferView": 2,
  312. "byteOffset": 183384,
  313. "componentType": 5126,
  314. "count": 160,
  315. "max": [
  316. 0.98982143402099609,
  317. 1,
  318. 1
  319. ],
  320. "min": [
  321. -0.98982155323028564,
  322. -1,
  323. -1
  324. ],
  325. "type": "VEC3"
  326. },
  327. {
  328. "bufferView": 2,
  329. "byteOffset": 185304,
  330. "componentType": 5126,
  331. "count": 160,
  332. "max": [
  333. 0.9898221492767334,
  334. 1,
  335. 1
  336. ],
  337. "min": [
  338. -0.9898221492767334,
  339. -1,
  340. -1
  341. ],
  342. "type": "VEC3"
  343. },
  344. {
  345. "bufferView": 1,
  346. "byteOffset": 61128,
  347. "componentType": 5126,
  348. "count": 160,
  349. "max": [
  350. 0.69948363304138184,
  351. 0.99990648031234741
  352. ],
  353. "min": [
  354. 9.3493996246252209e-05,
  355. 9.3493996246252209e-05
  356. ],
  357. "type": "VEC2"
  358. },
  359. {
  360. "bufferView": 0,
  361. "byteOffset": 80100,
  362. "componentType": 5125,
  363. "count": 588,
  364. "max": [
  365. 159
  366. ],
  367. "min": [
  368. 0
  369. ],
  370. "type": "SCALAR"
  371. },
  372. {
  373. "bufferView": 2,
  374. "byteOffset": 187224,
  375. "componentType": 5126,
  376. "count": 1708,
  377. "max": [
  378. 1.1692826747894287,
  379. 1.0029010772705078,
  380. 12.385623931884766
  381. ],
  382. "min": [
  383. -0.26295268535614014,
  384. -1.0029010772705078,
  385. -1
  386. ],
  387. "type": "VEC3"
  388. },
  389. {
  390. "bufferView": 2,
  391. "byteOffset": 207720,
  392. "componentType": 5126,
  393. "count": 1708,
  394. "max": [
  395. 1,
  396. 1,
  397. 1
  398. ],
  399. "min": [
  400. -1,
  401. -1,
  402. -1
  403. ],
  404. "type": "VEC3"
  405. },
  406. {
  407. "bufferView": 1,
  408. "byteOffset": 62408,
  409. "componentType": 5126,
  410. "count": 1708,
  411. "max": [
  412. 0.60674148797988892,
  413. 0.9998900294303894
  414. ],
  415. "min": [
  416. 0.0001101239540730603,
  417. 0.0001101239540730603
  418. ],
  419. "type": "VEC2"
  420. },
  421. {
  422. "bufferView": 0,
  423. "byteOffset": 82452,
  424. "componentType": 5125,
  425. "count": 7680,
  426. "max": [
  427. 1707
  428. ],
  429. "min": [
  430. 0
  431. ],
  432. "type": "SCALAR"
  433. },
  434. {
  435. "bufferView": 2,
  436. "byteOffset": 228216,
  437. "componentType": 5126,
  438. "count": 320,
  439. "max": [
  440. 0.98982143402099609,
  441. 1,
  442. 13.267633438110352
  443. ],
  444. "min": [
  445. -0.98982155323028564,
  446. -1,
  447. -1
  448. ],
  449. "type": "VEC3"
  450. },
  451. {
  452. "bufferView": 2,
  453. "byteOffset": 232056,
  454. "componentType": 5126,
  455. "count": 320,
  456. "max": [
  457. 0.9898221492767334,
  458. 1,
  459. 1
  460. ],
  461. "min": [
  462. -0.9898221492767334,
  463. -1,
  464. -1
  465. ],
  466. "type": "VEC3"
  467. },
  468. {
  469. "bufferView": 1,
  470. "byteOffset": 76072,
  471. "componentType": 5126,
  472. "count": 320,
  473. "max": [
  474. 0.69948363304138184,
  475. 0.99990648031234741
  476. ],
  477. "min": [
  478. 9.3493996246252209e-05,
  479. 9.3493996246252209e-05
  480. ],
  481. "type": "VEC2"
  482. },
  483. {
  484. "bufferView": 0,
  485. "byteOffset": 113172,
  486. "componentType": 5125,
  487. "count": 1176,
  488. "max": [
  489. 319
  490. ],
  491. "min": [
  492. 0
  493. ],
  494. "type": "SCALAR"
  495. },
  496. {
  497. "bufferView": 2,
  498. "byteOffset": 235896,
  499. "componentType": 5126,
  500. "count": 1708,
  501. "max": [
  502. 1.1692826747894287,
  503. 1.0029010772705078,
  504. 12.385623931884766
  505. ],
  506. "min": [
  507. -0.26295268535614014,
  508. -1.0029010772705078,
  509. -1
  510. ],
  511. "type": "VEC3"
  512. },
  513. {
  514. "bufferView": 2,
  515. "byteOffset": 256392,
  516. "componentType": 5126,
  517. "count": 1708,
  518. "max": [
  519. 1,
  520. 1,
  521. 1
  522. ],
  523. "min": [
  524. -1,
  525. -1,
  526. -1
  527. ],
  528. "type": "VEC3"
  529. },
  530. {
  531. "bufferView": 1,
  532. "byteOffset": 78632,
  533. "componentType": 5126,
  534. "count": 1708,
  535. "max": [
  536. 0.60674148797988892,
  537. 0.9998900294303894
  538. ],
  539. "min": [
  540. 0.0001101239540730603,
  541. 0.0001101239540730603
  542. ],
  543. "type": "VEC2"
  544. },
  545. {
  546. "bufferView": 0,
  547. "byteOffset": 117876,
  548. "componentType": 5125,
  549. "count": 7680,
  550. "max": [
  551. 1707
  552. ],
  553. "min": [
  554. 0
  555. ],
  556. "type": "SCALAR"
  557. },
  558. {
  559. "bufferView": 2,
  560. "byteOffset": 276888,
  561. "componentType": 5126,
  562. "count": 320,
  563. "max": [
  564. 0.98982143402099609,
  565. 1.0000002384185791,
  566. 13.267633438110352
  567. ],
  568. "min": [
  569. -0.98982155323028564,
  570. -1,
  571. -1
  572. ],
  573. "type": "VEC3"
  574. },
  575. {
  576. "bufferView": 2,
  577. "byteOffset": 280728,
  578. "componentType": 5126,
  579. "count": 320,
  580. "max": [
  581. 0.9898221492767334,
  582. 1,
  583. 1
  584. ],
  585. "min": [
  586. -0.9898221492767334,
  587. -1,
  588. -1
  589. ],
  590. "type": "VEC3"
  591. },
  592. {
  593. "bufferView": 1,
  594. "byteOffset": 92296,
  595. "componentType": 5126,
  596. "count": 320,
  597. "max": [
  598. 0.69948363304138184,
  599. 0.99990648031234741
  600. ],
  601. "min": [
  602. 9.3493996246252209e-05,
  603. 9.3493996246252209e-05
  604. ],
  605. "type": "VEC2"
  606. },
  607. {
  608. "bufferView": 0,
  609. "byteOffset": 148596,
  610. "componentType": 5125,
  611. "count": 1176,
  612. "max": [
  613. 319
  614. ],
  615. "min": [
  616. 0
  617. ],
  618. "type": "SCALAR"
  619. },
  620. {
  621. "bufferView": 2,
  622. "byteOffset": 284568,
  623. "componentType": 5126,
  624. "count": 48,
  625. "max": [
  626. 3.0408148765563965,
  627. 0,
  628. 6.8863768577575684
  629. ],
  630. "min": [
  631. -2.7250216007232666,
  632. -2.0432300567626953,
  633. -1.598746657371521
  634. ],
  635. "type": "VEC3"
  636. },
  637. {
  638. "bufferView": 2,
  639. "byteOffset": 285144,
  640. "componentType": 5126,
  641. "count": 48,
  642. "max": [
  643. 0.96980172395706177,
  644. 0.99998515844345093,
  645. 0.95780998468399048
  646. ],
  647. "min": [
  648. -0.85419374704360962,
  649. -1,
  650. -0.99966657161712646
  651. ],
  652. "type": "VEC3"
  653. },
  654. {
  655. "bufferView": 1,
  656. "byteOffset": 94856,
  657. "componentType": 5126,
  658. "count": 48,
  659. "max": [
  660. 0.99489963054656982,
  661. 0.71928495168685913
  662. ],
  663. "min": [
  664. -0.59492695331573486,
  665. 0.25827312469482422
  666. ],
  667. "type": "VEC2"
  668. },
  669. {
  670. "bufferView": 0,
  671. "byteOffset": 153300,
  672. "componentType": 5125,
  673. "count": 72,
  674. "max": [
  675. 47
  676. ],
  677. "min": [
  678. 0
  679. ],
  680. "type": "SCALAR"
  681. },
  682. {
  683. "bufferView": 2,
  684. "byteOffset": 285720,
  685. "componentType": 5126,
  686. "count": 120,
  687. "max": [
  688. 1.0697997808456421,
  689. 1.3209954500198364,
  690. 1.0147562026977539
  691. ],
  692. "min": [
  693. -1.2140761613845825,
  694. -1.4447270631790161,
  695. -1.0147562026977539
  696. ],
  697. "type": "VEC3"
  698. },
  699. {
  700. "bufferView": 2,
  701. "byteOffset": 287160,
  702. "componentType": 5126,
  703. "count": 120,
  704. "max": [
  705. 0.99991941452026367,
  706. 0.84551846981048584,
  707. 1
  708. ],
  709. "min": [
  710. -0.86583554744720459,
  711. -0.84929358959197998,
  712. -1
  713. ],
  714. "type": "VEC3"
  715. },
  716. {
  717. "bufferView": 1,
  718. "byteOffset": 95240,
  719. "componentType": 5126,
  720. "count": 120,
  721. "max": [
  722. 0.99924743175506592,
  723. 0.90398275852203369
  724. ],
  725. "min": [
  726. 0,
  727. 0
  728. ],
  729. "type": "VEC2"
  730. },
  731. {
  732. "bufferView": 0,
  733. "byteOffset": 153588,
  734. "componentType": 5125,
  735. "count": 180,
  736. "max": [
  737. 119
  738. ],
  739. "min": [
  740. 0
  741. ],
  742. "type": "SCALAR"
  743. },
  744. {
  745. "bufferView": 2,
  746. "byteOffset": 288600,
  747. "componentType": 5126,
  748. "count": 336,
  749. "max": [
  750. 1.2132555246353149,
  751. 0.40549328923225403,
  752. 0.48390865325927734
  753. ],
  754. "min": [
  755. -0.99367183446884155,
  756. -19.057323455810547,
  757. -16.516189575195312
  758. ],
  759. "type": "VEC3"
  760. },
  761. {
  762. "bufferView": 2,
  763. "byteOffset": 292632,
  764. "componentType": 5126,
  765. "count": 336,
  766. "max": [
  767. 0.99999189376831055,
  768. 0.99996656179428101,
  769. 0.99688130617141724
  770. ],
  771. "min": [
  772. -0.9999726414680481,
  773. -0.99996656179428101,
  774. -1
  775. ],
  776. "type": "VEC3"
  777. },
  778. {
  779. "bufferView": 1,
  780. "byteOffset": 96200,
  781. "componentType": 5126,
  782. "count": 336,
  783. "max": [
  784. 1,
  785. 1
  786. ],
  787. "min": [
  788. 0,
  789. 0
  790. ],
  791. "type": "VEC2"
  792. },
  793. {
  794. "bufferView": 0,
  795. "byteOffset": 154308,
  796. "componentType": 5125,
  797. "count": 504,
  798. "max": [
  799. 335
  800. ],
  801. "min": [
  802. 0
  803. ],
  804. "type": "SCALAR"
  805. },
  806. {
  807. "bufferView": 2,
  808. "byteOffset": 296664,
  809. "componentType": 5126,
  810. "count": 1776,
  811. "max": [
  812. 1.1692826747894287,
  813. 1.0029010772705078,
  814. 20.923713684082031
  815. ],
  816. "min": [
  817. -0.26295268535614014,
  818. -1.0029010772705078,
  819. -1
  820. ],
  821. "type": "VEC3"
  822. },
  823. {
  824. "bufferView": 2,
  825. "byteOffset": 317976,
  826. "componentType": 5126,
  827. "count": 1776,
  828. "max": [
  829. 1,
  830. 1,
  831. 1
  832. ],
  833. "min": [
  834. -1,
  835. -1,
  836. -1
  837. ],
  838. "type": "VEC3"
  839. },
  840. {
  841. "bufferView": 1,
  842. "byteOffset": 98888,
  843. "componentType": 5126,
  844. "count": 1776,
  845. "max": [
  846. 0.70138347148895264,
  847. 0.9998900294303894
  848. ],
  849. "min": [
  850. 0.0001101239540730603,
  851. 0.0001101239540730603
  852. ],
  853. "type": "VEC2"
  854. },
  855. {
  856. "bufferView": 0,
  857. "byteOffset": 156324,
  858. "componentType": 5125,
  859. "count": 7680,
  860. "max": [
  861. 1775
  862. ],
  863. "min": [
  864. 0
  865. ],
  866. "type": "SCALAR"
  867. },
  868. {
  869. "bufferView": 2,
  870. "byteOffset": 339288,
  871. "componentType": 5126,
  872. "count": 854,
  873. "max": [
  874. 1.1692826747894287,
  875. 1.0029010772705078,
  876. 1.0000003576278687
  877. ],
  878. "min": [
  879. -0.26295268535614014,
  880. -1.0029010772705078,
  881. -1
  882. ],
  883. "type": "VEC3"
  884. },
  885. {
  886. "bufferView": 2,
  887. "byteOffset": 349536,
  888. "componentType": 5126,
  889. "count": 854,
  890. "max": [
  891. 1,
  892. 1,
  893. 1
  894. ],
  895. "min": [
  896. -1,
  897. -1,
  898. -1
  899. ],
  900. "type": "VEC3"
  901. },
  902. {
  903. "bufferView": 1,
  904. "byteOffset": 113096,
  905. "componentType": 5126,
  906. "count": 854,
  907. "max": [
  908. 0.60674148797988892,
  909. 0.9998900294303894
  910. ],
  911. "min": [
  912. 0.017577648162841797,
  913. 0.0001101239540730603
  914. ],
  915. "type": "VEC2"
  916. },
  917. {
  918. "bufferView": 0,
  919. "byteOffset": 187044,
  920. "componentType": 5125,
  921. "count": 3840,
  922. "max": [
  923. 853
  924. ],
  925. "min": [
  926. 0
  927. ],
  928. "type": "SCALAR"
  929. },
  930. {
  931. "bufferView": 2,
  932. "byteOffset": 359784,
  933. "componentType": 5126,
  934. "count": 1776,
  935. "max": [
  936. 1.1692831516265869,
  937. 1.002901554107666,
  938. 62.559841156005859
  939. ],
  940. "min": [
  941. -0.26295268535614014,
  942. -1.0029010772705078,
  943. -1
  944. ],
  945. "type": "VEC3"
  946. },
  947. {
  948. "bufferView": 2,
  949. "byteOffset": 381096,
  950. "componentType": 5126,
  951. "count": 1776,
  952. "max": [
  953. 1,
  954. 1,
  955. 1
  956. ],
  957. "min": [
  958. -1,
  959. -1,
  960. -1
  961. ],
  962. "type": "VEC3"
  963. },
  964. {
  965. "bufferView": 1,
  966. "byteOffset": 119928,
  967. "componentType": 5126,
  968. "count": 1776,
  969. "max": [
  970. 0.60674148797988892,
  971. 0.9998900294303894
  972. ],
  973. "min": [
  974. 0.017335770651698112,
  975. 0.0001101239540730603
  976. ],
  977. "type": "VEC2"
  978. },
  979. {
  980. "bufferView": 0,
  981. "byteOffset": 202404,
  982. "componentType": 5125,
  983. "count": 7680,
  984. "max": [
  985. 1775
  986. ],
  987. "min": [
  988. 0
  989. ],
  990. "type": "SCALAR"
  991. },
  992. {
  993. "bufferView": 2,
  994. "byteOffset": 402408,
  995. "componentType": 5126,
  996. "count": 78,
  997. "max": [
  998. 3.3440821170806885,
  999. 1,
  1000. 1
  1001. ],
  1002. "min": [
  1003. -1.0437124967575073,
  1004. -74.450851440429688,
  1005. -1.0000033378601074
  1006. ],
  1007. "type": "VEC3"
  1008. },
  1009. {
  1010. "bufferView": 2,
  1011. "byteOffset": 403344,
  1012. "componentType": 5126,
  1013. "count": 78,
  1014. "max": [
  1015. 0.99867868423461914,
  1016. 1,
  1017. 1
  1018. ],
  1019. "min": [
  1020. -0.99867868423461914,
  1021. -0.99995559453964233,
  1022. -1
  1023. ],
  1024. "type": "VEC3"
  1025. },
  1026. {
  1027. "bufferView": 1,
  1028. "byteOffset": 134136,
  1029. "componentType": 5126,
  1030. "count": 78,
  1031. "max": [
  1032. 1.0003663301467896,
  1033. 0.958382248878479
  1034. ],
  1035. "min": [
  1036. -0.045059442520141602,
  1037. 0
  1038. ],
  1039. "type": "VEC2"
  1040. },
  1041. {
  1042. "bufferView": 0,
  1043. "byteOffset": 233124,
  1044. "componentType": 5125,
  1045. "count": 120,
  1046. "max": [
  1047. 77
  1048. ],
  1049. "min": [
  1050. 0
  1051. ],
  1052. "type": "SCALAR"
  1053. },
  1054. {
  1055. "bufferView": 2,
  1056. "byteOffset": 404280,
  1057. "componentType": 5126,
  1058. "count": 1776,
  1059. "max": [
  1060. 1.1692831516265869,
  1061. 1.0029010772705078,
  1062. 62.559841156005859
  1063. ],
  1064. "min": [
  1065. -0.26295268535614014,
  1066. -1.0029010772705078,
  1067. -1
  1068. ],
  1069. "type": "VEC3"
  1070. },
  1071. {
  1072. "bufferView": 2,
  1073. "byteOffset": 425592,
  1074. "componentType": 5126,
  1075. "count": 1776,
  1076. "max": [
  1077. 1,
  1078. 1,
  1079. 1
  1080. ],
  1081. "min": [
  1082. -1,
  1083. -1,
  1084. -1
  1085. ],
  1086. "type": "VEC3"
  1087. },
  1088. {
  1089. "bufferView": 1,
  1090. "byteOffset": 134760,
  1091. "componentType": 5126,
  1092. "count": 1776,
  1093. "max": [
  1094. 0.60674148797988892,
  1095. 0.9998900294303894
  1096. ],
  1097. "min": [
  1098. 0.017335770651698112,
  1099. 0.0001101239540730603
  1100. ],
  1101. "type": "VEC2"
  1102. },
  1103. {
  1104. "bufferView": 0,
  1105. "byteOffset": 233604,
  1106. "componentType": 5125,
  1107. "count": 7680,
  1108. "max": [
  1109. 1775
  1110. ],
  1111. "min": [
  1112. 0
  1113. ],
  1114. "type": "SCALAR"
  1115. },
  1116. {
  1117. "bufferView": 2,
  1118. "byteOffset": 446904,
  1119. "componentType": 5126,
  1120. "count": 34,
  1121. "max": [
  1122. 1,
  1123. 1,
  1124. 1
  1125. ],
  1126. "min": [
  1127. -1,
  1128. -1,
  1129. -1
  1130. ],
  1131. "type": "VEC3"
  1132. },
  1133. {
  1134. "bufferView": 2,
  1135. "byteOffset": 447312,
  1136. "componentType": 5126,
  1137. "count": 34,
  1138. "max": [
  1139. 1,
  1140. 1,
  1141. 1
  1142. ],
  1143. "min": [
  1144. -1,
  1145. -0.99197983741760254,
  1146. -1
  1147. ],
  1148. "type": "VEC3"
  1149. },
  1150. {
  1151. "bufferView": 1,
  1152. "byteOffset": 148968,
  1153. "componentType": 5126,
  1154. "count": 34,
  1155. "max": [
  1156. 0.875,
  1157. 1
  1158. ],
  1159. "min": [
  1160. 0.125,
  1161. 0
  1162. ],
  1163. "type": "VEC2"
  1164. },
  1165. {
  1166. "bufferView": 0,
  1167. "byteOffset": 264324,
  1168. "componentType": 5125,
  1169. "count": 60,
  1170. "max": [
  1171. 33
  1172. ],
  1173. "min": [
  1174. 0
  1175. ],
  1176. "type": "SCALAR"
  1177. },
  1178. {
  1179. "bufferView": 2,
  1180. "byteOffset": 447720,
  1181. "componentType": 5126,
  1182. "count": 132,
  1183. "max": [
  1184. 3.8688459396362305,
  1185. 3.4965662956237793,
  1186. 1.0000046491622925
  1187. ],
  1188. "min": [
  1189. -6.727564811706543,
  1190. -0.94613528251647949,
  1191. -1.0000061988830566
  1192. ],
  1193. "type": "VEC3"
  1194. },
  1195. {
  1196. "bufferView": 2,
  1197. "byteOffset": 449304,
  1198. "componentType": 5126,
  1199. "count": 132,
  1200. "max": [
  1201. 0.99867868423461914,
  1202. 1,
  1203. 1
  1204. ],
  1205. "min": [
  1206. -0.99867868423461914,
  1207. -0.99995559453964233,
  1208. -1
  1209. ],
  1210. "type": "VEC3"
  1211. },
  1212. {
  1213. "bufferView": 1,
  1214. "byteOffset": 149240,
  1215. "componentType": 5126,
  1216. "count": 132,
  1217. "max": [
  1218. 1.1240127086639404,
  1219. 0.66790634393692017
  1220. ],
  1221. "min": [
  1222. -0.12401258945465088,
  1223. 0.33209365606307983
  1224. ],
  1225. "type": "VEC2"
  1226. },
  1227. {
  1228. "bufferView": 0,
  1229. "byteOffset": 264564,
  1230. "componentType": 5125,
  1231. "count": 198,
  1232. "max": [
  1233. 131
  1234. ],
  1235. "min": [
  1236. 0
  1237. ],
  1238. "type": "SCALAR"
  1239. },
  1240. {
  1241. "bufferView": 2,
  1242. "byteOffset": 450888,
  1243. "componentType": 5126,
  1244. "count": 78,
  1245. "max": [
  1246. 1.8817687034606934,
  1247. 1,
  1248. 1
  1249. ],
  1250. "min": [
  1251. -1.0437124967575073,
  1252. -16.334903717041016,
  1253. -1.0000064373016357
  1254. ],
  1255. "type": "VEC3"
  1256. },
  1257. {
  1258. "bufferView": 2,
  1259. "byteOffset": 451824,
  1260. "componentType": 5126,
  1261. "count": 78,
  1262. "max": [
  1263. 0.99867868423461914,
  1264. 1,
  1265. 1
  1266. ],
  1267. "min": [
  1268. -0.99867868423461914,
  1269. -0.99995559453964233,
  1270. -1
  1271. ],
  1272. "type": "VEC3"
  1273. },
  1274. {
  1275. "bufferView": 1,
  1276. "byteOffset": 150296,
  1277. "componentType": 5126,
  1278. "count": 78,
  1279. "max": [
  1280. 0.875,
  1281. 1
  1282. ],
  1283. "min": [
  1284. 0.125,
  1285. 0
  1286. ],
  1287. "type": "VEC2"
  1288. },
  1289. {
  1290. "bufferView": 0,
  1291. "byteOffset": 265356,
  1292. "componentType": 5125,
  1293. "count": 120,
  1294. "max": [
  1295. 77
  1296. ],
  1297. "min": [
  1298. 0
  1299. ],
  1300. "type": "SCALAR"
  1301. },
  1302. {
  1303. "bufferView": 2,
  1304. "byteOffset": 452760,
  1305. "componentType": 5126,
  1306. "count": 80,
  1307. "max": [
  1308. 1.0437123775482178,
  1309. 1,
  1310. 1.3292380571365356
  1311. ],
  1312. "min": [
  1313. -1.1028496026992798,
  1314. -0.9461357593536377,
  1315. -4.6994271278381348
  1316. ],
  1317. "type": "VEC3"
  1318. },
  1319. {
  1320. "bufferView": 2,
  1321. "byteOffset": 453720,
  1322. "componentType": 5126,
  1323. "count": 80,
  1324. "max": [
  1325. 0.99867904186248779,
  1326. 1,
  1327. 1
  1328. ],
  1329. "min": [
  1330. -0.99867910146713257,
  1331. -0.99995559453964233,
  1332. -1
  1333. ],
  1334. "type": "VEC3"
  1335. },
  1336. {
  1337. "bufferView": 1,
  1338. "byteOffset": 150920,
  1339. "componentType": 5126,
  1340. "count": 80,
  1341. "max": [
  1342. 0.875,
  1343. 1
  1344. ],
  1345. "min": [
  1346. 0.1249999925494194,
  1347. 0
  1348. ],
  1349. "type": "VEC2"
  1350. },
  1351. {
  1352. "bufferView": 0,
  1353. "byteOffset": 265836,
  1354. "componentType": 5125,
  1355. "count": 120,
  1356. "max": [
  1357. 79
  1358. ],
  1359. "min": [
  1360. 0
  1361. ],
  1362. "type": "SCALAR"
  1363. },
  1364. {
  1365. "bufferView": 2,
  1366. "byteOffset": 454680,
  1367. "componentType": 5126,
  1368. "count": 78,
  1369. "max": [
  1370. 1.0437123775482178,
  1371. 8.1888408660888672,
  1372. 1
  1373. ],
  1374. "min": [
  1375. -20.41261100769043,
  1376. -0.94613528251647949,
  1377. -1.0000039339065552
  1378. ],
  1379. "type": "VEC3"
  1380. },
  1381. {
  1382. "bufferView": 2,
  1383. "byteOffset": 455616,
  1384. "componentType": 5126,
  1385. "count": 78,
  1386. "max": [
  1387. 0.99867868423461914,
  1388. 1,
  1389. 1
  1390. ],
  1391. "min": [
  1392. -0.99867868423461914,
  1393. -0.99995559453964233,
  1394. -1
  1395. ],
  1396. "type": "VEC3"
  1397. },
  1398. {
  1399. "bufferView": 1,
  1400. "byteOffset": 151560,
  1401. "componentType": 5126,
  1402. "count": 78,
  1403. "max": [
  1404. 0.875,
  1405. 1
  1406. ],
  1407. "min": [
  1408. 0.125,
  1409. 0
  1410. ],
  1411. "type": "VEC2"
  1412. },
  1413. {
  1414. "bufferView": 0,
  1415. "byteOffset": 266316,
  1416. "componentType": 5125,
  1417. "count": 120,
  1418. "max": [
  1419. 77
  1420. ],
  1421. "min": [
  1422. 0
  1423. ],
  1424. "type": "SCALAR"
  1425. },
  1426. {
  1427. "bufferView": 2,
  1428. "byteOffset": 456552,
  1429. "componentType": 5126,
  1430. "count": 78,
  1431. "max": [
  1432. 2.8992624282836914,
  1433. 1,
  1434. 1
  1435. ],
  1436. "min": [
  1437. -1.0437124967575073,
  1438. -37.613254547119141,
  1439. -1.0000044107437134
  1440. ],
  1441. "type": "VEC3"
  1442. },
  1443. {
  1444. "bufferView": 2,
  1445. "byteOffset": 457488,
  1446. "componentType": 5126,
  1447. "count": 78,
  1448. "max": [
  1449. 0.99867868423461914,
  1450. 1,
  1451. 1
  1452. ],
  1453. "min": [
  1454. -0.99867868423461914,
  1455. -0.99995559453964233,
  1456. -1
  1457. ],
  1458. "type": "VEC3"
  1459. },
  1460. {
  1461. "bufferView": 1,
  1462. "byteOffset": 152184,
  1463. "componentType": 5126,
  1464. "count": 78,
  1465. "max": [
  1466. 1.0003663301467896,
  1467. 0.958382248878479
  1468. ],
  1469. "min": [
  1470. -0.045059442520141602,
  1471. 0
  1472. ],
  1473. "type": "VEC2"
  1474. },
  1475. {
  1476. "bufferView": 0,
  1477. "byteOffset": 266796,
  1478. "componentType": 5125,
  1479. "count": 120,
  1480. "max": [
  1481. 77
  1482. ],
  1483. "min": [
  1484. 0
  1485. ],
  1486. "type": "SCALAR"
  1487. },
  1488. {
  1489. "bufferView": 2,
  1490. "byteOffset": 458424,
  1491. "componentType": 5126,
  1492. "count": 78,
  1493. "max": [
  1494. 2.2543642520904541,
  1495. 1,
  1496. 1
  1497. ],
  1498. "min": [
  1499. -1.0437124967575073,
  1500. -39.389755249023438,
  1501. -1.0000019073486328
  1502. ],
  1503. "type": "VEC3"
  1504. },
  1505. {
  1506. "bufferView": 2,
  1507. "byteOffset": 459360,
  1508. "componentType": 5126,
  1509. "count": 78,
  1510. "max": [
  1511. 0.99867868423461914,
  1512. 1,
  1513. 1
  1514. ],
  1515. "min": [
  1516. -0.99867868423461914,
  1517. -0.99995559453964233,
  1518. -1
  1519. ],
  1520. "type": "VEC3"
  1521. },
  1522. {
  1523. "bufferView": 1,
  1524. "byteOffset": 152808,
  1525. "componentType": 5126,
  1526. "count": 78,
  1527. "max": [
  1528. 1.0003663301467896,
  1529. 0.958382248878479
  1530. ],
  1531. "min": [
  1532. -0.045059442520141602,
  1533. 0
  1534. ],
  1535. "type": "VEC2"
  1536. },
  1537. {
  1538. "bufferView": 0,
  1539. "byteOffset": 267276,
  1540. "componentType": 5125,
  1541. "count": 120,
  1542. "max": [
  1543. 77
  1544. ],
  1545. "min": [
  1546. 0
  1547. ],
  1548. "type": "SCALAR"
  1549. },
  1550. {
  1551. "bufferView": 2,
  1552. "byteOffset": 460296,
  1553. "componentType": 5126,
  1554. "count": 78,
  1555. "max": [
  1556. 4.1037168502807617,
  1557. 1,
  1558. 1
  1559. ],
  1560. "min": [
  1561. -1.0437124967575073,
  1562. -34.206123352050781,
  1563. -1.0000030994415283
  1564. ],
  1565. "type": "VEC3"
  1566. },
  1567. {
  1568. "bufferView": 2,
  1569. "byteOffset": 461232,
  1570. "componentType": 5126,
  1571. "count": 78,
  1572. "max": [
  1573. 0.99867868423461914,
  1574. 1,
  1575. 1
  1576. ],
  1577. "min": [
  1578. -0.99867868423461914,
  1579. -0.99998509883880615,
  1580. -1
  1581. ],
  1582. "type": "VEC3"
  1583. },
  1584. {
  1585. "bufferView": 1,
  1586. "byteOffset": 153432,
  1587. "componentType": 5126,
  1588. "count": 78,
  1589. "max": [
  1590. 1.0003663301467896,
  1591. 0.958382248878479
  1592. ],
  1593. "min": [
  1594. -0.045059442520141602,
  1595. 0
  1596. ],
  1597. "type": "VEC2"
  1598. },
  1599. {
  1600. "bufferView": 0,
  1601. "byteOffset": 267756,
  1602. "componentType": 5125,
  1603. "count": 120,
  1604. "max": [
  1605. 77
  1606. ],
  1607. "min": [
  1608. 0
  1609. ],
  1610. "type": "SCALAR"
  1611. },
  1612. {
  1613. "bufferView": 2,
  1614. "byteOffset": 462168,
  1615. "componentType": 5126,
  1616. "count": 78,
  1617. "max": [
  1618. 4.1068506240844727,
  1619. 1,
  1620. 1
  1621. ],
  1622. "min": [
  1623. -1.0437124967575073,
  1624. -34.241718292236328,
  1625. -1.0000030994415283
  1626. ],
  1627. "type": "VEC3"
  1628. },
  1629. {
  1630. "bufferView": 2,
  1631. "byteOffset": 463104,
  1632. "componentType": 5126,
  1633. "count": 78,
  1634. "max": [
  1635. 0.99867868423461914,
  1636. 1,
  1637. 1
  1638. ],
  1639. "min": [
  1640. -0.99867868423461914,
  1641. -0.99998509883880615,
  1642. -1
  1643. ],
  1644. "type": "VEC3"
  1645. },
  1646. {
  1647. "bufferView": 1,
  1648. "byteOffset": 154056,
  1649. "componentType": 5126,
  1650. "count": 78,
  1651. "max": [
  1652. 1.0003663301467896,
  1653. 0.958382248878479
  1654. ],
  1655. "min": [
  1656. -0.045059442520141602,
  1657. 0
  1658. ],
  1659. "type": "VEC2"
  1660. },
  1661. {
  1662. "bufferView": 0,
  1663. "byteOffset": 268236,
  1664. "componentType": 5125,
  1665. "count": 120,
  1666. "max": [
  1667. 77
  1668. ],
  1669. "min": [
  1670. 0
  1671. ],
  1672. "type": "SCALAR"
  1673. },
  1674. {
  1675. "bufferView": 2,
  1676. "byteOffset": 464040,
  1677. "componentType": 5126,
  1678. "count": 78,
  1679. "max": [
  1680. 3.4062883853912354,
  1681. 1,
  1682. 1
  1683. ],
  1684. "min": [
  1685. -1.0437124967575073,
  1686. -76.452255249023438,
  1687. -1.0000033378601074
  1688. ],
  1689. "type": "VEC3"
  1690. },
  1691. {
  1692. "bufferView": 2,
  1693. "byteOffset": 464976,
  1694. "componentType": 5126,
  1695. "count": 78,
  1696. "max": [
  1697. 0.99867868423461914,
  1698. 1,
  1699. 1
  1700. ],
  1701. "min": [
  1702. -0.99867868423461914,
  1703. -0.99995559453964233,
  1704. -1
  1705. ],
  1706. "type": "VEC3"
  1707. },
  1708. {
  1709. "bufferView": 1,
  1710. "byteOffset": 154680,
  1711. "componentType": 5126,
  1712. "count": 78,
  1713. "max": [
  1714. 1.0003663301467896,
  1715. 0.958382248878479
  1716. ],
  1717. "min": [
  1718. -0.045059442520141602,
  1719. 0
  1720. ],
  1721. "type": "VEC2"
  1722. },
  1723. {
  1724. "bufferView": 0,
  1725. "byteOffset": 268716,
  1726. "componentType": 5125,
  1727. "count": 120,
  1728. "max": [
  1729. 77
  1730. ],
  1731. "min": [
  1732. 0
  1733. ],
  1734. "type": "SCALAR"
  1735. },
  1736. {
  1737. "bufferView": 2,
  1738. "byteOffset": 465912,
  1739. "componentType": 5126,
  1740. "count": 78,
  1741. "max": [
  1742. 2.5419878959655762,
  1743. 1,
  1744. 1
  1745. ],
  1746. "min": [
  1747. -1.0437124967575073,
  1748. -48.643943786621094,
  1749. -1.0000020265579224
  1750. ],
  1751. "type": "VEC3"
  1752. },
  1753. {
  1754. "bufferView": 2,
  1755. "byteOffset": 466848,
  1756. "componentType": 5126,
  1757. "count": 78,
  1758. "max": [
  1759. 0.99867868423461914,
  1760. 1,
  1761. 1
  1762. ],
  1763. "min": [
  1764. -0.99867868423461914,
  1765. -0.99995559453964233,
  1766. -1
  1767. ],
  1768. "type": "VEC3"
  1769. },
  1770. {
  1771. "bufferView": 1,
  1772. "byteOffset": 155304,
  1773. "componentType": 5126,
  1774. "count": 78,
  1775. "max": [
  1776. 1.0003663301467896,
  1777. 0.958382248878479
  1778. ],
  1779. "min": [
  1780. -0.045059442520141602,
  1781. 0
  1782. ],
  1783. "type": "VEC2"
  1784. },
  1785. {
  1786. "bufferView": 0,
  1787. "byteOffset": 269196,
  1788. "componentType": 5125,
  1789. "count": 120,
  1790. "max": [
  1791. 77
  1792. ],
  1793. "min": [
  1794. 0
  1795. ],
  1796. "type": "SCALAR"
  1797. },
  1798. {
  1799. "bufferView": 2,
  1800. "byteOffset": 467784,
  1801. "componentType": 5126,
  1802. "count": 78,
  1803. "max": [
  1804. 2.5081110000610352,
  1805. 1,
  1806. 1
  1807. ],
  1808. "min": [
  1809. -1.0437124967575073,
  1810. -20.108104705810547,
  1811. -1.0000021457672119
  1812. ],
  1813. "type": "VEC3"
  1814. },
  1815. {
  1816. "bufferView": 2,
  1817. "byteOffset": 468720,
  1818. "componentType": 5126,
  1819. "count": 78,
  1820. "max": [
  1821. 0.99867868423461914,
  1822. 1,
  1823. 1
  1824. ],
  1825. "min": [
  1826. -0.99867868423461914,
  1827. -0.9999772310256958,
  1828. -1
  1829. ],
  1830. "type": "VEC3"
  1831. },
  1832. {
  1833. "bufferView": 1,
  1834. "byteOffset": 155928,
  1835. "componentType": 5126,
  1836. "count": 78,
  1837. "max": [
  1838. 1.0003663301467896,
  1839. 0.958382248878479
  1840. ],
  1841. "min": [
  1842. -0.045059442520141602,
  1843. 0
  1844. ],
  1845. "type": "VEC2"
  1846. },
  1847. {
  1848. "bufferView": 0,
  1849. "byteOffset": 269676,
  1850. "componentType": 5125,
  1851. "count": 120,
  1852. "max": [
  1853. 77
  1854. ],
  1855. "min": [
  1856. 0
  1857. ],
  1858. "type": "SCALAR"
  1859. },
  1860. {
  1861. "bufferView": 2,
  1862. "byteOffset": 469656,
  1863. "componentType": 5126,
  1864. "count": 78,
  1865. "max": [
  1866. 2.5022759437561035,
  1867. 1,
  1868. 1
  1869. ],
  1870. "min": [
  1871. -1.0437124967575073,
  1872. -47.366104125976562,
  1873. -1.0000022649765015
  1874. ],
  1875. "type": "VEC3"
  1876. },
  1877. {
  1878. "bufferView": 2,
  1879. "byteOffset": 470592,
  1880. "componentType": 5126,
  1881. "count": 78,
  1882. "max": [
  1883. 0.99867868423461914,
  1884. 1,
  1885. 1
  1886. ],
  1887. "min": [
  1888. -0.99867868423461914,
  1889. -0.99995559453964233,
  1890. -1
  1891. ],
  1892. "type": "VEC3"
  1893. },
  1894. {
  1895. "bufferView": 1,
  1896. "byteOffset": 156552,
  1897. "componentType": 5126,
  1898. "count": 78,
  1899. "max": [
  1900. 1.0003663301467896,
  1901. 0.958382248878479
  1902. ],
  1903. "min": [
  1904. -0.045059442520141602,
  1905. 0
  1906. ],
  1907. "type": "VEC2"
  1908. },
  1909. {
  1910. "bufferView": 0,
  1911. "byteOffset": 270156,
  1912. "componentType": 5125,
  1913. "count": 120,
  1914. "max": [
  1915. 77
  1916. ],
  1917. "min": [
  1918. 0
  1919. ],
  1920. "type": "SCALAR"
  1921. },
  1922. {
  1923. "bufferView": 2,
  1924. "byteOffset": 471528,
  1925. "componentType": 5126,
  1926. "count": 78,
  1927. "max": [
  1928. 1.0437123775482178,
  1929. 1,
  1930. 1.0139690637588501
  1931. ],
  1932. "min": [
  1933. -6.9581155776977539,
  1934. -3.3687677383422852,
  1935. -1
  1936. ],
  1937. "type": "VEC3"
  1938. },
  1939. {
  1940. "bufferView": 2,
  1941. "byteOffset": 472464,
  1942. "componentType": 5126,
  1943. "count": 78,
  1944. "max": [
  1945. 0.99867868423461914,
  1946. 1,
  1947. 1
  1948. ],
  1949. "min": [
  1950. -0.99867868423461914,
  1951. -0.99995559453964233,
  1952. -1
  1953. ],
  1954. "type": "VEC3"
  1955. },
  1956. {
  1957. "bufferView": 1,
  1958. "byteOffset": 157176,
  1959. "componentType": 5126,
  1960. "count": 78,
  1961. "max": [
  1962. 1.0003663301467896,
  1963. 0.958382248878479
  1964. ],
  1965. "min": [
  1966. -0.18320375680923462,
  1967. 0
  1968. ],
  1969. "type": "VEC2"
  1970. },
  1971. {
  1972. "bufferView": 0,
  1973. "byteOffset": 270636,
  1974. "componentType": 5125,
  1975. "count": 120,
  1976. "max": [
  1977. 77
  1978. ],
  1979. "min": [
  1980. 0
  1981. ],
  1982. "type": "SCALAR"
  1983. },
  1984. {
  1985. "bufferView": 2,
  1986. "byteOffset": 473400,
  1987. "componentType": 5126,
  1988. "count": 78,
  1989. "max": [
  1990. 1.0437123775482178,
  1991. 1,
  1992. 1.034002423286438
  1993. ],
  1994. "min": [
  1995. -15.483651161193848,
  1996. -9.5168771743774414,
  1997. -1
  1998. ],
  1999. "type": "VEC3"
  2000. },
  2001. {
  2002. "bufferView": 2,
  2003. "byteOffset": 474336,
  2004. "componentType": 5126,
  2005. "count": 78,
  2006. "max": [
  2007. 0.99867868423461914,
  2008. 1,
  2009. 1
  2010. ],
  2011. "min": [
  2012. -0.99867868423461914,
  2013. -0.99995559453964233,
  2014. -1
  2015. ],
  2016. "type": "VEC3"
  2017. },
  2018. {
  2019. "bufferView": 1,
  2020. "byteOffset": 157800,
  2021. "componentType": 5126,
  2022. "count": 78,
  2023. "max": [
  2024. 1.0003663301467896,
  2025. 0.958382248878479
  2026. ],
  2027. "min": [
  2028. -0.045059442520141602,
  2029. 0
  2030. ],
  2031. "type": "VEC2"
  2032. },
  2033. {
  2034. "bufferView": 0,
  2035. "byteOffset": 271116,
  2036. "componentType": 5125,
  2037. "count": 120,
  2038. "max": [
  2039. 77
  2040. ],
  2041. "min": [
  2042. 0
  2043. ],
  2044. "type": "SCALAR"
  2045. },
  2046. {
  2047. "bufferView": 2,
  2048. "byteOffset": 475272,
  2049. "componentType": 5126,
  2050. "count": 78,
  2051. "max": [
  2052. 1.0437123775482178,
  2053. 1,
  2054. 1.0244382619857788
  2055. ],
  2056. "min": [
  2057. -11.413389205932617,
  2058. -6.5816512107849121,
  2059. -1
  2060. ],
  2061. "type": "VEC3"
  2062. },
  2063. {
  2064. "bufferView": 2,
  2065. "byteOffset": 476208,
  2066. "componentType": 5126,
  2067. "count": 78,
  2068. "max": [
  2069. 0.99867868423461914,
  2070. 1,
  2071. 1
  2072. ],
  2073. "min": [
  2074. -0.99867868423461914,
  2075. -0.99995559453964233,
  2076. -1
  2077. ],
  2078. "type": "VEC3"
  2079. },
  2080. {
  2081. "bufferView": 1,
  2082. "byteOffset": 158424,
  2083. "componentType": 5126,
  2084. "count": 78,
  2085. "max": [
  2086. 1.0003663301467896,
  2087. 0.958382248878479
  2088. ],
  2089. "min": [
  2090. -0.18320375680923462,
  2091. 0
  2092. ],
  2093. "type": "VEC2"
  2094. },
  2095. {
  2096. "bufferView": 0,
  2097. "byteOffset": 271596,
  2098. "componentType": 5125,
  2099. "count": 120,
  2100. "max": [
  2101. 77
  2102. ],
  2103. "min": [
  2104. 0
  2105. ],
  2106. "type": "SCALAR"
  2107. },
  2108. {
  2109. "bufferView": 2,
  2110. "byteOffset": 477144,
  2111. "componentType": 5126,
  2112. "count": 78,
  2113. "max": [
  2114. 1.0437123775482178,
  2115. 1,
  2116. 1.0104835033416748
  2117. ],
  2118. "min": [
  2119. -12.081388473510742,
  2120. -3.191619873046875,
  2121. -1
  2122. ],
  2123. "type": "VEC3"
  2124. },
  2125. {
  2126. "bufferView": 2,
  2127. "byteOffset": 478080,
  2128. "componentType": 5126,
  2129. "count": 78,
  2130. "max": [
  2131. 0.99867868423461914,
  2132. 1,
  2133. 1
  2134. ],
  2135. "min": [
  2136. -0.99867868423461914,
  2137. -0.99995559453964233,
  2138. -1
  2139. ],
  2140. "type": "VEC3"
  2141. },
  2142. {
  2143. "bufferView": 1,
  2144. "byteOffset": 159048,
  2145. "componentType": 5126,
  2146. "count": 78,
  2147. "max": [
  2148. 1.0003663301467896,
  2149. 0.958382248878479
  2150. ],
  2151. "min": [
  2152. -0.18320375680923462,
  2153. 0
  2154. ],
  2155. "type": "VEC2"
  2156. },
  2157. {
  2158. "bufferView": 0,
  2159. "byteOffset": 272076,
  2160. "componentType": 5125,
  2161. "count": 120,
  2162. "max": [
  2163. 77
  2164. ],
  2165. "min": [
  2166. 0
  2167. ],
  2168. "type": "SCALAR"
  2169. },
  2170. {
  2171. "bufferView": 2,
  2172. "byteOffset": 479016,
  2173. "componentType": 5126,
  2174. "count": 78,
  2175. "max": [
  2176. 1.0437123775482178,
  2177. 1,
  2178. 1.0101351737976074
  2179. ],
  2180. "min": [
  2181. -11.718595504760742,
  2182. -3.0556142330169678,
  2183. -1
  2184. ],
  2185. "type": "VEC3"
  2186. },
  2187. {
  2188. "bufferView": 2,
  2189. "byteOffset": 479952,
  2190. "componentType": 5126,
  2191. "count": 78,
  2192. "max": [
  2193. 0.99867868423461914,
  2194. 1,
  2195. 1
  2196. ],
  2197. "min": [
  2198. -0.99867868423461914,
  2199. -0.99995559453964233,
  2200. -1
  2201. ],
  2202. "type": "VEC3"
  2203. },
  2204. {
  2205. "bufferView": 1,
  2206. "byteOffset": 159672,
  2207. "componentType": 5126,
  2208. "count": 78,
  2209. "max": [
  2210. 1.0003663301467896,
  2211. 0.958382248878479
  2212. ],
  2213. "min": [
  2214. -0.18320375680923462,
  2215. 0
  2216. ],
  2217. "type": "VEC2"
  2218. },
  2219. {
  2220. "bufferView": 0,
  2221. "byteOffset": 272556,
  2222. "componentType": 5125,
  2223. "count": 120,
  2224. "max": [
  2225. 77
  2226. ],
  2227. "min": [
  2228. 0
  2229. ],
  2230. "type": "SCALAR"
  2231. },
  2232. {
  2233. "bufferView": 2,
  2234. "byteOffset": 480888,
  2235. "componentType": 5126,
  2236. "count": 915,
  2237. "max": [
  2238. 0.60156762599945068,
  2239. 0.41776180267333984,
  2240. 0.99999994039535522
  2241. ],
  2242. "min": [
  2243. -1,
  2244. -0.41776180267333984,
  2245. -1
  2246. ],
  2247. "type": "VEC3"
  2248. },
  2249. {
  2250. "bufferView": 2,
  2251. "byteOffset": 491868,
  2252. "componentType": 5126,
  2253. "count": 915,
  2254. "max": [
  2255. 0.99372696876525879,
  2256. 1,
  2257. 0.99990302324295044
  2258. ],
  2259. "min": [
  2260. -1,
  2261. -1,
  2262. -0.99990302324295044
  2263. ],
  2264. "type": "VEC3"
  2265. },
  2266. {
  2267. "bufferView": 1,
  2268. "byteOffset": 160296,
  2269. "componentType": 5126,
  2270. "count": 915,
  2271. "max": [
  2272. 1.0406694412231445,
  2273. 0.96392101049423218
  2274. ],
  2275. "min": [
  2276. 0.012612477876245975,
  2277. 0.016641978174448013
  2278. ],
  2279. "type": "VEC2"
  2280. },
  2281. {
  2282. "bufferView": 0,
  2283. "byteOffset": 273036,
  2284. "componentType": 5125,
  2285. "count": 2730,
  2286. "max": [
  2287. 914
  2288. ],
  2289. "min": [
  2290. 0
  2291. ],
  2292. "type": "SCALAR"
  2293. },
  2294. {
  2295. "bufferView": 2,
  2296. "byteOffset": 502848,
  2297. "componentType": 5126,
  2298. "count": 1012,
  2299. "max": [
  2300. 1.5721005201339722,
  2301. 2.8940315246582031,
  2302. 8.7775726318359375
  2303. ],
  2304. "min": [
  2305. -1.0000020265579224,
  2306. -4.7945513725280762,
  2307. -1.8207923173904419
  2308. ],
  2309. "type": "VEC3"
  2310. },
  2311. {
  2312. "bufferView": 2,
  2313. "byteOffset": 514992,
  2314. "componentType": 5126,
  2315. "count": 1012,
  2316. "max": [
  2317. 1,
  2318. 1,
  2319. 1
  2320. ],
  2321. "min": [
  2322. -1,
  2323. -1,
  2324. -1
  2325. ],
  2326. "type": "VEC3"
  2327. },
  2328. {
  2329. "bufferView": 1,
  2330. "byteOffset": 167616,
  2331. "componentType": 5126,
  2332. "count": 1012,
  2333. "max": [
  2334. 0.89493244886398315,
  2335. 0.99992793798446655
  2336. ],
  2337. "min": [
  2338. 7.2194459789898247e-05,
  2339. 0.00020612323714885861
  2340. ],
  2341. "type": "VEC2"
  2342. },
  2343. {
  2344. "bufferView": 0,
  2345. "byteOffset": 283956,
  2346. "componentType": 5125,
  2347. "count": 3468,
  2348. "max": [
  2349. 1011
  2350. ],
  2351. "min": [
  2352. 0
  2353. ],
  2354. "type": "SCALAR"
  2355. },
  2356. {
  2357. "bufferView": 2,
  2358. "byteOffset": 527136,
  2359. "componentType": 5126,
  2360. "count": 72,
  2361. "max": [
  2362. 2.2057473659515381,
  2363. 0.078921690583229065,
  2364. 1
  2365. ],
  2366. "min": [
  2367. -1.0016851425170898,
  2368. -0.21137754619121552,
  2369. -1
  2370. ],
  2371. "type": "VEC3"
  2372. },
  2373. {
  2374. "bufferView": 2,
  2375. "byteOffset": 528000,
  2376. "componentType": 5126,
  2377. "count": 72,
  2378. "max": [
  2379. 1,
  2380. 0.98435753583908081,
  2381. 1
  2382. ],
  2383. "min": [
  2384. -1,
  2385. -0.98435753583908081,
  2386. -1
  2387. ],
  2388. "type": "VEC3"
  2389. },
  2390. {
  2391. "bufferView": 1,
  2392. "byteOffset": 175712,
  2393. "componentType": 5126,
  2394. "count": 72,
  2395. "max": [
  2396. 0.53206419944763184,
  2397. 0.9542202353477478
  2398. ],
  2399. "min": [
  2400. 0.00012342211266513914,
  2401. 0.00012342211266513914
  2402. ],
  2403. "type": "VEC2"
  2404. },
  2405. {
  2406. "bufferView": 0,
  2407. "byteOffset": 297828,
  2408. "componentType": 5125,
  2409. "count": 108,
  2410. "max": [
  2411. 71
  2412. ],
  2413. "min": [
  2414. 0
  2415. ],
  2416. "type": "SCALAR"
  2417. },
  2418. {
  2419. "bufferView": 2,
  2420. "byteOffset": 528864,
  2421. "componentType": 5126,
  2422. "count": 108,
  2423. "max": [
  2424. 2.489262580871582,
  2425. 0,
  2426. 10.535573959350586
  2427. ],
  2428. "min": [
  2429. -1,
  2430. -2.5568454265594482,
  2431. -1
  2432. ],
  2433. "type": "VEC3"
  2434. },
  2435. {
  2436. "bufferView": 2,
  2437. "byteOffset": 530160,
  2438. "componentType": 5126,
  2439. "count": 108,
  2440. "max": [
  2441. 1,
  2442. 1,
  2443. 1
  2444. ],
  2445. "min": [
  2446. -1,
  2447. -1,
  2448. -1
  2449. ],
  2450. "type": "VEC3"
  2451. },
  2452. {
  2453. "bufferView": 1,
  2454. "byteOffset": 176288,
  2455. "componentType": 5126,
  2456. "count": 108,
  2457. "max": [
  2458. 0.61520057916641235,
  2459. 0.99994516372680664
  2460. ],
  2461. "min": [
  2462. 5.4783500672783703e-05,
  2463. 0.031353689730167389
  2464. ],
  2465. "type": "VEC2"
  2466. },
  2467. {
  2468. "bufferView": 0,
  2469. "byteOffset": 298260,
  2470. "componentType": 5125,
  2471. "count": 168,
  2472. "max": [
  2473. 107
  2474. ],
  2475. "min": [
  2476. 0
  2477. ],
  2478. "type": "SCALAR"
  2479. },
  2480. {
  2481. "bufferView": 2,
  2482. "byteOffset": 531456,
  2483. "componentType": 5126,
  2484. "count": 238,
  2485. "max": [
  2486. 3.3449001312255859,
  2487. 0.016933828592300415,
  2488. 9.3602933883666992
  2489. ],
  2490. "min": [
  2491. -1,
  2492. -2.0485477447509766,
  2493. -1
  2494. ],
  2495. "type": "VEC3"
  2496. },
  2497. {
  2498. "bufferView": 2,
  2499. "byteOffset": 534312,
  2500. "componentType": 5126,
  2501. "count": 238,
  2502. "max": [
  2503. 1,
  2504. 1,
  2505. 0.99130237102508545
  2506. ],
  2507. "min": [
  2508. -1,
  2509. -1,
  2510. -0.92260938882827759
  2511. ],
  2512. "type": "VEC3"
  2513. },
  2514. {
  2515. "bufferView": 1,
  2516. "byteOffset": 177152,
  2517. "componentType": 5126,
  2518. "count": 238,
  2519. "max": [
  2520. 0.96648490428924561,
  2521. 0.98904901742935181
  2522. ],
  2523. "min": [
  2524. 6.3929604948498309e-05,
  2525. 6.3929604948498309e-05
  2526. ],
  2527. "type": "VEC2"
  2528. },
  2529. {
  2530. "bufferView": 0,
  2531. "byteOffset": 298932,
  2532. "componentType": 5125,
  2533. "count": 360,
  2534. "max": [
  2535. 237
  2536. ],
  2537. "min": [
  2538. 0
  2539. ],
  2540. "type": "SCALAR"
  2541. },
  2542. {
  2543. "bufferView": 2,
  2544. "byteOffset": 537168,
  2545. "componentType": 5126,
  2546. "count": 362,
  2547. "max": [
  2548. 1.0612255334854126,
  2549. 4.0255398750305176,
  2550. 1.4142395257949829
  2551. ],
  2552. "min": [
  2553. -1.0612252950668335,
  2554. -4.4569025039672852,
  2555. -1.4142395257949829
  2556. ],
  2557. "type": "VEC3"
  2558. },
  2559. {
  2560. "bufferView": 2,
  2561. "byteOffset": 541512,
  2562. "componentType": 5126,
  2563. "count": 362,
  2564. "max": [
  2565. 1,
  2566. 1,
  2567. 1
  2568. ],
  2569. "min": [
  2570. -1,
  2571. -1,
  2572. -1
  2573. ],
  2574. "type": "VEC3"
  2575. },
  2576. {
  2577. "bufferView": 1,
  2578. "byteOffset": 179056,
  2579. "componentType": 5126,
  2580. "count": 362,
  2581. "max": [
  2582. 0.875,
  2583. 0.625
  2584. ],
  2585. "min": [
  2586. 0,
  2587. 0
  2588. ],
  2589. "type": "VEC2"
  2590. },
  2591. {
  2592. "bufferView": 0,
  2593. "byteOffset": 300372,
  2594. "componentType": 5125,
  2595. "count": 696,
  2596. "max": [
  2597. 361
  2598. ],
  2599. "min": [
  2600. 0
  2601. ],
  2602. "type": "SCALAR"
  2603. },
  2604. {
  2605. "bufferView": 2,
  2606. "byteOffset": 545856,
  2607. "componentType": 5126,
  2608. "count": 592,
  2609. "max": [
  2610. 1.3551057577133179,
  2611. 1.362985372543335,
  2612. 17.205070495605469
  2613. ],
  2614. "min": [
  2615. -1.468503475189209,
  2616. -1.2682842016220093,
  2617. -1.3640221357345581
  2618. ],
  2619. "type": "VEC3"
  2620. },
  2621. {
  2622. "bufferView": 2,
  2623. "byteOffset": 552960,
  2624. "componentType": 5126,
  2625. "count": 592,
  2626. "max": [
  2627. 0.99658036231994629,
  2628. 1,
  2629. 0.99987292289733887
  2630. ],
  2631. "min": [
  2632. -0.99998033046722412,
  2633. -0.9975283145904541,
  2634. -0.9999845027923584
  2635. ],
  2636. "type": "VEC3"
  2637. },
  2638. {
  2639. "bufferView": 1,
  2640. "byteOffset": 181952,
  2641. "componentType": 5126,
  2642. "count": 592,
  2643. "max": [
  2644. 1,
  2645. 1
  2646. ],
  2647. "min": [
  2648. 4.4703483581542969e-08,
  2649. 0.015244573354721069
  2650. ],
  2651. "type": "VEC2"
  2652. },
  2653. {
  2654. "bufferView": 0,
  2655. "byteOffset": 303156,
  2656. "componentType": 5125,
  2657. "count": 1536,
  2658. "max": [
  2659. 591
  2660. ],
  2661. "min": [
  2662. 0
  2663. ],
  2664. "type": "SCALAR"
  2665. },
  2666. {
  2667. "bufferView": 2,
  2668. "byteOffset": 560064,
  2669. "componentType": 5126,
  2670. "count": 888,
  2671. "max": [
  2672. 1.0948784351348877,
  2673. 0.92706817388534546,
  2674. 0.14945346117019653
  2675. ],
  2676. "min": [
  2677. -0.14051240682601929,
  2678. -0.92706817388534546,
  2679. -0.25009652972221375
  2680. ],
  2681. "type": "VEC3"
  2682. },
  2683. {
  2684. "bufferView": 2,
  2685. "byteOffset": 570720,
  2686. "componentType": 5126,
  2687. "count": 888,
  2688. "max": [
  2689. 0.99992096424102783,
  2690. 1,
  2691. 1
  2692. ],
  2693. "min": [
  2694. -0.99992096424102783,
  2695. -1,
  2696. -1
  2697. ],
  2698. "type": "VEC3"
  2699. },
  2700. {
  2701. "bufferView": 1,
  2702. "byteOffset": 186688,
  2703. "componentType": 5126,
  2704. "count": 888,
  2705. "max": [
  2706. 1,
  2707. 1
  2708. ],
  2709. "min": [
  2710. 0,
  2711. 0
  2712. ],
  2713. "type": "VEC2"
  2714. },
  2715. {
  2716. "bufferView": 0,
  2717. "byteOffset": 309300,
  2718. "componentType": 5125,
  2719. "count": 2328,
  2720. "max": [
  2721. 887
  2722. ],
  2723. "min": [
  2724. 0
  2725. ],
  2726. "type": "SCALAR"
  2727. },
  2728. {
  2729. "bufferView": 2,
  2730. "byteOffset": 581376,
  2731. "componentType": 5126,
  2732. "count": 480,
  2733. "max": [
  2734. 0.95105832815170288,
  2735. 1,
  2736. 11.447335243225098
  2737. ],
  2738. "min": [
  2739. -0.95105785131454468,
  2740. -1.0000001192092896,
  2741. -0.99999994039535522
  2742. ],
  2743. "type": "VEC3"
  2744. },
  2745. {
  2746. "bufferView": 2,
  2747. "byteOffset": 587136,
  2748. "componentType": 5126,
  2749. "count": 480,
  2750. "max": [
  2751. 0.99207746982574463,
  2752. 0.94352388381958008,
  2753. 0.94352155923843384
  2754. ],
  2755. "min": [
  2756. -0.99207746982574463,
  2757. -0.94352394342422485,
  2758. -0.94352155923843384
  2759. ],
  2760. "type": "VEC3"
  2761. },
  2762. {
  2763. "bufferView": 1,
  2764. "byteOffset": 193792,
  2765. "componentType": 5126,
  2766. "count": 480,
  2767. "max": [
  2768. 1,
  2769. 0.47238200902938843
  2770. ],
  2771. "min": [
  2772. 0,
  2773. 0
  2774. ],
  2775. "type": "VEC2"
  2776. },
  2777. {
  2778. "bufferView": 0,
  2779. "byteOffset": 318612,
  2780. "componentType": 5125,
  2781. "count": 480,
  2782. "max": [
  2783. 479
  2784. ],
  2785. "min": [
  2786. 0
  2787. ],
  2788. "type": "SCALAR"
  2789. },
  2790. {
  2791. "bufferView": 2,
  2792. "byteOffset": 592896,
  2793. "componentType": 5126,
  2794. "count": 328,
  2795. "max": [
  2796. 1,
  2797. 0.061526387929916382,
  2798. 1.0160874128341675
  2799. ],
  2800. "min": [
  2801. -1,
  2802. -1.6672239303588867,
  2803. -1.0160874128341675
  2804. ],
  2805. "type": "VEC3"
  2806. },
  2807. {
  2808. "bufferView": 2,
  2809. "byteOffset": 596832,
  2810. "componentType": 5126,
  2811. "count": 328,
  2812. "max": [
  2813. 1,
  2814. 1,
  2815. 1
  2816. ],
  2817. "min": [
  2818. -1,
  2819. -1,
  2820. -1
  2821. ],
  2822. "type": "VEC3"
  2823. },
  2824. {
  2825. "bufferView": 1,
  2826. "byteOffset": 197632,
  2827. "componentType": 5126,
  2828. "count": 328,
  2829. "max": [
  2830. 1,
  2831. 1
  2832. ],
  2833. "min": [
  2834. 0,
  2835. 0
  2836. ],
  2837. "type": "VEC2"
  2838. },
  2839. {
  2840. "bufferView": 0,
  2841. "byteOffset": 320532,
  2842. "componentType": 5125,
  2843. "count": 948,
  2844. "max": [
  2845. 327
  2846. ],
  2847. "min": [
  2848. 0
  2849. ],
  2850. "type": "SCALAR"
  2851. },
  2852. {
  2853. "bufferView": 2,
  2854. "byteOffset": 600768,
  2855. "componentType": 5126,
  2856. "count": 1159,
  2857. "max": [
  2858. 3.1108009815216064,
  2859. 1.4061223268508911,
  2860. 38.185337066650391
  2861. ],
  2862. "min": [
  2863. -3.110797643661499,
  2864. -12.136653900146484,
  2865. -2.1927378177642822
  2866. ],
  2867. "type": "VEC3"
  2868. },
  2869. {
  2870. "bufferView": 2,
  2871. "byteOffset": 614676,
  2872. "componentType": 5126,
  2873. "count": 1159,
  2874. "max": [
  2875. 1,
  2876. 0.99750173091888428,
  2877. 1
  2878. ],
  2879. "min": [
  2880. -1,
  2881. -1,
  2882. -1
  2883. ],
  2884. "type": "VEC3"
  2885. },
  2886. {
  2887. "bufferView": 1,
  2888. "byteOffset": 200256,
  2889. "componentType": 5126,
  2890. "count": 1159,
  2891. "max": [
  2892. 1,
  2893. 1
  2894. ],
  2895. "min": [
  2896. 5.2154064178466797e-08,
  2897. 0
  2898. ],
  2899. "type": "VEC2"
  2900. },
  2901. {
  2902. "bufferView": 0,
  2903. "byteOffset": 324324,
  2904. "componentType": 5125,
  2905. "count": 2148,
  2906. "max": [
  2907. 1158
  2908. ],
  2909. "min": [
  2910. 0
  2911. ],
  2912. "type": "SCALAR"
  2913. },
  2914. {
  2915. "bufferView": 2,
  2916. "byteOffset": 628584,
  2917. "componentType": 5126,
  2918. "count": 1159,
  2919. "max": [
  2920. 3.1108009815216064,
  2921. 1.4061223268508911,
  2922. 38.185337066650391
  2923. ],
  2924. "min": [
  2925. -3.110797643661499,
  2926. -12.136653900146484,
  2927. -2.1927378177642822
  2928. ],
  2929. "type": "VEC3"
  2930. },
  2931. {
  2932. "bufferView": 2,
  2933. "byteOffset": 642492,
  2934. "componentType": 5126,
  2935. "count": 1159,
  2936. "max": [
  2937. 1,
  2938. 0.99750173091888428,
  2939. 1
  2940. ],
  2941. "min": [
  2942. -1,
  2943. -1,
  2944. -1
  2945. ],
  2946. "type": "VEC3"
  2947. },
  2948. {
  2949. "bufferView": 1,
  2950. "byteOffset": 209528,
  2951. "componentType": 5126,
  2952. "count": 1159,
  2953. "max": [
  2954. 1,
  2955. 1
  2956. ],
  2957. "min": [
  2958. 5.2154064178466797e-08,
  2959. 0
  2960. ],
  2961. "type": "VEC2"
  2962. },
  2963. {
  2964. "bufferView": 0,
  2965. "byteOffset": 332916,
  2966. "componentType": 5125,
  2967. "count": 2148,
  2968. "max": [
  2969. 1158
  2970. ],
  2971. "min": [
  2972. 0
  2973. ],
  2974. "type": "SCALAR"
  2975. },
  2976. {
  2977. "bufferView": 2,
  2978. "byteOffset": 656400,
  2979. "componentType": 5126,
  2980. "count": 1153,
  2981. "max": [
  2982. 3.1108009815216064,
  2983. 1.4061223268508911,
  2984. 38.185337066650391
  2985. ],
  2986. "min": [
  2987. -3.110797643661499,
  2988. -12.136654853820801,
  2989. -2.1927378177642822
  2990. ],
  2991. "type": "VEC3"
  2992. },
  2993. {
  2994. "bufferView": 2,
  2995. "byteOffset": 670236,
  2996. "componentType": 5126,
  2997. "count": 1153,
  2998. "max": [
  2999. 1,
  3000. 0.9975016713142395,
  3001. 1
  3002. ],
  3003. "min": [
  3004. -1,
  3005. -1,
  3006. -1
  3007. ],
  3008. "type": "VEC3"
  3009. },
  3010. {
  3011. "bufferView": 1,
  3012. "byteOffset": 218800,
  3013. "componentType": 5126,
  3014. "count": 1153,
  3015. "max": [
  3016. 1,
  3017. 1
  3018. ],
  3019. "min": [
  3020. 5.2154064178466797e-08,
  3021. 0
  3022. ],
  3023. "type": "VEC2"
  3024. },
  3025. {
  3026. "bufferView": 0,
  3027. "byteOffset": 341508,
  3028. "componentType": 5125,
  3029. "count": 2148,
  3030. "max": [
  3031. 1152
  3032. ],
  3033. "min": [
  3034. 0
  3035. ],
  3036. "type": "SCALAR"
  3037. },
  3038. {
  3039. "bufferView": 2,
  3040. "byteOffset": 684072,
  3041. "componentType": 5126,
  3042. "count": 1159,
  3043. "max": [
  3044. 3.110795259475708,
  3045. 1.4061223268508911,
  3046. 38.185337066650391
  3047. ],
  3048. "min": [
  3049. -3.110797643661499,
  3050. -12.136653900146484,
  3051. -2.1927378177642822
  3052. ],
  3053. "type": "VEC3"
  3054. },
  3055. {
  3056. "bufferView": 2,
  3057. "byteOffset": 697980,
  3058. "componentType": 5126,
  3059. "count": 1159,
  3060. "max": [
  3061. 1,
  3062. 0.99750173091888428,
  3063. 1
  3064. ],
  3065. "min": [
  3066. -1,
  3067. -1,
  3068. -1
  3069. ],
  3070. "type": "VEC3"
  3071. },
  3072. {
  3073. "bufferView": 1,
  3074. "byteOffset": 228024,
  3075. "componentType": 5126,
  3076. "count": 1159,
  3077. "max": [
  3078. 1,
  3079. 1
  3080. ],
  3081. "min": [
  3082. 5.2154064178466797e-08,
  3083. 0
  3084. ],
  3085. "type": "VEC2"
  3086. },
  3087. {
  3088. "bufferView": 0,
  3089. "byteOffset": 350100,
  3090. "componentType": 5125,
  3091. "count": 2148,
  3092. "max": [
  3093. 1158
  3094. ],
  3095. "min": [
  3096. 0
  3097. ],
  3098. "type": "SCALAR"
  3099. },
  3100. {
  3101. "bufferView": 2,
  3102. "byteOffset": 711888,
  3103. "componentType": 5126,
  3104. "count": 1163,
  3105. "max": [
  3106. 3.1108086109161377,
  3107. 1.4061223268508911,
  3108. 20.548860549926758
  3109. ],
  3110. "min": [
  3111. -3.110797643661499,
  3112. -7.284764289855957,
  3113. -2.1927378177642822
  3114. ],
  3115. "type": "VEC3"
  3116. },
  3117. {
  3118. "bufferView": 2,
  3119. "byteOffset": 725844,
  3120. "componentType": 5126,
  3121. "count": 1163,
  3122. "max": [
  3123. 1,
  3124. 0.9975016713142395,
  3125. 1
  3126. ],
  3127. "min": [
  3128. -1,
  3129. -1,
  3130. -1
  3131. ],
  3132. "type": "VEC3"
  3133. },
  3134. {
  3135. "bufferView": 1,
  3136. "byteOffset": 237296,
  3137. "componentType": 5126,
  3138. "count": 1163,
  3139. "max": [
  3140. 1,
  3141. 1
  3142. ],
  3143. "min": [
  3144. 5.2154064178466797e-08,
  3145. 0
  3146. ],
  3147. "type": "VEC2"
  3148. },
  3149. {
  3150. "bufferView": 0,
  3151. "byteOffset": 358692,
  3152. "componentType": 5125,
  3153. "count": 2148,
  3154. "max": [
  3155. 1162
  3156. ],
  3157. "min": [
  3158. 0
  3159. ],
  3160. "type": "SCALAR"
  3161. },
  3162. {
  3163. "bufferView": 2,
  3164. "byteOffset": 739800,
  3165. "componentType": 5126,
  3166. "count": 1248,
  3167. "max": [
  3168. 0.98480778932571411,
  3169. 59.404674530029297,
  3170. 87.282310485839844
  3171. ],
  3172. "min": [
  3173. -32.181262969970703,
  3174. -1,
  3175. -1.0000066757202148
  3176. ],
  3177. "type": "VEC3"
  3178. },
  3179. {
  3180. "bufferView": 2,
  3181. "byteOffset": 754776,
  3182. "componentType": 5126,
  3183. "count": 1248,
  3184. "max": [
  3185. 0.98481243848800659,
  3186. 1,
  3187. 1
  3188. ],
  3189. "min": [
  3190. -0.98481243848800659,
  3191. -1,
  3192. -1
  3193. ],
  3194. "type": "VEC3"
  3195. },
  3196. {
  3197. "bufferView": 1,
  3198. "byteOffset": 246600,
  3199. "componentType": 5126,
  3200. "count": 1248,
  3201. "max": [
  3202. 1,
  3203. 1
  3204. ],
  3205. "min": [
  3206. 4.4703483581542969e-08,
  3207. 0.024473756551742554
  3208. ],
  3209. "type": "VEC2"
  3210. },
  3211. {
  3212. "bufferView": 0,
  3213. "byteOffset": 367284,
  3214. "componentType": 5125,
  3215. "count": 3264,
  3216. "max": [
  3217. 1247
  3218. ],
  3219. "min": [
  3220. 0
  3221. ],
  3222. "type": "SCALAR"
  3223. },
  3224. {
  3225. "bufferView": 2,
  3226. "byteOffset": 769752,
  3227. "componentType": 5126,
  3228. "count": 1248,
  3229. "max": [
  3230. 0.98480796813964844,
  3231. 59.404670715332031,
  3232. 87.282302856445312
  3233. ],
  3234. "min": [
  3235. -32.181232452392578,
  3236. -1,
  3237. -1.0000066757202148
  3238. ],
  3239. "type": "VEC3"
  3240. },
  3241. {
  3242. "bufferView": 2,
  3243. "byteOffset": 784728,
  3244. "componentType": 5126,
  3245. "count": 1248,
  3246. "max": [
  3247. 0.98481243848800659,
  3248. 1,
  3249. 1
  3250. ],
  3251. "min": [
  3252. -0.98481243848800659,
  3253. -1,
  3254. -1
  3255. ],
  3256. "type": "VEC3"
  3257. },
  3258. {
  3259. "bufferView": 1,
  3260. "byteOffset": 256584,
  3261. "componentType": 5126,
  3262. "count": 1248,
  3263. "max": [
  3264. 1,
  3265. 1
  3266. ],
  3267. "min": [
  3268. 4.4703483581542969e-08,
  3269. 0.024473756551742554
  3270. ],
  3271. "type": "VEC2"
  3272. },
  3273. {
  3274. "bufferView": 0,
  3275. "byteOffset": 380340,
  3276. "componentType": 5125,
  3277. "count": 3264,
  3278. "max": [
  3279. 1247
  3280. ],
  3281. "min": [
  3282. 0
  3283. ],
  3284. "type": "SCALAR"
  3285. },
  3286. {
  3287. "bufferView": 2,
  3288. "byteOffset": 799704,
  3289. "componentType": 5126,
  3290. "count": 1248,
  3291. "max": [
  3292. 0.98480796813964844,
  3293. 59.404674530029297,
  3294. 87.282295227050781
  3295. ],
  3296. "min": [
  3297. -32.181232452392578,
  3298. -1,
  3299. -1.0000066757202148
  3300. ],
  3301. "type": "VEC3"
  3302. },
  3303. {
  3304. "bufferView": 2,
  3305. "byteOffset": 814680,
  3306. "componentType": 5126,
  3307. "count": 1248,
  3308. "max": [
  3309. 0.98481243848800659,
  3310. 1,
  3311. 1
  3312. ],
  3313. "min": [
  3314. -0.98481243848800659,
  3315. -1,
  3316. -1
  3317. ],
  3318. "type": "VEC3"
  3319. },
  3320. {
  3321. "bufferView": 1,
  3322. "byteOffset": 266568,
  3323. "componentType": 5126,
  3324. "count": 1248,
  3325. "max": [
  3326. 1,
  3327. 1
  3328. ],
  3329. "min": [
  3330. 4.4703483581542969e-08,
  3331. 0.024473756551742554
  3332. ],
  3333. "type": "VEC2"
  3334. },
  3335. {
  3336. "bufferView": 0,
  3337. "byteOffset": 393396,
  3338. "componentType": 5125,
  3339. "count": 3264,
  3340. "max": [
  3341. 1247
  3342. ],
  3343. "min": [
  3344. 0
  3345. ],
  3346. "type": "SCALAR"
  3347. },
  3348. {
  3349. "bufferView": 2,
  3350. "byteOffset": 829656,
  3351. "componentType": 5126,
  3352. "count": 1248,
  3353. "max": [
  3354. 0.98480796813964844,
  3355. 59.404674530029297,
  3356. 87.282302856445312
  3357. ],
  3358. "min": [
  3359. -32.181232452392578,
  3360. -1,
  3361. -1.0000066757202148
  3362. ],
  3363. "type": "VEC3"
  3364. },
  3365. {
  3366. "bufferView": 2,
  3367. "byteOffset": 844632,
  3368. "componentType": 5126,
  3369. "count": 1248,
  3370. "max": [
  3371. 0.98481243848800659,
  3372. 1,
  3373. 1
  3374. ],
  3375. "min": [
  3376. -0.98481243848800659,
  3377. -1,
  3378. -1
  3379. ],
  3380. "type": "VEC3"
  3381. },
  3382. {
  3383. "bufferView": 1,
  3384. "byteOffset": 276552,
  3385. "componentType": 5126,
  3386. "count": 1248,
  3387. "max": [
  3388. 1,
  3389. 1
  3390. ],
  3391. "min": [
  3392. 4.4703483581542969e-08,
  3393. 0.024473756551742554
  3394. ],
  3395. "type": "VEC2"
  3396. },
  3397. {
  3398. "bufferView": 0,
  3399. "byteOffset": 406452,
  3400. "componentType": 5125,
  3401. "count": 3264,
  3402. "max": [
  3403. 1247
  3404. ],
  3405. "min": [
  3406. 0
  3407. ],
  3408. "type": "SCALAR"
  3409. },
  3410. {
  3411. "bufferView": 2,
  3412. "byteOffset": 859608,
  3413. "componentType": 5126,
  3414. "count": 1248,
  3415. "max": [
  3416. 0.98480796813964844,
  3417. 32.641700744628906,
  3418. 48.959812164306641
  3419. ],
  3420. "min": [
  3421. -32.181232452392578,
  3422. -1,
  3423. -1.0000066757202148
  3424. ],
  3425. "type": "VEC3"
  3426. },
  3427. {
  3428. "bufferView": 2,
  3429. "byteOffset": 874584,
  3430. "componentType": 5126,
  3431. "count": 1248,
  3432. "max": [
  3433. 0.98481243848800659,
  3434. 1,
  3435. 1
  3436. ],
  3437. "min": [
  3438. -0.98481243848800659,
  3439. -1,
  3440. -1
  3441. ],
  3442. "type": "VEC3"
  3443. },
  3444. {
  3445. "bufferView": 1,
  3446. "byteOffset": 286536,
  3447. "componentType": 5126,
  3448. "count": 1248,
  3449. "max": [
  3450. 1,
  3451. 1
  3452. ],
  3453. "min": [
  3454. 4.4703483581542969e-08,
  3455. 0.024473756551742554
  3456. ],
  3457. "type": "VEC2"
  3458. },
  3459. {
  3460. "bufferView": 0,
  3461. "byteOffset": 419508,
  3462. "componentType": 5125,
  3463. "count": 3264,
  3464. "max": [
  3465. 1247
  3466. ],
  3467. "min": [
  3468. 0
  3469. ],
  3470. "type": "SCALAR"
  3471. },
  3472. {
  3473. "bufferView": 2,
  3474. "byteOffset": 889560,
  3475. "componentType": 5126,
  3476. "count": 164,
  3477. "max": [
  3478. 1,
  3479. 1,
  3480. 19.168619155883789
  3481. ],
  3482. "min": [
  3483. -1.0000019073486328,
  3484. -46.205730438232422,
  3485. -1
  3486. ],
  3487. "type": "VEC3"
  3488. },
  3489. {
  3490. "bufferView": 2,
  3491. "byteOffset": 891528,
  3492. "componentType": 5126,
  3493. "count": 164,
  3494. "max": [
  3495. 1,
  3496. 1,
  3497. 1
  3498. ],
  3499. "min": [
  3500. -1,
  3501. -1,
  3502. -1
  3503. ],
  3504. "type": "VEC3"
  3505. },
  3506. {
  3507. "bufferView": 1,
  3508. "byteOffset": 296520,
  3509. "componentType": 5126,
  3510. "count": 164,
  3511. "max": [
  3512. 1,
  3513. 1
  3514. ],
  3515. "min": [
  3516. -1.5646219253540039e-07,
  3517. 0.01000000536441803
  3518. ],
  3519. "type": "VEC2"
  3520. },
  3521. {
  3522. "bufferView": 0,
  3523. "byteOffset": 432564,
  3524. "componentType": 5125,
  3525. "count": 456,
  3526. "max": [
  3527. 163
  3528. ],
  3529. "min": [
  3530. 0
  3531. ],
  3532. "type": "SCALAR"
  3533. },
  3534. {
  3535. "bufferView": 2,
  3536. "byteOffset": 893496,
  3537. "componentType": 5126,
  3538. "count": 164,
  3539. "max": [
  3540. 1,
  3541. 1,
  3542. 19.168619155883789
  3543. ],
  3544. "min": [
  3545. -1,
  3546. -46.205738067626953,
  3547. -1
  3548. ],
  3549. "type": "VEC3"
  3550. },
  3551. {
  3552. "bufferView": 2,
  3553. "byteOffset": 895464,
  3554. "componentType": 5126,
  3555. "count": 164,
  3556. "max": [
  3557. 1,
  3558. 1,
  3559. 1
  3560. ],
  3561. "min": [
  3562. -1,
  3563. -1,
  3564. -1
  3565. ],
  3566. "type": "VEC3"
  3567. },
  3568. {
  3569. "bufferView": 1,
  3570. "byteOffset": 297832,
  3571. "componentType": 5126,
  3572. "count": 164,
  3573. "max": [
  3574. 1,
  3575. 1
  3576. ],
  3577. "min": [
  3578. -1.5646219253540039e-07,
  3579. 0.01000000536441803
  3580. ],
  3581. "type": "VEC2"
  3582. },
  3583. {
  3584. "bufferView": 0,
  3585. "byteOffset": 434388,
  3586. "componentType": 5125,
  3587. "count": 456,
  3588. "max": [
  3589. 163
  3590. ],
  3591. "min": [
  3592. 0
  3593. ],
  3594. "type": "SCALAR"
  3595. },
  3596. {
  3597. "bufferView": 2,
  3598. "byteOffset": 897432,
  3599. "componentType": 5126,
  3600. "count": 164,
  3601. "max": [
  3602. 1,
  3603. 1,
  3604. 19.168619155883789
  3605. ],
  3606. "min": [
  3607. -1,
  3608. -46.205730438232422,
  3609. -1
  3610. ],
  3611. "type": "VEC3"
  3612. },
  3613. {
  3614. "bufferView": 2,
  3615. "byteOffset": 899400,
  3616. "componentType": 5126,
  3617. "count": 164,
  3618. "max": [
  3619. 1,
  3620. 1,
  3621. 1
  3622. ],
  3623. "min": [
  3624. -1,
  3625. -1,
  3626. -1
  3627. ],
  3628. "type": "VEC3"
  3629. },
  3630. {
  3631. "bufferView": 1,
  3632. "byteOffset": 299144,
  3633. "componentType": 5126,
  3634. "count": 164,
  3635. "max": [
  3636. 1,
  3637. 1
  3638. ],
  3639. "min": [
  3640. -1.5646219253540039e-07,
  3641. 0.01000000536441803
  3642. ],
  3643. "type": "VEC2"
  3644. },
  3645. {
  3646. "bufferView": 0,
  3647. "byteOffset": 436212,
  3648. "componentType": 5125,
  3649. "count": 456,
  3650. "max": [
  3651. 163
  3652. ],
  3653. "min": [
  3654. 0
  3655. ],
  3656. "type": "SCALAR"
  3657. },
  3658. {
  3659. "bufferView": 2,
  3660. "byteOffset": 901368,
  3661. "componentType": 5126,
  3662. "count": 164,
  3663. "max": [
  3664. 1,
  3665. 1,
  3666. 19.168621063232422
  3667. ],
  3668. "min": [
  3669. -1.0000014305114746,
  3670. -46.205730438232422,
  3671. -1
  3672. ],
  3673. "type": "VEC3"
  3674. },
  3675. {
  3676. "bufferView": 2,
  3677. "byteOffset": 903336,
  3678. "componentType": 5126,
  3679. "count": 164,
  3680. "max": [
  3681. 1,
  3682. 1,
  3683. 1
  3684. ],
  3685. "min": [
  3686. -1,
  3687. -1,
  3688. -1
  3689. ],
  3690. "type": "VEC3"
  3691. },
  3692. {
  3693. "bufferView": 1,
  3694. "byteOffset": 300456,
  3695. "componentType": 5126,
  3696. "count": 164,
  3697. "max": [
  3698. 1,
  3699. 1
  3700. ],
  3701. "min": [
  3702. -1.5646219253540039e-07,
  3703. 0.01000000536441803
  3704. ],
  3705. "type": "VEC2"
  3706. },
  3707. {
  3708. "bufferView": 0,
  3709. "byteOffset": 438036,
  3710. "componentType": 5125,
  3711. "count": 456,
  3712. "max": [
  3713. 163
  3714. ],
  3715. "min": [
  3716. 0
  3717. ],
  3718. "type": "SCALAR"
  3719. },
  3720. {
  3721. "bufferView": 2,
  3722. "byteOffset": 905304,
  3723. "componentType": 5126,
  3724. "count": 164,
  3725. "max": [
  3726. 1,
  3727. 1,
  3728. 10.424897193908691
  3729. ],
  3730. "min": [
  3731. -1.0000038146972656,
  3732. -26.555355072021484,
  3733. -1
  3734. ],
  3735. "type": "VEC3"
  3736. },
  3737. {
  3738. "bufferView": 2,
  3739. "byteOffset": 907272,
  3740. "componentType": 5126,
  3741. "count": 164,
  3742. "max": [
  3743. 1,
  3744. 1,
  3745. 1
  3746. ],
  3747. "min": [
  3748. -1,
  3749. -1,
  3750. -1
  3751. ],
  3752. "type": "VEC3"
  3753. },
  3754. {
  3755. "bufferView": 1,
  3756. "byteOffset": 301768,
  3757. "componentType": 5126,
  3758. "count": 164,
  3759. "max": [
  3760. 1,
  3761. 1
  3762. ],
  3763. "min": [
  3764. -1.5646219253540039e-07,
  3765. 0.01000000536441803
  3766. ],
  3767. "type": "VEC2"
  3768. },
  3769. {
  3770. "bufferView": 0,
  3771. "byteOffset": 439860,
  3772. "componentType": 5125,
  3773. "count": 456,
  3774. "max": [
  3775. 163
  3776. ],
  3777. "min": [
  3778. 0
  3779. ],
  3780. "type": "SCALAR"
  3781. },
  3782. {
  3783. "bufferView": 2,
  3784. "byteOffset": 909240,
  3785. "componentType": 5126,
  3786. "count": 549,
  3787. "max": [
  3788. 0.98993349075317383,
  3789. 2.5246820449829102,
  3790. 0.98162180185317993
  3791. ],
  3792. "min": [
  3793. -0.98993313312530518,
  3794. -1,
  3795. -0.99270886182785034
  3796. ],
  3797. "type": "VEC3"
  3798. },
  3799. {
  3800. "bufferView": 2,
  3801. "byteOffset": 915828,
  3802. "componentType": 5126,
  3803. "count": 549,
  3804. "max": [
  3805. 0.99573510885238647,
  3806. 1,
  3807. 0.98297816514968872
  3808. ],
  3809. "min": [
  3810. -0.99573510885238647,
  3811. -1,
  3812. -1
  3813. ],
  3814. "type": "VEC3"
  3815. },
  3816. {
  3817. "bufferView": 1,
  3818. "byteOffset": 303080,
  3819. "componentType": 5126,
  3820. "count": 549,
  3821. "max": [
  3822. 1.0000002384185791,
  3823. 1
  3824. ],
  3825. "min": [
  3826. 1.4901161193847656e-07,
  3827. 0
  3828. ],
  3829. "type": "VEC2"
  3830. },
  3831. {
  3832. "bufferView": 0,
  3833. "byteOffset": 441684,
  3834. "componentType": 5125,
  3835. "count": 2214,
  3836. "max": [
  3837. 548
  3838. ],
  3839. "min": [
  3840. 0
  3841. ],
  3842. "type": "SCALAR"
  3843. },
  3844. {
  3845. "bufferView": 2,
  3846. "byteOffset": 922416,
  3847. "componentType": 5126,
  3848. "count": 549,
  3849. "max": [
  3850. 0.98993349075317383,
  3851. 2.5246820449829102,
  3852. 0.98162180185317993
  3853. ],
  3854. "min": [
  3855. -0.98993313312530518,
  3856. -1,
  3857. -0.99270886182785034
  3858. ],
  3859. "type": "VEC3"
  3860. },
  3861. {
  3862. "bufferView": 2,
  3863. "byteOffset": 929004,
  3864. "componentType": 5126,
  3865. "count": 549,
  3866. "max": [
  3867. 0.99573510885238647,
  3868. 1,
  3869. 0.98297816514968872
  3870. ],
  3871. "min": [
  3872. -0.99573510885238647,
  3873. -1,
  3874. -1
  3875. ],
  3876. "type": "VEC3"
  3877. },
  3878. {
  3879. "bufferView": 1,
  3880. "byteOffset": 307472,
  3881. "componentType": 5126,
  3882. "count": 549,
  3883. "max": [
  3884. 1.0000002384185791,
  3885. 1
  3886. ],
  3887. "min": [
  3888. 1.4901161193847656e-07,
  3889. 0
  3890. ],
  3891. "type": "VEC2"
  3892. },
  3893. {
  3894. "bufferView": 0,
  3895. "byteOffset": 450540,
  3896. "componentType": 5125,
  3897. "count": 2214,
  3898. "max": [
  3899. 548
  3900. ],
  3901. "min": [
  3902. 0
  3903. ],
  3904. "type": "SCALAR"
  3905. },
  3906. {
  3907. "bufferView": 2,
  3908. "byteOffset": 935592,
  3909. "componentType": 5126,
  3910. "count": 549,
  3911. "max": [
  3912. 0.98993349075317383,
  3913. 2.5246820449829102,
  3914. 0.98162180185317993
  3915. ],
  3916. "min": [
  3917. -0.98993313312530518,
  3918. -1,
  3919. -0.99270886182785034
  3920. ],
  3921. "type": "VEC3"
  3922. },
  3923. {
  3924. "bufferView": 2,
  3925. "byteOffset": 942180,
  3926. "componentType": 5126,
  3927. "count": 549,
  3928. "max": [
  3929. 0.99573510885238647,
  3930. 1,
  3931. 0.98297816514968872
  3932. ],
  3933. "min": [
  3934. -0.99573510885238647,
  3935. -1,
  3936. -1
  3937. ],
  3938. "type": "VEC3"
  3939. },
  3940. {
  3941. "bufferView": 1,
  3942. "byteOffset": 311864,
  3943. "componentType": 5126,
  3944. "count": 549,
  3945. "max": [
  3946. 1.0000002384185791,
  3947. 1
  3948. ],
  3949. "min": [
  3950. 1.4901161193847656e-07,
  3951. 0
  3952. ],
  3953. "type": "VEC2"
  3954. },
  3955. {
  3956. "bufferView": 0,
  3957. "byteOffset": 459396,
  3958. "componentType": 5125,
  3959. "count": 2214,
  3960. "max": [
  3961. 548
  3962. ],
  3963. "min": [
  3964. 0
  3965. ],
  3966. "type": "SCALAR"
  3967. },
  3968. {
  3969. "bufferView": 2,
  3970. "byteOffset": 948768,
  3971. "componentType": 5126,
  3972. "count": 1098,
  3973. "max": [
  3974. 5.2558717727661133,
  3975. 2.5246820449829102,
  3976. 0.98162180185317993
  3977. ],
  3978. "min": [
  3979. -0.98993313312530518,
  3980. -1.9023939371109009,
  3981. -5.6014018058776855
  3982. ],
  3983. "type": "VEC3"
  3984. },
  3985. {
  3986. "bufferView": 2,
  3987. "byteOffset": 961944,
  3988. "componentType": 5126,
  3989. "count": 1098,
  3990. "max": [
  3991. 0.99616628885269165,
  3992. 1,
  3993. 0.99591159820556641
  3994. ],
  3995. "min": [
  3996. -0.99573510885238647,
  3997. -1,
  3998. -1
  3999. ],
  4000. "type": "VEC3"
  4001. },
  4002. {
  4003. "bufferView": 1,
  4004. "byteOffset": 316256,
  4005. "componentType": 5126,
  4006. "count": 1098,
  4007. "max": [
  4008. 1.0000002384185791,
  4009. 1
  4010. ],
  4011. "min": [
  4012. 1.4901161193847656e-07,
  4013. 0
  4014. ],
  4015. "type": "VEC2"
  4016. },
  4017. {
  4018. "bufferView": 0,
  4019. "byteOffset": 468252,
  4020. "componentType": 5125,
  4021. "count": 4428,
  4022. "max": [
  4023. 1097
  4024. ],
  4025. "min": [
  4026. 0
  4027. ],
  4028. "type": "SCALAR"
  4029. },
  4030. {
  4031. "bufferView": 2,
  4032. "byteOffset": 975120,
  4033. "componentType": 5126,
  4034. "count": 1098,
  4035. "max": [
  4036. 13.09250545501709,
  4037. 2.5246820449829102,
  4038. 0.98162180185317993
  4039. ],
  4040. "min": [
  4041. -0.98993313312530518,
  4042. -13.79865550994873,
  4043. -4.8468170166015625
  4044. ],
  4045. "type": "VEC3"
  4046. },
  4047. {
  4048. "bufferView": 2,
  4049. "byteOffset": 988296,
  4050. "componentType": 5126,
  4051. "count": 1098,
  4052. "max": [
  4053. 0.99819850921630859,
  4054. 1,
  4055. 0.99047261476516724
  4056. ],
  4057. "min": [
  4058. -0.99690014123916626,
  4059. -1,
  4060. -1
  4061. ],
  4062. "type": "VEC3"
  4063. },
  4064. {
  4065. "bufferView": 1,
  4066. "byteOffset": 325040,
  4067. "componentType": 5126,
  4068. "count": 1098,
  4069. "max": [
  4070. 1.0000002384185791,
  4071. 1
  4072. ],
  4073. "min": [
  4074. 1.4901161193847656e-07,
  4075. 0
  4076. ],
  4077. "type": "VEC2"
  4078. },
  4079. {
  4080. "bufferView": 0,
  4081. "byteOffset": 485964,
  4082. "componentType": 5125,
  4083. "count": 4428,
  4084. "max": [
  4085. 1097
  4086. ],
  4087. "min": [
  4088. 0
  4089. ],
  4090. "type": "SCALAR"
  4091. },
  4092. {
  4093. "bufferView": 2,
  4094. "byteOffset": 1001472,
  4095. "componentType": 5126,
  4096. "count": 1098,
  4097. "max": [
  4098. 0.98993349075317383,
  4099. 2.5246820449829102,
  4100. 0.98162180185317993
  4101. ],
  4102. "min": [
  4103. -29.493427276611328,
  4104. -65.940452575683594,
  4105. -13.386961936950684
  4106. ],
  4107. "type": "VEC3"
  4108. },
  4109. {
  4110. "bufferView": 2,
  4111. "byteOffset": 1014648,
  4112. "componentType": 5126,
  4113. "count": 1098,
  4114. "max": [
  4115. 0.99573510885238647,
  4116. 1,
  4117. 0.99929440021514893
  4118. ],
  4119. "min": [
  4120. -0.99814862012863159,
  4121. -1,
  4122. -1
  4123. ],
  4124. "type": "VEC3"
  4125. },
  4126. {
  4127. "bufferView": 1,
  4128. "byteOffset": 333824,
  4129. "componentType": 5126,
  4130. "count": 1098,
  4131. "max": [
  4132. 1.0000002384185791,
  4133. 1
  4134. ],
  4135. "min": [
  4136. 1.4901161193847656e-07,
  4137. 0
  4138. ],
  4139. "type": "VEC2"
  4140. },
  4141. {
  4142. "bufferView": 0,
  4143. "byteOffset": 503676,
  4144. "componentType": 5125,
  4145. "count": 4428,
  4146. "max": [
  4147. 1097
  4148. ],
  4149. "min": [
  4150. 0
  4151. ],
  4152. "type": "SCALAR"
  4153. }
  4154. ],
  4155. "asset": {
  4156. "extras": {
  4157. "author": "Todor (https://sketchfab.com/GoddHoward)",
  4158. "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)",
  4159. "source": "https://sketchfab.com/3d-models/star-destroyer-b5435fed6c3143f99b56f5de862a05bd",
  4160. "title": "Star Destroyer"
  4161. },
  4162. "generator": "Sketchfab-8.25.0",
  4163. "version": "2.0"
  4164. },
  4165. "bufferViews": [
  4166. {
  4167. "buffer": 0,
  4168. "byteLength": 521388,
  4169. "byteOffset": 0,
  4170. "name": "floatBufferViews",
  4171. "target": 34963
  4172. },
  4173. {
  4174. "buffer": 0,
  4175. "byteLength": 342608,
  4176. "byteOffset": 521388,
  4177. "byteStride": 8,
  4178. "name": "floatBufferViews",
  4179. "target": 34962
  4180. },
  4181. {
  4182. "buffer": 0,
  4183. "byteLength": 1027824,
  4184. "byteOffset": 863996,
  4185. "byteStride": 12,
  4186. "name": "floatBufferViews",
  4187. "target": 34962
  4188. }
  4189. ],
  4190. "buffers": [
  4191. {
  4192. "byteLength": 1891820,
  4193. "uri": "scene.bin"
  4194. }
  4195. ],
  4196. "images": [
  4197. {
  4198. "uri": "textures/Body_baseColor.png"
  4199. },
  4200. {
  4201. "uri": "textures/Body_metallicRoughness.png"
  4202. },
  4203. {
  4204. "uri": "textures/Body_emissive.png"
  4205. },
  4206. {
  4207. "uri": "textures/Body_Top_baseColor.png"
  4208. },
  4209. {
  4210. "uri": "textures/Body_Top_metallicRoughness.png"
  4211. },
  4212. {
  4213. "uri": "textures/Body_Top_emissive.png"
  4214. },
  4215. {
  4216. "uri": "textures/Material.004_baseColor.jpeg"
  4217. },
  4218. {
  4219. "uri": "textures/Material.004_metallicRoughness.png"
  4220. },
  4221. {
  4222. "uri": "textures/Engines_baseColor.png"
  4223. },
  4224. {
  4225. "uri": "textures/Engines_emissive.png"
  4226. },
  4227. {
  4228. "uri": "textures/Details_baseColor.png"
  4229. },
  4230. {
  4231. "uri": "textures/Details_metallicRoughness.png"
  4232. },
  4233. {
  4234. "uri": "textures/Bridge_Thing_emissive.png"
  4235. },
  4236. {
  4237. "uri": "textures/Turret_baseColor.png"
  4238. },
  4239. {
  4240. "uri": "textures/Turret_metallicRoughness.png"
  4241. }
  4242. ],
  4243. "materials": [
  4244. {
  4245. "doubleSided": true,
  4246. "emissiveFactor": [
  4247. 1,
  4248. 1,
  4249. 1
  4250. ],
  4251. "emissiveTexture": {
  4252. "index": 2,
  4253. "texCoord": 0
  4254. },
  4255. "name": "Body",
  4256. "pbrMetallicRoughness": {
  4257. "baseColorFactor": [
  4258. 1,
  4259. 1,
  4260. 1,
  4261. 1
  4262. ],
  4263. "baseColorTexture": {
  4264. "index": 0,
  4265. "texCoord": 0
  4266. },
  4267. "metallicFactor": 0,
  4268. "metallicRoughnessTexture": {
  4269. "index": 1,
  4270. "texCoord": 0
  4271. },
  4272. "roughnessFactor": 1
  4273. }
  4274. },
  4275. {
  4276. "doubleSided": true,
  4277. "emissiveFactor": [
  4278. 1,
  4279. 1,
  4280. 1
  4281. ],
  4282. "emissiveTexture": {
  4283. "index": 5,
  4284. "texCoord": 0
  4285. },
  4286. "name": "Body_Top",
  4287. "pbrMetallicRoughness": {
  4288. "baseColorFactor": [
  4289. 1,
  4290. 1,
  4291. 1,
  4292. 1
  4293. ],
  4294. "baseColorTexture": {
  4295. "index": 3,
  4296. "texCoord": 0
  4297. },
  4298. "metallicFactor": 0,
  4299. "metallicRoughnessTexture": {
  4300. "index": 4,
  4301. "texCoord": 0
  4302. },
  4303. "roughnessFactor": 1
  4304. }
  4305. },
  4306. {
  4307. "doubleSided": true,
  4308. "emissiveFactor": [
  4309. 0,
  4310. 0,
  4311. 0
  4312. ],
  4313. "name": "Material.004",
  4314. "pbrMetallicRoughness": {
  4315. "baseColorFactor": [
  4316. 1,
  4317. 1,
  4318. 1,
  4319. 1
  4320. ],
  4321. "baseColorTexture": {
  4322. "index": 6,
  4323. "texCoord": 0
  4324. },
  4325. "metallicFactor": 0,
  4326. "metallicRoughnessTexture": {
  4327. "index": 7,
  4328. "texCoord": 0
  4329. },
  4330. "roughnessFactor": 1
  4331. }
  4332. },
  4333. {
  4334. "doubleSided": true,
  4335. "emissiveFactor": [
  4336. 0,
  4337. 0,
  4338. 0
  4339. ],
  4340. "name": "Turret_Bed",
  4341. "pbrMetallicRoughness": {
  4342. "baseColorFactor": [
  4343. 1,
  4344. 1,
  4345. 1,
  4346. 1
  4347. ],
  4348. "baseColorTexture": {
  4349. "index": 6,
  4350. "texCoord": 0
  4351. },
  4352. "metallicFactor": 0,
  4353. "metallicRoughnessTexture": {
  4354. "index": 7,
  4355. "texCoord": 0
  4356. },
  4357. "roughnessFactor": 1
  4358. }
  4359. },
  4360. {
  4361. "doubleSided": true,
  4362. "emissiveFactor": [
  4363. 1,
  4364. 1,
  4365. 1
  4366. ],
  4367. "emissiveTexture": {
  4368. "index": 2,
  4369. "texCoord": 0
  4370. },
  4371. "name": "Material.003",
  4372. "pbrMetallicRoughness": {
  4373. "baseColorFactor": [
  4374. 1,
  4375. 1,
  4376. 1,
  4377. 1
  4378. ],
  4379. "baseColorTexture": {
  4380. "index": 0,
  4381. "texCoord": 0
  4382. },
  4383. "metallicFactor": 0,
  4384. "metallicRoughnessTexture": {
  4385. "index": 1,
  4386. "texCoord": 0
  4387. },
  4388. "roughnessFactor": 1
  4389. }
  4390. },
  4391. {
  4392. "doubleSided": true,
  4393. "emissiveFactor": [
  4394. 1,
  4395. 1,
  4396. 1
  4397. ],
  4398. "emissiveTexture": {
  4399. "index": 9,
  4400. "texCoord": 0
  4401. },
  4402. "name": "Engines",
  4403. "pbrMetallicRoughness": {
  4404. "baseColorFactor": [
  4405. 1,
  4406. 1,
  4407. 1,
  4408. 1
  4409. ],
  4410. "baseColorTexture": {
  4411. "index": 8,
  4412. "texCoord": 0
  4413. },
  4414. "metallicFactor": 0,
  4415. "roughnessFactor": 0.5
  4416. }
  4417. },
  4418. {
  4419. "doubleSided": true,
  4420. "emissiveFactor": [
  4421. 0,
  4422. 0,
  4423. 0
  4424. ],
  4425. "name": "Details",
  4426. "pbrMetallicRoughness": {
  4427. "baseColorFactor": [
  4428. 1,
  4429. 1,
  4430. 1,
  4431. 1
  4432. ],
  4433. "baseColorTexture": {
  4434. "index": 10,
  4435. "texCoord": 0
  4436. },
  4437. "metallicFactor": 0,
  4438. "metallicRoughnessTexture": {
  4439. "index": 11,
  4440. "texCoord": 0
  4441. },
  4442. "roughnessFactor": 1
  4443. }
  4444. },
  4445. {
  4446. "doubleSided": true,
  4447. "emissiveFactor": [
  4448. 1,
  4449. 1,
  4450. 1
  4451. ],
  4452. "emissiveTexture": {
  4453. "index": 12,
  4454. "texCoord": 0
  4455. },
  4456. "name": "Bridge_Thing",
  4457. "pbrMetallicRoughness": {
  4458. "baseColorFactor": [
  4459. 1,
  4460. 1,
  4461. 1,
  4462. 1
  4463. ],
  4464. "baseColorTexture": {
  4465. "index": 10,
  4466. "texCoord": 0
  4467. },
  4468. "metallicFactor": 0,
  4469. "metallicRoughnessTexture": {
  4470. "index": 11,
  4471. "texCoord": 0
  4472. },
  4473. "roughnessFactor": 1
  4474. }
  4475. },
  4476. {
  4477. "doubleSided": true,
  4478. "emissiveFactor": [
  4479. 0,
  4480. 0,
  4481. 0
  4482. ],
  4483. "name": "Turret",
  4484. "pbrMetallicRoughness": {
  4485. "baseColorFactor": [
  4486. 1,
  4487. 1,
  4488. 1,
  4489. 1
  4490. ],
  4491. "baseColorTexture": {
  4492. "index": 13,
  4493. "texCoord": 0
  4494. },
  4495. "metallicFactor": 0,
  4496. "metallicRoughnessTexture": {
  4497. "index": 14,
  4498. "texCoord": 0
  4499. },
  4500. "roughnessFactor": 1
  4501. }
  4502. }
  4503. ],
  4504. "meshes": [
  4505. {
  4506. "primitives": [
  4507. {
  4508. "attributes": {
  4509. "NORMAL": 1,
  4510. "POSITION": 0,
  4511. "TEXCOORD_0": 2
  4512. },
  4513. "indices": 3,
  4514. "material": 0,
  4515. "mode": 4
  4516. }
  4517. ]
  4518. },
  4519. {
  4520. "primitives": [
  4521. {
  4522. "attributes": {
  4523. "NORMAL": 5,
  4524. "POSITION": 4,
  4525. "TEXCOORD_0": 6
  4526. },
  4527. "indices": 7,
  4528. "material": 1,
  4529. "mode": 4
  4530. }
  4531. ]
  4532. },
  4533. {
  4534. "primitives": [
  4535. {
  4536. "attributes": {
  4537. "NORMAL": 9,
  4538. "POSITION": 8,
  4539. "TEXCOORD_0": 10
  4540. },
  4541. "indices": 11,
  4542. "material": 2,
  4543. "mode": 4
  4544. }
  4545. ]
  4546. },
  4547. {
  4548. "primitives": [
  4549. {
  4550. "attributes": {
  4551. "NORMAL": 13,
  4552. "POSITION": 12,
  4553. "TEXCOORD_0": 14
  4554. },
  4555. "indices": 15,
  4556. "material": 2,
  4557. "mode": 4
  4558. }
  4559. ]
  4560. },
  4561. {
  4562. "primitives": [
  4563. {
  4564. "attributes": {
  4565. "NORMAL": 17,
  4566. "POSITION": 16,
  4567. "TEXCOORD_0": 18
  4568. },
  4569. "indices": 19,
  4570. "material": 2,
  4571. "mode": 4
  4572. }
  4573. ]
  4574. },
  4575. {
  4576. "primitives": [
  4577. {
  4578. "attributes": {
  4579. "NORMAL": 21,
  4580. "POSITION": 20,
  4581. "TEXCOORD_0": 22
  4582. },
  4583. "indices": 23,
  4584. "material": 2,
  4585. "mode": 4
  4586. }
  4587. ]
  4588. },
  4589. {
  4590. "primitives": [
  4591. {
  4592. "attributes": {
  4593. "NORMAL": 25,
  4594. "POSITION": 24,
  4595. "TEXCOORD_0": 26
  4596. },
  4597. "indices": 27,
  4598. "material": 2,
  4599. "mode": 4
  4600. }
  4601. ]
  4602. },
  4603. {
  4604. "primitives": [
  4605. {
  4606. "attributes": {
  4607. "NORMAL": 29,
  4608. "POSITION": 28,
  4609. "TEXCOORD_0": 30
  4610. },
  4611. "indices": 31,
  4612. "material": 2,
  4613. "mode": 4
  4614. }
  4615. ]
  4616. },
  4617. {
  4618. "primitives": [
  4619. {
  4620. "attributes": {
  4621. "NORMAL": 33,
  4622. "POSITION": 32,
  4623. "TEXCOORD_0": 34
  4624. },
  4625. "indices": 35,
  4626. "material": 2,
  4627. "mode": 4
  4628. }
  4629. ]
  4630. },
  4631. {
  4632. "primitives": [
  4633. {
  4634. "attributes": {
  4635. "NORMAL": 37,
  4636. "POSITION": 36,
  4637. "TEXCOORD_0": 38
  4638. },
  4639. "indices": 39,
  4640. "material": 2,
  4641. "mode": 4
  4642. }
  4643. ]
  4644. },
  4645. {
  4646. "primitives": [
  4647. {
  4648. "attributes": {
  4649. "NORMAL": 41,
  4650. "POSITION": 40,
  4651. "TEXCOORD_0": 42
  4652. },
  4653. "indices": 43,
  4654. "material": 3,
  4655. "mode": 4
  4656. }
  4657. ]
  4658. },
  4659. {
  4660. "primitives": [
  4661. {
  4662. "attributes": {
  4663. "NORMAL": 45,
  4664. "POSITION": 44,
  4665. "TEXCOORD_0": 46
  4666. },
  4667. "indices": 47,
  4668. "material": 4,
  4669. "mode": 4
  4670. }
  4671. ]
  4672. },
  4673. {
  4674. "primitives": [
  4675. {
  4676. "attributes": {
  4677. "NORMAL": 49,
  4678. "POSITION": 48,
  4679. "TEXCOORD_0": 50
  4680. },
  4681. "indices": 51,
  4682. "material": 2,
  4683. "mode": 4
  4684. }
  4685. ]
  4686. },
  4687. {
  4688. "primitives": [
  4689. {
  4690. "attributes": {
  4691. "NORMAL": 53,
  4692. "POSITION": 52,
  4693. "TEXCOORD_0": 54
  4694. },
  4695. "indices": 55,
  4696. "material": 5,
  4697. "mode": 4
  4698. }
  4699. ]
  4700. },
  4701. {
  4702. "primitives": [
  4703. {
  4704. "attributes": {
  4705. "NORMAL": 57,
  4706. "POSITION": 56,
  4707. "TEXCOORD_0": 58
  4708. },
  4709. "indices": 59,
  4710. "material": 5,
  4711. "mode": 4
  4712. }
  4713. ]
  4714. },
  4715. {
  4716. "primitives": [
  4717. {
  4718. "attributes": {
  4719. "NORMAL": 61,
  4720. "POSITION": 60,
  4721. "TEXCOORD_0": 62
  4722. },
  4723. "indices": 63,
  4724. "material": 5,
  4725. "mode": 4
  4726. }
  4727. ]
  4728. },
  4729. {
  4730. "primitives": [
  4731. {
  4732. "attributes": {
  4733. "NORMAL": 65,
  4734. "POSITION": 64,
  4735. "TEXCOORD_0": 66
  4736. },
  4737. "indices": 67,
  4738. "material": 6,
  4739. "mode": 4
  4740. }
  4741. ]
  4742. },
  4743. {
  4744. "primitives": [
  4745. {
  4746. "attributes": {
  4747. "NORMAL": 69,
  4748. "POSITION": 68,
  4749. "TEXCOORD_0": 70
  4750. },
  4751. "indices": 71,
  4752. "material": 5,
  4753. "mode": 4
  4754. }
  4755. ]
  4756. },
  4757. {
  4758. "primitives": [
  4759. {
  4760. "attributes": {
  4761. "NORMAL": 73,
  4762. "POSITION": 72,
  4763. "TEXCOORD_0": 74
  4764. },
  4765. "indices": 75,
  4766. "material": 6,
  4767. "mode": 4
  4768. }
  4769. ]
  4770. },
  4771. {
  4772. "primitives": [
  4773. {
  4774. "attributes": {
  4775. "NORMAL": 77,
  4776. "POSITION": 76,
  4777. "TEXCOORD_0": 78
  4778. },
  4779. "indices": 79,
  4780. "material": 6,
  4781. "mode": 4
  4782. }
  4783. ]
  4784. },
  4785. {
  4786. "primitives": [
  4787. {
  4788. "attributes": {
  4789. "NORMAL": 81,
  4790. "POSITION": 80,
  4791. "TEXCOORD_0": 82
  4792. },
  4793. "indices": 83,
  4794. "material": 6,
  4795. "mode": 4
  4796. }
  4797. ]
  4798. },
  4799. {
  4800. "primitives": [
  4801. {
  4802. "attributes": {
  4803. "NORMAL": 85,
  4804. "POSITION": 84,
  4805. "TEXCOORD_0": 86
  4806. },
  4807. "indices": 87,
  4808. "material": 6,
  4809. "mode": 4
  4810. }
  4811. ]
  4812. },
  4813. {
  4814. "primitives": [
  4815. {
  4816. "attributes": {
  4817. "NORMAL": 89,
  4818. "POSITION": 88,
  4819. "TEXCOORD_0": 90
  4820. },
  4821. "indices": 91,
  4822. "material": 6,
  4823. "mode": 4
  4824. }
  4825. ]
  4826. },
  4827. {
  4828. "primitives": [
  4829. {
  4830. "attributes": {
  4831. "NORMAL": 93,
  4832. "POSITION": 92,
  4833. "TEXCOORD_0": 94
  4834. },
  4835. "indices": 95,
  4836. "material": 6,
  4837. "mode": 4
  4838. }
  4839. ]
  4840. },
  4841. {
  4842. "primitives": [
  4843. {
  4844. "attributes": {
  4845. "NORMAL": 97,
  4846. "POSITION": 96,
  4847. "TEXCOORD_0": 98
  4848. },
  4849. "indices": 99,
  4850. "material": 6,
  4851. "mode": 4
  4852. }
  4853. ]
  4854. },
  4855. {
  4856. "primitives": [
  4857. {
  4858. "attributes": {
  4859. "NORMAL": 101,
  4860. "POSITION": 100,
  4861. "TEXCOORD_0": 102
  4862. },
  4863. "indices": 103,
  4864. "material": 6,
  4865. "mode": 4
  4866. }
  4867. ]
  4868. },
  4869. {
  4870. "primitives": [
  4871. {
  4872. "attributes": {
  4873. "NORMAL": 105,
  4874. "POSITION": 104,
  4875. "TEXCOORD_0": 106
  4876. },
  4877. "indices": 107,
  4878. "material": 6,
  4879. "mode": 4
  4880. }
  4881. ]
  4882. },
  4883. {
  4884. "primitives": [
  4885. {
  4886. "attributes": {
  4887. "NORMAL": 109,
  4888. "POSITION": 108,
  4889. "TEXCOORD_0": 110
  4890. },
  4891. "indices": 111,
  4892. "material": 6,
  4893. "mode": 4
  4894. }
  4895. ]
  4896. },
  4897. {
  4898. "primitives": [
  4899. {
  4900. "attributes": {
  4901. "NORMAL": 113,
  4902. "POSITION": 112,
  4903. "TEXCOORD_0": 114
  4904. },
  4905. "indices": 115,
  4906. "material": 6,
  4907. "mode": 4
  4908. }
  4909. ]
  4910. },
  4911. {
  4912. "primitives": [
  4913. {
  4914. "attributes": {
  4915. "NORMAL": 117,
  4916. "POSITION": 116,
  4917. "TEXCOORD_0": 118
  4918. },
  4919. "indices": 119,
  4920. "material": 6,
  4921. "mode": 4
  4922. }
  4923. ]
  4924. },
  4925. {
  4926. "primitives": [
  4927. {
  4928. "attributes": {
  4929. "NORMAL": 121,
  4930. "POSITION": 120,
  4931. "TEXCOORD_0": 122
  4932. },
  4933. "indices": 123,
  4934. "material": 6,
  4935. "mode": 4
  4936. }
  4937. ]
  4938. },
  4939. {
  4940. "primitives": [
  4941. {
  4942. "attributes": {
  4943. "NORMAL": 125,
  4944. "POSITION": 124,
  4945. "TEXCOORD_0": 126
  4946. },
  4947. "indices": 127,
  4948. "material": 6,
  4949. "mode": 4
  4950. }
  4951. ]
  4952. },
  4953. {
  4954. "primitives": [
  4955. {
  4956. "attributes": {
  4957. "NORMAL": 129,
  4958. "POSITION": 128,
  4959. "TEXCOORD_0": 130
  4960. },
  4961. "indices": 131,
  4962. "material": 6,
  4963. "mode": 4
  4964. }
  4965. ]
  4966. },
  4967. {
  4968. "primitives": [
  4969. {
  4970. "attributes": {
  4971. "NORMAL": 133,
  4972. "POSITION": 132,
  4973. "TEXCOORD_0": 134
  4974. },
  4975. "indices": 135,
  4976. "material": 6,
  4977. "mode": 4
  4978. }
  4979. ]
  4980. },
  4981. {
  4982. "primitives": [
  4983. {
  4984. "attributes": {
  4985. "NORMAL": 137,
  4986. "POSITION": 136,
  4987. "TEXCOORD_0": 138
  4988. },
  4989. "indices": 139,
  4990. "material": 6,
  4991. "mode": 4
  4992. }
  4993. ]
  4994. },
  4995. {
  4996. "primitives": [
  4997. {
  4998. "attributes": {
  4999. "NORMAL": 141,
  5000. "POSITION": 140,
  5001. "TEXCOORD_0": 142
  5002. },
  5003. "indices": 143,
  5004. "material": 6,
  5005. "mode": 4
  5006. }
  5007. ]
  5008. },
  5009. {
  5010. "primitives": [
  5011. {
  5012. "attributes": {
  5013. "NORMAL": 145,
  5014. "POSITION": 144,
  5015. "TEXCOORD_0": 146
  5016. },
  5017. "indices": 147,
  5018. "material": 7,
  5019. "mode": 4
  5020. }
  5021. ]
  5022. },
  5023. {
  5024. "primitives": [
  5025. {
  5026. "attributes": {
  5027. "NORMAL": 149,
  5028. "POSITION": 148,
  5029. "TEXCOORD_0": 150
  5030. },
  5031. "indices": 151,
  5032. "material": 0,
  5033. "mode": 4
  5034. }
  5035. ]
  5036. },
  5037. {
  5038. "primitives": [
  5039. {
  5040. "attributes": {
  5041. "NORMAL": 153,
  5042. "POSITION": 152,
  5043. "TEXCOORD_0": 154
  5044. },
  5045. "indices": 155,
  5046. "material": 0,
  5047. "mode": 4
  5048. }
  5049. ]
  5050. },
  5051. {
  5052. "primitives": [
  5053. {
  5054. "attributes": {
  5055. "NORMAL": 157,
  5056. "POSITION": 156,
  5057. "TEXCOORD_0": 158
  5058. },
  5059. "indices": 159,
  5060. "material": 0,
  5061. "mode": 4
  5062. }
  5063. ]
  5064. },
  5065. {
  5066. "primitives": [
  5067. {
  5068. "attributes": {
  5069. "NORMAL": 161,
  5070. "POSITION": 160,
  5071. "TEXCOORD_0": 162
  5072. },
  5073. "indices": 163,
  5074. "material": 0,
  5075. "mode": 4
  5076. }
  5077. ]
  5078. },
  5079. {
  5080. "primitives": [
  5081. {
  5082. "attributes": {
  5083. "NORMAL": 165,
  5084. "POSITION": 164,
  5085. "TEXCOORD_0": 166
  5086. },
  5087. "indices": 167,
  5088. "material": 2,
  5089. "mode": 4
  5090. }
  5091. ]
  5092. },
  5093. {
  5094. "primitives": [
  5095. {
  5096. "attributes": {
  5097. "NORMAL": 169,
  5098. "POSITION": 168,
  5099. "TEXCOORD_0": 170
  5100. },
  5101. "indices": 171,
  5102. "material": 2,
  5103. "mode": 4
  5104. }
  5105. ]
  5106. },
  5107. {
  5108. "primitives": [
  5109. {
  5110. "attributes": {
  5111. "NORMAL": 173,
  5112. "POSITION": 172,
  5113. "TEXCOORD_0": 174
  5114. },
  5115. "indices": 175,
  5116. "material": 2,
  5117. "mode": 4
  5118. }
  5119. ]
  5120. },
  5121. {
  5122. "primitives": [
  5123. {
  5124. "attributes": {
  5125. "NORMAL": 177,
  5126. "POSITION": 176,
  5127. "TEXCOORD_0": 178
  5128. },
  5129. "indices": 179,
  5130. "material": 2,
  5131. "mode": 4
  5132. }
  5133. ]
  5134. },
  5135. {
  5136. "primitives": [
  5137. {
  5138. "attributes": {
  5139. "NORMAL": 181,
  5140. "POSITION": 180,
  5141. "TEXCOORD_0": 182
  5142. },
  5143. "indices": 183,
  5144. "material": 2,
  5145. "mode": 4
  5146. }
  5147. ]
  5148. },
  5149. {
  5150. "primitives": [
  5151. {
  5152. "attributes": {
  5153. "NORMAL": 185,
  5154. "POSITION": 184,
  5155. "TEXCOORD_0": 186
  5156. },
  5157. "indices": 187,
  5158. "material": 2,
  5159. "mode": 4
  5160. }
  5161. ]
  5162. },
  5163. {
  5164. "primitives": [
  5165. {
  5166. "attributes": {
  5167. "NORMAL": 189,
  5168. "POSITION": 188,
  5169. "TEXCOORD_0": 190
  5170. },
  5171. "indices": 191,
  5172. "material": 2,
  5173. "mode": 4
  5174. }
  5175. ]
  5176. },
  5177. {
  5178. "primitives": [
  5179. {
  5180. "attributes": {
  5181. "NORMAL": 193,
  5182. "POSITION": 192,
  5183. "TEXCOORD_0": 194
  5184. },
  5185. "indices": 195,
  5186. "material": 2,
  5187. "mode": 4
  5188. }
  5189. ]
  5190. },
  5191. {
  5192. "primitives": [
  5193. {
  5194. "attributes": {
  5195. "NORMAL": 197,
  5196. "POSITION": 196,
  5197. "TEXCOORD_0": 198
  5198. },
  5199. "indices": 199,
  5200. "material": 2,
  5201. "mode": 4
  5202. }
  5203. ]
  5204. },
  5205. {
  5206. "primitives": [
  5207. {
  5208. "attributes": {
  5209. "NORMAL": 201,
  5210. "POSITION": 200,
  5211. "TEXCOORD_0": 202
  5212. },
  5213. "indices": 203,
  5214. "material": 2,
  5215. "mode": 4
  5216. }
  5217. ]
  5218. },
  5219. {
  5220. "primitives": [
  5221. {
  5222. "attributes": {
  5223. "NORMAL": 205,
  5224. "POSITION": 204,
  5225. "TEXCOORD_0": 206
  5226. },
  5227. "indices": 207,
  5228. "material": 2,
  5229. "mode": 4
  5230. }
  5231. ]
  5232. },
  5233. {
  5234. "primitives": [
  5235. {
  5236. "attributes": {
  5237. "NORMAL": 209,
  5238. "POSITION": 208,
  5239. "TEXCOORD_0": 210
  5240. },
  5241. "indices": 211,
  5242. "material": 2,
  5243. "mode": 4
  5244. }
  5245. ]
  5246. },
  5247. {
  5248. "primitives": [
  5249. {
  5250. "attributes": {
  5251. "NORMAL": 213,
  5252. "POSITION": 212,
  5253. "TEXCOORD_0": 214
  5254. },
  5255. "indices": 215,
  5256. "material": 2,
  5257. "mode": 4
  5258. }
  5259. ]
  5260. },
  5261. {
  5262. "primitives": [
  5263. {
  5264. "attributes": {
  5265. "NORMAL": 217,
  5266. "POSITION": 216,
  5267. "TEXCOORD_0": 218
  5268. },
  5269. "indices": 219,
  5270. "material": 2,
  5271. "mode": 4
  5272. }
  5273. ]
  5274. },
  5275. {
  5276. "primitives": [
  5277. {
  5278. "attributes": {
  5279. "NORMAL": 221,
  5280. "POSITION": 220,
  5281. "TEXCOORD_0": 222
  5282. },
  5283. "indices": 223,
  5284. "material": 2,
  5285. "mode": 4
  5286. }
  5287. ]
  5288. },
  5289. {
  5290. "primitives": [
  5291. {
  5292. "attributes": {
  5293. "NORMAL": 225,
  5294. "POSITION": 224,
  5295. "TEXCOORD_0": 226
  5296. },
  5297. "indices": 227,
  5298. "material": 2,
  5299. "mode": 4
  5300. }
  5301. ]
  5302. },
  5303. {
  5304. "primitives": [
  5305. {
  5306. "attributes": {
  5307. "NORMAL": 229,
  5308. "POSITION": 228,
  5309. "TEXCOORD_0": 230
  5310. },
  5311. "indices": 231,
  5312. "material": 2,
  5313. "mode": 4
  5314. }
  5315. ]
  5316. },
  5317. {
  5318. "primitives": [
  5319. {
  5320. "attributes": {
  5321. "NORMAL": 233,
  5322. "POSITION": 232,
  5323. "TEXCOORD_0": 234
  5324. },
  5325. "indices": 235,
  5326. "material": 2,
  5327. "mode": 4
  5328. }
  5329. ]
  5330. },
  5331. {
  5332. "primitives": [
  5333. {
  5334. "attributes": {
  5335. "NORMAL": 237,
  5336. "POSITION": 236,
  5337. "TEXCOORD_0": 238
  5338. },
  5339. "indices": 239,
  5340. "material": 2,
  5341. "mode": 4
  5342. }
  5343. ]
  5344. },
  5345. {
  5346. "primitives": [
  5347. {
  5348. "attributes": {
  5349. "NORMAL": 241,
  5350. "POSITION": 240,
  5351. "TEXCOORD_0": 242
  5352. },
  5353. "indices": 243,
  5354. "material": 2,
  5355. "mode": 4
  5356. }
  5357. ]
  5358. },
  5359. {
  5360. "primitives": [
  5361. {
  5362. "attributes": {
  5363. "NORMAL": 245,
  5364. "POSITION": 244,
  5365. "TEXCOORD_0": 246
  5366. },
  5367. "indices": 247,
  5368. "material": 8,
  5369. "mode": 4
  5370. }
  5371. ]
  5372. },
  5373. {
  5374. "primitives": [
  5375. {
  5376. "attributes": {
  5377. "NORMAL": 249,
  5378. "POSITION": 248,
  5379. "TEXCOORD_0": 250
  5380. },
  5381. "indices": 251,
  5382. "material": 8,
  5383. "mode": 4
  5384. }
  5385. ]
  5386. },
  5387. {
  5388. "primitives": [
  5389. {
  5390. "attributes": {
  5391. "NORMAL": 253,
  5392. "POSITION": 252,
  5393. "TEXCOORD_0": 254
  5394. },
  5395. "indices": 255,
  5396. "material": 8,
  5397. "mode": 4
  5398. }
  5399. ]
  5400. },
  5401. {
  5402. "primitives": [
  5403. {
  5404. "attributes": {
  5405. "NORMAL": 257,
  5406. "POSITION": 256,
  5407. "TEXCOORD_0": 258
  5408. },
  5409. "indices": 259,
  5410. "material": 8,
  5411. "mode": 4
  5412. }
  5413. ]
  5414. },
  5415. {
  5416. "primitives": [
  5417. {
  5418. "attributes": {
  5419. "NORMAL": 261,
  5420. "POSITION": 260,
  5421. "TEXCOORD_0": 262
  5422. },
  5423. "indices": 263,
  5424. "material": 8,
  5425. "mode": 4
  5426. }
  5427. ]
  5428. },
  5429. {
  5430. "primitives": [
  5431. {
  5432. "attributes": {
  5433. "NORMAL": 265,
  5434. "POSITION": 264,
  5435. "TEXCOORD_0": 266
  5436. },
  5437. "indices": 267,
  5438. "material": 8,
  5439. "mode": 4
  5440. }
  5441. ]
  5442. }
  5443. ],
  5444. "nodes": [
  5445. {
  5446. "children": [
  5447. 1
  5448. ],
  5449. "name": "RootNode (gltf orientation matrix)",
  5450. "rotation": [
  5451. -0.70710678118654746,
  5452. -0,
  5453. -0,
  5454. 0.70710678118654757
  5455. ]
  5456. },
  5457. {
  5458. "children": [
  5459. 2
  5460. ],
  5461. "name": "RootNode (model correction matrix)"
  5462. },
  5463. {
  5464. "children": [
  5465. 3
  5466. ],
  5467. "name": "root"
  5468. },
  5469. {
  5470. "children": [
  5471. 4,
  5472. 6,
  5473. 8,
  5474. 10,
  5475. 12,
  5476. 14,
  5477. 16,
  5478. 18,
  5479. 20,
  5480. 22,
  5481. 24,
  5482. 26,
  5483. 28,
  5484. 30,
  5485. 32,
  5486. 34,
  5487. 36,
  5488. 38,
  5489. 40,
  5490. 42,
  5491. 44,
  5492. 46,
  5493. 48,
  5494. 50,
  5495. 52,
  5496. 54,
  5497. 56,
  5498. 58,
  5499. 60,
  5500. 62,
  5501. 64,
  5502. 66,
  5503. 68,
  5504. 70,
  5505. 72,
  5506. 74,
  5507. 76,
  5508. 78,
  5509. 80,
  5510. 82,
  5511. 84,
  5512. 86,
  5513. 88,
  5514. 90,
  5515. 92,
  5516. 94,
  5517. 96,
  5518. 98,
  5519. 100,
  5520. 102,
  5521. 104,
  5522. 106,
  5523. 108,
  5524. 110,
  5525. 112,
  5526. 114,
  5527. 116,
  5528. 118,
  5529. 120,
  5530. 122,
  5531. 124,
  5532. 126,
  5533. 128,
  5534. 130,
  5535. 132,
  5536. 134,
  5537. 136
  5538. ],
  5539. "matrix": [
  5540. 1,
  5541. 0,
  5542. 0,
  5543. 0,
  5544. 0,
  5545. 2.2204460492503131e-16,
  5546. 1,
  5547. 0,
  5548. 0,
  5549. -1,
  5550. 2.2204460492503131e-16,
  5551. 0,
  5552. 0,
  5553. 0,
  5554. 0,
  5555. 1
  5556. ],
  5557. "name": "GLTF_SceneRootNode"
  5558. },
  5559. {
  5560. "children": [
  5561. 5
  5562. ],
  5563. "name": "Body_0"
  5564. },
  5565. {
  5566. "mesh": 0,
  5567. "name": ""
  5568. },
  5569. {
  5570. "children": [
  5571. 7
  5572. ],
  5573. "matrix": [
  5574. 1,
  5575. 0,
  5576. 0,
  5577. 0,
  5578. 0,
  5579. 1,
  5580. 0,
  5581. 0,
  5582. 0,
  5583. 0,
  5584. 2.8749537467956543,
  5585. 0,
  5586. -6.6335926055908203,
  5587. 1.3362034559249878,
  5588. 0,
  5589. 1
  5590. ],
  5591. "name": "Body Top_1"
  5592. },
  5593. {
  5594. "mesh": 1,
  5595. "name": ""
  5596. },
  5597. {
  5598. "children": [
  5599. 9
  5600. ],
  5601. "matrix": [
  5602. 0.72296088933944702,
  5603. 0,
  5604. 0,
  5605. 0,
  5606. 0,
  5607. 0.72296088933944702,
  5608. 0,
  5609. 0,
  5610. 0,
  5611. 0,
  5612. 0.72296088933944702,
  5613. 0,
  5614. -7.7796740531921387,
  5615. -0.6067313551902771,
  5616. 0,
  5617. 1
  5618. ],
  5619. "name": "Engine Center_2"
  5620. },
  5621. {
  5622. "mesh": 2,
  5623. "name": ""
  5624. },
  5625. {
  5626. "children": [
  5627. 11
  5628. ],
  5629. "matrix": [
  5630. 0.72296088933944702,
  5631. 0,
  5632. 0,
  5633. 0,
  5634. 0,
  5635. 0.72296088933944702,
  5636. 0,
  5637. 0,
  5638. 0,
  5639. 0,
  5640. 0.72296088933944702,
  5641. 0,
  5642. -7.7796740531921387,
  5643. -0.6067313551902771,
  5644. -2.7997605800628662,
  5645. 1
  5646. ],
  5647. "name": "Engines Side_3"
  5648. },
  5649. {
  5650. "mesh": 3,
  5651. "name": ""
  5652. },
  5653. {
  5654. "children": [
  5655. 13
  5656. ],
  5657. "matrix": [
  5658. 4.9148052779521034e-08,
  5659. -0.58305728435516158,
  5660. -0,
  5661. 0,
  5662. 0.58305728435516158,
  5663. 4.9148052779521034e-08,
  5664. 0,
  5665. 0,
  5666. 0,
  5667. -0,
  5668. 0.58305728435516357,
  5669. 0,
  5670. -6.5872435569763184,
  5671. -0.6094290018081665,
  5672. -2.80210280418396,
  5673. 1
  5674. ],
  5675. "name": "Cylinder.001_4"
  5676. },
  5677. {
  5678. "mesh": 4,
  5679. "name": ""
  5680. },
  5681. {
  5682. "children": [
  5683. 15
  5684. ],
  5685. "matrix": [
  5686. 4.9148052779521034e-08,
  5687. -0.58305728435516158,
  5688. -0,
  5689. 0,
  5690. 0.58305728435516158,
  5691. 4.9148052779521034e-08,
  5692. 0,
  5693. 0,
  5694. 0,
  5695. -0,
  5696. 0.58305728435516357,
  5697. 0,
  5698. -6.5872435569763184,
  5699. -0.6094290018081665,
  5700. 0,
  5701. 1
  5702. ],
  5703. "name": "Cylinder.002_5"
  5704. },
  5705. {
  5706. "mesh": 5,
  5707. "name": ""
  5708. },
  5709. {
  5710. "children": [
  5711. 17
  5712. ],
  5713. "matrix": [
  5714. 0.27849036455154419,
  5715. 0,
  5716. 0,
  5717. 0,
  5718. 0,
  5719. 0.27849036455154419,
  5720. 0,
  5721. 0,
  5722. 0,
  5723. 0,
  5724. 0.27849036455154419,
  5725. 0,
  5726. -7.6839590072631836,
  5727. -0.26039281487464905,
  5728. -1.5853934288024902,
  5729. 1
  5730. ],
  5731. "name": "Engines Top_6"
  5732. },
  5733. {
  5734. "mesh": 6,
  5735. "name": ""
  5736. },
  5737. {
  5738. "children": [
  5739. 19
  5740. ],
  5741. "matrix": [
  5742. 2.1799592699594047e-08,
  5743. -0.25861474871635348,
  5744. -0,
  5745. 0,
  5746. 0.25861474871635348,
  5747. 2.1799592699594047e-08,
  5748. 0,
  5749. 0,
  5750. 0,
  5751. -0,
  5752. 0.25861474871635437,
  5753. 0,
  5754. -7.2246246337890625,
  5755. -0.26143196225166321,
  5756. -1.5862956047058105,
  5757. 1
  5758. ],
  5759. "name": "Cylinder.003_7"
  5760. },
  5761. {
  5762. "mesh": 7,
  5763. "name": ""
  5764. },
  5765. {
  5766. "children": [
  5767. 21
  5768. ],
  5769. "matrix": [
  5770. 0.27849036455154419,
  5771. 0,
  5772. 0,
  5773. 0,
  5774. 0,
  5775. 0.27849036455154419,
  5776. 0,
  5777. 0,
  5778. 0,
  5779. 0,
  5780. 0.27849036455154419,
  5781. 0,
  5782. -7.6839590072631836,
  5783. -0.91387021541595459,
  5784. -1.5853934288024902,
  5785. 1
  5786. ],
  5787. "name": "Engines Bottom_8"
  5788. },
  5789. {
  5790. "mesh": 8,
  5791. "name": ""
  5792. },
  5793. {
  5794. "children": [
  5795. 23
  5796. ],
  5797. "matrix": [
  5798. 2.1799592699594047e-08,
  5799. -0.25861474871635348,
  5800. -0,
  5801. 0,
  5802. 0.25861474871635348,
  5803. 2.1799592699594047e-08,
  5804. 0,
  5805. 0,
  5806. 0,
  5807. -0,
  5808. 0.25861474871635437,
  5809. 0,
  5810. -7.2246246337890625,
  5811. -0.91490936279296875,
  5812. -1.5862956047058105,
  5813. 1
  5814. ],
  5815. "name": "Cylinder.004_9"
  5816. },
  5817. {
  5818. "mesh": 9,
  5819. "name": ""
  5820. },
  5821. {
  5822. "children": [
  5823. 25
  5824. ],
  5825. "matrix": [
  5826. 0.99709055327899376,
  5827. -0.074395309567864554,
  5828. 0.016606217994828719,
  5829. 0,
  5830. 0.075511472130267765,
  5831. 0.97006216741336038,
  5832. -0.18810425597581312,
  5833. 0,
  5834. -0.0021751661368687772,
  5835. 0.19418307381057695,
  5836. 1.0005377203307608,
  5837. 0,
  5838. -4.2351341247558594,
  5839. 0.31964609026908875,
  5840. -2.7979943752288818,
  5841. 1
  5842. ],
  5843. "name": "Turret Bed_10"
  5844. },
  5845. {
  5846. "mesh": 10,
  5847. "name": ""
  5848. },
  5849. {
  5850. "children": [
  5851. 27
  5852. ],
  5853. "matrix": [
  5854. 0.71860713844353019,
  5855. -0.062869971286382956,
  5856. -0,
  5857. 0,
  5858. 0.030284333862698881,
  5859. 0.34615155775418821,
  5860. 0,
  5861. 0,
  5862. 0,
  5863. 0,
  5864. 1.6824305057525635,
  5865. 0,
  5866. -5.5786843299865723,
  5867. 2.978748083114624,
  5868. 0,
  5869. 1
  5870. ],
  5871. "name": "Bridge_11"
  5872. },
  5873. {
  5874. "mesh": 11,
  5875. "name": ""
  5876. },
  5877. {
  5878. "children": [
  5879. 29
  5880. ],
  5881. "matrix": [
  5882. 0.014400475259683168,
  5883. -0.17688142442289681,
  5884. -0.0034633509229756005,
  5885. 0,
  5886. 0.11108644575812324,
  5887. 0.0090972451068926895,
  5888. -0.0027245460293437384,
  5889. 0,
  5890. 0.002892547928229342,
  5891. -0.0019464548003692269,
  5892. 0.11143709405295155,
  5893. 0,
  5894. 2.4735407829284668,
  5895. -1.0964250564575195,
  5896. 0.83889311552047729,
  5897. 1
  5898. ],
  5899. "name": "Plane.001_12"
  5900. },
  5901. {
  5902. "mesh": 12,
  5903. "name": ""
  5904. },
  5905. {
  5906. "children": [
  5907. 31
  5908. ],
  5909. "matrix": [
  5910. 0.27849036455154419,
  5911. 0,
  5912. 0,
  5913. 0,
  5914. 0,
  5915. 0.27849036455154419,
  5916. 0,
  5917. 0,
  5918. 0,
  5919. 0,
  5920. 0.27849036455154419,
  5921. 0,
  5922. -7.2672309875488281,
  5923. -0.60674089193344116,
  5924. -2.7742810249328613,
  5925. 1
  5926. ],
  5927. "name": "Engines Bottom.001_13"
  5928. },
  5929. {
  5930. "mesh": 13,
  5931. "name": ""
  5932. },
  5933. {
  5934. "children": [
  5935. 33
  5936. ],
  5937. "matrix": [
  5938. 0.27849036455154419,
  5939. 0,
  5940. 0,
  5941. 0,
  5942. 0,
  5943. 0.27849036455154419,
  5944. 0,
  5945. 0,
  5946. 0,
  5947. 0,
  5948. 0.27849036455154419,
  5949. 0,
  5950. -7.2672309875488281,
  5951. -0.60674089193344116,
  5952. 0,
  5953. 1
  5954. ],
  5955. "name": "Engines Bottom.002_14"
  5956. },
  5957. {
  5958. "mesh": 14,
  5959. "name": ""
  5960. },
  5961. {
  5962. "children": [
  5963. 35
  5964. ],
  5965. "matrix": [
  5966. 0.051507387310266495,
  5967. 0,
  5968. 0,
  5969. 0,
  5970. 0,
  5971. 0.051507387310266495,
  5972. 0,
  5973. 0,
  5974. 0,
  5975. 0,
  5976. 0.051507387310266495,
  5977. 0,
  5978. -7.4701433181762695,
  5979. -0.26039281487464905,
  5980. -1.5853934288024902,
  5981. 1
  5982. ],
  5983. "name": "Engines Top.001_15"
  5984. },
  5985. {
  5986. "mesh": 15,
  5987. "name": ""
  5988. },
  5989. {
  5990. "children": [
  5991. 37
  5992. ],
  5993. "matrix": [
  5994. 0.0019675809418364127,
  5995. 0.022489507067065866,
  5996. 0.00035078684760777543,
  5997. -0,
  5998. 6.1132513019873866e-05,
  5999. 0.00069898484506665439,
  6000. -0.045155934119155736,
  6001. 0,
  6002. 0.49424363136893396,
  6003. -0.043240799663868387,
  6004. -2.2828503405449336e-07,
  6005. 0,
  6006. -6.060002326965332,
  6007. 1.4624011516571045,
  6008. -1.6584311723709106,
  6009. 1
  6010. ],
  6011. "name": "Cube.012_16"
  6012. },
  6013. {
  6014. "mesh": 16,
  6015. "name": ""
  6016. },
  6017. {
  6018. "children": [
  6019. 39
  6020. ],
  6021. "matrix": [
  6022. 0.051507387310266495,
  6023. 0,
  6024. 0,
  6025. 0,
  6026. 0,
  6027. 0.051507387310266495,
  6028. 0,
  6029. 0,
  6030. 0,
  6031. 0,
  6032. 0.051507387310266495,
  6033. 0,
  6034. -7.4701433181762695,
  6035. -0.91598880290985107,
  6036. -1.5853934288024902,
  6037. 1
  6038. ],
  6039. "name": "Engines Top.002_17"
  6040. },
  6041. {
  6042. "mesh": 17,
  6043. "name": ""
  6044. },
  6045. {
  6046. "children": [
  6047. 41
  6048. ],
  6049. "matrix": [
  6050. -0.021231814586552412,
  6051. 0.0018575428798349629,
  6052. 0,
  6053. -0,
  6054. 0.017230063255191105,
  6055. 0.1969405456638986,
  6056. 0,
  6057. 0,
  6058. 0,
  6059. 0,
  6060. 0.057840514928102493,
  6061. 0,
  6062. -4.8231630325317383,
  6063. 3.1352159976959229,
  6064. 0,
  6065. 1
  6066. ],
  6067. "name": "Cube_18"
  6068. },
  6069. {
  6070. "mesh": 18,
  6071. "name": ""
  6072. },
  6073. {
  6074. "children": [
  6075. 43
  6076. ],
  6077. "matrix": [
  6078. -0.0034689251585906283,
  6079. -0.039650039346151508,
  6080. -0.0054590921864128544,
  6081. -0,
  6082. -0.0045376060525527161,
  6083. -0.051866210401844769,
  6084. 0.37959386436484566,
  6085. 0,
  6086. 0.057620414952957444,
  6087. -0.005041125647794179,
  6088. -1.4067322984109592e-08,
  6089. 0,
  6090. -4.8863797187805176,
  6091. 2.7065653800964355,
  6092. -0.49422904849052429,
  6093. 1
  6094. ],
  6095. "name": "Cube.003_19"
  6096. },
  6097. {
  6098. "mesh": 19,
  6099. "name": ""
  6100. },
  6101. {
  6102. "children": [
  6103. 45
  6104. ],
  6105. "matrix": [
  6106. 0.002360775152782808,
  6107. 0.026983738271214312,
  6108. 0.0004208911721150117,
  6109. -0,
  6110. 0.00012018841574124108,
  6111. 0.0013740810504058408,
  6112. -0.088767794927547342,
  6113. 0,
  6114. 0.057620409886854032,
  6115. -0.0050411408106934607,
  6116. -1.836568928039748e-08,
  6117. 0,
  6118. -4.882288932800293,
  6119. 2.9380886554718018,
  6120. -0.68038761615753174,
  6121. 1
  6122. ],
  6123. "name": "Cube.004_20"
  6124. },
  6125. {
  6126. "mesh": 20,
  6127. "name": ""
  6128. },
  6129. {
  6130. "children": [
  6131. 47
  6132. ],
  6133. "matrix": [
  6134. 0.0085349972009017006,
  6135. -0.0008805335578512375,
  6136. -4.8643084180903693e-09,
  6137. -0,
  6138. 0.0091106917070790886,
  6139. 0.088309783908710679,
  6140. -2.5893338924696473e-09,
  6141. 0,
  6142. -3.279071406688558e-08,
  6143. 1.6869895323396104e-09,
  6144. -0.057840514928093154,
  6145. 0,
  6146. -4.8061966896057129,
  6147. 3.2369990348815918,
  6148. -0.097466707229614258,
  6149. 1
  6150. ],
  6151. "name": "Cube.005_21"
  6152. },
  6153. {
  6154. "mesh": 21,
  6155. "name": ""
  6156. },
  6157. {
  6158. "children": [
  6159. 49
  6160. ],
  6161. "matrix": [
  6162. 1.2590300038246242e-09,
  6163. -0.022512478795792552,
  6164. -0.0030877675624746055,
  6165. -0,
  6166. 2.2498862607306911e-08,
  6167. -0.048126835333980711,
  6168. 0.3508859841433673,
  6169. 0,
  6170. 0.057840514928102285,
  6171. 3.6743421710654416e-09,
  6172. -3.2047770195122415e-09,
  6173. 0,
  6174. -4.9172654151916504,
  6175. 2.6305530071258545,
  6176. -1.2976090908050537,
  6177. 1
  6178. ],
  6179. "name": "Cube.006_22"
  6180. },
  6181. {
  6182. "mesh": 22,
  6183. "name": ""
  6184. },
  6185. {
  6186. "children": [
  6187. 51
  6188. ],
  6189. "matrix": [
  6190. 0.0024428226152747048,
  6191. 0.027921533138318227,
  6192. 0.00043551450731038838,
  6193. -0,
  6194. 0.000120174645881888,
  6195. 0.0013740684307445941,
  6196. -0.088767795141535336,
  6197. 0,
  6198. 0.43223824309359576,
  6199. -0.037816020461214607,
  6200. -1.996455103952971e-07,
  6201. 0,
  6202. -3.5324151515960693,
  6203. 1.4492390155792236,
  6204. -1.6250172853469849,
  6205. 1
  6206. ],
  6207. "name": "Cube.007_23"
  6208. },
  6209. {
  6210. "mesh": 23,
  6211. "name": ""
  6212. },
  6213. {
  6214. "children": [
  6215. 53
  6216. ],
  6217. "matrix": [
  6218. 0.0038678817950257263,
  6219. 0.044210000775174549,
  6220. 0.00068957877815701305,
  6221. -0,
  6222. 0.000120174645881888,
  6223. 0.0013740684307445941,
  6224. -0.088767795141535336,
  6225. 0,
  6226. 0.97158696656679078,
  6227. -0.085003012099471434,
  6228. -4.4876402986776668e-07,
  6229. 0,
  6230. -4.3190522193908691,
  6231. 1.4077367782592773,
  6232. -1.7036296129226685,
  6233. 1
  6234. ],
  6235. "name": "Cube.008_24"
  6236. },
  6237. {
  6238. "mesh": 24,
  6239. "name": ""
  6240. },
  6241. {
  6242. "children": [
  6243. 55
  6244. ],
  6245. "matrix": [
  6246. 0.0013632098633479105,
  6247. 0.015581528161704293,
  6248. 0.00024303756985230937,
  6249. -0,
  6250. 0.000120174645881888,
  6251. 0.0013740684307445941,
  6252. -0.088767795141535336,
  6253. 0,
  6254. 0.43223824309359576,
  6255. -0.037816020461214607,
  6256. -1.996455103952971e-07,
  6257. 0,
  6258. -1.8060562610626221,
  6259. 1.3519692420959473,
  6260. -1.4739513397216797,
  6261. 1
  6262. ],
  6263. "name": "Cube.009_25"
  6264. },
  6265. {
  6266. "mesh": 25,
  6267. "name": ""
  6268. },
  6269. {
  6270. "children": [
  6271. 57
  6272. ],
  6273. "matrix": [
  6274. 0.0013632098633479105,
  6275. 0.015581528161704293,
  6276. 0.00024303756985230937,
  6277. -0,
  6278. 0.000120174645881888,
  6279. 0.0013740684307445941,
  6280. -0.088767795141535336,
  6281. 0,
  6282. 0.43223824309359576,
  6283. -0.037816020461214607,
  6284. -1.996455103952971e-07,
  6285. 0,
  6286. -1.8149198293685913,
  6287. 1.2506577968597412,
  6288. -1.4755315780639648,
  6289. 1
  6290. ],
  6291. "name": "Cube.010_26"
  6292. },
  6293. {
  6294. "mesh": 26,
  6295. "name": ""
  6296. },
  6297. {
  6298. "children": [
  6299. 59
  6300. ],
  6301. "matrix": [
  6302. 0.0019675809418364127,
  6303. 0.022489507067065866,
  6304. 0.00035078684760777543,
  6305. -0,
  6306. 6.1132513019873866e-05,
  6307. 0.00069898484506665439,
  6308. -0.045155934119155736,
  6309. 0,
  6310. 0.49424363136893396,
  6311. -0.043240799663868387,
  6312. -2.2828503405449336e-07,
  6313. 0,
  6314. -5.6416358947753906,
  6315. 1.7153143882751465,
  6316. -1.7036296129226685,
  6317. 1
  6318. ],
  6319. "name": "Cube.011_27"
  6320. },
  6321. {
  6322. "mesh": 27,
  6323. "name": ""
  6324. },
  6325. {
  6326. "children": [
  6327. 61
  6328. ],
  6329. "matrix": [
  6330. 0.0020869073916560347,
  6331. 0.044329781089022607,
  6332. 0.00068958186642024369,
  6333. -0,
  6334. 6.4824373696064939e-05,
  6335. 0.0013777956448339102,
  6336. -0.088767795045551948,
  6337. 0,
  6338. 0.97421933532549976,
  6339. -0.045863191629133403,
  6340. -4.1622561105609256e-07,
  6341. 0,
  6342. -3.6093587875366211,
  6343. 0.89719510078430176,
  6344. -2.1144657135009766,
  6345. 1
  6346. ],
  6347. "name": "Cube.013_28"
  6348. },
  6349. {
  6350. "mesh": 28,
  6351. "name": ""
  6352. },
  6353. {
  6354. "children": [
  6355. 63
  6356. ],
  6357. "matrix": [
  6358. 0.0020869073916560347,
  6359. 0.044329781089022607,
  6360. 0.00068958186642024369,
  6361. -0,
  6362. 0.0001491116785210516,
  6363. 0.0031692619542061273,
  6364. -0.204187316639797,
  6365. 0,
  6366. 0.97421927578679424,
  6367. -0.045863188826237834,
  6368. -4.162255856187673e-07,
  6369. 0,
  6370. -1.976670503616333,
  6371. 0.58968186378479004,
  6372. -1.9506465196609497,
  6373. 1
  6374. ],
  6375. "name": "Cube.014_29"
  6376. },
  6377. {
  6378. "mesh": 29,
  6379. "name": ""
  6380. },
  6381. {
  6382. "children": [
  6383. 65
  6384. ],
  6385. "matrix": [
  6386. 0.0020869073916560347,
  6387. 0.044329781089022607,
  6388. 0.00068958186642024369,
  6389. -0,
  6390. 6.4824373696064939e-05,
  6391. 0.0013777956448339102,
  6392. -0.088767795045551948,
  6393. 0,
  6394. 0.97421933532549976,
  6395. -0.045863191629133403,
  6396. -4.1622561105609256e-07,
  6397. 0,
  6398. -3.0278692245483398,
  6399. 0.52021026611328125,
  6400. -2.0577366352081299,
  6401. 1
  6402. ],
  6403. "name": "Cube.015_30"
  6404. },
  6405. {
  6406. "mesh": 30,
  6407. "name": ""
  6408. },
  6409. {
  6410. "children": [
  6411. 67
  6412. ],
  6413. "matrix": [
  6414. 0.0020869078096887512,
  6415. 0.043776056101458828,
  6416. -0.0070186839940475651,
  6417. -0,
  6418. 0.00028062342939219224,
  6419. -0.060851127623134472,
  6420. -0.37944958680282975,
  6421. 0,
  6422. 0.97421927532399832,
  6423. -0.045166497984124844,
  6424. 0.0079636958168927997,
  6425. 0,
  6426. -1.9275661706924438,
  6427. 1.0597057342529297,
  6428. -0.45574837923049927,
  6429. 1
  6430. ],
  6431. "name": "Cube.016_31"
  6432. },
  6433. {
  6434. "mesh": 31,
  6435. "name": ""
  6436. },
  6437. {
  6438. "children": [
  6439. 69
  6440. ],
  6441. "matrix": [
  6442. 0.0015230584948637935,
  6443. 0.031948461646183014,
  6444. -0.0051223471541337554,
  6445. -0,
  6446. 0.00020480343961855232,
  6447. -0.044410120241486099,
  6448. -0.27692834025789353,
  6449. 0,
  6450. 0.71100080173043889,
  6451. -0.032963232294278909,
  6452. 0.0058120325207741694,
  6453. 0,
  6454. -1.6876404285430908,
  6455. 0.97333317995071411,
  6456. -1.205798864364624,
  6457. 1
  6458. ],
  6459. "name": "Cube.017_32"
  6460. },
  6461. {
  6462. "mesh": 32,
  6463. "name": ""
  6464. },
  6465. {
  6466. "children": [
  6467. 71
  6468. ],
  6469. "matrix": [
  6470. 0.0020869078096887512,
  6471. 0.043776056101458828,
  6472. -0.0070186839940475651,
  6473. -0,
  6474. 0.00028062342939219224,
  6475. -0.060851127623134472,
  6476. -0.37944958680282975,
  6477. 0,
  6478. 0.97421927532399832,
  6479. -0.045166497984124844,
  6480. 0.0079636958168927997,
  6481. 0,
  6482. -2.1690521240234375,
  6483. 1.2942943572998047,
  6484. -1.080988883972168,
  6485. 1
  6486. ],
  6487. "name": "Cube.018_33"
  6488. },
  6489. {
  6490. "mesh": 33,
  6491. "name": ""
  6492. },
  6493. {
  6494. "children": [
  6495. 73
  6496. ],
  6497. "matrix": [
  6498. 0.00085387818237788577,
  6499. 0.017911389780634786,
  6500. -0.0028717613225166506,
  6501. -0,
  6502. 0.0002208774436279292,
  6503. -0.047895649840735528,
  6504. -0.29866306922487829,
  6505. 0,
  6506. 0.9742195134788203,
  6507. -0.045166509025396102,
  6508. 0.0079636977636748096,
  6509. 0,
  6510. -2.1670100688934326,
  6511. 1.6040545701980591,
  6512. -0.33254051208496094,
  6513. 1
  6514. ],
  6515. "name": "Cube.019_34"
  6516. },
  6517. {
  6518. "mesh": 34,
  6519. "name": ""
  6520. },
  6521. {
  6522. "children": [
  6523. 75
  6524. ],
  6525. "matrix": [
  6526. 0.00085387818237788577,
  6527. 0.017911389780634786,
  6528. -0.0028717613225166506,
  6529. -0,
  6530. 0.0002208774436279292,
  6531. -0.047895649840735528,
  6532. -0.29866306922487829,
  6533. 0,
  6534. 0.9742195134788203,
  6535. -0.045166509025396102,
  6536. 0.0079636977636748096,
  6537. 0,
  6538. -2.1364748477935791,
  6539. 1.461487889289856,
  6540. -0.31170830130577087,
  6541. 1
  6542. ],
  6543. "name": "Cube.020_35"
  6544. },
  6545. {
  6546. "mesh": 35,
  6547. "name": ""
  6548. },
  6549. {
  6550. "children": [
  6551. 77
  6552. ],
  6553. "matrix": [
  6554. -0.12801064734310014,
  6555. 0.01119947923178761,
  6556. 7.2206729634641648e-08,
  6557. 0,
  6558. 0.01119947923178761,
  6559. 0.12801064734312048,
  6560. -3.1526135576912037e-09,
  6561. 0,
  6562. -7.2206729634641648e-08,
  6563. 3.1526135576912037e-09,
  6564. -0.12849962711332194,
  6565. 0,
  6566. -4.8527631759643555,
  6567. 2.9136266708374023,
  6568. 0,
  6569. 1
  6570. ],
  6571. "name": "Cylinder.006_36"
  6572. },
  6573. {
  6574. "mesh": 36,
  6575. "name": ""
  6576. },
  6577. {
  6578. "children": [
  6579. 79
  6580. ],
  6581. "matrix": [
  6582. 0.058224888724718045,
  6583. -0.12486369996998495,
  6584. -0,
  6585. 0,
  6586. 0.21166853927564097,
  6587. 0.098702642551921585,
  6588. 0,
  6589. 0,
  6590. 0,
  6591. -0,
  6592. 0.1377718448638916,
  6593. 0,
  6594. -7.3072075843811035,
  6595. -1.4836986064910889,
  6596. -0.47922417521476746,
  6597. 1
  6598. ],
  6599. "name": "Cylinder.008_37"
  6600. },
  6601. {
  6602. "mesh": 37,
  6603. "name": ""
  6604. },
  6605. {
  6606. "children": [
  6607. 81
  6608. ],
  6609. "matrix": [
  6610. 0.28523325783551667,
  6611. -0.024954673799764356,
  6612. -0,
  6613. 0,
  6614. 0.024954673799764356,
  6615. 0.28523325783551667,
  6616. 0,
  6617. 0,
  6618. 0,
  6619. 0,
  6620. 0.28632274270057678,
  6621. 0,
  6622. -3.3921537399291992,
  6623. 2.0293593406677246,
  6624. 0,
  6625. 1
  6626. ],
  6627. "name": "Plane.003_38"
  6628. },
  6629. {
  6630. "mesh": 38,
  6631. "name": ""
  6632. },
  6633. {
  6634. "children": [
  6635. 83
  6636. ],
  6637. "matrix": [
  6638. 0.16172886835857606,
  6639. -0.014149440571790952,
  6640. -1.8632590490316401e-09,
  6641. 0,
  6642. 0.01393447844783869,
  6643. 0.15927184340816511,
  6644. -0.028191199633785094,
  6645. 0,
  6646. 0.0024570264307423274,
  6647. 0.028083923477864738,
  6648. 0.1598802357774354,
  6649. 0,
  6650. -1.8051602840423584,
  6651. 1.664212703704834,
  6652. -0.79094594717025757,
  6653. 1
  6654. ],
  6655. "name": "Plane.004_39"
  6656. },
  6657. {
  6658. "mesh": 39,
  6659. "name": ""
  6660. },
  6661. {
  6662. "children": [
  6663. 85
  6664. ],
  6665. "matrix": [
  6666. 0.61913024563227836,
  6667. -0.01356198477381493,
  6668. 0.16941008653120124,
  6669. 0,
  6670. 0.050072610561853213,
  6671. 0.62613396712934766,
  6672. -0.13287194882512074,
  6673. 0,
  6674. -0.13827077781737257,
  6675. 0.1203376497089016,
  6676. 0.51496129771964572,
  6677. 0,
  6678. 1.0105128288269043,
  6679. -0.0064834579825401306,
  6680. -2.3211956024169922,
  6681. 1
  6682. ],
  6683. "name": "Plane.002_40"
  6684. },
  6685. {
  6686. "mesh": 40,
  6687. "name": ""
  6688. },
  6689. {
  6690. "children": [
  6691. 87
  6692. ],
  6693. "matrix": [
  6694. 0.27952108078938681,
  6695. -0.024454923118674868,
  6696. -0,
  6697. 0,
  6698. 0.0029570427231445534,
  6699. 0.033799156672979364,
  6700. 0,
  6701. 0,
  6702. 0,
  6703. 0,
  6704. 0.37728410959243774,
  6705. 0,
  6706. -5.1847968101501465,
  6707. 3.4441909790039062,
  6708. 0,
  6709. 1
  6710. ],
  6711. "name": "Cube.002_41"
  6712. },
  6713. {
  6714. "mesh": 41,
  6715. "name": ""
  6716. },
  6717. {
  6718. "children": [
  6719. 89
  6720. ],
  6721. "matrix": [
  6722. 0.15468640518005736,
  6723. 5.111039724178181e-05,
  6724. -0.001175050825342121,
  6725. 0,
  6726. -5.0645883424353589e-05,
  6727. 0.15212511833197193,
  6728. -5.0256903282603854e-05,
  6729. 0,
  6730. 0.0011750338109846963,
  6731. 5.1494259565217205e-05,
  6732. 0.15468640518199392,
  6733. 0,
  6734. -5.183934211730957,
  6735. 3.3443665504455566,
  6736. -1.2253230810165405,
  6737. 1
  6738. ],
  6739. "name": "Cylinder_42"
  6740. },
  6741. {
  6742. "mesh": 42,
  6743. "name": ""
  6744. },
  6745. {
  6746. "children": [
  6747. 91
  6748. ],
  6749. "matrix": [
  6750. 0.46953588944142693,
  6751. -0.09135723790556112,
  6752. -1.3902048976784683e-08,
  6753. 0,
  6754. 8.2027577630462533e-09,
  6755. -5.4683341805498773e-08,
  6756. 0.63639599084853882,
  6757. 0,
  6758. -0.091357237905561967,
  6759. -0.46953588944142521,
  6760. -3.9168081807090923e-08,
  6761. 0,
  6762. -5.3930978775024414,
  6763. 3.6967334747314453,
  6764. 0,
  6765. 1
  6766. ],
  6767. "name": "Cylinder.005_43"
  6768. },
  6769. {
  6770. "mesh": 43,
  6771. "name": ""
  6772. },
  6773. {
  6774. "children": [
  6775. 93
  6776. ],
  6777. "matrix": [
  6778. 0.23607814311981201,
  6779. 0,
  6780. 0,
  6781. 0,
  6782. 0,
  6783. 0.23607814311981201,
  6784. 0,
  6785. 0,
  6786. 0,
  6787. 0,
  6788. 0.23607814311981201,
  6789. 0,
  6790. -5.1811957359313965,
  6791. 3.6219244003295898,
  6792. -1.2331937551498413,
  6793. 1
  6794. ],
  6795. "name": "Icosphere_44"
  6796. },
  6797. {
  6798. "mesh": 44,
  6799. "name": ""
  6800. },
  6801. {
  6802. "children": [
  6803. 95
  6804. ],
  6805. "matrix": [
  6806. 0.20138910308519609,
  6807. -0.017619261556155067,
  6808. -0,
  6809. 0,
  6810. 0.01237360800320644,
  6811. 0.14143100207414944,
  6812. 0,
  6813. 0,
  6814. 0,
  6815. 0,
  6816. 0.36067813634872437,
  6817. 0,
  6818. -5.155787467956543,
  6819. 3.7406558990478516,
  6820. 0,
  6821. 1
  6822. ],
  6823. "name": "Plane_45"
  6824. },
  6825. {
  6826. "mesh": 45,
  6827. "name": ""
  6828. },
  6829. {
  6830. "children": [
  6831. 97
  6832. ],
  6833. "matrix": [
  6834. 0.072498364967646931,
  6835. -0.0063427841743497705,
  6836. -8.4218279411271471e-10,
  6837. 0,
  6838. 0.0075573899606495316,
  6839. 0.086381376598355639,
  6840. -0.015289551520522651,
  6841. 0,
  6842. 0.0020790794030800122,
  6843. 0.023763971669477659,
  6844. 0.13528696360292758,
  6845. 0,
  6846. -2.4471092224121094,
  6847. 0.33722633123397827,
  6848. -2.5323588848114014,
  6849. 1
  6850. ],
  6851. "name": "Turret Barrel Holder_46"
  6852. },
  6853. {
  6854. "mesh": 46,
  6855. "name": ""
  6856. },
  6857. {
  6858. "children": [
  6859. 99
  6860. ],
  6861. "matrix": [
  6862. 0.072498364967646931,
  6863. -0.0063427841743497705,
  6864. -8.4218279411271471e-10,
  6865. 0,
  6866. 0.0075573899606495316,
  6867. 0.086381376598355639,
  6868. -0.015289551520522651,
  6869. 0,
  6870. 0.0020790794030800122,
  6871. 0.023763971669477659,
  6872. 0.13528696360292758,
  6873. 0,
  6874. -3.1562430858612061,
  6875. 0.39926749467849731,
  6876. -2.5323588848114014,
  6877. 1
  6878. ],
  6879. "name": "Turret Barrel Holder.001_47"
  6880. },
  6881. {
  6882. "mesh": 47,
  6883. "name": ""
  6884. },
  6885. {
  6886. "children": [
  6887. 101
  6888. ],
  6889. "matrix": [
  6890. 0.072498364967646931,
  6891. -0.0063427841743497705,
  6892. -8.4218279411271471e-10,
  6893. 0,
  6894. 0.0075573899606495316,
  6895. 0.086381376598355639,
  6896. -0.015289551520522651,
  6897. 0,
  6898. 0.0020790794030800122,
  6899. 0.023763971669477659,
  6900. 0.13528696360292758,
  6901. 0,
  6902. -3.8647615909576416,
  6903. 0.46125480532646179,
  6904. -2.5323588848114014,
  6905. 1
  6906. ],
  6907. "name": "Turret Barrel Holder.002_48"
  6908. },
  6909. {
  6910. "mesh": 48,
  6911. "name": ""
  6912. },
  6913. {
  6914. "children": [
  6915. 103
  6916. ],
  6917. "matrix": [
  6918. 0.072498364967646931,
  6919. -0.0063427841743497705,
  6920. -8.4218279411271471e-10,
  6921. 0,
  6922. 0.0075573899606495316,
  6923. 0.086381376598355639,
  6924. -0.015289551520522651,
  6925. 0,
  6926. 0.0020790794030800122,
  6927. 0.023763971669477659,
  6928. 0.13528696360292758,
  6929. 0,
  6930. -4.5587210655212402,
  6931. 0.52196842432022095,
  6932. -2.5323588848114014,
  6933. 1
  6934. ],
  6935. "name": "Turret Barrel Holder.003_49"
  6936. },
  6937. {
  6938. "mesh": 49,
  6939. "name": ""
  6940. },
  6941. {
  6942. "children": [
  6943. 105
  6944. ],
  6945. "matrix": [
  6946. 0.072498364967646931,
  6947. -0.0063427841743497705,
  6948. -8.4218279411271471e-10,
  6949. 0,
  6950. 0.0075573899606495316,
  6951. 0.086381376598355639,
  6952. -0.015289551520522651,
  6953. 0,
  6954. 0.0020790794030800122,
  6955. 0.023763971669477659,
  6956. 0.13528696360292758,
  6957. 0,
  6958. 4.5585131645202637,
  6959. 0.0089014768600463867,
  6960. -1.3022745847702026,
  6961. 1
  6962. ],
  6963. "name": "Turret Barrel Holder.004_50"
  6964. },
  6965. {
  6966. "mesh": 50,
  6967. "name": ""
  6968. },
  6969. {
  6970. "children": [
  6971. 107
  6972. ],
  6973. "matrix": [
  6974. 0.012665935261023343,
  6975. -0.0011081256611223508,
  6976. -1.5786278666633354e-10,
  6977. 0,
  6978. -0.0015553172406266487,
  6979. -0.017777371388004864,
  6980. 0.088318597189980433,
  6981. -0,
  6982. 0.0010861751206613884,
  6983. 0.012415039057015593,
  6984. 0.0025181118595697834,
  6985. 0,
  6986. -2.249732494354248,
  6987. 0.31777825951576233,
  6988. -2.685492992401123,
  6989. 1
  6990. ],
  6991. "name": "Turret Barrels_51"
  6992. },
  6993. {
  6994. "mesh": 51,
  6995. "name": ""
  6996. },
  6997. {
  6998. "children": [
  6999. 109
  7000. ],
  7001. "matrix": [
  7002. 0.012665935261023343,
  7003. -0.0011081256611223508,
  7004. -1.5786278666633354e-10,
  7005. 0,
  7006. -0.0015553172406266487,
  7007. -0.017777371388004864,
  7008. 0.088318597189980433,
  7009. -0,
  7010. 0.0010861751206613884,
  7011. 0.012415039057015593,
  7012. 0.0025181118595697834,
  7013. 0,
  7014. -2.9588663578033447,
  7015. 0.37981942296028137,
  7016. -2.685492992401123,
  7017. 1
  7018. ],
  7019. "name": "Turret Barrels.001_52"
  7020. },
  7021. {
  7022. "mesh": 52,
  7023. "name": ""
  7024. },
  7025. {
  7026. "children": [
  7027. 111
  7028. ],
  7029. "matrix": [
  7030. 0.012665935261023343,
  7031. -0.0011081256611223508,
  7032. -1.5786278666633354e-10,
  7033. 0,
  7034. -0.0015553172406266487,
  7035. -0.017777371388004864,
  7036. 0.088318597189980433,
  7037. -0,
  7038. 0.0010861751206613884,
  7039. 0.012415039057015593,
  7040. 0.0025181118595697834,
  7041. 0,
  7042. -3.6673848628997803,
  7043. 0.44180673360824585,
  7044. -2.685492992401123,
  7045. 1
  7046. ],
  7047. "name": "Turret Barrels.002_53"
  7048. },
  7049. {
  7050. "mesh": 53,
  7051. "name": ""
  7052. },
  7053. {
  7054. "children": [
  7055. 113
  7056. ],
  7057. "matrix": [
  7058. 0.012665935261023343,
  7059. -0.0011081256611223508,
  7060. -1.5786278666633354e-10,
  7061. 0,
  7062. -0.0015553172406266487,
  7063. -0.017777371388004864,
  7064. 0.088318597189980433,
  7065. -0,
  7066. 0.0010861751206613884,
  7067. 0.012415039057015593,
  7068. 0.0025181118595697834,
  7069. 0,
  7070. -4.3613443374633789,
  7071. 0.50252032279968262,
  7072. -2.685492992401123,
  7073. 1
  7074. ],
  7075. "name": "Turret Barrels.003_54"
  7076. },
  7077. {
  7078. "mesh": 54,
  7079. "name": ""
  7080. },
  7081. {
  7082. "children": [
  7083. 115
  7084. ],
  7085. "matrix": [
  7086. 0.012665935261023343,
  7087. -0.0011081256611223508,
  7088. -1.5786278666633354e-10,
  7089. 0,
  7090. -0.0015553172406266487,
  7091. -0.017777371388004864,
  7092. 0.088318597189980433,
  7093. -0,
  7094. 0.0010861751206613884,
  7095. 0.012415039057015593,
  7096. 0.0025181118595697834,
  7097. 0,
  7098. 4.755889892578125,
  7099. -0.010546594858169556,
  7100. -1.4554086923599243,
  7101. 1
  7102. ],
  7103. "name": "Turret Barrels.004_55"
  7104. },
  7105. {
  7106. "mesh": 55,
  7107. "name": ""
  7108. },
  7109. {
  7110. "children": [
  7111. 117
  7112. ],
  7113. "matrix": [
  7114. 0.27603503807485757,
  7115. -0.024149933199853094,
  7116. -3.2065821035086228e-09,
  7117. 0,
  7118. 0.0018659998281888312,
  7119. 0.021328479108598603,
  7120. -0.0037751526200094972,
  7121. 0,
  7122. 0.0041935957990746203,
  7123. 0.047932989771730508,
  7124. 0.27287983392761478,
  7125. 0,
  7126. -2.456472635269165,
  7127. 0.23020294308662415,
  7128. -2.560706615447998,
  7129. 1
  7130. ],
  7131. "name": "Turret Base_56"
  7132. },
  7133. {
  7134. "mesh": 56,
  7135. "name": ""
  7136. },
  7137. {
  7138. "children": [
  7139. 119
  7140. ],
  7141. "matrix": [
  7142. 0.27603503807485757,
  7143. -0.024149933199853094,
  7144. -3.2065821035086228e-09,
  7145. 0,
  7146. 0.0018659998281888312,
  7147. 0.021328479108598603,
  7148. -0.0037751526200094972,
  7149. 0,
  7150. 0.0041935957990746203,
  7151. 0.047932989771730508,
  7152. 0.27287983392761478,
  7153. 0,
  7154. -3.1656064987182617,
  7155. 0.29224410653114319,
  7156. -2.560706615447998,
  7157. 1
  7158. ],
  7159. "name": "Turret Base.001_57"
  7160. },
  7161. {
  7162. "mesh": 57,
  7163. "name": ""
  7164. },
  7165. {
  7166. "children": [
  7167. 121
  7168. ],
  7169. "matrix": [
  7170. 0.27603503807485757,
  7171. -0.024149933199853094,
  7172. -3.2065821035086228e-09,
  7173. 0,
  7174. 0.0018659998281888312,
  7175. 0.021328479108598603,
  7176. -0.0037751526200094972,
  7177. 0,
  7178. 0.0041935957990746203,
  7179. 0.047932989771730508,
  7180. 0.27287983392761478,
  7181. 0,
  7182. -3.8741252422332764,
  7183. 0.35423141717910767,
  7184. -2.560706615447998,
  7185. 1
  7186. ],
  7187. "name": "Turret Base.002_58"
  7188. },
  7189. {
  7190. "mesh": 58,
  7191. "name": ""
  7192. },
  7193. {
  7194. "children": [
  7195. 123
  7196. ],
  7197. "matrix": [
  7198. 0.27603503807485757,
  7199. -0.024149933199853094,
  7200. -3.2065821035086228e-09,
  7201. 0,
  7202. 0.0018659998281888312,
  7203. 0.021328479108598603,
  7204. -0.0037751526200094972,
  7205. 0,
  7206. 0.0041935957990746203,
  7207. 0.047932989771730508,
  7208. 0.27287983392761478,
  7209. 0,
  7210. -4.568084716796875,
  7211. 0.41494500637054443,
  7212. -2.560706615447998,
  7213. 1
  7214. ],
  7215. "name": "Turret Base.003_59"
  7216. },
  7217. {
  7218. "mesh": 59,
  7219. "name": ""
  7220. },
  7221. {
  7222. "children": [
  7223. 125
  7224. ],
  7225. "matrix": [
  7226. 0.27603503807485757,
  7227. -0.024149933199853094,
  7228. -3.2065821035086228e-09,
  7229. 0,
  7230. 0.0018659998281888312,
  7231. 0.021328479108598603,
  7232. -0.0037751526200094972,
  7233. 0,
  7234. 0.0041935957990746203,
  7235. 0.047932989771730508,
  7236. 0.27287983392761478,
  7237. 0,
  7238. 4.5491495132446289,
  7239. -0.098121911287307739,
  7240. -1.3306223154067993,
  7241. 1
  7242. ],
  7243. "name": "Turret Base.004_60"
  7244. },
  7245. {
  7246. "mesh": 60,
  7247. "name": ""
  7248. },
  7249. {
  7250. "children": [
  7251. 127
  7252. ],
  7253. "matrix": [
  7254. 0.12366494536399841,
  7255. 0,
  7256. 0,
  7257. 0,
  7258. 0,
  7259. 0.073536344386032904,
  7260. 0.099425473427183039,
  7261. 0,
  7262. 0,
  7263. -0.099425473427183039,
  7264. 0.073536344386032904,
  7265. 0,
  7266. 0.93107414245605469,
  7267. 0.65293723344802856,
  7268. 0,
  7269. 1
  7270. ],
  7271. "name": "Turret Front 2_61"
  7272. },
  7273. {
  7274. "mesh": 61,
  7275. "name": ""
  7276. },
  7277. {
  7278. "children": [
  7279. 129
  7280. ],
  7281. "matrix": [
  7282. 0.091497006335003198,
  7283. -1.0611391537398267e-09,
  7284. 0.083194450197192238,
  7285. 0,
  7286. 0.060717885880542749,
  7287. 0.084540776702524092,
  7288. -0.066777347361302558,
  7289. 0,
  7290. -0.056874026390000637,
  7291. 0.090254505629440304,
  7292. 0.062549884473558803,
  7293. 0,
  7294. 1.2723963260650635,
  7295. 0.62001651525497437,
  7296. 0,
  7297. 1
  7298. ],
  7299. "name": "Turret Front 2.001_62"
  7300. },
  7301. {
  7302. "mesh": 62,
  7303. "name": ""
  7304. },
  7305. {
  7306. "children": [
  7307. 131
  7308. ],
  7309. "matrix": [
  7310. 0.09132807590187339,
  7311. -0.083379861261232424,
  7312. 3.3708505134205727e-12,
  7313. 0,
  7314. 0.083377788139403219,
  7315. 0.091325805158940412,
  7316. -0.00087204869861630765,
  7317. 0,
  7318. 0.00058797017199821802,
  7319. 0.00064401864072306304,
  7320. 0.12366187061074223,
  7321. 0,
  7322. 0.59605741500854492,
  7323. 0.68004840612411499,
  7324. 0,
  7325. 1
  7326. ],
  7327. "name": "Turret Front 2.002_63"
  7328. },
  7329. {
  7330. "mesh": 63,
  7331. "name": ""
  7332. },
  7333. {
  7334. "children": [
  7335. 133
  7336. ],
  7337. "matrix": [
  7338. 0.02565578932345321,
  7339. 0.087981156419715212,
  7340. 0.083030809348824841,
  7341. 0,
  7342. 0.12097437408834585,
  7343. -0.018658666314264695,
  7344. -0.017608909596752223,
  7345. 0,
  7346. -6.5209824857233298e-08,
  7347. 0.084877494062343989,
  7348. -0.089937921443477994,
  7349. 0,
  7350. 3.6019797325134277,
  7351. -1.3912484645843506,
  7352. -0.39227783679962158,
  7353. 1
  7354. ],
  7355. "name": "Turret Front 2.003_64"
  7356. },
  7357. {
  7358. "mesh": 64,
  7359. "name": ""
  7360. },
  7361. {
  7362. "children": [
  7363. 135
  7364. ],
  7365. "matrix": [
  7366. 0.096600838456748328,
  7367. 1.2838423612554585e-09,
  7368. 0.07720943414722016,
  7369. 0,
  7370. 0.073944876729306594,
  7371. -0.03557940521809845,
  7372. -0.092516376073075376,
  7373. 0,
  7374. 0.022213777860183494,
  7375. 0.11843616270466997,
  7376. -0.027792843482667869,
  7377. 0,
  7378. -0.44477462768554688,
  7379. -1.5284135341644287,
  7380. -1.0584101676940918,
  7381. 1
  7382. ],
  7383. "name": "Turret Front 2.004_65"
  7384. },
  7385. {
  7386. "mesh": 65,
  7387. "name": ""
  7388. },
  7389. {
  7390. "children": [
  7391. 137
  7392. ],
  7393. "matrix": [
  7394. 0.11392551944147788,
  7395. 6.9365311805772969e-10,
  7396. -0.04810399912554212,
  7397. 0,
  7398. -0.047232363878173575,
  7399. -0.023434844660446038,
  7400. -0.1118612111953973,
  7401. 0,
  7402. -0.0091158397501251414,
  7403. 0.12142416055967394,
  7404. -0.021589196601756063,
  7405. 0,
  7406. -5.0203056335449219,
  7407. -1.1297869682312012,
  7408. -4.390777587890625,
  7409. 1
  7410. ],
  7411. "name": "Turret Front 2.005_66"
  7412. },
  7413. {
  7414. "mesh": 66,
  7415. "name": ""
  7416. }
  7417. ],
  7418. "samplers": [
  7419. {
  7420. "magFilter": 9729,
  7421. "minFilter": 9987,
  7422. "wrapS": 10497,
  7423. "wrapT": 10497
  7424. }
  7425. ],
  7426. "scene": 0,
  7427. "scenes": [
  7428. {
  7429. "name": "OSG_Scene",
  7430. "nodes": [
  7431. 0
  7432. ]
  7433. }
  7434. ],
  7435. "textures": [
  7436. {
  7437. "sampler": 0,
  7438. "source": 0
  7439. },
  7440. {
  7441. "sampler": 0,
  7442. "source": 1
  7443. },
  7444. {
  7445. "sampler": 0,
  7446. "source": 2
  7447. },
  7448. {
  7449. "sampler": 0,
  7450. "source": 3
  7451. },
  7452. {
  7453. "sampler": 0,
  7454. "source": 4
  7455. },
  7456. {
  7457. "sampler": 0,
  7458. "source": 5
  7459. },
  7460. {
  7461. "sampler": 0,
  7462. "source": 6
  7463. },
  7464. {
  7465. "sampler": 0,
  7466. "source": 7
  7467. },
  7468. {
  7469. "sampler": 0,
  7470. "source": 8
  7471. },
  7472. {
  7473. "sampler": 0,
  7474. "source": 9
  7475. },
  7476. {
  7477. "sampler": 0,
  7478. "source": 10
  7479. },
  7480. {
  7481. "sampler": 0,
  7482. "source": 11
  7483. },
  7484. {
  7485. "sampler": 0,
  7486. "source": 12
  7487. },
  7488. {
  7489. "sampler": 0,
  7490. "source": 13
  7491. },
  7492. {
  7493. "sampler": 0,
  7494. "source": 14
  7495. }
  7496. ]
  7497. }