nippon.vmx 153 KB

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