| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703 |
- <Comment> {
- "egg-mkfont -i maps/cmtt12.rgb -o cmtt12.egg /var/lib/texmf/pk/ljfour/public/cm/cmtt12.720pk"
- }
- <Texture> chars {
- "maps/cmtt12.rgb"
- <Scalar> format { alpha }
- }
- <Group> {
- <Switch> { 1 }
- <Scalar> fps { 2 }
- <VertexPool> vpool {
- <Vertex> 1 {
- 0.027528 -0.265233 0
- <UV> { 0.0119467 0.833272 }
- }
- <Vertex> 2 {
- 0.382338 -0.265233 0
- <UV> { 0.0730677 0.833272 }
- }
- <Vertex> 3 {
- 0.382338 0.633276 0
- <UV> { 0.0730677 0.988053 }
- }
- <Vertex> 4 {
- 0.027528 0.633276 0
- <UV> { 0.0119467 0.988053 }
- }
- <Vertex> 5 {
- 0.518605 0 0
- }
- <Vertex> 6 {
- 0.0358926 -0.11467 0
- <UV> { 0.081111 0.846241 }
- }
- <Vertex> 7 {
- 0.474348 -0.11467 0
- <UV> { 0.156641 0.846241 }
- }
- <Vertex> 8 {
- 0.474348 0.708557 0
- <UV> { 0.156641 0.988053 }
- }
- <Vertex> 9 {
- 0.0358926 0.708557 0
- <UV> { 0.081111 0.988053 }
- }
- <Vertex> 10 {
- 0.518605 0 0
- }
- <Vertex> 11 {
- 0.0107988 -0.11467 0
- <UV> { 0.164684 0.846241 }
- }
- <Vertex> 12 {
- 0.499442 -0.11467 0
- <UV> { 0.24886 0.846241 }
- }
- <Vertex> 13 {
- 0.499442 0.708557 0
- <UV> { 0.24886 0.988053 }
- }
- <Vertex> 14 {
- 0.0107988 0.708557 0
- <UV> { 0.164684 0.988053 }
- }
- <Vertex> 15 {
- 0.518605 0 0
- }
- <Vertex> 16 {
- 0.0358926 -0.11467 0
- <UV> { 0.256903 0.846241 }
- }
- <Vertex> 17 {
- 0.474348 -0.11467 0
- <UV> { 0.332434 0.846241 }
- }
- <Vertex> 18 {
- 0.474348 0.708557 0
- <UV> { 0.332434 0.988053 }
- }
- <Vertex> 19 {
- 0.0358926 0.708557 0
- <UV> { 0.256903 0.988053 }
- }
- <Vertex> 20 {
- 0.518605 0 0
- }
- <Vertex> 21 {
- 0.0358926 -0.11467 0
- <UV> { 0.340477 0.846241 }
- }
- <Vertex> 22 {
- 0.474348 -0.11467 0
- <UV> { 0.416007 0.846241 }
- }
- <Vertex> 23 {
- 0.474348 0.708557 0
- <UV> { 0.416007 0.988053 }
- }
- <Vertex> 24 {
- 0.0358926 0.708557 0
- <UV> { 0.340477 0.988053 }
- }
- <Vertex> 25 {
- 0.518605 0 0
- }
- <Vertex> 26 {
- 0.0358926 -0.11467 0
- <UV> { 0.42405 0.846241 }
- }
- <Vertex> 27 {
- 0.474348 -0.11467 0
- <UV> { 0.499581 0.846241 }
- }
- <Vertex> 28 {
- 0.474348 0.708557 0
- <UV> { 0.499581 0.988053 }
- }
- <Vertex> 29 {
- 0.0358926 0.708557 0
- <UV> { 0.42405 0.988053 }
- }
- <Vertex> 30 {
- 0.518605 0 0
- }
- <Vertex> 31 {
- 0.203185 -0.11467 0
- <UV> { 0.507624 0.846241 }
- }
- <Vertex> 32 {
- 0.315421 -0.11467 0
- <UV> { 0.526958 0.846241 }
- }
- <Vertex> 33 {
- 0.315421 0.708557 0
- <UV> { 0.526958 0.988053 }
- }
- <Vertex> 34 {
- 0.203185 0.708557 0
- <UV> { 0.507624 0.988053 }
- }
- <Vertex> 35 {
- 0.518605 0 0
- }
- <Vertex> 36 {
- 0.0358926 -0.11467 0
- <UV> { 0.535001 0.846241 }
- }
- <Vertex> 37 {
- 0.474348 -0.11467 0
- <UV> { 0.610532 0.846241 }
- }
- <Vertex> 38 {
- 0.474348 0.708557 0
- <UV> { 0.610532 0.988053 }
- }
- <Vertex> 39 {
- 0.0358926 0.708557 0
- <UV> { 0.535001 0.988053 }
- }
- <Vertex> 40 {
- 0.518605 0 0
- }
- <Vertex> 41 {
- 0.0107988 -0.11467 0
- <UV> { 0.618575 0.846241 }
- }
- <Vertex> 42 {
- 0.323785 -0.11467 0
- <UV> { 0.672491 0.846241 }
- }
- <Vertex> 43 {
- 0.323785 0.708557 0
- <UV> { 0.672491 0.988053 }
- }
- <Vertex> 44 {
- 0.0107988 0.708557 0
- <UV> { 0.618575 0.988053 }
- }
- <Vertex> 45 {
- 0.518605 0 0
- }
- <Vertex> 46 {
- 0.186456 -0.11467 0
- <UV> { 0.680535 0.846241 }
- }
- <Vertex> 47 {
- 0.499442 -0.11467 0
- <UV> { 0.734451 0.846241 }
- }
- <Vertex> 48 {
- 0.499442 0.708557 0
- <UV> { 0.734451 0.988053 }
- }
- <Vertex> 49 {
- 0.186456 0.708557 0
- <UV> { 0.680535 0.988053 }
- }
- <Vertex> 50 {
- 0.518605 0 0
- }
- <Vertex> 51 {
- 0.0609865 -0.106306 0
- <UV> { 0.742494 0.847682 }
- }
- <Vertex> 52 {
- 0.365608 -0.106306 0
- <UV> { 0.79497 0.847682 }
- }
- <Vertex> 53 {
- 0.365608 0.708557 0
- <UV> { 0.79497 0.988053 }
- }
- <Vertex> 54 {
- 0.0609865 0.708557 0
- <UV> { 0.742494 0.988053 }
- }
- <Vertex> 55 {
- 0.518605 0 0
- }
- <Vertex> 56 {
- 0.144632 -0.106306 0
- <UV> { 0.803013 0.847682 }
- }
- <Vertex> 57 {
- 0.449254 -0.106306 0
- <UV> { 0.855488 0.847682 }
- }
- <Vertex> 58 {
- 0.449254 0.708557 0
- <UV> { 0.855488 0.988053 }
- }
- <Vertex> 59 {
- 0.144632 0.708557 0
- <UV> { 0.803013 0.988053 }
- }
- <Vertex> 60 {
- 0.518605 0 0
- }
- <Vertex> 61 {
- 0.0358926 -0.173222 0
- <UV> { 0.863532 0.849123 }
- }
- <Vertex> 62 {
- 0.474348 -0.173222 0
- <UV> { 0.939062 0.849123 }
- }
- <Vertex> 63 {
- 0.474348 0.633276 0
- <UV> { 0.939062 0.988053 }
- }
- <Vertex> 64 {
- 0.0358926 0.633276 0
- <UV> { 0.863532 0.988053 }
- }
- <Vertex> 65 {
- 0.518605 0 0
- }
- <Vertex> 66 {
- 0.00243423 -0.273598 0
- <UV> { 0.863532 0.716558 }
- }
- <Vertex> 67 {
- 0.516171 -0.273598 0
- <UV> { 0.95203 0.716558 }
- }
- <Vertex> 68 {
- 0.516171 0.449254 0
- <UV> { 0.95203 0.841079 }
- }
- <Vertex> 69 {
- 0.00243423 0.449254 0
- <UV> { 0.863532 0.841079 }
- }
- <Vertex> 70 {
- 0.518605 0 0
- }
- <Vertex> 71 {
- 0.00243423 -0.265233 0
- <UV> { 0.742494 0.717999 }
- }
- <Vertex> 72 {
- 0.507807 -0.265233 0
- <UV> { 0.829552 0.717999 }
- }
- <Vertex> 73 {
- 0.507807 0.44089 0
- <UV> { 0.829552 0.839638 }
- }
- <Vertex> 74 {
- 0.00243423 0.44089 0
- <UV> { 0.742494 0.839638 }
- }
- <Vertex> 75 {
- 0.518605 0 0
- }
- <Vertex> 76 {
- 0.0191634 -0.256868 0
- <UV> { 0.081111 0.716558 }
- }
- <Vertex> 77 {
- 0.541265 -0.256868 0
- <UV> { 0.17105 0.716558 }
- }
- <Vertex> 78 {
- 0.541265 0.449254 0
- <UV> { 0.17105 0.838197 }
- }
- <Vertex> 79 {
- 0.0191634 0.449254 0
- <UV> { 0.081111 0.838197 }
- }
- <Vertex> 80 {
- 0.518605 0 0
- }
- <Vertex> 81 {
- -0.014295 -0.256868 0
- <UV> { 0.179094 0.716558 }
- }
- <Vertex> 82 {
- 0.499442 -0.256868 0
- <UV> { 0.267592 0.716558 }
- }
- <Vertex> 83 {
- 0.499442 0.449254 0
- <UV> { 0.267592 0.838197 }
- }
- <Vertex> 84 {
- -0.014295 0.449254 0
- <UV> { 0.179094 0.838197 }
- }
- <Vertex> 85 {
- 0.518605 0 0
- }
- <Vertex> 86 {
- 0.0191634 -0.0393888 0
- <UV> { 0.275635 0.72088 }
- }
- <Vertex> 87 {
- 0.491077 -0.0393888 0
- <UV> { 0.356929 0.72088 }
- }
- <Vertex> 88 {
- 0.491077 0.64164 0
- <UV> { 0.356929 0.838197 }
- }
- <Vertex> 89 {
- 0.0191634 0.64164 0
- <UV> { 0.275635 0.838197 }
- }
- <Vertex> 90 {
- 0.518605 0 0
- }
- <Vertex> 91 {
- 0.027528 -0.0393888 0
- <UV> { 0.364973 0.722321 }
- }
- <Vertex> 92 {
- 0.482713 -0.0393888 0
- <UV> { 0.443385 0.722321 }
- }
- <Vertex> 93 {
- 0.482713 0.633276 0
- <UV> { 0.443385 0.838197 }
- }
- <Vertex> 94 {
- 0.027528 0.633276 0
- <UV> { 0.364973 0.838197 }
- }
- <Vertex> 95 {
- 0.518605 0 0
- }
- <Vertex> 96 {
- 0.0191634 -0.0393888 0
- <UV> { 0.451428 0.722321 }
- }
- <Vertex> 97 {
- 0.491077 -0.0393888 0
- <UV> { 0.532722 0.722321 }
- }
- <Vertex> 98 {
- 0.491077 0.633276 0
- <UV> { 0.532722 0.838197 }
- }
- <Vertex> 99 {
- 0.0191634 0.633276 0
- <UV> { 0.451428 0.838197 }
- }
- <Vertex> 100 {
- 0.518605 0 0
- }
- <Vertex> 101 {
- 0.00243423 -0.0310242 0
- <UV> { 0.540765 0.722321 }
- }
- <Vertex> 102 {
- 0.507807 -0.0310242 0
- <UV> { 0.627823 0.722321 }
- }
- <Vertex> 103 {
- 0.507807 0.64164 0
- <UV> { 0.627823 0.838197 }
- }
- <Vertex> 104 {
- 0.00243423 0.64164 0
- <UV> { 0.540765 0.838197 }
- }
- <Vertex> 105 {
- 0.518605 0 0
- }
- <Vertex> 106 {
- 0.027528 -0.0393888 0
- <UV> { 0.635866 0.722321 }
- }
- <Vertex> 107 {
- 0.482713 -0.0393888 0
- <UV> { 0.714278 0.722321 }
- }
- <Vertex> 108 {
- 0.482713 0.633276 0
- <UV> { 0.714278 0.838197 }
- }
- <Vertex> 109 {
- 0.027528 0.633276 0
- <UV> { 0.635866 0.838197 }
- }
- <Vertex> 110 {
- 0.518605 0 0
- }
- <Vertex> 111 {
- 0.0191634 -0.0393888 0
- <UV> { 0.364973 0.598402 }
- }
- <Vertex> 112 {
- 0.491077 -0.0393888 0
- <UV> { 0.446267 0.598402 }
- }
- <Vertex> 113 {
- 0.491077 0.633276 0
- <UV> { 0.446267 0.714278 }
- }
- <Vertex> 114 {
- 0.0191634 0.633276 0
- <UV> { 0.364973 0.714278 }
- }
- <Vertex> 115 {
- 0.518605 0 0
- }
- <Vertex> 116 {
- 0.027528 -0.0393888 0
- <UV> { 0.45431 0.598402 }
- }
- <Vertex> 117 {
- 0.482713 -0.0393888 0
- <UV> { 0.532722 0.598402 }
- }
- <Vertex> 118 {
- 0.482713 0.633276 0
- <UV> { 0.532722 0.714278 }
- }
- <Vertex> 119 {
- 0.027528 0.633276 0
- <UV> { 0.45431 0.714278 }
- }
- <Vertex> 120 {
- 0.518605 0 0
- }
- <Vertex> 121 {
- 0.00243423 -0.0393888 0
- <UV> { 0.540765 0.598402 }
- }
- <Vertex> 122 {
- 0.499442 -0.0393888 0
- <UV> { 0.626382 0.598402 }
- }
- <Vertex> 123 {
- 0.499442 0.633276 0
- <UV> { 0.626382 0.714278 }
- }
- <Vertex> 124 {
- 0.00243423 0.633276 0
- <UV> { 0.540765 0.714278 }
- }
- <Vertex> 125 {
- 0.518605 0 0
- }
- <Vertex> 126 {
- 0.0191634 -0.0393888 0
- <UV> { 0.634425 0.598402 }
- }
- <Vertex> 127 {
- 0.491077 -0.0393888 0
- <UV> { 0.715719 0.598402 }
- }
- <Vertex> 128 {
- 0.491077 0.633276 0
- <UV> { 0.715719 0.714278 }
- }
- <Vertex> 129 {
- 0.0191634 0.633276 0
- <UV> { 0.634425 0.714278 }
- }
- <Vertex> 130 {
- 0.518605 0 0
- }
- <Vertex> 131 {
- 0.00243423 -0.0310242 0
- <UV> { 0.723762 0.594079 }
- }
- <Vertex> 132 {
- 0.507807 -0.0310242 0
- <UV> { 0.81082 0.594079 }
- }
- <Vertex> 133 {
- 0.507807 0.64164 0
- <UV> { 0.81082 0.709955 }
- }
- <Vertex> 134 {
- 0.00243423 0.64164 0
- <UV> { 0.723762 0.709955 }
- }
- <Vertex> 135 {
- 0.518605 0 0
- }
- <Vertex> 136 {
- 0.0191634 -0.0393888 0
- <UV> { 0.275635 0.596961 }
- }
- <Vertex> 137 {
- 0.491077 -0.0393888 0
- <UV> { 0.356929 0.596961 }
- }
- <Vertex> 138 {
- 0.491077 0.633276 0
- <UV> { 0.356929 0.712837 }
- }
- <Vertex> 139 {
- 0.0191634 0.633276 0
- <UV> { 0.275635 0.712837 }
- }
- <Vertex> 140 {
- 0.518605 0 0
- }
- <Vertex> 141 {
- 0.0107988 -0.0393888 0
- <UV> { 0.0119467 0.592638 }
- }
- <Vertex> 142 {
- 0.499442 -0.0393888 0
- <UV> { 0.0961225 0.592638 }
- }
- <Vertex> 143 {
- 0.499442 0.633276 0
- <UV> { 0.0961225 0.708514 }
- }
- <Vertex> 144 {
- 0.0107988 0.633276 0
- <UV> { 0.0119467 0.708514 }
- }
- <Vertex> 145 {
- 0.518605 0 0
- }
- <Vertex> 146 {
- 0.0358926 -0.0393888 0
- <UV> { 0.104166 0.592638 }
- }
- <Vertex> 147 {
- 0.474348 -0.0393888 0
- <UV> { 0.179696 0.592638 }
- }
- <Vertex> 148 {
- 0.474348 0.633276 0
- <UV> { 0.179696 0.708514 }
- }
- <Vertex> 149 {
- 0.0358926 0.633276 0
- <UV> { 0.104166 0.708514 }
- }
- <Vertex> 150 {
- 0.518605 0 0
- }
- <Vertex> 151 {
- 0.027528 -0.0393888 0
- <UV> { 0.187739 0.592638 }
- }
- <Vertex> 152 {
- 0.482713 -0.0393888 0
- <UV> { 0.266151 0.592638 }
- }
- <Vertex> 153 {
- 0.482713 0.633276 0
- <UV> { 0.266151 0.708514 }
- }
- <Vertex> 154 {
- 0.027528 0.633276 0
- <UV> { 0.187739 0.708514 }
- }
- <Vertex> 155 {
- 0.518605 0 0
- }
- <Vertex> 156 {
- 0.186456 -0.0310242 0
- <UV> { 0.947105 0.873618 }
- }
- <Vertex> 157 {
- 0.323785 -0.0310242 0
- <UV> { 0.970762 0.873618 }
- }
- <Vertex> 158 {
- 0.323785 0.633276 0
- <UV> { 0.970762 0.988053 }
- }
- <Vertex> 159 {
- 0.186456 0.633276 0
- <UV> { 0.947105 0.988053 }
- }
- <Vertex> 160 {
- 0.518605 0 0
- }
- <Vertex> 161 {
- 0.0358926 -0.0310242 0
- <UV> { 0.818863 0.594079 }
- }
- <Vertex> 162 {
- 0.474348 -0.0310242 0
- <UV> { 0.894393 0.594079 }
- }
- <Vertex> 163 {
- 0.474348 0.633276 0
- <UV> { 0.894393 0.708514 }
- }
- <Vertex> 164 {
- 0.0358926 0.633276 0
- <UV> { 0.818863 0.708514 }
- }
- <Vertex> 165 {
- 0.518605 0 0
- }
- <Vertex> 166 {
- 0.0526219 -0.0393888 0
- <UV> { 0.902437 0.594079 }
- }
- <Vertex> 167 {
- 0.482713 -0.0393888 0
- <UV> { 0.976526 0.594079 }
- }
- <Vertex> 168 {
- 0.482713 0.624911 0
- <UV> { 0.976526 0.708514 }
- }
- <Vertex> 169 {
- 0.0526219 0.624911 0
- <UV> { 0.902437 0.708514 }
- }
- <Vertex> 170 {
- 0.518605 0 0
- }
- <Vertex> 171 {
- 0.027528 -0.0393888 0
- <UV> { 0.364973 0.475924 }
- }
- <Vertex> 172 {
- 0.482713 -0.0393888 0
- <UV> { 0.443385 0.475924 }
- }
- <Vertex> 173 {
- 0.482713 0.624911 0
- <UV> { 0.443385 0.590359 }
- }
- <Vertex> 174 {
- 0.027528 0.624911 0
- <UV> { 0.364973 0.590359 }
- }
- <Vertex> 175 {
- 0.518605 0 0
- }
- <Vertex> 176 {
- 0.027528 -0.0310242 0
- <UV> { 0.451428 0.475924 }
- }
- <Vertex> 177 {
- 0.482713 -0.0310242 0
- <UV> { 0.52984 0.475924 }
- }
- <Vertex> 178 {
- 0.482713 0.633276 0
- <UV> { 0.52984 0.590359 }
- }
- <Vertex> 179 {
- 0.027528 0.633276 0
- <UV> { 0.451428 0.590359 }
- }
- <Vertex> 180 {
- 0.518605 0 0
- }
- <Vertex> 181 {
- 0.0777157 -0.0310242 0
- <UV> { 0.537883 0.475924 }
- }
- <Vertex> 182 {
- 0.449254 -0.0310242 0
- <UV> { 0.601886 0.475924 }
- }
- <Vertex> 183 {
- 0.449254 0.633276 0
- <UV> { 0.601886 0.590359 }
- }
- <Vertex> 184 {
- 0.0777157 0.633276 0
- <UV> { 0.537883 0.590359 }
- }
- <Vertex> 185 {
- 0.518605 0 0
- }
- <Vertex> 186 {
- 0.00243423 -0.0393888 0
- <UV> { 0.609929 0.475924 }
- }
- <Vertex> 187 {
- 0.5329 -0.0393888 0
- <UV> { 0.70131 0.475924 }
- }
- <Vertex> 188 {
- 0.5329 0.624911 0
- <UV> { 0.70131 0.590359 }
- }
- <Vertex> 189 {
- 0.00243423 0.624911 0
- <UV> { 0.609929 0.590359 }
- }
- <Vertex> 190 {
- 0.518605 0 0
- }
- <Vertex> 191 {
- -0.0226596 -0.0393888 0
- <UV> { 0.709353 0.471601 }
- }
- <Vertex> 192 {
- 0.5329 -0.0393888 0
- <UV> { 0.805056 0.471601 }
- }
- <Vertex> 193 {
- 0.5329 0.624911 0
- <UV> { 0.805056 0.586036 }
- }
- <Vertex> 194 {
- -0.0226596 0.624911 0
- <UV> { 0.709353 0.586036 }
- }
- <Vertex> 195 {
- 0.518605 0 0
- }
- <Vertex> 196 {
- -0.00593037 -0.0393888 0
- <UV> { 0.813099 0.471601 }
- }
- <Vertex> 197 {
- 0.516171 -0.0393888 0
- <UV> { 0.903039 0.471601 }
- }
- <Vertex> 198 {
- 0.516171 0.624911 0
- <UV> { 0.903039 0.586036 }
- }
- <Vertex> 199 {
- -0.00593037 0.624911 0
- <UV> { 0.813099 0.586036 }
- }
- <Vertex> 200 {
- 0.518605 0 0
- }
- <Vertex> 201 {
- -0.014295 -0.0393888 0
- <UV> { 0.0119467 0.47016 }
- }
- <Vertex> 202 {
- 0.524536 -0.0393888 0
- <UV> { 0.104768 0.47016 }
- }
- <Vertex> 203 {
- 0.524536 0.624911 0
- <UV> { 0.104768 0.584595 }
- }
- <Vertex> 204 {
- -0.014295 0.624911 0
- <UV> { 0.0119467 0.584595 }
- }
- <Vertex> 205 {
- 0.518605 0 0
- }
- <Vertex> 206 {
- -0.014295 -0.0393888 0
- <UV> { 0.112811 0.47016 }
- }
- <Vertex> 207 {
- 0.499442 -0.0393888 0
- <UV> { 0.20131 0.47016 }
- }
- <Vertex> 208 {
- 0.499442 0.624911 0
- <UV> { 0.20131 0.584595 }
- }
- <Vertex> 209 {
- -0.014295 0.624911 0
- <UV> { 0.112811 0.584595 }
- }
- <Vertex> 210 {
- 0.518605 0 0
- }
- <Vertex> 211 {
- 0.0107988 -0.0393888 0
- <UV> { 0.209353 0.47016 }
- }
- <Vertex> 212 {
- 0.524536 -0.0393888 0
- <UV> { 0.297852 0.47016 }
- }
- <Vertex> 213 {
- 0.524536 0.624911 0
- <UV> { 0.297852 0.584595 }
- }
- <Vertex> 214 {
- 0.0107988 0.624911 0
- <UV> { 0.209353 0.584595 }
- }
- <Vertex> 215 {
- 0.518605 0 0
- }
- <Vertex> 216 {
- 0.0107988 -0.0310242 0
- <UV> { 0.911082 0.471601 }
- }
- <Vertex> 217 {
- 0.457619 -0.0310242 0
- <UV> { 0.988053 0.471601 }
- }
- <Vertex> 218 {
- 0.457619 0.633276 0
- <UV> { 0.988053 0.586036 }
- }
- <Vertex> 219 {
- 0.0107988 0.633276 0
- <UV> { 0.911082 0.586036 }
- }
- <Vertex> 220 {
- 0.518605 0 0
- }
- <Vertex> 221 {
- 0.0609865 -0.0310242 0
- <UV> { 0.305895 0.353445 }
- }
- <Vertex> 222 {
- 0.457619 -0.0310242 0
- <UV> { 0.37422 0.353445 }
- }
- <Vertex> 223 {
- 0.457619 0.633276 0
- <UV> { 0.37422 0.46788 }
- }
- <Vertex> 224 {
- 0.0609865 0.633276 0
- <UV> { 0.305895 0.46788 }
- }
- <Vertex> 225 {
- 0.518605 0 0
- }
- <Vertex> 226 {
- 0.00243423 -0.0310242 0
- <UV> { 0.382264 0.354886 }
- }
- <Vertex> 227 {
- 0.491077 -0.0310242 0
- <UV> { 0.466439 0.354886 }
- }
- <Vertex> 228 {
- 0.491077 0.624911 0
- <UV> { 0.466439 0.46788 }
- }
- <Vertex> 229 {
- 0.00243423 0.624911 0
- <UV> { 0.382264 0.46788 }
- }
- <Vertex> 230 {
- 0.518605 0 0
- }
- <Vertex> 231 {
- 0.00243423 -0.0310242 0
- <UV> { 0.474483 0.354886 }
- }
- <Vertex> 232 {
- 0.507807 -0.0310242 0
- <UV> { 0.56154 0.354886 }
- }
- <Vertex> 233 {
- 0.507807 0.624911 0
- <UV> { 0.56154 0.46788 }
- }
- <Vertex> 234 {
- 0.00243423 0.624911 0
- <UV> { 0.474483 0.46788 }
- }
- <Vertex> 235 {
- 0.518605 0 0
- }
- <Vertex> 236 {
- 0.0107988 -0.0310242 0
- <UV> { 0.569584 0.354886 }
- }
- <Vertex> 237 {
- 0.499442 -0.0310242 0
- <UV> { 0.653759 0.354886 }
- }
- <Vertex> 238 {
- 0.499442 0.624911 0
- <UV> { 0.653759 0.46788 }
- }
- <Vertex> 239 {
- 0.0107988 0.624911 0
- <UV> { 0.569584 0.46788 }
- }
- <Vertex> 240 {
- 0.518605 0 0
- }
- <Vertex> 241 {
- 0.0107988 -0.0310242 0
- <UV> { 0.661803 0.350563 }
- }
- <Vertex> 242 {
- 0.499442 -0.0310242 0
- <UV> { 0.745978 0.350563 }
- }
- <Vertex> 243 {
- 0.499442 0.624911 0
- <UV> { 0.745978 0.463558 }
- }
- <Vertex> 244 {
- 0.0107988 0.624911 0
- <UV> { 0.661803 0.463558 }
- }
- <Vertex> 245 {
- 0.518605 0 0
- }
- <Vertex> 246 {
- 0.00243423 -0.0310242 0
- <UV> { 0.754022 0.350563 }
- }
- <Vertex> 247 {
- 0.491077 -0.0310242 0
- <UV> { 0.838197 0.350563 }
- }
- <Vertex> 248 {
- 0.491077 0.624911 0
- <UV> { 0.838197 0.463558 }
- }
- <Vertex> 249 {
- 0.00243423 0.624911 0
- <UV> { 0.754022 0.463558 }
- }
- <Vertex> 250 {
- 0.518605 0 0
- }
- <Vertex> 251 {
- 0.00243423 -0.0310242 0
- <UV> { 0.846241 0.350563 }
- }
- <Vertex> 252 {
- 0.507807 -0.0310242 0
- <UV> { 0.933298 0.350563 }
- }
- <Vertex> 253 {
- 0.507807 0.624911 0
- <UV> { 0.933298 0.463558 }
- }
- <Vertex> 254 {
- 0.00243423 0.624911 0
- <UV> { 0.846241 0.463558 }
- }
- <Vertex> 255 {
- 0.518605 0 0
- }
- <Vertex> 256 {
- 0.0609865 -0.0310242 0
- <UV> { 0.0119467 0.349123 }
- }
- <Vertex> 257 {
- 0.457619 -0.0310242 0
- <UV> { 0.0802723 0.349123 }
- }
- <Vertex> 258 {
- 0.457619 0.624911 0
- <UV> { 0.0802723 0.462117 }
- }
- <Vertex> 259 {
- 0.0609865 0.624911 0
- <UV> { 0.0119467 0.462117 }
- }
- <Vertex> 260 {
- 0.518605 0 0
- }
- <Vertex> 261 {
- 0.00243423 -0.0310242 0
- <UV> { 0.0883156 0.349123 }
- }
- <Vertex> 262 {
- 0.499442 -0.0310242 0
- <UV> { 0.173932 0.349123 }
- }
- <Vertex> 263 {
- 0.499442 0.624911 0
- <UV> { 0.173932 0.462117 }
- }
- <Vertex> 264 {
- 0.00243423 0.624911 0
- <UV> { 0.0883156 0.462117 }
- }
- <Vertex> 265 {
- 0.518605 0 0
- }
- <Vertex> 266 {
- 0.027528 -0.0310242 0
- <UV> { 0.181976 0.349123 }
- }
- <Vertex> 267 {
- 0.491077 -0.0310242 0
- <UV> { 0.261829 0.349123 }
- }
- <Vertex> 268 {
- 0.491077 0.624911 0
- <UV> { 0.261829 0.462117 }
- }
- <Vertex> 269 {
- 0.027528 0.624911 0
- <UV> { 0.181976 0.462117 }
- }
- <Vertex> 270 {
- 0.518605 0 0
- }
- <Vertex> 271 {
- 0.0107988 -0.0310242 0
- <UV> { 0.382264 0.233849 }
- }
- <Vertex> 272 {
- 0.499442 -0.0310242 0
- <UV> { 0.466439 0.233849 }
- }
- <Vertex> 273 {
- 0.499442 0.624911 0
- <UV> { 0.466439 0.346843 }
- }
- <Vertex> 274 {
- 0.0107988 0.624911 0
- <UV> { 0.382264 0.346843 }
- }
- <Vertex> 275 {
- 0.518605 0 0
- }
- <Vertex> 276 {
- -0.00593037 -0.0310242 0
- <UV> { 0.474483 0.233849 }
- }
- <Vertex> 277 {
- 0.516171 -0.0310242 0
- <UV> { 0.564422 0.233849 }
- }
- <Vertex> 278 {
- 0.516171 0.624911 0
- <UV> { 0.564422 0.346843 }
- }
- <Vertex> 279 {
- -0.00593037 0.624911 0
- <UV> { 0.474483 0.346843 }
- }
- <Vertex> 280 {
- 0.518605 0 0
- }
- <Vertex> 281 {
- -0.014295 -0.0310242 0
- <UV> { 0.269872 0.232408 }
- }
- <Vertex> 282 {
- 0.524536 -0.0310242 0
- <UV> { 0.362693 0.232408 }
- }
- <Vertex> 283 {
- 0.524536 0.624911 0
- <UV> { 0.362693 0.345402 }
- }
- <Vertex> 284 {
- -0.014295 0.624911 0
- <UV> { 0.269872 0.345402 }
- }
- <Vertex> 285 {
- 0.518605 0 0
- }
- <Vertex> 286 {
- 0.0107988 -0.0310242 0
- <UV> { 0.572465 0.229526 }
- }
- <Vertex> 287 {
- 0.499442 -0.0310242 0
- <UV> { 0.656641 0.229526 }
- }
- <Vertex> 288 {
- 0.499442 0.624911 0
- <UV> { 0.656641 0.34252 }
- }
- <Vertex> 289 {
- 0.0107988 0.624911 0
- <UV> { 0.572465 0.34252 }
- }
- <Vertex> 290 {
- 0.518605 0 0
- }
- <Vertex> 291 {
- -0.00593037 -0.0310242 0
- <UV> { 0.664684 0.229526 }
- }
- <Vertex> 292 {
- 0.516171 -0.0310242 0
- <UV> { 0.754624 0.229526 }
- }
- <Vertex> 293 {
- 0.516171 0.624911 0
- <UV> { 0.754624 0.34252 }
- }
- <Vertex> 294 {
- -0.00593037 0.624911 0
- <UV> { 0.664684 0.34252 }
- }
- <Vertex> 295 {
- 0.518605 0 0
- }
- <Vertex> 296 {
- 0.00243423 -0.0310242 0
- <UV> { 0.762667 0.229526 }
- }
- <Vertex> 297 {
- 0.491077 -0.0310242 0
- <UV> { 0.846843 0.229526 }
- }
- <Vertex> 298 {
- 0.491077 0.624911 0
- <UV> { 0.846843 0.34252 }
- }
- <Vertex> 299 {
- 0.00243423 0.624911 0
- <UV> { 0.762667 0.34252 }
- }
- <Vertex> 300 {
- 0.518605 0 0
- }
- <Vertex> 301 {
- 0.00243423 -0.0310242 0
- <UV> { 0.854886 0.229526 }
- }
- <Vertex> 302 {
- 0.516171 -0.0310242 0
- <UV> { 0.943385 0.229526 }
- }
- <Vertex> 303 {
- 0.516171 0.624911 0
- <UV> { 0.943385 0.34252 }
- }
- <Vertex> 304 {
- 0.00243423 0.624911 0
- <UV> { 0.854886 0.34252 }
- }
- <Vertex> 305 {
- 0.518605 0 0
- }
- <Vertex> 306 {
- 0.0442572 -0.0310242 0
- <UV> { 0.0119467 0.228085 }
- }
- <Vertex> 307 {
- 0.474348 -0.0310242 0
- <UV> { 0.086036 0.228085 }
- }
- <Vertex> 308 {
- 0.474348 0.624911 0
- <UV> { 0.086036 0.341079 }
- }
- <Vertex> 309 {
- 0.0442572 0.624911 0
- <UV> { 0.0119467 0.341079 }
- }
- <Vertex> 310 {
- 0.518605 0 0
- }
- <Vertex> 311 {
- 0.00243423 -0.0310242 0
- <UV> { 0.0940793 0.228085 }
- }
- <Vertex> 312 {
- 0.507807 -0.0310242 0
- <UV> { 0.181137 0.228085 }
- }
- <Vertex> 313 {
- 0.507807 0.624911 0
- <UV> { 0.181137 0.341079 }
- }
- <Vertex> 314 {
- 0.00243423 0.624911 0
- <UV> { 0.0940793 0.341079 }
- }
- <Vertex> 315 {
- 0.518605 0 0
- }
- <Vertex> 316 {
- 0.00243423 -0.0310242 0
- <UV> { 0.370736 0.112811 }
- }
- <Vertex> 317 {
- 0.507807 -0.0310242 0
- <UV> { 0.457794 0.112811 }
- }
- <Vertex> 318 {
- 0.507807 0.624911 0
- <UV> { 0.457794 0.225805 }
- }
- <Vertex> 319 {
- 0.00243423 0.624911 0
- <UV> { 0.370736 0.225805 }
- }
- <Vertex> 320 {
- 0.518605 0 0
- }
- <Vertex> 321 {
- 0.161362 -0.173222 0
- <UV> { 0.0119467 0.71944 }
- }
- <Vertex> 322 {
- 0.348879 -0.173222 0
- <UV> { 0.0442493 0.71944 }
- }
- <Vertex> 323 {
- 0.348879 0.44089 0
- <UV> { 0.0442493 0.825229 }
- }
- <Vertex> 324 {
- 0.161362 0.44089 0
- <UV> { 0.0119467 0.825229 }
- }
- <Vertex> 325 {
- 0.518605 0 0
- }
- <Vertex> 326 {
- 0.00243423 -0.0393888 0
- <UV> { 0.465837 0.121457 }
- }
- <Vertex> 327 {
- 0.457619 -0.0393888 0
- <UV> { 0.544249 0.121457 }
- }
- <Vertex> 328 {
- 0.457619 0.566359 0
- <UV> { 0.544249 0.225805 }
- }
- <Vertex> 329 {
- 0.00243423 0.566359 0
- <UV> { 0.465837 0.225805 }
- }
- <Vertex> 330 {
- 0.518605 0 0
- }
- <Vertex> 331 {
- 0.0358926 0.027528 0
- <UV> { 0.18918 0.130102 }
- }
- <Vertex> 332 {
- 0.474348 0.027528 0
- <UV> { 0.26471 0.130102 }
- }
- <Vertex> 333 {
- 0.474348 0.574723 0
- <UV> { 0.26471 0.224365 }
- }
- <Vertex> 334 {
- 0.0358926 0.574723 0
- <UV> { 0.18918 0.224365 }
- }
- <Vertex> 335 {
- 0.518605 0 0
- }
- <Vertex> 336 {
- 0.0358926 0.027528 0
- <UV> { 0.272754 0.130102 }
- }
- <Vertex> 337 {
- 0.474348 0.027528 0
- <UV> { 0.348284 0.130102 }
- }
- <Vertex> 338 {
- 0.474348 0.574723 0
- <UV> { 0.348284 0.224365 }
- }
- <Vertex> 339 {
- 0.0358926 0.574723 0
- <UV> { 0.272754 0.224365 }
- }
- <Vertex> 340 {
- 0.518605 0 0
- }
- <Vertex> 341 {
- 0.0358926 -0.0393888 0
- <UV> { 0.552293 0.135866 }
- }
- <Vertex> 342 {
- 0.5329 -0.0393888 0
- <UV> { 0.637909 0.135866 }
- }
- <Vertex> 343 {
- 0.5329 0.457619 0
- <UV> { 0.637909 0.221483 }
- }
- <Vertex> 344 {
- 0.0358926 0.457619 0
- <UV> { 0.552293 0.221483 }
- }
- <Vertex> 345 {
- 0.518605 0 0
- }
- <Vertex> 346 {
- 0.0442572 -0.0393888 0
- <UV> { 0.645952 0.135866 }
- }
- <Vertex> 347 {
- 0.482713 -0.0393888 0
- <UV> { 0.721483 0.135866 }
- }
- <Vertex> 348 {
- 0.482713 0.457619 0
- <UV> { 0.721483 0.221483 }
- }
- <Vertex> 349 {
- 0.0442572 0.457619 0
- <UV> { 0.645952 0.221483 }
- }
- <Vertex> 350 {
- 0.518605 0 0
- }
- <Vertex> 351 {
- 0.0358926 -0.0393888 0
- <UV> { 0.729526 0.135866 }
- }
- <Vertex> 352 {
- 0.474348 -0.0393888 0
- <UV> { 0.805056 0.135866 }
- }
- <Vertex> 353 {
- 0.474348 0.457619 0
- <UV> { 0.805056 0.221483 }
- }
- <Vertex> 354 {
- 0.0358926 0.457619 0
- <UV> { 0.729526 0.221483 }
- }
- <Vertex> 355 {
- 0.518605 0 0
- }
- <Vertex> 356 {
- 0.0526219 -0.0393888 0
- <UV> { 0.18918 0.255463 }
- }
- <Vertex> 357 {
- 0.465984 -0.0393888 0
- <UV> { 0.260388 0.255463 }
- }
- <Vertex> 358 {
- 0.465984 0.457619 0
- <UV> { 0.260388 0.341079 }
- }
- <Vertex> 359 {
- 0.0526219 0.457619 0
- <UV> { 0.18918 0.341079 }
- }
- <Vertex> 360 {
- 0.518605 0 0
- }
- <Vertex> 361 {
- 0.0358926 -0.0393888 0
- <UV> { 0.813099 0.135866 }
- }
- <Vertex> 362 {
- 0.474348 -0.0393888 0
- <UV> { 0.88863 0.135866 }
- }
- <Vertex> 363 {
- 0.474348 0.457619 0
- <UV> { 0.88863 0.221483 }
- }
- <Vertex> 364 {
- 0.0358926 0.457619 0
- <UV> { 0.813099 0.221483 }
- }
- <Vertex> 365 {
- 0.518605 0 0
- }
- <Vertex> 366 {
- -0.0226596 -0.0310242 0
- <UV> { 0.0119467 0.137307 }
- }
- <Vertex> 367 {
- 0.5329 -0.0310242 0
- <UV> { 0.10765 0.137307 }
- }
- <Vertex> 368 {
- 0.5329 0.449254 0
- <UV> { 0.10765 0.220042 }
- }
- <Vertex> 369 {
- -0.0226596 0.449254 0
- <UV> { 0.0119467 0.220042 }
- }
- <Vertex> 370 {
- 0.518605 0 0
- }
- <Vertex> 371 {
- 0.0107988 0.0609865 0
- <UV> { 0.896673 0.138748 }
- }
- <Vertex> 372 {
- 0.499442 0.0609865 0
- <UV> { 0.980849 0.138748 }
- }
- <Vertex> 373 {
- 0.499442 0.541265 0
- <UV> { 0.980849 0.221483 }
- }
- <Vertex> 374 {
- 0.0107988 0.541265 0
- <UV> { 0.896673 0.221483 }
- }
- <Vertex> 375 {
- 0.518605 0 0
- }
- <Vertex> 376 {
- -0.014295 -0.0310242 0
- <UV> { 0.0119467 0.0465288 }
- }
- <Vertex> 377 {
- 0.524536 -0.0310242 0
- <UV> { 0.104768 0.0465288 }
- }
- <Vertex> 378 {
- 0.524536 0.449254 0
- <UV> { 0.104768 0.129264 }
- }
- <Vertex> 379 {
- -0.014295 0.449254 0
- <UV> { 0.0119467 0.129264 }
- }
- <Vertex> 380 {
- 0.518605 0 0
- }
- <Vertex> 381 {
- 0.0107988 -0.0310242 0
- <UV> { 0.896673 0.0479698 }
- }
- <Vertex> 382 {
- 0.499442 -0.0310242 0
- <UV> { 0.980849 0.0479698 }
- }
- <Vertex> 383 {
- 0.499442 0.449254 0
- <UV> { 0.980849 0.130705 }
- }
- <Vertex> 384 {
- 0.0107988 0.449254 0
- <UV> { 0.896673 0.130705 }
- }
- <Vertex> 385 {
- 0.518605 0 0
- }
- <Vertex> 386 {
- -0.014295 -0.0393888 0
- <UV> { 0.552293 0.0450879 }
- }
- <Vertex> 387 {
- 0.524536 -0.0393888 0
- <UV> { 0.645114 0.0450879 }
- }
- <Vertex> 388 {
- 0.524536 0.44089 0
- <UV> { 0.645114 0.127823 }
- }
- <Vertex> 389 {
- -0.014295 0.44089 0
- <UV> { 0.552293 0.127823 }
- }
- <Vertex> 390 {
- 0.518605 0 0
- }
- <Vertex> 391 {
- 0.00243423 -0.0393888 0
- <UV> { 0.653157 0.0450879 }
- }
- <Vertex> 392 {
- 0.507807 -0.0393888 0
- <UV> { 0.740215 0.0450879 }
- }
- <Vertex> 393 {
- 0.507807 0.44089 0
- <UV> { 0.740215 0.127823 }
- }
- <Vertex> 394 {
- 0.00243423 0.44089 0
- <UV> { 0.653157 0.127823 }
- }
- <Vertex> 395 {
- 0.518605 0 0
- }
- <Vertex> 396 {
- -0.00593037 -0.0393888 0
- <UV> { 0.748258 0.0450879 }
- }
- <Vertex> 397 {
- 0.516171 -0.0393888 0
- <UV> { 0.838197 0.0450879 }
- }
- <Vertex> 398 {
- 0.516171 0.44089 0
- <UV> { 0.838197 0.127823 }
- }
- <Vertex> 399 {
- -0.00593037 0.44089 0
- <UV> { 0.748258 0.127823 }
- }
- <Vertex> 400 {
- 0.518605 0 0
- }
- <Vertex> 401 {
- 0.178091 -0.0310242 0
- <UV> { 0.960074 0.784281 }
- }
- <Vertex> 402 {
- 0.340515 -0.0310242 0
- <UV> { 0.988053 0.784281 }
- }
- <Vertex> 403 {
- 0.340515 0.44089 0
- <UV> { 0.988053 0.865575 }
- }
- <Vertex> 404 {
- 0.178091 0.44089 0
- <UV> { 0.960074 0.865575 }
- }
- <Vertex> 405 {
- 0.518605 0 0
- }
- <Vertex> 406 {
- 0.0442572 0.0609865 0
- <UV> { 0.112811 0.0407652 }
- }
- <Vertex> 407 {
- 0.465984 0.0609865 0
- <UV> { 0.18546 0.0407652 }
- }
- <Vertex> 408 {
- 0.465984 0.5329 0
- <UV> { 0.18546 0.122059 }
- }
- <Vertex> 409 {
- 0.0442572 0.5329 0
- <UV> { 0.112811 0.122059 }
- }
- <Vertex> 410 {
- 0.518605 0 0
- }
- <Vertex> 411 {
- 0.0107988 -0.0310242 0
- <UV> { 0.193503 0.0407652 }
- }
- <Vertex> 412 {
- 0.482713 -0.0310242 0
- <UV> { 0.274797 0.0407652 }
- }
- <Vertex> 413 {
- 0.482713 0.44089 0
- <UV> { 0.274797 0.122059 }
- }
- <Vertex> 414 {
- 0.0107988 0.44089 0
- <UV> { 0.193503 0.122059 }
- }
- <Vertex> 415 {
- 0.518605 0 0
- }
- <Vertex> 416 {
- 0.00243423 -0.0310242 0
- <UV> { 0.28284 0.0234741 }
- }
- <Vertex> 417 {
- 0.507807 -0.0310242 0
- <UV> { 0.369898 0.0234741 }
- }
- <Vertex> 418 {
- 0.507807 0.44089 0
- <UV> { 0.369898 0.104768 }
- }
- <Vertex> 419 {
- 0.00243423 0.44089 0
- <UV> { 0.28284 0.104768 }
- }
- <Vertex> 420 {
- 0.518605 0 0
- }
- <Vertex> 421 {
- 0.152997 0.270102 0
- <UV> { 0.305895 0.527797 }
- }
- <Vertex> 422 {
- 0.348879 0.270102 0
- <UV> { 0.339638 0.527797 }
- }
- <Vertex> 423 {
- 0.348879 0.624911 0
- <UV> { 0.339638 0.588918 }
- }
- <Vertex> 424 {
- 0.152997 0.624911 0
- <UV> { 0.305895 0.588918 }
- }
- <Vertex> 425 {
- 0.518605 0 0
- }
- <Vertex> 426 {
- 0.161362 0.345383 0
- <UV> { 0.941342 0.402437 }
- }
- <Vertex> 427 {
- 0.357244 0.345383 0
- <UV> { 0.975085 0.402437 }
- }
- <Vertex> 428 {
- 0.357244 0.700192 0
- <UV> { 0.975085 0.463558 }
- }
- <Vertex> 429 {
- 0.161362 0.700192 0
- <UV> { 0.941342 0.463558 }
- }
- <Vertex> 430 {
- 0.518605 0 0
- }
- <Vertex> 431 {
- 0.0944449 0.295195 0
- <UV> { 0.115693 0.161803 }
- }
- <Vertex> 432 {
- 0.415796 0.295195 0
- <UV> { 0.17105 0.161803 }
- }
- <Vertex> 433 {
- 0.415796 0.633276 0
- <UV> { 0.17105 0.220042 }
- }
- <Vertex> 434 {
- 0.0944449 0.633276 0
- <UV> { 0.115693 0.220042 }
- }
- <Vertex> 435 {
- 0.518605 0 0
- }
- <Vertex> 436 {
- 0.161362 -0.173222 0
- <UV> { 0.951428 0.341918 }
- }
- <Vertex> 437 {
- 0.357244 -0.173222 0
- <UV> { 0.985171 0.341918 }
- }
- <Vertex> 438 {
- 0.357244 0.131399 0
- <UV> { 0.985171 0.394393 }
- }
- <Vertex> 439 {
- 0.161362 0.131399 0
- <UV> { 0.951428 0.394393 }
- }
- <Vertex> 440 {
- 0.518605 0 0
- }
- <Vertex> 441 {
- 0.0107988 0.161362 0
- <UV> { 0.377941 0.0566153 }
- }
- <Vertex> 442 {
- 0.499442 0.161362 0
- <UV> { 0.462117 0.0566153 }
- }
- <Vertex> 443 {
- 0.499442 0.44089 0
- <UV> { 0.462117 0.104768 }
- }
- <Vertex> 444 {
- 0.0107988 0.44089 0
- <UV> { 0.377941 0.104768 }
- }
- <Vertex> 445 {
- 0.518605 0 0
- }
- <Vertex> 446 {
- 0.0777157 0.437394 0
- <UV> { 0.47016 0.081111 }
- }
- <Vertex> 447 {
- 0.432525 0.437394 0
- <UV> { 0.531281 0.081111 }
- }
- <Vertex> 448 {
- 0.432525 0.624911 0
- <UV> { 0.531281 0.113414 }
- }
- <Vertex> 449 {
- 0.0777157 0.624911 0
- <UV> { 0.47016 0.113414 }
- }
- <Vertex> 450 {
- 0.518605 0 0
- }
- <Vertex> 451 {
- 0.0609865 0.462487 0
- <UV> { 0.47016 0.0450879 }
- }
- <Vertex> 452 {
- 0.449254 0.462487 0
- <UV> { 0.537045 0.0450879 }
- }
- <Vertex> 453 {
- 0.449254 0.624911 0
- <UV> { 0.537045 0.0730677 }
- }
- <Vertex> 454 {
- 0.0609865 0.624911 0
- <UV> { 0.47016 0.0730677 }
- }
- <Vertex> 455 {
- 0.518605 0 0
- }
- <Vertex> 456 {
- 0.178091 -0.0310242 0
- <UV> { 0.960074 0.748258 }
- }
- <Vertex> 457 {
- 0.340515 -0.0310242 0
- <UV> { 0.988053 0.748258 }
- }
- <Vertex> 458 {
- 0.340515 0.131399 0
- <UV> { 0.988053 0.776238 }
- }
- <Vertex> 459 {
- 0.178091 0.131399 0
- <UV> { 0.960074 0.776238 }
- }
- <Vertex> 460 {
- 0.518605 0 0
- }
- <Vertex> 461 {
- 0.0860803 0.495946 0
- <UV> { 0.115693 0.130102 }
- }
- <Vertex> 462 {
- 0.424161 0.495946 0
- <UV> { 0.173932 0.130102 }
- }
- <Vertex> 463 {
- 0.424161 0.633276 0
- <UV> { 0.173932 0.153759 }
- }
- <Vertex> 464 {
- 0.0860803 0.633276 0
- <UV> { 0.115693 0.153759 }
- }
- <Vertex> 465 {
- 0.518605 0 0
- }
- <Vertex> 466 {
- 0.0358926 0.245008 0
- <UV> { 0.377941 0.0292378 }
- }
- <Vertex> 467 {
- 0.474348 0.245008 0
- <UV> { 0.453471 0.0292378 }
- }
- <Vertex> 468 {
- 0.474348 0.357244 0
- <UV> { 0.453471 0.048572 }
- }
- <Vertex> 469 {
- 0.0358926 0.357244 0
- <UV> { 0.377941 0.048572 }
- }
- <Vertex> 470 {
- 0.518605 0 0
- }
- <Vertex> 471 {
- 0.0358926 -0.123035 0
- <UV> { 0.846241 0.0205922 }
- }
- <Vertex> 472 {
- 0.474348 -0.123035 0
- <UV> { 0.921771 0.0205922 }
- }
- <Vertex> 473 {
- 0.474348 -0.0107988 0
- <UV> { 0.921771 0.0399265 }
- }
- <Vertex> 474 {
- 0.0358926 -0.0107988 0
- <UV> { 0.846241 0.0399265 }
- }
- <Vertex> 475 {
- 0.518605 0 0
- }
- <Vertex> 476 {
- 0.0609865 0.4672 0
- <UV> { 0.305895 0.43927125 }
- }
- <Vertex> 477 {
- 0.457619 0.4672 0
- <UV> { 0.37422 0.43927125 }
- }
- <Vertex> 478 {
- 0 1 0
- }
- }
- <Group> 32 {
- <PointLight> {
- <VertexRef> { 160 <Ref> { vpool } }
- }
- }
- <Group> 33 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 156 157 158 159 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 160 <Ref> { vpool } }
- }
- }
- <Group> 34 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 431 432 433 434 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 435 <Ref> { vpool } }
- }
- }
- <Group> 35 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 236 237 238 239 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 240 <Ref> { vpool } }
- }
- }
- <Group> 36 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 16 17 18 19 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 20 <Ref> { vpool } }
- }
- }
- <Group> 37 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 11 12 13 14 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 15 <Ref> { vpool } }
- }
- }
- <Group> 38 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 121 122 123 124 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 125 <Ref> { vpool } }
- }
- }
- <Group> 39 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 421 422 423 424 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 425 <Ref> { vpool } }
- }
- }
- <Group> 40 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 56 57 58 59 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 60 <Ref> { vpool } }
- }
- }
- <Group> 41 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 51 52 53 54 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 55 <Ref> { vpool } }
- }
- }
- <Group> 42 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 406 407 408 409 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 410 <Ref> { vpool } }
- }
- }
- <Group> 43 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 371 372 373 374 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 375 <Ref> { vpool } }
- }
- }
- <Group> 44 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 436 437 438 439 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 440 <Ref> { vpool } }
- }
- }
- <Group> 45 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 466 467 468 469 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 470 <Ref> { vpool } }
- }
- }
- <Group> 46 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 456 457 458 459 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 460 <Ref> { vpool } }
- }
- }
- <Group> 47 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 6 7 8 9 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 10 <Ref> { vpool } }
- }
- }
- <Group> 48 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 91 92 93 94 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 95 <Ref> { vpool } }
- }
- }
- <Group> 49 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 181 182 183 184 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 185 <Ref> { vpool } }
- }
- }
- <Group> 50 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 176 177 178 179 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 180 <Ref> { vpool } }
- }
- }
- <Group> 51 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 96 97 98 99 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 100 <Ref> { vpool } }
- }
- }
- <Group> 52 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 101 102 103 104 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 105 <Ref> { vpool } }
- }
- }
- <Group> 53 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 171 172 173 174 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 175 <Ref> { vpool } }
- }
- }
- <Group> 54 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 106 107 108 109 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 110 <Ref> { vpool } }
- }
- }
- <Group> 55 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 86 87 88 89 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 90 <Ref> { vpool } }
- }
- }
- <Group> 56 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 111 112 113 114 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 115 <Ref> { vpool } }
- }
- }
- <Group> 57 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 116 117 118 119 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 120 <Ref> { vpool } }
- }
- }
- <Group> 58 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 401 402 403 404 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 405 <Ref> { vpool } }
- }
- }
- <Group> 59 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 321 322 323 324 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 325 <Ref> { vpool } }
- }
- }
- <Group> 60 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 331 332 333 334 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 335 <Ref> { vpool } }
- }
- }
- <Group> 61 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 441 442 443 444 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 445 <Ref> { vpool } }
- }
- }
- <Group> 62 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 336 337 338 339 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 340 <Ref> { vpool } }
- }
- }
- <Group> 63 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 161 162 163 164 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 165 <Ref> { vpool } }
- }
- }
- <Group> 64 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 126 127 128 129 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 130 <Ref> { vpool } }
- }
- }
- <Group> 65 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 131 132 133 134 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 135 <Ref> { vpool } }
- }
- }
- <Group> 66 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 246 247 248 249 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 250 <Ref> { vpool } }
- }
- }
- <Group> 67 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 136 137 138 139 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 140 <Ref> { vpool } }
- }
- }
- <Group> 68 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 226 227 228 229 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 230 <Ref> { vpool } }
- }
- }
- <Group> 69 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 231 232 233 234 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 235 <Ref> { vpool } }
- }
- }
- <Group> 70 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 241 242 243 244 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 245 <Ref> { vpool } }
- }
- }
- <Group> 71 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 141 142 143 144 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 145 <Ref> { vpool } }
- }
- }
- <Group> 72 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 251 252 253 254 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 255 <Ref> { vpool } }
- }
- }
- <Group> 73 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 256 257 258 259 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 260 <Ref> { vpool } }
- }
- }
- <Group> 74 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 166 167 168 169 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 170 <Ref> { vpool } }
- }
- }
- <Group> 75 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 261 262 263 264 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 265 <Ref> { vpool } }
- }
- }
- <Group> 76 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 271 272 273 274 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 275 <Ref> { vpool } }
- }
- }
- <Group> 77 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 276 277 278 279 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 280 <Ref> { vpool } }
- }
- }
- <Group> 78 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 286 287 288 289 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 290 <Ref> { vpool } }
- }
- }
- <Group> 79 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 146 147 148 149 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 150 <Ref> { vpool } }
- }
- }
- <Group> 80 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 296 297 298 299 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 300 <Ref> { vpool } }
- }
- }
- <Group> 81 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 61 62 63 64 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 65 <Ref> { vpool } }
- }
- }
- <Group> 82 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 186 187 188 189 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 190 <Ref> { vpool } }
- }
- }
- <Group> 83 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 151 152 153 154 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 155 <Ref> { vpool } }
- }
- }
- <Group> 84 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 311 312 313 314 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 315 <Ref> { vpool } }
- }
- }
- <Group> 85 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 191 192 193 194 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 195 <Ref> { vpool } }
- }
- }
- <Group> 86 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 196 197 198 199 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 200 <Ref> { vpool } }
- }
- }
- <Group> 87 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 201 202 203 204 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 205 <Ref> { vpool } }
- }
- }
- <Group> 88 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 316 317 318 319 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 320 <Ref> { vpool } }
- }
- }
- <Group> 89 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 291 292 293 294 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 295 <Ref> { vpool } }
- }
- }
- <Group> 90 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 266 267 268 269 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 270 <Ref> { vpool } }
- }
- }
- <Group> 91 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 46 47 48 49 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 50 <Ref> { vpool } }
- }
- }
- <Group> 92 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 36 37 38 39 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 40 <Ref> { vpool } }
- }
- }
- <Group> 93 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 41 42 43 44 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 45 <Ref> { vpool } }
- }
- }
- <Group> 94 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 446 447 448 449 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 450 <Ref> { vpool } }
- }
- }
- <Group> 95 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 471 472 473 474 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 475 <Ref> { vpool } }
- }
- }
- <Group> 96 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 426 427 428 429 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 430 <Ref> { vpool } }
- }
- }
- <Group> 97 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 341 342 343 344 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 345 <Ref> { vpool } }
- }
- }
- <Group> 98 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 206 207 208 209 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 210 <Ref> { vpool } }
- }
- }
- <Group> 99 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 346 347 348 349 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 350 <Ref> { vpool } }
- }
- }
- <Group> 100 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 211 212 213 214 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 215 <Ref> { vpool } }
- }
- }
- <Group> 101 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 351 352 353 354 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 355 <Ref> { vpool } }
- }
- }
- <Group> 102 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 216 217 218 219 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 220 <Ref> { vpool } }
- }
- }
- <Group> 103 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 66 67 68 69 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 70 <Ref> { vpool } }
- }
- }
- <Group> 104 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 281 282 283 284 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 285 <Ref> { vpool } }
- }
- }
- <Group> 105 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 221 222 223 224 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 225 <Ref> { vpool } }
- }
- }
- <Group> 106 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 1 2 3 4 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 5 <Ref> { vpool } }
- }
- }
- <Group> 107 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 301 302 303 304 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 305 <Ref> { vpool } }
- }
- }
- <Group> 108 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 306 307 308 309 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 310 <Ref> { vpool } }
- }
- }
- <Group> 109 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 366 367 368 369 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 370 <Ref> { vpool } }
- }
- }
- <Group> 110 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 376 377 378 379 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 380 <Ref> { vpool } }
- }
- }
- <Group> 111 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 361 362 363 364 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 365 <Ref> { vpool } }
- }
- }
- <Group> 112 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 81 82 83 84 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 85 <Ref> { vpool } }
- }
- }
- <Group> 113 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 76 77 78 79 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 80 <Ref> { vpool } }
- }
- }
- <Group> 114 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 381 382 383 384 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 385 <Ref> { vpool } }
- }
- }
- <Group> 115 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 356 357 358 359 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 360 <Ref> { vpool } }
- }
- }
- <Group> 116 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 326 327 328 329 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 330 <Ref> { vpool } }
- }
- }
- <Group> 117 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 386 387 388 389 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 390 <Ref> { vpool } }
- }
- }
- <Group> 118 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 391 392 393 394 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 395 <Ref> { vpool } }
- }
- }
- <Group> 119 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 396 397 398 399 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 400 <Ref> { vpool } }
- }
- }
- <Group> 120 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 416 417 418 419 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 420 <Ref> { vpool } }
- }
- }
- <Group> 121 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 71 72 73 74 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 75 <Ref> { vpool } }
- }
- }
- <Group> 122 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 411 412 413 414 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 415 <Ref> { vpool } }
- }
- }
- <Group> 123 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 26 27 28 29 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 30 <Ref> { vpool } }
- }
- }
- <Group> 124 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 31 32 33 34 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 35 <Ref> { vpool } }
- }
- }
- <Group> 125 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 21 22 23 24 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 25 <Ref> { vpool } }
- }
- }
- <Group> 126 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 451 452 453 454 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 455 <Ref> { vpool } }
- }
- }
- <Group> 127 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 461 462 463 464 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 465 <Ref> { vpool } }
- }
- }
- <Group> 305 {
- <Polygon> {
- <TRef> { chars }
- <VertexRef> { 221 222 476 477 <Ref> { vpool } }
- }
- <PointLight> {
- <VertexRef> { 225 <Ref> { vpool } }
- }
- }
- <Group> ds {
- <PointLight> {
- <VertexRef> { 478 <Ref> { vpool } }
- }
- }
- }
|