VtownA.vmf 171 KB

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