nippon.vmf 159 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358
  1. versioninfo
  2. {
  3. "editorversion" "400"
  4. "editorbuild" "4715"
  5. "mapversion" "3"
  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" "3"
  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" "21"
  6426. "smoothing_groups" "0"
  6427. dispinfo
  6428. {
  6429. "power" "2"
  6430. "startposition" "[704 -3472 72]"
  6431. "flags" "0"
  6432. "elevation" "0"
  6433. "subdiv" "0"
  6434. normals
  6435. {
  6436. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6437. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6438. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6439. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6440. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6441. }
  6442. distances
  6443. {
  6444. "row0" "0 0 0 0 0"
  6445. "row1" "0 0 0 0 0"
  6446. "row2" "0 0 0 0 0"
  6447. "row3" "0 0 0 0 0"
  6448. "row4" "0 0 0 0 0"
  6449. }
  6450. offsets
  6451. {
  6452. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6453. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6454. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6455. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6456. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  6457. }
  6458. offset_normals
  6459. {
  6460. "row0" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1"
  6461. "row1" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1"
  6462. "row2" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1"
  6463. "row3" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1"
  6464. "row4" "0 -0 1 0 -0 1 0 -0 1 0 -0 1 0 -0 1"
  6465. }
  6466. alphas
  6467. {
  6468. "row0" "0 0 0 0 0"
  6469. "row1" "0 0 0 0 0"
  6470. "row2" "0 0 0 0 0"
  6471. "row3" "0 0 0 0 0"
  6472. "row4" "0 0 0 0 0"
  6473. }
  6474. triangle_tags
  6475. {
  6476. "row0" "9 9 9 9 9 9 9 9"
  6477. "row1" "9 9 9 9 9 9 9 9"
  6478. "row2" "9 9 9 9 9 9 9 9"
  6479. "row3" "9 9 9 9 9 9 9 9"
  6480. }
  6481. allowed_verts
  6482. {
  6483. "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1"
  6484. }
  6485. }
  6486. }
  6487. side
  6488. {
  6489. "id" "1185"
  6490. "plane" "(640 -3408 64) (704 -3472 64) (704 -944 64)"
  6491. "material" "DEV/DEV_MEASUREGENERIC01B"
  6492. "uaxis" "[0 1 0 -64] 0.25"
  6493. "vaxis" "[1 0 0 64] 0.25"
  6494. "rotation" "0"
  6495. "lightmapscale" "16"
  6496. "smoothing_groups" "0"
  6497. }
  6498. side
  6499. {
  6500. "id" "1184"
  6501. "plane" "(640 -3408 64) (640 -3408 72) (704 -3472 72)"
  6502. "material" "DEV/DEV_MEASUREGENERIC01B"
  6503. "uaxis" "[-1 0 0 -64] 0.25"
  6504. "vaxis" "[0 0 -1 0] 0.25"
  6505. "rotation" "0"
  6506. "lightmapscale" "16"
  6507. "smoothing_groups" "0"
  6508. }
  6509. side
  6510. {
  6511. "id" "1183"
  6512. "plane" "(640 -1008 72) (640 -1008 64) (704 -944 64)"
  6513. "material" "DEV/DEV_MEASUREGENERIC01B"
  6514. "uaxis" "[-1 0 0 -64] 0.25"
  6515. "vaxis" "[0 0 -1 0] 0.25"
  6516. "rotation" "0"
  6517. "lightmapscale" "16"
  6518. "smoothing_groups" "0"
  6519. }
  6520. side
  6521. {
  6522. "id" "1182"
  6523. "plane" "(640 -1008 64) (640 -1008 72) (640 -3408 72)"
  6524. "material" "DEV/DEV_MEASUREGENERIC01B"
  6525. "uaxis" "[0 1 0 -64] 0.25"
  6526. "vaxis" "[0 0 -1 0] 0.25"
  6527. "rotation" "0"
  6528. "lightmapscale" "16"
  6529. "smoothing_groups" "0"
  6530. }
  6531. side
  6532. {
  6533. "id" "1181"
  6534. "plane" "(704 -944 72) (704 -944 64) (704 -3472 64)"
  6535. "material" "DEV/DEV_MEASUREGENERIC01B"
  6536. "uaxis" "[0 1 0 -64] 0.25"
  6537. "vaxis" "[0 0 -1 0] 0.25"
  6538. "rotation" "0"
  6539. "lightmapscale" "16"
  6540. "smoothing_groups" "0"
  6541. }
  6542. editor
  6543. {
  6544. "color" "0 158 135"
  6545. "visgroupshown" "1"
  6546. "visgroupautoshown" "1"
  6547. }
  6548. }
  6549. solid
  6550. {
  6551. "id" "1385"
  6552. side
  6553. {
  6554. "id" "1204"
  6555. "plane" "(0 -3472 72) (-64 -3408 72) (640 -3408 72)"
  6556. "material" "DEV/DEV_MEASUREGENERIC01B"
  6557. "uaxis" "[1 0 0 0] 0.25"
  6558. "vaxis" "[0 1 0 0] 0.25"
  6559. "rotation" "0"
  6560. "lightmapscale" "16"
  6561. "smoothing_groups" "0"
  6562. }
  6563. side
  6564. {
  6565. "id" "1203"
  6566. "plane" "(-64 -3408 64) (0 -3472 64) (704 -3472 64)"
  6567. "material" "DEV/DEV_MEASUREGENERIC01B"
  6568. "uaxis" "[1 0 0 0] 0.25"
  6569. "vaxis" "[0 1 0 0] 0.25"
  6570. "rotation" "0"
  6571. "lightmapscale" "16"
  6572. "smoothing_groups" "0"
  6573. }
  6574. side
  6575. {
  6576. "id" "1202"
  6577. "plane" "(0 -3472 72) (0 -3472 64) (-64 -3408 64)"
  6578. "material" "DEV/DEV_MEASUREGENERIC01B"
  6579. "uaxis" "[0 -1 0 0] 0.25"
  6580. "vaxis" "[0 0 -1 0] 0.25"
  6581. "rotation" "0"
  6582. "lightmapscale" "16"
  6583. "smoothing_groups" "0"
  6584. }
  6585. side
  6586. {
  6587. "id" "1201"
  6588. "plane" "(704 -3472 64) (704 -3472 72) (640 -3408 72)"
  6589. "material" "DEV/DEV_MEASUREGENERIC01B"
  6590. "uaxis" "[0 -1 0 0] 0.25"
  6591. "vaxis" "[0 0 -1 0] 0.25"
  6592. "rotation" "0"
  6593. "lightmapscale" "16"
  6594. "smoothing_groups" "0"
  6595. }
  6596. side
  6597. {
  6598. "id" "1200"
  6599. "plane" "(704 -3472 72) (704 -3472 64) (0 -3472 64)"
  6600. "material" "DEV/DEV_MEASUREGENERIC01B"
  6601. "uaxis" "[1 0 0 0] 0.25"
  6602. "vaxis" "[0 0 -1 0] 0.25"
  6603. "rotation" "0"
  6604. "lightmapscale" "16"
  6605. "smoothing_groups" "0"
  6606. }
  6607. side
  6608. {
  6609. "id" "1199"
  6610. "plane" "(640 -3408 64) (640 -3408 72) (-64 -3408 72)"
  6611. "material" "DEV/DEV_MEASUREGENERIC01B"
  6612. "uaxis" "[1 0 0 0] 0.25"
  6613. "vaxis" "[0 0 -1 0] 0.25"
  6614. "rotation" "0"
  6615. "lightmapscale" "16"
  6616. "smoothing_groups" "0"
  6617. }
  6618. editor
  6619. {
  6620. "color" "0 158 135"
  6621. "visgroupshown" "1"
  6622. "visgroupautoshown" "1"
  6623. }
  6624. }
  6625. solid
  6626. {
  6627. "id" "1386"
  6628. side
  6629. {
  6630. "id" "1210"
  6631. "plane" "(-342 -4352 72) (-406 -4352 72) (-64 -3408 72)"
  6632. "material" "DEV/DEV_MEASUREGENERIC01B"
  6633. "uaxis" "[1 0 0 0] 0.25"
  6634. "vaxis" "[0 1 0 0] 0.25"
  6635. "rotation" "0"
  6636. "lightmapscale" "16"
  6637. "smoothing_groups" "0"
  6638. }
  6639. side
  6640. {
  6641. "id" "1209"
  6642. "plane" "(0 -3472 64) (-64 -3408 64) (-406 -4352 64)"
  6643. "material" "DEV/DEV_MEASUREGENERIC01B"
  6644. "uaxis" "[1 0 0 0] 0.25"
  6645. "vaxis" "[0 1 0 0] 0.25"
  6646. "rotation" "0"
  6647. "lightmapscale" "16"
  6648. "smoothing_groups" "0"
  6649. }
  6650. side
  6651. {
  6652. "id" "1208"
  6653. "plane" "(-64 -3408 72) (-406 -4352 72) (-406 -4352 64)"
  6654. "material" "DEV/DEV_MEASUREGENERIC01B"
  6655. "uaxis" "[0 -1 0 0] 0.25"
  6656. "vaxis" "[0 0 -1 0] 0.25"
  6657. "rotation" "0"
  6658. "lightmapscale" "16"
  6659. "smoothing_groups" "0"
  6660. }
  6661. side
  6662. {
  6663. "id" "1207"
  6664. "plane" "(0 -3472 64) (-342 -4352 64) (-342 -4352 72)"
  6665. "material" "DEV/DEV_MEASUREGENERIC01B"
  6666. "uaxis" "[0 -1 0 0] 0.25"
  6667. "vaxis" "[0 0 -1 0] 0.25"
  6668. "rotation" "0"
  6669. "lightmapscale" "16"
  6670. "smoothing_groups" "0"
  6671. }
  6672. side
  6673. {
  6674. "id" "1206"
  6675. "plane" "(-406 -4352 72) (-342 -4352 72) (-342 -4352 64)"
  6676. "material" "DEV/DEV_MEASUREGENERIC01B"
  6677. "uaxis" "[1 0 0 0] 0.25"
  6678. "vaxis" "[0 0 -1 0] 0.25"
  6679. "rotation" "0"
  6680. "lightmapscale" "16"
  6681. "smoothing_groups" "0"
  6682. }
  6683. side
  6684. {
  6685. "id" "1205"
  6686. "plane" "(-64 -3408 64) (0 -3472 64) (0 -3472 72)"
  6687. "material" "DEV/DEV_MEASUREGENERIC01B"
  6688. "uaxis" "[1 0 0 0] 0.25"
  6689. "vaxis" "[0 0 -1 0] 0.25"
  6690. "rotation" "0"
  6691. "lightmapscale" "16"
  6692. "smoothing_groups" "0"
  6693. }
  6694. editor
  6695. {
  6696. "color" "0 158 135"
  6697. "visgroupshown" "1"
  6698. "visgroupautoshown" "1"
  6699. }
  6700. }
  6701. solid
  6702. {
  6703. "id" "1402"
  6704. side
  6705. {
  6706. "id" "1222"
  6707. "plane" "(-406 -6272 72) (-406 -4352 72) (-342 -4352 72)"
  6708. "material" "DEV/DEV_MEASUREGENERIC01B"
  6709. "uaxis" "[1 0 0 56] 0.25"
  6710. "vaxis" "[0 1 0 40] 0.25"
  6711. "rotation" "0"
  6712. "lightmapscale" "16"
  6713. "smoothing_groups" "0"
  6714. }
  6715. side
  6716. {
  6717. "id" "1221"
  6718. "plane" "(-406 -4352 64) (-406 -6272 64) (-342 -6272 64)"
  6719. "material" "DEV/DEV_MEASUREGENERIC01B"
  6720. "uaxis" "[1 0 0 56] 0.25"
  6721. "vaxis" "[0 1 0 40] 0.25"
  6722. "rotation" "0"
  6723. "lightmapscale" "16"
  6724. "smoothing_groups" "0"
  6725. }
  6726. side
  6727. {
  6728. "id" "1220"
  6729. "plane" "(-406 -6272 72) (-406 -6272 64) (-406 -4352 64)"
  6730. "material" "DEV/DEV_MEASUREGENERIC01B"
  6731. "uaxis" "[0 -1 0 -40] 0.25"
  6732. "vaxis" "[0 0 -1 0] 0.25"
  6733. "rotation" "0"
  6734. "lightmapscale" "16"
  6735. "smoothing_groups" "0"
  6736. }
  6737. side
  6738. {
  6739. "id" "1219"
  6740. "plane" "(-342 -6272 64) (-342 -6272 72) (-342 -4352 72)"
  6741. "material" "DEV/DEV_MEASUREGENERIC01B"
  6742. "uaxis" "[0 -1 0 -40] 0.25"
  6743. "vaxis" "[0 0 -1 0] 0.25"
  6744. "rotation" "0"
  6745. "lightmapscale" "16"
  6746. "smoothing_groups" "0"
  6747. }
  6748. side
  6749. {
  6750. "id" "1218"
  6751. "plane" "(-342 -6272 72) (-342 -6272 64) (-406 -6272 64)"
  6752. "material" "DEV/DEV_MEASUREGENERIC01B"
  6753. "uaxis" "[1 0 0 56] 0.25"
  6754. "vaxis" "[0 0 -1 0] 0.25"
  6755. "rotation" "0"
  6756. "lightmapscale" "16"
  6757. "smoothing_groups" "0"
  6758. }
  6759. side
  6760. {
  6761. "id" "1217"
  6762. "plane" "(-342 -4352 64) (-342 -4352 72) (-406 -4352 72)"
  6763. "material" "DEV/DEV_MEASUREGENERIC01B"
  6764. "uaxis" "[1 0 0 56] 0.25"
  6765. "vaxis" "[0 0 -1 0] 0.25"
  6766. "rotation" "0"
  6767. "lightmapscale" "16"
  6768. "smoothing_groups" "0"
  6769. }
  6770. editor
  6771. {
  6772. "color" "0 158 135"
  6773. "visgroupshown" "1"
  6774. "visgroupautoshown" "1"
  6775. }
  6776. }
  6777. solid
  6778. {
  6779. "id" "1407"
  6780. side
  6781. {
  6782. "id" "1234"
  6783. "plane" "(-342 -6272 1344) (-342 -4352 1344) (470 -4352 1344)"
  6784. "material" "DEV/DEV_MEASUREGENERIC01B"
  6785. "uaxis" "[1 0 0 24] 0.25"
  6786. "vaxis" "[0 1 0 -56] 0.25"
  6787. "rotation" "0"
  6788. "lightmapscale" "16"
  6789. "smoothing_groups" "0"
  6790. }
  6791. side
  6792. {
  6793. "id" "1233"
  6794. "plane" "(-342 -4352 72) (-342 -6272 72) (470 -6272 72)"
  6795. "material" "DEV/DEV_MEASUREWALL01A"
  6796. "uaxis" "[0 1 0 -104] 0.25"
  6797. "vaxis" "[1 0 0 120] 0.25"
  6798. "rotation" "0"
  6799. "lightmapscale" "16"
  6800. "smoothing_groups" "0"
  6801. }
  6802. side
  6803. {
  6804. "id" "1232"
  6805. "plane" "(-342 -6272 72) (-342 -6272 1344) (470 -6272 1344)"
  6806. "material" "DEV/DEV_MEASUREWALL01A"
  6807. "uaxis" "[-1 0 0 -120] 0.25"
  6808. "vaxis" "[0 0 -1 32] 0.25"
  6809. "rotation" "0"
  6810. "lightmapscale" "16"
  6811. "smoothing_groups" "0"
  6812. }
  6813. side
  6814. {
  6815. "id" "1231"
  6816. "plane" "(470 -4352 72) (470 -4352 1344) (-342 -4352 1344)"
  6817. "material" "DEV/DEV_MEASUREWALL01A"
  6818. "uaxis" "[1 0 0 504] 0.25"
  6819. "vaxis" "[0 0 -1 -222] 0.25"
  6820. "rotation" "0"
  6821. "lightmapscale" "16"
  6822. "smoothing_groups" "0"
  6823. }
  6824. side
  6825. {
  6826. "id" "1230"
  6827. "plane" "(470 -6272 72) (470 -6272 1344) (470 -4352 1344)"
  6828. "material" "DEV/DEV_MEASUREWALL01A"
  6829. "uaxis" "[0 -1 0 -143.998] 0.25"
  6830. "vaxis" "[0 0 -1 -222] 0.25"
  6831. "rotation" "0"
  6832. "lightmapscale" "16"
  6833. "smoothing_groups" "0"
  6834. }
  6835. side
  6836. {
  6837. "id" "1229"
  6838. "plane" "(-342 -4352 72) (-342 -4352 1344) (-342 -6272 1344)"
  6839. "material" "DEV/DEV_MEASUREWALL01A"
  6840. "uaxis" "[0 1 0 -104] 0.25"
  6841. "vaxis" "[0 0 -1 -222] 0.25"
  6842. "rotation" "0"
  6843. "lightmapscale" "16"
  6844. "smoothing_groups" "0"
  6845. }
  6846. editor
  6847. {
  6848. "color" "0 114 131"
  6849. "visgroupshown" "1"
  6850. "visgroupautoshown" "1"
  6851. }
  6852. }
  6853. solid
  6854. {
  6855. "id" "1415"
  6856. side
  6857. {
  6858. "id" "1246"
  6859. "plane" "(0 -3472 1344) (704 -3472 1344) (470 -4352 1344)"
  6860. "material" "DEV/DEV_MEASUREGENERIC01B"
  6861. "uaxis" "[1 0 0 24] 0.25"
  6862. "vaxis" "[0 1 0 -8] 0.25"
  6863. "rotation" "0"
  6864. "lightmapscale" "16"
  6865. "smoothing_groups" "0"
  6866. }
  6867. side
  6868. {
  6869. "id" "1245"
  6870. "plane" "(-342 -4352 72) (470 -4352 72) (704 -3472 72)"
  6871. "material" "DEV/DEV_MEASUREWALL01A"
  6872. "uaxis" "[0 1 0 -312] 0.25"
  6873. "vaxis" "[1 0 0 120] 0.25"
  6874. "rotation" "0"
  6875. "lightmapscale" "16"
  6876. "smoothing_groups" "0"
  6877. }
  6878. side
  6879. {
  6880. "id" "1244"
  6881. "plane" "(-342 -4352 1344) (470 -4352 1344) (470 -4352 72)"
  6882. "material" "DEV/DEV_MEASUREWALL01A"
  6883. "uaxis" "[-1 0 0 -120] 0.25"
  6884. "vaxis" "[0 0 -1 32] 0.25"
  6885. "rotation" "0"
  6886. "lightmapscale" "16"
  6887. "smoothing_groups" "0"
  6888. }
  6889. side
  6890. {
  6891. "id" "1243"
  6892. "plane" "(704 -3472 1344) (0 -3472 1344) (0 -3472 72)"
  6893. "material" "DEV/DEV_MEASUREWALL01A"
  6894. "uaxis" "[1 0 0 504] 0.25"
  6895. "vaxis" "[0 0 -1 -222] 0.25"
  6896. "rotation" "0"
  6897. "lightmapscale" "16"
  6898. "smoothing_groups" "0"
  6899. }
  6900. side
  6901. {
  6902. "id" "1242"
  6903. "plane" "(470 -4352 1344) (704 -3472 1344) (704 -3472 72)"
  6904. "material" "DEV/DEV_MEASUREWALL01A"
  6905. "uaxis" "[0 -1 0 64.002] 0.25"
  6906. "vaxis" "[0 0 -1 -222] 0.25"
  6907. "rotation" "0"
  6908. "lightmapscale" "16"
  6909. "smoothing_groups" "0"
  6910. }
  6911. side
  6912. {
  6913. "id" "1241"
  6914. "plane" "(0 -3472 1344) (-342 -4352 1344) (-342 -4352 72)"
  6915. "material" "DEV/DEV_MEASUREWALL01A"
  6916. "uaxis" "[0 1 0 -312] 0.25"
  6917. "vaxis" "[0 0 -1 -222] 0.25"
  6918. "rotation" "0"
  6919. "lightmapscale" "16"
  6920. "smoothing_groups" "0"
  6921. }
  6922. editor
  6923. {
  6924. "color" "0 114 131"
  6925. "visgroupshown" "1"
  6926. "visgroupautoshown" "1"
  6927. }
  6928. }
  6929. solid
  6930. {
  6931. "id" "1421"
  6932. side
  6933. {
  6934. "id" "1258"
  6935. "plane" "(704 -3472 1344) (704 -944 1344) (1516 -944 1344)"
  6936. "material" "DEV/DEV_MEASUREGENERIC01B"
  6937. "uaxis" "[1 0 0 -64] 0.25"
  6938. "vaxis" "[0 1 0 -72] 0.25"
  6939. "rotation" "0"
  6940. "lightmapscale" "21"
  6941. "smoothing_groups" "0"
  6942. }
  6943. side
  6944. {
  6945. "id" "1257"
  6946. "plane" "(704 -944 72) (704 -3472 72) (1516 -3472 72)"
  6947. "material" "DEV/DEV_MEASUREWALL01A"
  6948. "uaxis" "[0 1 0 -248] 0.25"
  6949. "vaxis" "[1 0 0 -480] 0.25"
  6950. "rotation" "0"
  6951. "lightmapscale" "16"
  6952. "smoothing_groups" "0"
  6953. }
  6954. side
  6955. {
  6956. "id" "1256"
  6957. "plane" "(704 -3472 72) (704 -3472 1344) (1516 -3472 1344)"
  6958. "material" "DEV/DEV_MEASUREWALL01A"
  6959. "uaxis" "[-1 0 0 480] 0.25"
  6960. "vaxis" "[0 0 -1 32] 0.25"
  6961. "rotation" "0"
  6962. "lightmapscale" "16"
  6963. "smoothing_groups" "0"
  6964. }
  6965. side
  6966. {
  6967. "id" "1255"
  6968. "plane" "(1516 -944 72) (1516 -944 1344) (704 -944 1344)"
  6969. "material" "DEV/DEV_MEASUREWALL01A"
  6970. "uaxis" "[1 0 0 -96] 0.25"
  6971. "vaxis" "[0 0 -1 -222] 0.25"
  6972. "rotation" "0"
  6973. "lightmapscale" "16"
  6974. "smoothing_groups" "0"
  6975. }
  6976. side
  6977. {
  6978. "id" "1254"
  6979. "plane" "(1516 -3472 72) (1516 -3472 1344) (1516 -944 1344)"
  6980. "material" "DEV/DEV_MEASUREWALL01A"
  6981. "uaxis" "[0 -1 0 0.00195313] 0.25"
  6982. "vaxis" "[0 0 -1 -222] 0.25"
  6983. "rotation" "0"
  6984. "lightmapscale" "16"
  6985. "smoothing_groups" "0"
  6986. }
  6987. side
  6988. {
  6989. "id" "1253"
  6990. "plane" "(704 -944 72) (704 -944 1344) (704 -3472 1344)"
  6991. "material" "DEV/DEV_MEASUREWALL01A"
  6992. "uaxis" "[0 1 0 -248] 0.25"
  6993. "vaxis" "[0 0 -1 -222] 0.25"
  6994. "rotation" "0"
  6995. "lightmapscale" "21"
  6996. "smoothing_groups" "0"
  6997. }
  6998. editor
  6999. {
  7000. "color" "0 114 131"
  7001. "visgroupshown" "1"
  7002. "visgroupautoshown" "1"
  7003. }
  7004. }
  7005. solid
  7006. {
  7007. "id" "1424"
  7008. side
  7009. {
  7010. "id" "1270"
  7011. "plane" "(0 -944 1344) (0 -8.52633e-005 1344) (704 -8.52633e-005 1344)"
  7012. "material" "DEV/DEV_MEASUREGENERIC01B"
  7013. "uaxis" "[1 0 0 64] 0.25"
  7014. "vaxis" "[0 1 0 56] 0.25"
  7015. "rotation" "0"
  7016. "lightmapscale" "16"
  7017. "smoothing_groups" "0"
  7018. }
  7019. side
  7020. {
  7021. "id" "1269"
  7022. "plane" "(0 -8.52633e-005 72) (0 -944 72) (704 -944 72)"
  7023. "material" "DEV/DEV_MEASUREWALL01A"
  7024. "uaxis" "[0 1 0 -120] 0.25"
  7025. "vaxis" "[1 0 0 288] 0.25"
  7026. "rotation" "0"
  7027. "lightmapscale" "16"
  7028. "smoothing_groups" "0"
  7029. }
  7030. side
  7031. {
  7032. "id" "1268"
  7033. "plane" "(0 -944 72) (0 -944 1344) (704 -944 1344)"
  7034. "material" "DEV/DEV_MEASUREWALL01A"
  7035. "uaxis" "[-1 0 0 -288] 0.25"
  7036. "vaxis" "[0 0 -1 32] 0.25"
  7037. "rotation" "0"
  7038. "lightmapscale" "16"
  7039. "smoothing_groups" "0"
  7040. }
  7041. side
  7042. {
  7043. "id" "1267"
  7044. "plane" "(704 -8.52633e-005 72) (704 -8.52633e-005 1344) (0 -8.52633e-005 1344)"
  7045. "material" "DEV/DEV_MEASUREWALL01A"
  7046. "uaxis" "[1 0 0 160] 0.25"
  7047. "vaxis" "[0 0 -1 -222] 0.25"
  7048. "rotation" "0"
  7049. "lightmapscale" "16"
  7050. "smoothing_groups" "0"
  7051. }
  7052. side
  7053. {
  7054. "id" "1266"
  7055. "plane" "(704 -944 72) (704 -944 1344) (704 -8.52633e-005 1344)"
  7056. "material" "DEV/DEV_MEASUREWALL01A"
  7057. "uaxis" "[0 -1 0 384.003] 0.25"
  7058. "vaxis" "[0 0 -1 -222] 0.25"
  7059. "rotation" "0"
  7060. "lightmapscale" "16"
  7061. "smoothing_groups" "0"
  7062. }
  7063. side
  7064. {
  7065. "id" "1265"
  7066. "plane" "(0 -8.52633e-005 72) (0 -8.52633e-005 1344) (0 -944 1344)"
  7067. "material" "DEV/DEV_MEASUREWALL01A"
  7068. "uaxis" "[0 1 0 -120] 0.25"
  7069. "vaxis" "[0 0 -1 -222] 0.25"
  7070. "rotation" "0"
  7071. "lightmapscale" "16"
  7072. "smoothing_groups" "0"
  7073. }
  7074. editor
  7075. {
  7076. "color" "0 114 131"
  7077. "visgroupshown" "1"
  7078. "visgroupautoshown" "1"
  7079. }
  7080. }
  7081. solid
  7082. {
  7083. "id" "1429"
  7084. side
  7085. {
  7086. "id" "1282"
  7087. "plane" "(1516 -944 1536) (704 -944 1536) (704 0 1536)"
  7088. "material" "DEV/DEV_MEASUREGENERIC01B"
  7089. "uaxis" "[1 0 0 64] 0.25"
  7090. "vaxis" "[0 1 0 56] 0.25"
  7091. "rotation" "0"
  7092. "lightmapscale" "16"
  7093. "smoothing_groups" "0"
  7094. dispinfo
  7095. {
  7096. "power" "2"
  7097. "startposition" "[704 -944 1536]"
  7098. "flags" "0"
  7099. "elevation" "0"
  7100. "subdiv" "0"
  7101. normals
  7102. {
  7103. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7104. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7105. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7106. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7107. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7108. }
  7109. distances
  7110. {
  7111. "row0" "0 0 0 0 0"
  7112. "row1" "0 0 0 0 0"
  7113. "row2" "0 0 0 0 0"
  7114. "row3" "0 0 0 0 0"
  7115. "row4" "0 0 0 0 0"
  7116. }
  7117. offsets
  7118. {
  7119. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7120. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7121. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7122. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7123. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7124. }
  7125. offset_normals
  7126. {
  7127. "row0" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
  7128. "row1" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
  7129. "row2" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
  7130. "row3" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
  7131. "row4" "0 0 1 0 0 1 0 0 1 0 0 1 0 0 1"
  7132. }
  7133. alphas
  7134. {
  7135. "row0" "0 0 0 0 0"
  7136. "row1" "0 0 0 0 0"
  7137. "row2" "0 0 0 0 0"
  7138. "row3" "0 0 0 0 0"
  7139. "row4" "0 0 0 0 0"
  7140. }
  7141. triangle_tags
  7142. {
  7143. "row0" "9 9 9 9 9 9 9 9"
  7144. "row1" "9 9 9 9 9 9 9 9"
  7145. "row2" "9 9 9 9 9 9 9 9"
  7146. "row3" "9 9 9 9 9 9 9 9"
  7147. }
  7148. allowed_verts
  7149. {
  7150. "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1"
  7151. }
  7152. }
  7153. }
  7154. side
  7155. {
  7156. "id" "1281"
  7157. "plane" "(1516 0 1344) (704 0 1344) (704 -944 1344)"
  7158. "material" "DEV/DEV_MEASUREWALL01A"
  7159. "uaxis" "[0 1 0 -120] 0.25"
  7160. "vaxis" "[1 0 0 32] 0.25"
  7161. "rotation" "0"
  7162. "lightmapscale" "16"
  7163. "smoothing_groups" "0"
  7164. }
  7165. side
  7166. {
  7167. "id" "1280"
  7168. "plane" "(1516 -944 1344) (704 -944 1344) (704 -944 1536)"
  7169. "material" "DEV/DEV_MEASUREWALL01A"
  7170. "uaxis" "[-1 0 0 -32] 0.25"
  7171. "vaxis" "[0 0 -1 32] 0.25"
  7172. "rotation" "0"
  7173. "lightmapscale" "16"
  7174. "smoothing_groups" "0"
  7175. dispinfo
  7176. {
  7177. "power" "2"
  7178. "startposition" "[704 -944 1344]"
  7179. "flags" "0"
  7180. "elevation" "0"
  7181. "subdiv" "0"
  7182. normals
  7183. {
  7184. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7185. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7186. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7187. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7188. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7189. }
  7190. distances
  7191. {
  7192. "row0" "0 0 0 0 0"
  7193. "row1" "0 0 0 0 0"
  7194. "row2" "0 0 0 0 0"
  7195. "row3" "0 0 0 0 0"
  7196. "row4" "0 0 0 0 0"
  7197. }
  7198. offsets
  7199. {
  7200. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7201. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7202. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7203. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7204. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7205. }
  7206. offset_normals
  7207. {
  7208. "row0" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0"
  7209. "row1" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0"
  7210. "row2" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0"
  7211. "row3" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0"
  7212. "row4" "0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0"
  7213. }
  7214. alphas
  7215. {
  7216. "row0" "0 0 0 0 0"
  7217. "row1" "0 0 0 0 0"
  7218. "row2" "0 0 0 0 0"
  7219. "row3" "0 0 0 0 0"
  7220. "row4" "0 0 0 0 0"
  7221. }
  7222. triangle_tags
  7223. {
  7224. "row0" "0 0 0 0 0 0 0 0"
  7225. "row1" "0 0 0 0 0 0 0 0"
  7226. "row2" "0 0 0 0 0 0 0 0"
  7227. "row3" "0 0 0 0 0 0 0 0"
  7228. }
  7229. allowed_verts
  7230. {
  7231. "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1"
  7232. }
  7233. }
  7234. }
  7235. side
  7236. {
  7237. "id" "1279"
  7238. "plane" "(704 0 1344) (1516 0 1344) (1516 0 1536)"
  7239. "material" "DEV/DEV_MEASUREWALL01A"
  7240. "uaxis" "[1 0 0 -96] 0.25"
  7241. "vaxis" "[0 0 -1 -222] 0.25"
  7242. "rotation" "0"
  7243. "lightmapscale" "16"
  7244. "smoothing_groups" "0"
  7245. }
  7246. side
  7247. {
  7248. "id" "1278"
  7249. "plane" "(1516 0 1344) (1516 -944 1344) (1516 -944 1536)"
  7250. "material" "DEV/DEV_MEASUREWALL01A"
  7251. "uaxis" "[0 -1 0 384.003] 0.25"
  7252. "vaxis" "[0 0 -1 -222] 0.25"
  7253. "rotation" "0"
  7254. "lightmapscale" "16"
  7255. "smoothing_groups" "0"
  7256. }
  7257. side
  7258. {
  7259. "id" "1277"
  7260. "plane" "(704 -944 1344) (704 0 1344) (704 0 1536)"
  7261. "material" "DEV/DEV_MEASUREWALL01A"
  7262. "uaxis" "[0 1 0 -120] 0.25"
  7263. "vaxis" "[0 0 -1 -222] 0.25"
  7264. "rotation" "0"
  7265. "lightmapscale" "16"
  7266. "smoothing_groups" "0"
  7267. dispinfo
  7268. {
  7269. "power" "2"
  7270. "startposition" "[704 -944 1344]"
  7271. "flags" "0"
  7272. "elevation" "0"
  7273. "subdiv" "0"
  7274. normals
  7275. {
  7276. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7277. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7278. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7279. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7280. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7281. }
  7282. distances
  7283. {
  7284. "row0" "0 0 0 0 0"
  7285. "row1" "0 0 0 0 0"
  7286. "row2" "0 0 0 0 0"
  7287. "row3" "0 0 0 0 0"
  7288. "row4" "0 0 0 0 0"
  7289. }
  7290. offsets
  7291. {
  7292. "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7293. "row1" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7294. "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7295. "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7296. "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
  7297. }
  7298. offset_normals
  7299. {
  7300. "row0" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0"
  7301. "row1" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0"
  7302. "row2" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0"
  7303. "row3" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0"
  7304. "row4" "-1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0"
  7305. }
  7306. alphas
  7307. {
  7308. "row0" "0 0 0 0 0"
  7309. "row1" "0 0 0 0 0"
  7310. "row2" "0 0 0 0 0"
  7311. "row3" "0 0 0 0 0"
  7312. "row4" "0 0 0 0 0"
  7313. }
  7314. triangle_tags
  7315. {
  7316. "row0" "0 0 0 0 0 0 0 0"
  7317. "row1" "0 0 0 0 0 0 0 0"
  7318. "row2" "0 0 0 0 0 0 0 0"
  7319. "row3" "0 0 0 0 0 0 0 0"
  7320. }
  7321. allowed_verts
  7322. {
  7323. "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1"
  7324. }
  7325. }
  7326. }
  7327. editor
  7328. {
  7329. "color" "0 114 131"
  7330. "visgroupshown" "1"
  7331. "visgroupautoshown" "1"
  7332. }
  7333. }
  7334. }
  7335. entity
  7336. {
  7337. "id" "3"
  7338. "classname" "info_player_start"
  7339. "angles" "0 0 0"
  7340. "origin" "-1840 344 65"
  7341. editor
  7342. {
  7343. "color" "0 255 0"
  7344. "visgroupshown" "1"
  7345. "visgroupautoshown" "1"
  7346. "logicalpos" "[0 500]"
  7347. }
  7348. }
  7349. cameras
  7350. {
  7351. "activecamera" "-1"
  7352. }
  7353. cordon
  7354. {
  7355. "mins" "(-1024 -1024 -1024)"
  7356. "maxs" "(1024 1024 1024)"
  7357. "active" "0"
  7358. }