cmtt12.egg 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703
  1. <Comment> {
  2. "egg-mkfont -i maps/cmtt12.rgb -o cmtt12.egg /var/lib/texmf/pk/ljfour/public/cm/cmtt12.720pk"
  3. }
  4. <Texture> chars {
  5. "maps/cmtt12.rgb"
  6. <Scalar> format { alpha }
  7. }
  8. <Group> {
  9. <Switch> { 1 }
  10. <Scalar> fps { 2 }
  11. <VertexPool> vpool {
  12. <Vertex> 1 {
  13. 0.027528 -0.265233 0
  14. <UV> { 0.0119467 0.833272 }
  15. }
  16. <Vertex> 2 {
  17. 0.382338 -0.265233 0
  18. <UV> { 0.0730677 0.833272 }
  19. }
  20. <Vertex> 3 {
  21. 0.382338 0.633276 0
  22. <UV> { 0.0730677 0.988053 }
  23. }
  24. <Vertex> 4 {
  25. 0.027528 0.633276 0
  26. <UV> { 0.0119467 0.988053 }
  27. }
  28. <Vertex> 5 {
  29. 0.518605 0 0
  30. }
  31. <Vertex> 6 {
  32. 0.0358926 -0.11467 0
  33. <UV> { 0.081111 0.846241 }
  34. }
  35. <Vertex> 7 {
  36. 0.474348 -0.11467 0
  37. <UV> { 0.156641 0.846241 }
  38. }
  39. <Vertex> 8 {
  40. 0.474348 0.708557 0
  41. <UV> { 0.156641 0.988053 }
  42. }
  43. <Vertex> 9 {
  44. 0.0358926 0.708557 0
  45. <UV> { 0.081111 0.988053 }
  46. }
  47. <Vertex> 10 {
  48. 0.518605 0 0
  49. }
  50. <Vertex> 11 {
  51. 0.0107988 -0.11467 0
  52. <UV> { 0.164684 0.846241 }
  53. }
  54. <Vertex> 12 {
  55. 0.499442 -0.11467 0
  56. <UV> { 0.24886 0.846241 }
  57. }
  58. <Vertex> 13 {
  59. 0.499442 0.708557 0
  60. <UV> { 0.24886 0.988053 }
  61. }
  62. <Vertex> 14 {
  63. 0.0107988 0.708557 0
  64. <UV> { 0.164684 0.988053 }
  65. }
  66. <Vertex> 15 {
  67. 0.518605 0 0
  68. }
  69. <Vertex> 16 {
  70. 0.0358926 -0.11467 0
  71. <UV> { 0.256903 0.846241 }
  72. }
  73. <Vertex> 17 {
  74. 0.474348 -0.11467 0
  75. <UV> { 0.332434 0.846241 }
  76. }
  77. <Vertex> 18 {
  78. 0.474348 0.708557 0
  79. <UV> { 0.332434 0.988053 }
  80. }
  81. <Vertex> 19 {
  82. 0.0358926 0.708557 0
  83. <UV> { 0.256903 0.988053 }
  84. }
  85. <Vertex> 20 {
  86. 0.518605 0 0
  87. }
  88. <Vertex> 21 {
  89. 0.0358926 -0.11467 0
  90. <UV> { 0.340477 0.846241 }
  91. }
  92. <Vertex> 22 {
  93. 0.474348 -0.11467 0
  94. <UV> { 0.416007 0.846241 }
  95. }
  96. <Vertex> 23 {
  97. 0.474348 0.708557 0
  98. <UV> { 0.416007 0.988053 }
  99. }
  100. <Vertex> 24 {
  101. 0.0358926 0.708557 0
  102. <UV> { 0.340477 0.988053 }
  103. }
  104. <Vertex> 25 {
  105. 0.518605 0 0
  106. }
  107. <Vertex> 26 {
  108. 0.0358926 -0.11467 0
  109. <UV> { 0.42405 0.846241 }
  110. }
  111. <Vertex> 27 {
  112. 0.474348 -0.11467 0
  113. <UV> { 0.499581 0.846241 }
  114. }
  115. <Vertex> 28 {
  116. 0.474348 0.708557 0
  117. <UV> { 0.499581 0.988053 }
  118. }
  119. <Vertex> 29 {
  120. 0.0358926 0.708557 0
  121. <UV> { 0.42405 0.988053 }
  122. }
  123. <Vertex> 30 {
  124. 0.518605 0 0
  125. }
  126. <Vertex> 31 {
  127. 0.203185 -0.11467 0
  128. <UV> { 0.507624 0.846241 }
  129. }
  130. <Vertex> 32 {
  131. 0.315421 -0.11467 0
  132. <UV> { 0.526958 0.846241 }
  133. }
  134. <Vertex> 33 {
  135. 0.315421 0.708557 0
  136. <UV> { 0.526958 0.988053 }
  137. }
  138. <Vertex> 34 {
  139. 0.203185 0.708557 0
  140. <UV> { 0.507624 0.988053 }
  141. }
  142. <Vertex> 35 {
  143. 0.518605 0 0
  144. }
  145. <Vertex> 36 {
  146. 0.0358926 -0.11467 0
  147. <UV> { 0.535001 0.846241 }
  148. }
  149. <Vertex> 37 {
  150. 0.474348 -0.11467 0
  151. <UV> { 0.610532 0.846241 }
  152. }
  153. <Vertex> 38 {
  154. 0.474348 0.708557 0
  155. <UV> { 0.610532 0.988053 }
  156. }
  157. <Vertex> 39 {
  158. 0.0358926 0.708557 0
  159. <UV> { 0.535001 0.988053 }
  160. }
  161. <Vertex> 40 {
  162. 0.518605 0 0
  163. }
  164. <Vertex> 41 {
  165. 0.0107988 -0.11467 0
  166. <UV> { 0.618575 0.846241 }
  167. }
  168. <Vertex> 42 {
  169. 0.323785 -0.11467 0
  170. <UV> { 0.672491 0.846241 }
  171. }
  172. <Vertex> 43 {
  173. 0.323785 0.708557 0
  174. <UV> { 0.672491 0.988053 }
  175. }
  176. <Vertex> 44 {
  177. 0.0107988 0.708557 0
  178. <UV> { 0.618575 0.988053 }
  179. }
  180. <Vertex> 45 {
  181. 0.518605 0 0
  182. }
  183. <Vertex> 46 {
  184. 0.186456 -0.11467 0
  185. <UV> { 0.680535 0.846241 }
  186. }
  187. <Vertex> 47 {
  188. 0.499442 -0.11467 0
  189. <UV> { 0.734451 0.846241 }
  190. }
  191. <Vertex> 48 {
  192. 0.499442 0.708557 0
  193. <UV> { 0.734451 0.988053 }
  194. }
  195. <Vertex> 49 {
  196. 0.186456 0.708557 0
  197. <UV> { 0.680535 0.988053 }
  198. }
  199. <Vertex> 50 {
  200. 0.518605 0 0
  201. }
  202. <Vertex> 51 {
  203. 0.0609865 -0.106306 0
  204. <UV> { 0.742494 0.847682 }
  205. }
  206. <Vertex> 52 {
  207. 0.365608 -0.106306 0
  208. <UV> { 0.79497 0.847682 }
  209. }
  210. <Vertex> 53 {
  211. 0.365608 0.708557 0
  212. <UV> { 0.79497 0.988053 }
  213. }
  214. <Vertex> 54 {
  215. 0.0609865 0.708557 0
  216. <UV> { 0.742494 0.988053 }
  217. }
  218. <Vertex> 55 {
  219. 0.518605 0 0
  220. }
  221. <Vertex> 56 {
  222. 0.144632 -0.106306 0
  223. <UV> { 0.803013 0.847682 }
  224. }
  225. <Vertex> 57 {
  226. 0.449254 -0.106306 0
  227. <UV> { 0.855488 0.847682 }
  228. }
  229. <Vertex> 58 {
  230. 0.449254 0.708557 0
  231. <UV> { 0.855488 0.988053 }
  232. }
  233. <Vertex> 59 {
  234. 0.144632 0.708557 0
  235. <UV> { 0.803013 0.988053 }
  236. }
  237. <Vertex> 60 {
  238. 0.518605 0 0
  239. }
  240. <Vertex> 61 {
  241. 0.0358926 -0.173222 0
  242. <UV> { 0.863532 0.849123 }
  243. }
  244. <Vertex> 62 {
  245. 0.474348 -0.173222 0
  246. <UV> { 0.939062 0.849123 }
  247. }
  248. <Vertex> 63 {
  249. 0.474348 0.633276 0
  250. <UV> { 0.939062 0.988053 }
  251. }
  252. <Vertex> 64 {
  253. 0.0358926 0.633276 0
  254. <UV> { 0.863532 0.988053 }
  255. }
  256. <Vertex> 65 {
  257. 0.518605 0 0
  258. }
  259. <Vertex> 66 {
  260. 0.00243423 -0.273598 0
  261. <UV> { 0.863532 0.716558 }
  262. }
  263. <Vertex> 67 {
  264. 0.516171 -0.273598 0
  265. <UV> { 0.95203 0.716558 }
  266. }
  267. <Vertex> 68 {
  268. 0.516171 0.449254 0
  269. <UV> { 0.95203 0.841079 }
  270. }
  271. <Vertex> 69 {
  272. 0.00243423 0.449254 0
  273. <UV> { 0.863532 0.841079 }
  274. }
  275. <Vertex> 70 {
  276. 0.518605 0 0
  277. }
  278. <Vertex> 71 {
  279. 0.00243423 -0.265233 0
  280. <UV> { 0.742494 0.717999 }
  281. }
  282. <Vertex> 72 {
  283. 0.507807 -0.265233 0
  284. <UV> { 0.829552 0.717999 }
  285. }
  286. <Vertex> 73 {
  287. 0.507807 0.44089 0
  288. <UV> { 0.829552 0.839638 }
  289. }
  290. <Vertex> 74 {
  291. 0.00243423 0.44089 0
  292. <UV> { 0.742494 0.839638 }
  293. }
  294. <Vertex> 75 {
  295. 0.518605 0 0
  296. }
  297. <Vertex> 76 {
  298. 0.0191634 -0.256868 0
  299. <UV> { 0.081111 0.716558 }
  300. }
  301. <Vertex> 77 {
  302. 0.541265 -0.256868 0
  303. <UV> { 0.17105 0.716558 }
  304. }
  305. <Vertex> 78 {
  306. 0.541265 0.449254 0
  307. <UV> { 0.17105 0.838197 }
  308. }
  309. <Vertex> 79 {
  310. 0.0191634 0.449254 0
  311. <UV> { 0.081111 0.838197 }
  312. }
  313. <Vertex> 80 {
  314. 0.518605 0 0
  315. }
  316. <Vertex> 81 {
  317. -0.014295 -0.256868 0
  318. <UV> { 0.179094 0.716558 }
  319. }
  320. <Vertex> 82 {
  321. 0.499442 -0.256868 0
  322. <UV> { 0.267592 0.716558 }
  323. }
  324. <Vertex> 83 {
  325. 0.499442 0.449254 0
  326. <UV> { 0.267592 0.838197 }
  327. }
  328. <Vertex> 84 {
  329. -0.014295 0.449254 0
  330. <UV> { 0.179094 0.838197 }
  331. }
  332. <Vertex> 85 {
  333. 0.518605 0 0
  334. }
  335. <Vertex> 86 {
  336. 0.0191634 -0.0393888 0
  337. <UV> { 0.275635 0.72088 }
  338. }
  339. <Vertex> 87 {
  340. 0.491077 -0.0393888 0
  341. <UV> { 0.356929 0.72088 }
  342. }
  343. <Vertex> 88 {
  344. 0.491077 0.64164 0
  345. <UV> { 0.356929 0.838197 }
  346. }
  347. <Vertex> 89 {
  348. 0.0191634 0.64164 0
  349. <UV> { 0.275635 0.838197 }
  350. }
  351. <Vertex> 90 {
  352. 0.518605 0 0
  353. }
  354. <Vertex> 91 {
  355. 0.027528 -0.0393888 0
  356. <UV> { 0.364973 0.722321 }
  357. }
  358. <Vertex> 92 {
  359. 0.482713 -0.0393888 0
  360. <UV> { 0.443385 0.722321 }
  361. }
  362. <Vertex> 93 {
  363. 0.482713 0.633276 0
  364. <UV> { 0.443385 0.838197 }
  365. }
  366. <Vertex> 94 {
  367. 0.027528 0.633276 0
  368. <UV> { 0.364973 0.838197 }
  369. }
  370. <Vertex> 95 {
  371. 0.518605 0 0
  372. }
  373. <Vertex> 96 {
  374. 0.0191634 -0.0393888 0
  375. <UV> { 0.451428 0.722321 }
  376. }
  377. <Vertex> 97 {
  378. 0.491077 -0.0393888 0
  379. <UV> { 0.532722 0.722321 }
  380. }
  381. <Vertex> 98 {
  382. 0.491077 0.633276 0
  383. <UV> { 0.532722 0.838197 }
  384. }
  385. <Vertex> 99 {
  386. 0.0191634 0.633276 0
  387. <UV> { 0.451428 0.838197 }
  388. }
  389. <Vertex> 100 {
  390. 0.518605 0 0
  391. }
  392. <Vertex> 101 {
  393. 0.00243423 -0.0310242 0
  394. <UV> { 0.540765 0.722321 }
  395. }
  396. <Vertex> 102 {
  397. 0.507807 -0.0310242 0
  398. <UV> { 0.627823 0.722321 }
  399. }
  400. <Vertex> 103 {
  401. 0.507807 0.64164 0
  402. <UV> { 0.627823 0.838197 }
  403. }
  404. <Vertex> 104 {
  405. 0.00243423 0.64164 0
  406. <UV> { 0.540765 0.838197 }
  407. }
  408. <Vertex> 105 {
  409. 0.518605 0 0
  410. }
  411. <Vertex> 106 {
  412. 0.027528 -0.0393888 0
  413. <UV> { 0.635866 0.722321 }
  414. }
  415. <Vertex> 107 {
  416. 0.482713 -0.0393888 0
  417. <UV> { 0.714278 0.722321 }
  418. }
  419. <Vertex> 108 {
  420. 0.482713 0.633276 0
  421. <UV> { 0.714278 0.838197 }
  422. }
  423. <Vertex> 109 {
  424. 0.027528 0.633276 0
  425. <UV> { 0.635866 0.838197 }
  426. }
  427. <Vertex> 110 {
  428. 0.518605 0 0
  429. }
  430. <Vertex> 111 {
  431. 0.0191634 -0.0393888 0
  432. <UV> { 0.364973 0.598402 }
  433. }
  434. <Vertex> 112 {
  435. 0.491077 -0.0393888 0
  436. <UV> { 0.446267 0.598402 }
  437. }
  438. <Vertex> 113 {
  439. 0.491077 0.633276 0
  440. <UV> { 0.446267 0.714278 }
  441. }
  442. <Vertex> 114 {
  443. 0.0191634 0.633276 0
  444. <UV> { 0.364973 0.714278 }
  445. }
  446. <Vertex> 115 {
  447. 0.518605 0 0
  448. }
  449. <Vertex> 116 {
  450. 0.027528 -0.0393888 0
  451. <UV> { 0.45431 0.598402 }
  452. }
  453. <Vertex> 117 {
  454. 0.482713 -0.0393888 0
  455. <UV> { 0.532722 0.598402 }
  456. }
  457. <Vertex> 118 {
  458. 0.482713 0.633276 0
  459. <UV> { 0.532722 0.714278 }
  460. }
  461. <Vertex> 119 {
  462. 0.027528 0.633276 0
  463. <UV> { 0.45431 0.714278 }
  464. }
  465. <Vertex> 120 {
  466. 0.518605 0 0
  467. }
  468. <Vertex> 121 {
  469. 0.00243423 -0.0393888 0
  470. <UV> { 0.540765 0.598402 }
  471. }
  472. <Vertex> 122 {
  473. 0.499442 -0.0393888 0
  474. <UV> { 0.626382 0.598402 }
  475. }
  476. <Vertex> 123 {
  477. 0.499442 0.633276 0
  478. <UV> { 0.626382 0.714278 }
  479. }
  480. <Vertex> 124 {
  481. 0.00243423 0.633276 0
  482. <UV> { 0.540765 0.714278 }
  483. }
  484. <Vertex> 125 {
  485. 0.518605 0 0
  486. }
  487. <Vertex> 126 {
  488. 0.0191634 -0.0393888 0
  489. <UV> { 0.634425 0.598402 }
  490. }
  491. <Vertex> 127 {
  492. 0.491077 -0.0393888 0
  493. <UV> { 0.715719 0.598402 }
  494. }
  495. <Vertex> 128 {
  496. 0.491077 0.633276 0
  497. <UV> { 0.715719 0.714278 }
  498. }
  499. <Vertex> 129 {
  500. 0.0191634 0.633276 0
  501. <UV> { 0.634425 0.714278 }
  502. }
  503. <Vertex> 130 {
  504. 0.518605 0 0
  505. }
  506. <Vertex> 131 {
  507. 0.00243423 -0.0310242 0
  508. <UV> { 0.723762 0.594079 }
  509. }
  510. <Vertex> 132 {
  511. 0.507807 -0.0310242 0
  512. <UV> { 0.81082 0.594079 }
  513. }
  514. <Vertex> 133 {
  515. 0.507807 0.64164 0
  516. <UV> { 0.81082 0.709955 }
  517. }
  518. <Vertex> 134 {
  519. 0.00243423 0.64164 0
  520. <UV> { 0.723762 0.709955 }
  521. }
  522. <Vertex> 135 {
  523. 0.518605 0 0
  524. }
  525. <Vertex> 136 {
  526. 0.0191634 -0.0393888 0
  527. <UV> { 0.275635 0.596961 }
  528. }
  529. <Vertex> 137 {
  530. 0.491077 -0.0393888 0
  531. <UV> { 0.356929 0.596961 }
  532. }
  533. <Vertex> 138 {
  534. 0.491077 0.633276 0
  535. <UV> { 0.356929 0.712837 }
  536. }
  537. <Vertex> 139 {
  538. 0.0191634 0.633276 0
  539. <UV> { 0.275635 0.712837 }
  540. }
  541. <Vertex> 140 {
  542. 0.518605 0 0
  543. }
  544. <Vertex> 141 {
  545. 0.0107988 -0.0393888 0
  546. <UV> { 0.0119467 0.592638 }
  547. }
  548. <Vertex> 142 {
  549. 0.499442 -0.0393888 0
  550. <UV> { 0.0961225 0.592638 }
  551. }
  552. <Vertex> 143 {
  553. 0.499442 0.633276 0
  554. <UV> { 0.0961225 0.708514 }
  555. }
  556. <Vertex> 144 {
  557. 0.0107988 0.633276 0
  558. <UV> { 0.0119467 0.708514 }
  559. }
  560. <Vertex> 145 {
  561. 0.518605 0 0
  562. }
  563. <Vertex> 146 {
  564. 0.0358926 -0.0393888 0
  565. <UV> { 0.104166 0.592638 }
  566. }
  567. <Vertex> 147 {
  568. 0.474348 -0.0393888 0
  569. <UV> { 0.179696 0.592638 }
  570. }
  571. <Vertex> 148 {
  572. 0.474348 0.633276 0
  573. <UV> { 0.179696 0.708514 }
  574. }
  575. <Vertex> 149 {
  576. 0.0358926 0.633276 0
  577. <UV> { 0.104166 0.708514 }
  578. }
  579. <Vertex> 150 {
  580. 0.518605 0 0
  581. }
  582. <Vertex> 151 {
  583. 0.027528 -0.0393888 0
  584. <UV> { 0.187739 0.592638 }
  585. }
  586. <Vertex> 152 {
  587. 0.482713 -0.0393888 0
  588. <UV> { 0.266151 0.592638 }
  589. }
  590. <Vertex> 153 {
  591. 0.482713 0.633276 0
  592. <UV> { 0.266151 0.708514 }
  593. }
  594. <Vertex> 154 {
  595. 0.027528 0.633276 0
  596. <UV> { 0.187739 0.708514 }
  597. }
  598. <Vertex> 155 {
  599. 0.518605 0 0
  600. }
  601. <Vertex> 156 {
  602. 0.186456 -0.0310242 0
  603. <UV> { 0.947105 0.873618 }
  604. }
  605. <Vertex> 157 {
  606. 0.323785 -0.0310242 0
  607. <UV> { 0.970762 0.873618 }
  608. }
  609. <Vertex> 158 {
  610. 0.323785 0.633276 0
  611. <UV> { 0.970762 0.988053 }
  612. }
  613. <Vertex> 159 {
  614. 0.186456 0.633276 0
  615. <UV> { 0.947105 0.988053 }
  616. }
  617. <Vertex> 160 {
  618. 0.518605 0 0
  619. }
  620. <Vertex> 161 {
  621. 0.0358926 -0.0310242 0
  622. <UV> { 0.818863 0.594079 }
  623. }
  624. <Vertex> 162 {
  625. 0.474348 -0.0310242 0
  626. <UV> { 0.894393 0.594079 }
  627. }
  628. <Vertex> 163 {
  629. 0.474348 0.633276 0
  630. <UV> { 0.894393 0.708514 }
  631. }
  632. <Vertex> 164 {
  633. 0.0358926 0.633276 0
  634. <UV> { 0.818863 0.708514 }
  635. }
  636. <Vertex> 165 {
  637. 0.518605 0 0
  638. }
  639. <Vertex> 166 {
  640. 0.0526219 -0.0393888 0
  641. <UV> { 0.902437 0.594079 }
  642. }
  643. <Vertex> 167 {
  644. 0.482713 -0.0393888 0
  645. <UV> { 0.976526 0.594079 }
  646. }
  647. <Vertex> 168 {
  648. 0.482713 0.624911 0
  649. <UV> { 0.976526 0.708514 }
  650. }
  651. <Vertex> 169 {
  652. 0.0526219 0.624911 0
  653. <UV> { 0.902437 0.708514 }
  654. }
  655. <Vertex> 170 {
  656. 0.518605 0 0
  657. }
  658. <Vertex> 171 {
  659. 0.027528 -0.0393888 0
  660. <UV> { 0.364973 0.475924 }
  661. }
  662. <Vertex> 172 {
  663. 0.482713 -0.0393888 0
  664. <UV> { 0.443385 0.475924 }
  665. }
  666. <Vertex> 173 {
  667. 0.482713 0.624911 0
  668. <UV> { 0.443385 0.590359 }
  669. }
  670. <Vertex> 174 {
  671. 0.027528 0.624911 0
  672. <UV> { 0.364973 0.590359 }
  673. }
  674. <Vertex> 175 {
  675. 0.518605 0 0
  676. }
  677. <Vertex> 176 {
  678. 0.027528 -0.0310242 0
  679. <UV> { 0.451428 0.475924 }
  680. }
  681. <Vertex> 177 {
  682. 0.482713 -0.0310242 0
  683. <UV> { 0.52984 0.475924 }
  684. }
  685. <Vertex> 178 {
  686. 0.482713 0.633276 0
  687. <UV> { 0.52984 0.590359 }
  688. }
  689. <Vertex> 179 {
  690. 0.027528 0.633276 0
  691. <UV> { 0.451428 0.590359 }
  692. }
  693. <Vertex> 180 {
  694. 0.518605 0 0
  695. }
  696. <Vertex> 181 {
  697. 0.0777157 -0.0310242 0
  698. <UV> { 0.537883 0.475924 }
  699. }
  700. <Vertex> 182 {
  701. 0.449254 -0.0310242 0
  702. <UV> { 0.601886 0.475924 }
  703. }
  704. <Vertex> 183 {
  705. 0.449254 0.633276 0
  706. <UV> { 0.601886 0.590359 }
  707. }
  708. <Vertex> 184 {
  709. 0.0777157 0.633276 0
  710. <UV> { 0.537883 0.590359 }
  711. }
  712. <Vertex> 185 {
  713. 0.518605 0 0
  714. }
  715. <Vertex> 186 {
  716. 0.00243423 -0.0393888 0
  717. <UV> { 0.609929 0.475924 }
  718. }
  719. <Vertex> 187 {
  720. 0.5329 -0.0393888 0
  721. <UV> { 0.70131 0.475924 }
  722. }
  723. <Vertex> 188 {
  724. 0.5329 0.624911 0
  725. <UV> { 0.70131 0.590359 }
  726. }
  727. <Vertex> 189 {
  728. 0.00243423 0.624911 0
  729. <UV> { 0.609929 0.590359 }
  730. }
  731. <Vertex> 190 {
  732. 0.518605 0 0
  733. }
  734. <Vertex> 191 {
  735. -0.0226596 -0.0393888 0
  736. <UV> { 0.709353 0.471601 }
  737. }
  738. <Vertex> 192 {
  739. 0.5329 -0.0393888 0
  740. <UV> { 0.805056 0.471601 }
  741. }
  742. <Vertex> 193 {
  743. 0.5329 0.624911 0
  744. <UV> { 0.805056 0.586036 }
  745. }
  746. <Vertex> 194 {
  747. -0.0226596 0.624911 0
  748. <UV> { 0.709353 0.586036 }
  749. }
  750. <Vertex> 195 {
  751. 0.518605 0 0
  752. }
  753. <Vertex> 196 {
  754. -0.00593037 -0.0393888 0
  755. <UV> { 0.813099 0.471601 }
  756. }
  757. <Vertex> 197 {
  758. 0.516171 -0.0393888 0
  759. <UV> { 0.903039 0.471601 }
  760. }
  761. <Vertex> 198 {
  762. 0.516171 0.624911 0
  763. <UV> { 0.903039 0.586036 }
  764. }
  765. <Vertex> 199 {
  766. -0.00593037 0.624911 0
  767. <UV> { 0.813099 0.586036 }
  768. }
  769. <Vertex> 200 {
  770. 0.518605 0 0
  771. }
  772. <Vertex> 201 {
  773. -0.014295 -0.0393888 0
  774. <UV> { 0.0119467 0.47016 }
  775. }
  776. <Vertex> 202 {
  777. 0.524536 -0.0393888 0
  778. <UV> { 0.104768 0.47016 }
  779. }
  780. <Vertex> 203 {
  781. 0.524536 0.624911 0
  782. <UV> { 0.104768 0.584595 }
  783. }
  784. <Vertex> 204 {
  785. -0.014295 0.624911 0
  786. <UV> { 0.0119467 0.584595 }
  787. }
  788. <Vertex> 205 {
  789. 0.518605 0 0
  790. }
  791. <Vertex> 206 {
  792. -0.014295 -0.0393888 0
  793. <UV> { 0.112811 0.47016 }
  794. }
  795. <Vertex> 207 {
  796. 0.499442 -0.0393888 0
  797. <UV> { 0.20131 0.47016 }
  798. }
  799. <Vertex> 208 {
  800. 0.499442 0.624911 0
  801. <UV> { 0.20131 0.584595 }
  802. }
  803. <Vertex> 209 {
  804. -0.014295 0.624911 0
  805. <UV> { 0.112811 0.584595 }
  806. }
  807. <Vertex> 210 {
  808. 0.518605 0 0
  809. }
  810. <Vertex> 211 {
  811. 0.0107988 -0.0393888 0
  812. <UV> { 0.209353 0.47016 }
  813. }
  814. <Vertex> 212 {
  815. 0.524536 -0.0393888 0
  816. <UV> { 0.297852 0.47016 }
  817. }
  818. <Vertex> 213 {
  819. 0.524536 0.624911 0
  820. <UV> { 0.297852 0.584595 }
  821. }
  822. <Vertex> 214 {
  823. 0.0107988 0.624911 0
  824. <UV> { 0.209353 0.584595 }
  825. }
  826. <Vertex> 215 {
  827. 0.518605 0 0
  828. }
  829. <Vertex> 216 {
  830. 0.0107988 -0.0310242 0
  831. <UV> { 0.911082 0.471601 }
  832. }
  833. <Vertex> 217 {
  834. 0.457619 -0.0310242 0
  835. <UV> { 0.988053 0.471601 }
  836. }
  837. <Vertex> 218 {
  838. 0.457619 0.633276 0
  839. <UV> { 0.988053 0.586036 }
  840. }
  841. <Vertex> 219 {
  842. 0.0107988 0.633276 0
  843. <UV> { 0.911082 0.586036 }
  844. }
  845. <Vertex> 220 {
  846. 0.518605 0 0
  847. }
  848. <Vertex> 221 {
  849. 0.0609865 -0.0310242 0
  850. <UV> { 0.305895 0.353445 }
  851. }
  852. <Vertex> 222 {
  853. 0.457619 -0.0310242 0
  854. <UV> { 0.37422 0.353445 }
  855. }
  856. <Vertex> 223 {
  857. 0.457619 0.633276 0
  858. <UV> { 0.37422 0.46788 }
  859. }
  860. <Vertex> 224 {
  861. 0.0609865 0.633276 0
  862. <UV> { 0.305895 0.46788 }
  863. }
  864. <Vertex> 225 {
  865. 0.518605 0 0
  866. }
  867. <Vertex> 226 {
  868. 0.00243423 -0.0310242 0
  869. <UV> { 0.382264 0.354886 }
  870. }
  871. <Vertex> 227 {
  872. 0.491077 -0.0310242 0
  873. <UV> { 0.466439 0.354886 }
  874. }
  875. <Vertex> 228 {
  876. 0.491077 0.624911 0
  877. <UV> { 0.466439 0.46788 }
  878. }
  879. <Vertex> 229 {
  880. 0.00243423 0.624911 0
  881. <UV> { 0.382264 0.46788 }
  882. }
  883. <Vertex> 230 {
  884. 0.518605 0 0
  885. }
  886. <Vertex> 231 {
  887. 0.00243423 -0.0310242 0
  888. <UV> { 0.474483 0.354886 }
  889. }
  890. <Vertex> 232 {
  891. 0.507807 -0.0310242 0
  892. <UV> { 0.56154 0.354886 }
  893. }
  894. <Vertex> 233 {
  895. 0.507807 0.624911 0
  896. <UV> { 0.56154 0.46788 }
  897. }
  898. <Vertex> 234 {
  899. 0.00243423 0.624911 0
  900. <UV> { 0.474483 0.46788 }
  901. }
  902. <Vertex> 235 {
  903. 0.518605 0 0
  904. }
  905. <Vertex> 236 {
  906. 0.0107988 -0.0310242 0
  907. <UV> { 0.569584 0.354886 }
  908. }
  909. <Vertex> 237 {
  910. 0.499442 -0.0310242 0
  911. <UV> { 0.653759 0.354886 }
  912. }
  913. <Vertex> 238 {
  914. 0.499442 0.624911 0
  915. <UV> { 0.653759 0.46788 }
  916. }
  917. <Vertex> 239 {
  918. 0.0107988 0.624911 0
  919. <UV> { 0.569584 0.46788 }
  920. }
  921. <Vertex> 240 {
  922. 0.518605 0 0
  923. }
  924. <Vertex> 241 {
  925. 0.0107988 -0.0310242 0
  926. <UV> { 0.661803 0.350563 }
  927. }
  928. <Vertex> 242 {
  929. 0.499442 -0.0310242 0
  930. <UV> { 0.745978 0.350563 }
  931. }
  932. <Vertex> 243 {
  933. 0.499442 0.624911 0
  934. <UV> { 0.745978 0.463558 }
  935. }
  936. <Vertex> 244 {
  937. 0.0107988 0.624911 0
  938. <UV> { 0.661803 0.463558 }
  939. }
  940. <Vertex> 245 {
  941. 0.518605 0 0
  942. }
  943. <Vertex> 246 {
  944. 0.00243423 -0.0310242 0
  945. <UV> { 0.754022 0.350563 }
  946. }
  947. <Vertex> 247 {
  948. 0.491077 -0.0310242 0
  949. <UV> { 0.838197 0.350563 }
  950. }
  951. <Vertex> 248 {
  952. 0.491077 0.624911 0
  953. <UV> { 0.838197 0.463558 }
  954. }
  955. <Vertex> 249 {
  956. 0.00243423 0.624911 0
  957. <UV> { 0.754022 0.463558 }
  958. }
  959. <Vertex> 250 {
  960. 0.518605 0 0
  961. }
  962. <Vertex> 251 {
  963. 0.00243423 -0.0310242 0
  964. <UV> { 0.846241 0.350563 }
  965. }
  966. <Vertex> 252 {
  967. 0.507807 -0.0310242 0
  968. <UV> { 0.933298 0.350563 }
  969. }
  970. <Vertex> 253 {
  971. 0.507807 0.624911 0
  972. <UV> { 0.933298 0.463558 }
  973. }
  974. <Vertex> 254 {
  975. 0.00243423 0.624911 0
  976. <UV> { 0.846241 0.463558 }
  977. }
  978. <Vertex> 255 {
  979. 0.518605 0 0
  980. }
  981. <Vertex> 256 {
  982. 0.0609865 -0.0310242 0
  983. <UV> { 0.0119467 0.349123 }
  984. }
  985. <Vertex> 257 {
  986. 0.457619 -0.0310242 0
  987. <UV> { 0.0802723 0.349123 }
  988. }
  989. <Vertex> 258 {
  990. 0.457619 0.624911 0
  991. <UV> { 0.0802723 0.462117 }
  992. }
  993. <Vertex> 259 {
  994. 0.0609865 0.624911 0
  995. <UV> { 0.0119467 0.462117 }
  996. }
  997. <Vertex> 260 {
  998. 0.518605 0 0
  999. }
  1000. <Vertex> 261 {
  1001. 0.00243423 -0.0310242 0
  1002. <UV> { 0.0883156 0.349123 }
  1003. }
  1004. <Vertex> 262 {
  1005. 0.499442 -0.0310242 0
  1006. <UV> { 0.173932 0.349123 }
  1007. }
  1008. <Vertex> 263 {
  1009. 0.499442 0.624911 0
  1010. <UV> { 0.173932 0.462117 }
  1011. }
  1012. <Vertex> 264 {
  1013. 0.00243423 0.624911 0
  1014. <UV> { 0.0883156 0.462117 }
  1015. }
  1016. <Vertex> 265 {
  1017. 0.518605 0 0
  1018. }
  1019. <Vertex> 266 {
  1020. 0.027528 -0.0310242 0
  1021. <UV> { 0.181976 0.349123 }
  1022. }
  1023. <Vertex> 267 {
  1024. 0.491077 -0.0310242 0
  1025. <UV> { 0.261829 0.349123 }
  1026. }
  1027. <Vertex> 268 {
  1028. 0.491077 0.624911 0
  1029. <UV> { 0.261829 0.462117 }
  1030. }
  1031. <Vertex> 269 {
  1032. 0.027528 0.624911 0
  1033. <UV> { 0.181976 0.462117 }
  1034. }
  1035. <Vertex> 270 {
  1036. 0.518605 0 0
  1037. }
  1038. <Vertex> 271 {
  1039. 0.0107988 -0.0310242 0
  1040. <UV> { 0.382264 0.233849 }
  1041. }
  1042. <Vertex> 272 {
  1043. 0.499442 -0.0310242 0
  1044. <UV> { 0.466439 0.233849 }
  1045. }
  1046. <Vertex> 273 {
  1047. 0.499442 0.624911 0
  1048. <UV> { 0.466439 0.346843 }
  1049. }
  1050. <Vertex> 274 {
  1051. 0.0107988 0.624911 0
  1052. <UV> { 0.382264 0.346843 }
  1053. }
  1054. <Vertex> 275 {
  1055. 0.518605 0 0
  1056. }
  1057. <Vertex> 276 {
  1058. -0.00593037 -0.0310242 0
  1059. <UV> { 0.474483 0.233849 }
  1060. }
  1061. <Vertex> 277 {
  1062. 0.516171 -0.0310242 0
  1063. <UV> { 0.564422 0.233849 }
  1064. }
  1065. <Vertex> 278 {
  1066. 0.516171 0.624911 0
  1067. <UV> { 0.564422 0.346843 }
  1068. }
  1069. <Vertex> 279 {
  1070. -0.00593037 0.624911 0
  1071. <UV> { 0.474483 0.346843 }
  1072. }
  1073. <Vertex> 280 {
  1074. 0.518605 0 0
  1075. }
  1076. <Vertex> 281 {
  1077. -0.014295 -0.0310242 0
  1078. <UV> { 0.269872 0.232408 }
  1079. }
  1080. <Vertex> 282 {
  1081. 0.524536 -0.0310242 0
  1082. <UV> { 0.362693 0.232408 }
  1083. }
  1084. <Vertex> 283 {
  1085. 0.524536 0.624911 0
  1086. <UV> { 0.362693 0.345402 }
  1087. }
  1088. <Vertex> 284 {
  1089. -0.014295 0.624911 0
  1090. <UV> { 0.269872 0.345402 }
  1091. }
  1092. <Vertex> 285 {
  1093. 0.518605 0 0
  1094. }
  1095. <Vertex> 286 {
  1096. 0.0107988 -0.0310242 0
  1097. <UV> { 0.572465 0.229526 }
  1098. }
  1099. <Vertex> 287 {
  1100. 0.499442 -0.0310242 0
  1101. <UV> { 0.656641 0.229526 }
  1102. }
  1103. <Vertex> 288 {
  1104. 0.499442 0.624911 0
  1105. <UV> { 0.656641 0.34252 }
  1106. }
  1107. <Vertex> 289 {
  1108. 0.0107988 0.624911 0
  1109. <UV> { 0.572465 0.34252 }
  1110. }
  1111. <Vertex> 290 {
  1112. 0.518605 0 0
  1113. }
  1114. <Vertex> 291 {
  1115. -0.00593037 -0.0310242 0
  1116. <UV> { 0.664684 0.229526 }
  1117. }
  1118. <Vertex> 292 {
  1119. 0.516171 -0.0310242 0
  1120. <UV> { 0.754624 0.229526 }
  1121. }
  1122. <Vertex> 293 {
  1123. 0.516171 0.624911 0
  1124. <UV> { 0.754624 0.34252 }
  1125. }
  1126. <Vertex> 294 {
  1127. -0.00593037 0.624911 0
  1128. <UV> { 0.664684 0.34252 }
  1129. }
  1130. <Vertex> 295 {
  1131. 0.518605 0 0
  1132. }
  1133. <Vertex> 296 {
  1134. 0.00243423 -0.0310242 0
  1135. <UV> { 0.762667 0.229526 }
  1136. }
  1137. <Vertex> 297 {
  1138. 0.491077 -0.0310242 0
  1139. <UV> { 0.846843 0.229526 }
  1140. }
  1141. <Vertex> 298 {
  1142. 0.491077 0.624911 0
  1143. <UV> { 0.846843 0.34252 }
  1144. }
  1145. <Vertex> 299 {
  1146. 0.00243423 0.624911 0
  1147. <UV> { 0.762667 0.34252 }
  1148. }
  1149. <Vertex> 300 {
  1150. 0.518605 0 0
  1151. }
  1152. <Vertex> 301 {
  1153. 0.00243423 -0.0310242 0
  1154. <UV> { 0.854886 0.229526 }
  1155. }
  1156. <Vertex> 302 {
  1157. 0.516171 -0.0310242 0
  1158. <UV> { 0.943385 0.229526 }
  1159. }
  1160. <Vertex> 303 {
  1161. 0.516171 0.624911 0
  1162. <UV> { 0.943385 0.34252 }
  1163. }
  1164. <Vertex> 304 {
  1165. 0.00243423 0.624911 0
  1166. <UV> { 0.854886 0.34252 }
  1167. }
  1168. <Vertex> 305 {
  1169. 0.518605 0 0
  1170. }
  1171. <Vertex> 306 {
  1172. 0.0442572 -0.0310242 0
  1173. <UV> { 0.0119467 0.228085 }
  1174. }
  1175. <Vertex> 307 {
  1176. 0.474348 -0.0310242 0
  1177. <UV> { 0.086036 0.228085 }
  1178. }
  1179. <Vertex> 308 {
  1180. 0.474348 0.624911 0
  1181. <UV> { 0.086036 0.341079 }
  1182. }
  1183. <Vertex> 309 {
  1184. 0.0442572 0.624911 0
  1185. <UV> { 0.0119467 0.341079 }
  1186. }
  1187. <Vertex> 310 {
  1188. 0.518605 0 0
  1189. }
  1190. <Vertex> 311 {
  1191. 0.00243423 -0.0310242 0
  1192. <UV> { 0.0940793 0.228085 }
  1193. }
  1194. <Vertex> 312 {
  1195. 0.507807 -0.0310242 0
  1196. <UV> { 0.181137 0.228085 }
  1197. }
  1198. <Vertex> 313 {
  1199. 0.507807 0.624911 0
  1200. <UV> { 0.181137 0.341079 }
  1201. }
  1202. <Vertex> 314 {
  1203. 0.00243423 0.624911 0
  1204. <UV> { 0.0940793 0.341079 }
  1205. }
  1206. <Vertex> 315 {
  1207. 0.518605 0 0
  1208. }
  1209. <Vertex> 316 {
  1210. 0.00243423 -0.0310242 0
  1211. <UV> { 0.370736 0.112811 }
  1212. }
  1213. <Vertex> 317 {
  1214. 0.507807 -0.0310242 0
  1215. <UV> { 0.457794 0.112811 }
  1216. }
  1217. <Vertex> 318 {
  1218. 0.507807 0.624911 0
  1219. <UV> { 0.457794 0.225805 }
  1220. }
  1221. <Vertex> 319 {
  1222. 0.00243423 0.624911 0
  1223. <UV> { 0.370736 0.225805 }
  1224. }
  1225. <Vertex> 320 {
  1226. 0.518605 0 0
  1227. }
  1228. <Vertex> 321 {
  1229. 0.161362 -0.173222 0
  1230. <UV> { 0.0119467 0.71944 }
  1231. }
  1232. <Vertex> 322 {
  1233. 0.348879 -0.173222 0
  1234. <UV> { 0.0442493 0.71944 }
  1235. }
  1236. <Vertex> 323 {
  1237. 0.348879 0.44089 0
  1238. <UV> { 0.0442493 0.825229 }
  1239. }
  1240. <Vertex> 324 {
  1241. 0.161362 0.44089 0
  1242. <UV> { 0.0119467 0.825229 }
  1243. }
  1244. <Vertex> 325 {
  1245. 0.518605 0 0
  1246. }
  1247. <Vertex> 326 {
  1248. 0.00243423 -0.0393888 0
  1249. <UV> { 0.465837 0.121457 }
  1250. }
  1251. <Vertex> 327 {
  1252. 0.457619 -0.0393888 0
  1253. <UV> { 0.544249 0.121457 }
  1254. }
  1255. <Vertex> 328 {
  1256. 0.457619 0.566359 0
  1257. <UV> { 0.544249 0.225805 }
  1258. }
  1259. <Vertex> 329 {
  1260. 0.00243423 0.566359 0
  1261. <UV> { 0.465837 0.225805 }
  1262. }
  1263. <Vertex> 330 {
  1264. 0.518605 0 0
  1265. }
  1266. <Vertex> 331 {
  1267. 0.0358926 0.027528 0
  1268. <UV> { 0.18918 0.130102 }
  1269. }
  1270. <Vertex> 332 {
  1271. 0.474348 0.027528 0
  1272. <UV> { 0.26471 0.130102 }
  1273. }
  1274. <Vertex> 333 {
  1275. 0.474348 0.574723 0
  1276. <UV> { 0.26471 0.224365 }
  1277. }
  1278. <Vertex> 334 {
  1279. 0.0358926 0.574723 0
  1280. <UV> { 0.18918 0.224365 }
  1281. }
  1282. <Vertex> 335 {
  1283. 0.518605 0 0
  1284. }
  1285. <Vertex> 336 {
  1286. 0.0358926 0.027528 0
  1287. <UV> { 0.272754 0.130102 }
  1288. }
  1289. <Vertex> 337 {
  1290. 0.474348 0.027528 0
  1291. <UV> { 0.348284 0.130102 }
  1292. }
  1293. <Vertex> 338 {
  1294. 0.474348 0.574723 0
  1295. <UV> { 0.348284 0.224365 }
  1296. }
  1297. <Vertex> 339 {
  1298. 0.0358926 0.574723 0
  1299. <UV> { 0.272754 0.224365 }
  1300. }
  1301. <Vertex> 340 {
  1302. 0.518605 0 0
  1303. }
  1304. <Vertex> 341 {
  1305. 0.0358926 -0.0393888 0
  1306. <UV> { 0.552293 0.135866 }
  1307. }
  1308. <Vertex> 342 {
  1309. 0.5329 -0.0393888 0
  1310. <UV> { 0.637909 0.135866 }
  1311. }
  1312. <Vertex> 343 {
  1313. 0.5329 0.457619 0
  1314. <UV> { 0.637909 0.221483 }
  1315. }
  1316. <Vertex> 344 {
  1317. 0.0358926 0.457619 0
  1318. <UV> { 0.552293 0.221483 }
  1319. }
  1320. <Vertex> 345 {
  1321. 0.518605 0 0
  1322. }
  1323. <Vertex> 346 {
  1324. 0.0442572 -0.0393888 0
  1325. <UV> { 0.645952 0.135866 }
  1326. }
  1327. <Vertex> 347 {
  1328. 0.482713 -0.0393888 0
  1329. <UV> { 0.721483 0.135866 }
  1330. }
  1331. <Vertex> 348 {
  1332. 0.482713 0.457619 0
  1333. <UV> { 0.721483 0.221483 }
  1334. }
  1335. <Vertex> 349 {
  1336. 0.0442572 0.457619 0
  1337. <UV> { 0.645952 0.221483 }
  1338. }
  1339. <Vertex> 350 {
  1340. 0.518605 0 0
  1341. }
  1342. <Vertex> 351 {
  1343. 0.0358926 -0.0393888 0
  1344. <UV> { 0.729526 0.135866 }
  1345. }
  1346. <Vertex> 352 {
  1347. 0.474348 -0.0393888 0
  1348. <UV> { 0.805056 0.135866 }
  1349. }
  1350. <Vertex> 353 {
  1351. 0.474348 0.457619 0
  1352. <UV> { 0.805056 0.221483 }
  1353. }
  1354. <Vertex> 354 {
  1355. 0.0358926 0.457619 0
  1356. <UV> { 0.729526 0.221483 }
  1357. }
  1358. <Vertex> 355 {
  1359. 0.518605 0 0
  1360. }
  1361. <Vertex> 356 {
  1362. 0.0526219 -0.0393888 0
  1363. <UV> { 0.18918 0.255463 }
  1364. }
  1365. <Vertex> 357 {
  1366. 0.465984 -0.0393888 0
  1367. <UV> { 0.260388 0.255463 }
  1368. }
  1369. <Vertex> 358 {
  1370. 0.465984 0.457619 0
  1371. <UV> { 0.260388 0.341079 }
  1372. }
  1373. <Vertex> 359 {
  1374. 0.0526219 0.457619 0
  1375. <UV> { 0.18918 0.341079 }
  1376. }
  1377. <Vertex> 360 {
  1378. 0.518605 0 0
  1379. }
  1380. <Vertex> 361 {
  1381. 0.0358926 -0.0393888 0
  1382. <UV> { 0.813099 0.135866 }
  1383. }
  1384. <Vertex> 362 {
  1385. 0.474348 -0.0393888 0
  1386. <UV> { 0.88863 0.135866 }
  1387. }
  1388. <Vertex> 363 {
  1389. 0.474348 0.457619 0
  1390. <UV> { 0.88863 0.221483 }
  1391. }
  1392. <Vertex> 364 {
  1393. 0.0358926 0.457619 0
  1394. <UV> { 0.813099 0.221483 }
  1395. }
  1396. <Vertex> 365 {
  1397. 0.518605 0 0
  1398. }
  1399. <Vertex> 366 {
  1400. -0.0226596 -0.0310242 0
  1401. <UV> { 0.0119467 0.137307 }
  1402. }
  1403. <Vertex> 367 {
  1404. 0.5329 -0.0310242 0
  1405. <UV> { 0.10765 0.137307 }
  1406. }
  1407. <Vertex> 368 {
  1408. 0.5329 0.449254 0
  1409. <UV> { 0.10765 0.220042 }
  1410. }
  1411. <Vertex> 369 {
  1412. -0.0226596 0.449254 0
  1413. <UV> { 0.0119467 0.220042 }
  1414. }
  1415. <Vertex> 370 {
  1416. 0.518605 0 0
  1417. }
  1418. <Vertex> 371 {
  1419. 0.0107988 0.0609865 0
  1420. <UV> { 0.896673 0.138748 }
  1421. }
  1422. <Vertex> 372 {
  1423. 0.499442 0.0609865 0
  1424. <UV> { 0.980849 0.138748 }
  1425. }
  1426. <Vertex> 373 {
  1427. 0.499442 0.541265 0
  1428. <UV> { 0.980849 0.221483 }
  1429. }
  1430. <Vertex> 374 {
  1431. 0.0107988 0.541265 0
  1432. <UV> { 0.896673 0.221483 }
  1433. }
  1434. <Vertex> 375 {
  1435. 0.518605 0 0
  1436. }
  1437. <Vertex> 376 {
  1438. -0.014295 -0.0310242 0
  1439. <UV> { 0.0119467 0.0465288 }
  1440. }
  1441. <Vertex> 377 {
  1442. 0.524536 -0.0310242 0
  1443. <UV> { 0.104768 0.0465288 }
  1444. }
  1445. <Vertex> 378 {
  1446. 0.524536 0.449254 0
  1447. <UV> { 0.104768 0.129264 }
  1448. }
  1449. <Vertex> 379 {
  1450. -0.014295 0.449254 0
  1451. <UV> { 0.0119467 0.129264 }
  1452. }
  1453. <Vertex> 380 {
  1454. 0.518605 0 0
  1455. }
  1456. <Vertex> 381 {
  1457. 0.0107988 -0.0310242 0
  1458. <UV> { 0.896673 0.0479698 }
  1459. }
  1460. <Vertex> 382 {
  1461. 0.499442 -0.0310242 0
  1462. <UV> { 0.980849 0.0479698 }
  1463. }
  1464. <Vertex> 383 {
  1465. 0.499442 0.449254 0
  1466. <UV> { 0.980849 0.130705 }
  1467. }
  1468. <Vertex> 384 {
  1469. 0.0107988 0.449254 0
  1470. <UV> { 0.896673 0.130705 }
  1471. }
  1472. <Vertex> 385 {
  1473. 0.518605 0 0
  1474. }
  1475. <Vertex> 386 {
  1476. -0.014295 -0.0393888 0
  1477. <UV> { 0.552293 0.0450879 }
  1478. }
  1479. <Vertex> 387 {
  1480. 0.524536 -0.0393888 0
  1481. <UV> { 0.645114 0.0450879 }
  1482. }
  1483. <Vertex> 388 {
  1484. 0.524536 0.44089 0
  1485. <UV> { 0.645114 0.127823 }
  1486. }
  1487. <Vertex> 389 {
  1488. -0.014295 0.44089 0
  1489. <UV> { 0.552293 0.127823 }
  1490. }
  1491. <Vertex> 390 {
  1492. 0.518605 0 0
  1493. }
  1494. <Vertex> 391 {
  1495. 0.00243423 -0.0393888 0
  1496. <UV> { 0.653157 0.0450879 }
  1497. }
  1498. <Vertex> 392 {
  1499. 0.507807 -0.0393888 0
  1500. <UV> { 0.740215 0.0450879 }
  1501. }
  1502. <Vertex> 393 {
  1503. 0.507807 0.44089 0
  1504. <UV> { 0.740215 0.127823 }
  1505. }
  1506. <Vertex> 394 {
  1507. 0.00243423 0.44089 0
  1508. <UV> { 0.653157 0.127823 }
  1509. }
  1510. <Vertex> 395 {
  1511. 0.518605 0 0
  1512. }
  1513. <Vertex> 396 {
  1514. -0.00593037 -0.0393888 0
  1515. <UV> { 0.748258 0.0450879 }
  1516. }
  1517. <Vertex> 397 {
  1518. 0.516171 -0.0393888 0
  1519. <UV> { 0.838197 0.0450879 }
  1520. }
  1521. <Vertex> 398 {
  1522. 0.516171 0.44089 0
  1523. <UV> { 0.838197 0.127823 }
  1524. }
  1525. <Vertex> 399 {
  1526. -0.00593037 0.44089 0
  1527. <UV> { 0.748258 0.127823 }
  1528. }
  1529. <Vertex> 400 {
  1530. 0.518605 0 0
  1531. }
  1532. <Vertex> 401 {
  1533. 0.178091 -0.0310242 0
  1534. <UV> { 0.960074 0.784281 }
  1535. }
  1536. <Vertex> 402 {
  1537. 0.340515 -0.0310242 0
  1538. <UV> { 0.988053 0.784281 }
  1539. }
  1540. <Vertex> 403 {
  1541. 0.340515 0.44089 0
  1542. <UV> { 0.988053 0.865575 }
  1543. }
  1544. <Vertex> 404 {
  1545. 0.178091 0.44089 0
  1546. <UV> { 0.960074 0.865575 }
  1547. }
  1548. <Vertex> 405 {
  1549. 0.518605 0 0
  1550. }
  1551. <Vertex> 406 {
  1552. 0.0442572 0.0609865 0
  1553. <UV> { 0.112811 0.0407652 }
  1554. }
  1555. <Vertex> 407 {
  1556. 0.465984 0.0609865 0
  1557. <UV> { 0.18546 0.0407652 }
  1558. }
  1559. <Vertex> 408 {
  1560. 0.465984 0.5329 0
  1561. <UV> { 0.18546 0.122059 }
  1562. }
  1563. <Vertex> 409 {
  1564. 0.0442572 0.5329 0
  1565. <UV> { 0.112811 0.122059 }
  1566. }
  1567. <Vertex> 410 {
  1568. 0.518605 0 0
  1569. }
  1570. <Vertex> 411 {
  1571. 0.0107988 -0.0310242 0
  1572. <UV> { 0.193503 0.0407652 }
  1573. }
  1574. <Vertex> 412 {
  1575. 0.482713 -0.0310242 0
  1576. <UV> { 0.274797 0.0407652 }
  1577. }
  1578. <Vertex> 413 {
  1579. 0.482713 0.44089 0
  1580. <UV> { 0.274797 0.122059 }
  1581. }
  1582. <Vertex> 414 {
  1583. 0.0107988 0.44089 0
  1584. <UV> { 0.193503 0.122059 }
  1585. }
  1586. <Vertex> 415 {
  1587. 0.518605 0 0
  1588. }
  1589. <Vertex> 416 {
  1590. 0.00243423 -0.0310242 0
  1591. <UV> { 0.28284 0.0234741 }
  1592. }
  1593. <Vertex> 417 {
  1594. 0.507807 -0.0310242 0
  1595. <UV> { 0.369898 0.0234741 }
  1596. }
  1597. <Vertex> 418 {
  1598. 0.507807 0.44089 0
  1599. <UV> { 0.369898 0.104768 }
  1600. }
  1601. <Vertex> 419 {
  1602. 0.00243423 0.44089 0
  1603. <UV> { 0.28284 0.104768 }
  1604. }
  1605. <Vertex> 420 {
  1606. 0.518605 0 0
  1607. }
  1608. <Vertex> 421 {
  1609. 0.152997 0.270102 0
  1610. <UV> { 0.305895 0.527797 }
  1611. }
  1612. <Vertex> 422 {
  1613. 0.348879 0.270102 0
  1614. <UV> { 0.339638 0.527797 }
  1615. }
  1616. <Vertex> 423 {
  1617. 0.348879 0.624911 0
  1618. <UV> { 0.339638 0.588918 }
  1619. }
  1620. <Vertex> 424 {
  1621. 0.152997 0.624911 0
  1622. <UV> { 0.305895 0.588918 }
  1623. }
  1624. <Vertex> 425 {
  1625. 0.518605 0 0
  1626. }
  1627. <Vertex> 426 {
  1628. 0.161362 0.345383 0
  1629. <UV> { 0.941342 0.402437 }
  1630. }
  1631. <Vertex> 427 {
  1632. 0.357244 0.345383 0
  1633. <UV> { 0.975085 0.402437 }
  1634. }
  1635. <Vertex> 428 {
  1636. 0.357244 0.700192 0
  1637. <UV> { 0.975085 0.463558 }
  1638. }
  1639. <Vertex> 429 {
  1640. 0.161362 0.700192 0
  1641. <UV> { 0.941342 0.463558 }
  1642. }
  1643. <Vertex> 430 {
  1644. 0.518605 0 0
  1645. }
  1646. <Vertex> 431 {
  1647. 0.0944449 0.295195 0
  1648. <UV> { 0.115693 0.161803 }
  1649. }
  1650. <Vertex> 432 {
  1651. 0.415796 0.295195 0
  1652. <UV> { 0.17105 0.161803 }
  1653. }
  1654. <Vertex> 433 {
  1655. 0.415796 0.633276 0
  1656. <UV> { 0.17105 0.220042 }
  1657. }
  1658. <Vertex> 434 {
  1659. 0.0944449 0.633276 0
  1660. <UV> { 0.115693 0.220042 }
  1661. }
  1662. <Vertex> 435 {
  1663. 0.518605 0 0
  1664. }
  1665. <Vertex> 436 {
  1666. 0.161362 -0.173222 0
  1667. <UV> { 0.951428 0.341918 }
  1668. }
  1669. <Vertex> 437 {
  1670. 0.357244 -0.173222 0
  1671. <UV> { 0.985171 0.341918 }
  1672. }
  1673. <Vertex> 438 {
  1674. 0.357244 0.131399 0
  1675. <UV> { 0.985171 0.394393 }
  1676. }
  1677. <Vertex> 439 {
  1678. 0.161362 0.131399 0
  1679. <UV> { 0.951428 0.394393 }
  1680. }
  1681. <Vertex> 440 {
  1682. 0.518605 0 0
  1683. }
  1684. <Vertex> 441 {
  1685. 0.0107988 0.161362 0
  1686. <UV> { 0.377941 0.0566153 }
  1687. }
  1688. <Vertex> 442 {
  1689. 0.499442 0.161362 0
  1690. <UV> { 0.462117 0.0566153 }
  1691. }
  1692. <Vertex> 443 {
  1693. 0.499442 0.44089 0
  1694. <UV> { 0.462117 0.104768 }
  1695. }
  1696. <Vertex> 444 {
  1697. 0.0107988 0.44089 0
  1698. <UV> { 0.377941 0.104768 }
  1699. }
  1700. <Vertex> 445 {
  1701. 0.518605 0 0
  1702. }
  1703. <Vertex> 446 {
  1704. 0.0777157 0.437394 0
  1705. <UV> { 0.47016 0.081111 }
  1706. }
  1707. <Vertex> 447 {
  1708. 0.432525 0.437394 0
  1709. <UV> { 0.531281 0.081111 }
  1710. }
  1711. <Vertex> 448 {
  1712. 0.432525 0.624911 0
  1713. <UV> { 0.531281 0.113414 }
  1714. }
  1715. <Vertex> 449 {
  1716. 0.0777157 0.624911 0
  1717. <UV> { 0.47016 0.113414 }
  1718. }
  1719. <Vertex> 450 {
  1720. 0.518605 0 0
  1721. }
  1722. <Vertex> 451 {
  1723. 0.0609865 0.462487 0
  1724. <UV> { 0.47016 0.0450879 }
  1725. }
  1726. <Vertex> 452 {
  1727. 0.449254 0.462487 0
  1728. <UV> { 0.537045 0.0450879 }
  1729. }
  1730. <Vertex> 453 {
  1731. 0.449254 0.624911 0
  1732. <UV> { 0.537045 0.0730677 }
  1733. }
  1734. <Vertex> 454 {
  1735. 0.0609865 0.624911 0
  1736. <UV> { 0.47016 0.0730677 }
  1737. }
  1738. <Vertex> 455 {
  1739. 0.518605 0 0
  1740. }
  1741. <Vertex> 456 {
  1742. 0.178091 -0.0310242 0
  1743. <UV> { 0.960074 0.748258 }
  1744. }
  1745. <Vertex> 457 {
  1746. 0.340515 -0.0310242 0
  1747. <UV> { 0.988053 0.748258 }
  1748. }
  1749. <Vertex> 458 {
  1750. 0.340515 0.131399 0
  1751. <UV> { 0.988053 0.776238 }
  1752. }
  1753. <Vertex> 459 {
  1754. 0.178091 0.131399 0
  1755. <UV> { 0.960074 0.776238 }
  1756. }
  1757. <Vertex> 460 {
  1758. 0.518605 0 0
  1759. }
  1760. <Vertex> 461 {
  1761. 0.0860803 0.495946 0
  1762. <UV> { 0.115693 0.130102 }
  1763. }
  1764. <Vertex> 462 {
  1765. 0.424161 0.495946 0
  1766. <UV> { 0.173932 0.130102 }
  1767. }
  1768. <Vertex> 463 {
  1769. 0.424161 0.633276 0
  1770. <UV> { 0.173932 0.153759 }
  1771. }
  1772. <Vertex> 464 {
  1773. 0.0860803 0.633276 0
  1774. <UV> { 0.115693 0.153759 }
  1775. }
  1776. <Vertex> 465 {
  1777. 0.518605 0 0
  1778. }
  1779. <Vertex> 466 {
  1780. 0.0358926 0.245008 0
  1781. <UV> { 0.377941 0.0292378 }
  1782. }
  1783. <Vertex> 467 {
  1784. 0.474348 0.245008 0
  1785. <UV> { 0.453471 0.0292378 }
  1786. }
  1787. <Vertex> 468 {
  1788. 0.474348 0.357244 0
  1789. <UV> { 0.453471 0.048572 }
  1790. }
  1791. <Vertex> 469 {
  1792. 0.0358926 0.357244 0
  1793. <UV> { 0.377941 0.048572 }
  1794. }
  1795. <Vertex> 470 {
  1796. 0.518605 0 0
  1797. }
  1798. <Vertex> 471 {
  1799. 0.0358926 -0.123035 0
  1800. <UV> { 0.846241 0.0205922 }
  1801. }
  1802. <Vertex> 472 {
  1803. 0.474348 -0.123035 0
  1804. <UV> { 0.921771 0.0205922 }
  1805. }
  1806. <Vertex> 473 {
  1807. 0.474348 -0.0107988 0
  1808. <UV> { 0.921771 0.0399265 }
  1809. }
  1810. <Vertex> 474 {
  1811. 0.0358926 -0.0107988 0
  1812. <UV> { 0.846241 0.0399265 }
  1813. }
  1814. <Vertex> 475 {
  1815. 0.518605 0 0
  1816. }
  1817. <Vertex> 476 {
  1818. 0.0609865 0.4672 0
  1819. <UV> { 0.305895 0.43927125 }
  1820. }
  1821. <Vertex> 477 {
  1822. 0.457619 0.4672 0
  1823. <UV> { 0.37422 0.43927125 }
  1824. }
  1825. <Vertex> 478 {
  1826. 0 1 0
  1827. }
  1828. }
  1829. <Group> 32 {
  1830. <PointLight> {
  1831. <VertexRef> { 160 <Ref> { vpool } }
  1832. }
  1833. }
  1834. <Group> 33 {
  1835. <Polygon> {
  1836. <TRef> { chars }
  1837. <VertexRef> { 156 157 158 159 <Ref> { vpool } }
  1838. }
  1839. <PointLight> {
  1840. <VertexRef> { 160 <Ref> { vpool } }
  1841. }
  1842. }
  1843. <Group> 34 {
  1844. <Polygon> {
  1845. <TRef> { chars }
  1846. <VertexRef> { 431 432 433 434 <Ref> { vpool } }
  1847. }
  1848. <PointLight> {
  1849. <VertexRef> { 435 <Ref> { vpool } }
  1850. }
  1851. }
  1852. <Group> 35 {
  1853. <Polygon> {
  1854. <TRef> { chars }
  1855. <VertexRef> { 236 237 238 239 <Ref> { vpool } }
  1856. }
  1857. <PointLight> {
  1858. <VertexRef> { 240 <Ref> { vpool } }
  1859. }
  1860. }
  1861. <Group> 36 {
  1862. <Polygon> {
  1863. <TRef> { chars }
  1864. <VertexRef> { 16 17 18 19 <Ref> { vpool } }
  1865. }
  1866. <PointLight> {
  1867. <VertexRef> { 20 <Ref> { vpool } }
  1868. }
  1869. }
  1870. <Group> 37 {
  1871. <Polygon> {
  1872. <TRef> { chars }
  1873. <VertexRef> { 11 12 13 14 <Ref> { vpool } }
  1874. }
  1875. <PointLight> {
  1876. <VertexRef> { 15 <Ref> { vpool } }
  1877. }
  1878. }
  1879. <Group> 38 {
  1880. <Polygon> {
  1881. <TRef> { chars }
  1882. <VertexRef> { 121 122 123 124 <Ref> { vpool } }
  1883. }
  1884. <PointLight> {
  1885. <VertexRef> { 125 <Ref> { vpool } }
  1886. }
  1887. }
  1888. <Group> 39 {
  1889. <Polygon> {
  1890. <TRef> { chars }
  1891. <VertexRef> { 421 422 423 424 <Ref> { vpool } }
  1892. }
  1893. <PointLight> {
  1894. <VertexRef> { 425 <Ref> { vpool } }
  1895. }
  1896. }
  1897. <Group> 40 {
  1898. <Polygon> {
  1899. <TRef> { chars }
  1900. <VertexRef> { 56 57 58 59 <Ref> { vpool } }
  1901. }
  1902. <PointLight> {
  1903. <VertexRef> { 60 <Ref> { vpool } }
  1904. }
  1905. }
  1906. <Group> 41 {
  1907. <Polygon> {
  1908. <TRef> { chars }
  1909. <VertexRef> { 51 52 53 54 <Ref> { vpool } }
  1910. }
  1911. <PointLight> {
  1912. <VertexRef> { 55 <Ref> { vpool } }
  1913. }
  1914. }
  1915. <Group> 42 {
  1916. <Polygon> {
  1917. <TRef> { chars }
  1918. <VertexRef> { 406 407 408 409 <Ref> { vpool } }
  1919. }
  1920. <PointLight> {
  1921. <VertexRef> { 410 <Ref> { vpool } }
  1922. }
  1923. }
  1924. <Group> 43 {
  1925. <Polygon> {
  1926. <TRef> { chars }
  1927. <VertexRef> { 371 372 373 374 <Ref> { vpool } }
  1928. }
  1929. <PointLight> {
  1930. <VertexRef> { 375 <Ref> { vpool } }
  1931. }
  1932. }
  1933. <Group> 44 {
  1934. <Polygon> {
  1935. <TRef> { chars }
  1936. <VertexRef> { 436 437 438 439 <Ref> { vpool } }
  1937. }
  1938. <PointLight> {
  1939. <VertexRef> { 440 <Ref> { vpool } }
  1940. }
  1941. }
  1942. <Group> 45 {
  1943. <Polygon> {
  1944. <TRef> { chars }
  1945. <VertexRef> { 466 467 468 469 <Ref> { vpool } }
  1946. }
  1947. <PointLight> {
  1948. <VertexRef> { 470 <Ref> { vpool } }
  1949. }
  1950. }
  1951. <Group> 46 {
  1952. <Polygon> {
  1953. <TRef> { chars }
  1954. <VertexRef> { 456 457 458 459 <Ref> { vpool } }
  1955. }
  1956. <PointLight> {
  1957. <VertexRef> { 460 <Ref> { vpool } }
  1958. }
  1959. }
  1960. <Group> 47 {
  1961. <Polygon> {
  1962. <TRef> { chars }
  1963. <VertexRef> { 6 7 8 9 <Ref> { vpool } }
  1964. }
  1965. <PointLight> {
  1966. <VertexRef> { 10 <Ref> { vpool } }
  1967. }
  1968. }
  1969. <Group> 48 {
  1970. <Polygon> {
  1971. <TRef> { chars }
  1972. <VertexRef> { 91 92 93 94 <Ref> { vpool } }
  1973. }
  1974. <PointLight> {
  1975. <VertexRef> { 95 <Ref> { vpool } }
  1976. }
  1977. }
  1978. <Group> 49 {
  1979. <Polygon> {
  1980. <TRef> { chars }
  1981. <VertexRef> { 181 182 183 184 <Ref> { vpool } }
  1982. }
  1983. <PointLight> {
  1984. <VertexRef> { 185 <Ref> { vpool } }
  1985. }
  1986. }
  1987. <Group> 50 {
  1988. <Polygon> {
  1989. <TRef> { chars }
  1990. <VertexRef> { 176 177 178 179 <Ref> { vpool } }
  1991. }
  1992. <PointLight> {
  1993. <VertexRef> { 180 <Ref> { vpool } }
  1994. }
  1995. }
  1996. <Group> 51 {
  1997. <Polygon> {
  1998. <TRef> { chars }
  1999. <VertexRef> { 96 97 98 99 <Ref> { vpool } }
  2000. }
  2001. <PointLight> {
  2002. <VertexRef> { 100 <Ref> { vpool } }
  2003. }
  2004. }
  2005. <Group> 52 {
  2006. <Polygon> {
  2007. <TRef> { chars }
  2008. <VertexRef> { 101 102 103 104 <Ref> { vpool } }
  2009. }
  2010. <PointLight> {
  2011. <VertexRef> { 105 <Ref> { vpool } }
  2012. }
  2013. }
  2014. <Group> 53 {
  2015. <Polygon> {
  2016. <TRef> { chars }
  2017. <VertexRef> { 171 172 173 174 <Ref> { vpool } }
  2018. }
  2019. <PointLight> {
  2020. <VertexRef> { 175 <Ref> { vpool } }
  2021. }
  2022. }
  2023. <Group> 54 {
  2024. <Polygon> {
  2025. <TRef> { chars }
  2026. <VertexRef> { 106 107 108 109 <Ref> { vpool } }
  2027. }
  2028. <PointLight> {
  2029. <VertexRef> { 110 <Ref> { vpool } }
  2030. }
  2031. }
  2032. <Group> 55 {
  2033. <Polygon> {
  2034. <TRef> { chars }
  2035. <VertexRef> { 86 87 88 89 <Ref> { vpool } }
  2036. }
  2037. <PointLight> {
  2038. <VertexRef> { 90 <Ref> { vpool } }
  2039. }
  2040. }
  2041. <Group> 56 {
  2042. <Polygon> {
  2043. <TRef> { chars }
  2044. <VertexRef> { 111 112 113 114 <Ref> { vpool } }
  2045. }
  2046. <PointLight> {
  2047. <VertexRef> { 115 <Ref> { vpool } }
  2048. }
  2049. }
  2050. <Group> 57 {
  2051. <Polygon> {
  2052. <TRef> { chars }
  2053. <VertexRef> { 116 117 118 119 <Ref> { vpool } }
  2054. }
  2055. <PointLight> {
  2056. <VertexRef> { 120 <Ref> { vpool } }
  2057. }
  2058. }
  2059. <Group> 58 {
  2060. <Polygon> {
  2061. <TRef> { chars }
  2062. <VertexRef> { 401 402 403 404 <Ref> { vpool } }
  2063. }
  2064. <PointLight> {
  2065. <VertexRef> { 405 <Ref> { vpool } }
  2066. }
  2067. }
  2068. <Group> 59 {
  2069. <Polygon> {
  2070. <TRef> { chars }
  2071. <VertexRef> { 321 322 323 324 <Ref> { vpool } }
  2072. }
  2073. <PointLight> {
  2074. <VertexRef> { 325 <Ref> { vpool } }
  2075. }
  2076. }
  2077. <Group> 60 {
  2078. <Polygon> {
  2079. <TRef> { chars }
  2080. <VertexRef> { 331 332 333 334 <Ref> { vpool } }
  2081. }
  2082. <PointLight> {
  2083. <VertexRef> { 335 <Ref> { vpool } }
  2084. }
  2085. }
  2086. <Group> 61 {
  2087. <Polygon> {
  2088. <TRef> { chars }
  2089. <VertexRef> { 441 442 443 444 <Ref> { vpool } }
  2090. }
  2091. <PointLight> {
  2092. <VertexRef> { 445 <Ref> { vpool } }
  2093. }
  2094. }
  2095. <Group> 62 {
  2096. <Polygon> {
  2097. <TRef> { chars }
  2098. <VertexRef> { 336 337 338 339 <Ref> { vpool } }
  2099. }
  2100. <PointLight> {
  2101. <VertexRef> { 340 <Ref> { vpool } }
  2102. }
  2103. }
  2104. <Group> 63 {
  2105. <Polygon> {
  2106. <TRef> { chars }
  2107. <VertexRef> { 161 162 163 164 <Ref> { vpool } }
  2108. }
  2109. <PointLight> {
  2110. <VertexRef> { 165 <Ref> { vpool } }
  2111. }
  2112. }
  2113. <Group> 64 {
  2114. <Polygon> {
  2115. <TRef> { chars }
  2116. <VertexRef> { 126 127 128 129 <Ref> { vpool } }
  2117. }
  2118. <PointLight> {
  2119. <VertexRef> { 130 <Ref> { vpool } }
  2120. }
  2121. }
  2122. <Group> 65 {
  2123. <Polygon> {
  2124. <TRef> { chars }
  2125. <VertexRef> { 131 132 133 134 <Ref> { vpool } }
  2126. }
  2127. <PointLight> {
  2128. <VertexRef> { 135 <Ref> { vpool } }
  2129. }
  2130. }
  2131. <Group> 66 {
  2132. <Polygon> {
  2133. <TRef> { chars }
  2134. <VertexRef> { 246 247 248 249 <Ref> { vpool } }
  2135. }
  2136. <PointLight> {
  2137. <VertexRef> { 250 <Ref> { vpool } }
  2138. }
  2139. }
  2140. <Group> 67 {
  2141. <Polygon> {
  2142. <TRef> { chars }
  2143. <VertexRef> { 136 137 138 139 <Ref> { vpool } }
  2144. }
  2145. <PointLight> {
  2146. <VertexRef> { 140 <Ref> { vpool } }
  2147. }
  2148. }
  2149. <Group> 68 {
  2150. <Polygon> {
  2151. <TRef> { chars }
  2152. <VertexRef> { 226 227 228 229 <Ref> { vpool } }
  2153. }
  2154. <PointLight> {
  2155. <VertexRef> { 230 <Ref> { vpool } }
  2156. }
  2157. }
  2158. <Group> 69 {
  2159. <Polygon> {
  2160. <TRef> { chars }
  2161. <VertexRef> { 231 232 233 234 <Ref> { vpool } }
  2162. }
  2163. <PointLight> {
  2164. <VertexRef> { 235 <Ref> { vpool } }
  2165. }
  2166. }
  2167. <Group> 70 {
  2168. <Polygon> {
  2169. <TRef> { chars }
  2170. <VertexRef> { 241 242 243 244 <Ref> { vpool } }
  2171. }
  2172. <PointLight> {
  2173. <VertexRef> { 245 <Ref> { vpool } }
  2174. }
  2175. }
  2176. <Group> 71 {
  2177. <Polygon> {
  2178. <TRef> { chars }
  2179. <VertexRef> { 141 142 143 144 <Ref> { vpool } }
  2180. }
  2181. <PointLight> {
  2182. <VertexRef> { 145 <Ref> { vpool } }
  2183. }
  2184. }
  2185. <Group> 72 {
  2186. <Polygon> {
  2187. <TRef> { chars }
  2188. <VertexRef> { 251 252 253 254 <Ref> { vpool } }
  2189. }
  2190. <PointLight> {
  2191. <VertexRef> { 255 <Ref> { vpool } }
  2192. }
  2193. }
  2194. <Group> 73 {
  2195. <Polygon> {
  2196. <TRef> { chars }
  2197. <VertexRef> { 256 257 258 259 <Ref> { vpool } }
  2198. }
  2199. <PointLight> {
  2200. <VertexRef> { 260 <Ref> { vpool } }
  2201. }
  2202. }
  2203. <Group> 74 {
  2204. <Polygon> {
  2205. <TRef> { chars }
  2206. <VertexRef> { 166 167 168 169 <Ref> { vpool } }
  2207. }
  2208. <PointLight> {
  2209. <VertexRef> { 170 <Ref> { vpool } }
  2210. }
  2211. }
  2212. <Group> 75 {
  2213. <Polygon> {
  2214. <TRef> { chars }
  2215. <VertexRef> { 261 262 263 264 <Ref> { vpool } }
  2216. }
  2217. <PointLight> {
  2218. <VertexRef> { 265 <Ref> { vpool } }
  2219. }
  2220. }
  2221. <Group> 76 {
  2222. <Polygon> {
  2223. <TRef> { chars }
  2224. <VertexRef> { 271 272 273 274 <Ref> { vpool } }
  2225. }
  2226. <PointLight> {
  2227. <VertexRef> { 275 <Ref> { vpool } }
  2228. }
  2229. }
  2230. <Group> 77 {
  2231. <Polygon> {
  2232. <TRef> { chars }
  2233. <VertexRef> { 276 277 278 279 <Ref> { vpool } }
  2234. }
  2235. <PointLight> {
  2236. <VertexRef> { 280 <Ref> { vpool } }
  2237. }
  2238. }
  2239. <Group> 78 {
  2240. <Polygon> {
  2241. <TRef> { chars }
  2242. <VertexRef> { 286 287 288 289 <Ref> { vpool } }
  2243. }
  2244. <PointLight> {
  2245. <VertexRef> { 290 <Ref> { vpool } }
  2246. }
  2247. }
  2248. <Group> 79 {
  2249. <Polygon> {
  2250. <TRef> { chars }
  2251. <VertexRef> { 146 147 148 149 <Ref> { vpool } }
  2252. }
  2253. <PointLight> {
  2254. <VertexRef> { 150 <Ref> { vpool } }
  2255. }
  2256. }
  2257. <Group> 80 {
  2258. <Polygon> {
  2259. <TRef> { chars }
  2260. <VertexRef> { 296 297 298 299 <Ref> { vpool } }
  2261. }
  2262. <PointLight> {
  2263. <VertexRef> { 300 <Ref> { vpool } }
  2264. }
  2265. }
  2266. <Group> 81 {
  2267. <Polygon> {
  2268. <TRef> { chars }
  2269. <VertexRef> { 61 62 63 64 <Ref> { vpool } }
  2270. }
  2271. <PointLight> {
  2272. <VertexRef> { 65 <Ref> { vpool } }
  2273. }
  2274. }
  2275. <Group> 82 {
  2276. <Polygon> {
  2277. <TRef> { chars }
  2278. <VertexRef> { 186 187 188 189 <Ref> { vpool } }
  2279. }
  2280. <PointLight> {
  2281. <VertexRef> { 190 <Ref> { vpool } }
  2282. }
  2283. }
  2284. <Group> 83 {
  2285. <Polygon> {
  2286. <TRef> { chars }
  2287. <VertexRef> { 151 152 153 154 <Ref> { vpool } }
  2288. }
  2289. <PointLight> {
  2290. <VertexRef> { 155 <Ref> { vpool } }
  2291. }
  2292. }
  2293. <Group> 84 {
  2294. <Polygon> {
  2295. <TRef> { chars }
  2296. <VertexRef> { 311 312 313 314 <Ref> { vpool } }
  2297. }
  2298. <PointLight> {
  2299. <VertexRef> { 315 <Ref> { vpool } }
  2300. }
  2301. }
  2302. <Group> 85 {
  2303. <Polygon> {
  2304. <TRef> { chars }
  2305. <VertexRef> { 191 192 193 194 <Ref> { vpool } }
  2306. }
  2307. <PointLight> {
  2308. <VertexRef> { 195 <Ref> { vpool } }
  2309. }
  2310. }
  2311. <Group> 86 {
  2312. <Polygon> {
  2313. <TRef> { chars }
  2314. <VertexRef> { 196 197 198 199 <Ref> { vpool } }
  2315. }
  2316. <PointLight> {
  2317. <VertexRef> { 200 <Ref> { vpool } }
  2318. }
  2319. }
  2320. <Group> 87 {
  2321. <Polygon> {
  2322. <TRef> { chars }
  2323. <VertexRef> { 201 202 203 204 <Ref> { vpool } }
  2324. }
  2325. <PointLight> {
  2326. <VertexRef> { 205 <Ref> { vpool } }
  2327. }
  2328. }
  2329. <Group> 88 {
  2330. <Polygon> {
  2331. <TRef> { chars }
  2332. <VertexRef> { 316 317 318 319 <Ref> { vpool } }
  2333. }
  2334. <PointLight> {
  2335. <VertexRef> { 320 <Ref> { vpool } }
  2336. }
  2337. }
  2338. <Group> 89 {
  2339. <Polygon> {
  2340. <TRef> { chars }
  2341. <VertexRef> { 291 292 293 294 <Ref> { vpool } }
  2342. }
  2343. <PointLight> {
  2344. <VertexRef> { 295 <Ref> { vpool } }
  2345. }
  2346. }
  2347. <Group> 90 {
  2348. <Polygon> {
  2349. <TRef> { chars }
  2350. <VertexRef> { 266 267 268 269 <Ref> { vpool } }
  2351. }
  2352. <PointLight> {
  2353. <VertexRef> { 270 <Ref> { vpool } }
  2354. }
  2355. }
  2356. <Group> 91 {
  2357. <Polygon> {
  2358. <TRef> { chars }
  2359. <VertexRef> { 46 47 48 49 <Ref> { vpool } }
  2360. }
  2361. <PointLight> {
  2362. <VertexRef> { 50 <Ref> { vpool } }
  2363. }
  2364. }
  2365. <Group> 92 {
  2366. <Polygon> {
  2367. <TRef> { chars }
  2368. <VertexRef> { 36 37 38 39 <Ref> { vpool } }
  2369. }
  2370. <PointLight> {
  2371. <VertexRef> { 40 <Ref> { vpool } }
  2372. }
  2373. }
  2374. <Group> 93 {
  2375. <Polygon> {
  2376. <TRef> { chars }
  2377. <VertexRef> { 41 42 43 44 <Ref> { vpool } }
  2378. }
  2379. <PointLight> {
  2380. <VertexRef> { 45 <Ref> { vpool } }
  2381. }
  2382. }
  2383. <Group> 94 {
  2384. <Polygon> {
  2385. <TRef> { chars }
  2386. <VertexRef> { 446 447 448 449 <Ref> { vpool } }
  2387. }
  2388. <PointLight> {
  2389. <VertexRef> { 450 <Ref> { vpool } }
  2390. }
  2391. }
  2392. <Group> 95 {
  2393. <Polygon> {
  2394. <TRef> { chars }
  2395. <VertexRef> { 471 472 473 474 <Ref> { vpool } }
  2396. }
  2397. <PointLight> {
  2398. <VertexRef> { 475 <Ref> { vpool } }
  2399. }
  2400. }
  2401. <Group> 96 {
  2402. <Polygon> {
  2403. <TRef> { chars }
  2404. <VertexRef> { 426 427 428 429 <Ref> { vpool } }
  2405. }
  2406. <PointLight> {
  2407. <VertexRef> { 430 <Ref> { vpool } }
  2408. }
  2409. }
  2410. <Group> 97 {
  2411. <Polygon> {
  2412. <TRef> { chars }
  2413. <VertexRef> { 341 342 343 344 <Ref> { vpool } }
  2414. }
  2415. <PointLight> {
  2416. <VertexRef> { 345 <Ref> { vpool } }
  2417. }
  2418. }
  2419. <Group> 98 {
  2420. <Polygon> {
  2421. <TRef> { chars }
  2422. <VertexRef> { 206 207 208 209 <Ref> { vpool } }
  2423. }
  2424. <PointLight> {
  2425. <VertexRef> { 210 <Ref> { vpool } }
  2426. }
  2427. }
  2428. <Group> 99 {
  2429. <Polygon> {
  2430. <TRef> { chars }
  2431. <VertexRef> { 346 347 348 349 <Ref> { vpool } }
  2432. }
  2433. <PointLight> {
  2434. <VertexRef> { 350 <Ref> { vpool } }
  2435. }
  2436. }
  2437. <Group> 100 {
  2438. <Polygon> {
  2439. <TRef> { chars }
  2440. <VertexRef> { 211 212 213 214 <Ref> { vpool } }
  2441. }
  2442. <PointLight> {
  2443. <VertexRef> { 215 <Ref> { vpool } }
  2444. }
  2445. }
  2446. <Group> 101 {
  2447. <Polygon> {
  2448. <TRef> { chars }
  2449. <VertexRef> { 351 352 353 354 <Ref> { vpool } }
  2450. }
  2451. <PointLight> {
  2452. <VertexRef> { 355 <Ref> { vpool } }
  2453. }
  2454. }
  2455. <Group> 102 {
  2456. <Polygon> {
  2457. <TRef> { chars }
  2458. <VertexRef> { 216 217 218 219 <Ref> { vpool } }
  2459. }
  2460. <PointLight> {
  2461. <VertexRef> { 220 <Ref> { vpool } }
  2462. }
  2463. }
  2464. <Group> 103 {
  2465. <Polygon> {
  2466. <TRef> { chars }
  2467. <VertexRef> { 66 67 68 69 <Ref> { vpool } }
  2468. }
  2469. <PointLight> {
  2470. <VertexRef> { 70 <Ref> { vpool } }
  2471. }
  2472. }
  2473. <Group> 104 {
  2474. <Polygon> {
  2475. <TRef> { chars }
  2476. <VertexRef> { 281 282 283 284 <Ref> { vpool } }
  2477. }
  2478. <PointLight> {
  2479. <VertexRef> { 285 <Ref> { vpool } }
  2480. }
  2481. }
  2482. <Group> 105 {
  2483. <Polygon> {
  2484. <TRef> { chars }
  2485. <VertexRef> { 221 222 223 224 <Ref> { vpool } }
  2486. }
  2487. <PointLight> {
  2488. <VertexRef> { 225 <Ref> { vpool } }
  2489. }
  2490. }
  2491. <Group> 106 {
  2492. <Polygon> {
  2493. <TRef> { chars }
  2494. <VertexRef> { 1 2 3 4 <Ref> { vpool } }
  2495. }
  2496. <PointLight> {
  2497. <VertexRef> { 5 <Ref> { vpool } }
  2498. }
  2499. }
  2500. <Group> 107 {
  2501. <Polygon> {
  2502. <TRef> { chars }
  2503. <VertexRef> { 301 302 303 304 <Ref> { vpool } }
  2504. }
  2505. <PointLight> {
  2506. <VertexRef> { 305 <Ref> { vpool } }
  2507. }
  2508. }
  2509. <Group> 108 {
  2510. <Polygon> {
  2511. <TRef> { chars }
  2512. <VertexRef> { 306 307 308 309 <Ref> { vpool } }
  2513. }
  2514. <PointLight> {
  2515. <VertexRef> { 310 <Ref> { vpool } }
  2516. }
  2517. }
  2518. <Group> 109 {
  2519. <Polygon> {
  2520. <TRef> { chars }
  2521. <VertexRef> { 366 367 368 369 <Ref> { vpool } }
  2522. }
  2523. <PointLight> {
  2524. <VertexRef> { 370 <Ref> { vpool } }
  2525. }
  2526. }
  2527. <Group> 110 {
  2528. <Polygon> {
  2529. <TRef> { chars }
  2530. <VertexRef> { 376 377 378 379 <Ref> { vpool } }
  2531. }
  2532. <PointLight> {
  2533. <VertexRef> { 380 <Ref> { vpool } }
  2534. }
  2535. }
  2536. <Group> 111 {
  2537. <Polygon> {
  2538. <TRef> { chars }
  2539. <VertexRef> { 361 362 363 364 <Ref> { vpool } }
  2540. }
  2541. <PointLight> {
  2542. <VertexRef> { 365 <Ref> { vpool } }
  2543. }
  2544. }
  2545. <Group> 112 {
  2546. <Polygon> {
  2547. <TRef> { chars }
  2548. <VertexRef> { 81 82 83 84 <Ref> { vpool } }
  2549. }
  2550. <PointLight> {
  2551. <VertexRef> { 85 <Ref> { vpool } }
  2552. }
  2553. }
  2554. <Group> 113 {
  2555. <Polygon> {
  2556. <TRef> { chars }
  2557. <VertexRef> { 76 77 78 79 <Ref> { vpool } }
  2558. }
  2559. <PointLight> {
  2560. <VertexRef> { 80 <Ref> { vpool } }
  2561. }
  2562. }
  2563. <Group> 114 {
  2564. <Polygon> {
  2565. <TRef> { chars }
  2566. <VertexRef> { 381 382 383 384 <Ref> { vpool } }
  2567. }
  2568. <PointLight> {
  2569. <VertexRef> { 385 <Ref> { vpool } }
  2570. }
  2571. }
  2572. <Group> 115 {
  2573. <Polygon> {
  2574. <TRef> { chars }
  2575. <VertexRef> { 356 357 358 359 <Ref> { vpool } }
  2576. }
  2577. <PointLight> {
  2578. <VertexRef> { 360 <Ref> { vpool } }
  2579. }
  2580. }
  2581. <Group> 116 {
  2582. <Polygon> {
  2583. <TRef> { chars }
  2584. <VertexRef> { 326 327 328 329 <Ref> { vpool } }
  2585. }
  2586. <PointLight> {
  2587. <VertexRef> { 330 <Ref> { vpool } }
  2588. }
  2589. }
  2590. <Group> 117 {
  2591. <Polygon> {
  2592. <TRef> { chars }
  2593. <VertexRef> { 386 387 388 389 <Ref> { vpool } }
  2594. }
  2595. <PointLight> {
  2596. <VertexRef> { 390 <Ref> { vpool } }
  2597. }
  2598. }
  2599. <Group> 118 {
  2600. <Polygon> {
  2601. <TRef> { chars }
  2602. <VertexRef> { 391 392 393 394 <Ref> { vpool } }
  2603. }
  2604. <PointLight> {
  2605. <VertexRef> { 395 <Ref> { vpool } }
  2606. }
  2607. }
  2608. <Group> 119 {
  2609. <Polygon> {
  2610. <TRef> { chars }
  2611. <VertexRef> { 396 397 398 399 <Ref> { vpool } }
  2612. }
  2613. <PointLight> {
  2614. <VertexRef> { 400 <Ref> { vpool } }
  2615. }
  2616. }
  2617. <Group> 120 {
  2618. <Polygon> {
  2619. <TRef> { chars }
  2620. <VertexRef> { 416 417 418 419 <Ref> { vpool } }
  2621. }
  2622. <PointLight> {
  2623. <VertexRef> { 420 <Ref> { vpool } }
  2624. }
  2625. }
  2626. <Group> 121 {
  2627. <Polygon> {
  2628. <TRef> { chars }
  2629. <VertexRef> { 71 72 73 74 <Ref> { vpool } }
  2630. }
  2631. <PointLight> {
  2632. <VertexRef> { 75 <Ref> { vpool } }
  2633. }
  2634. }
  2635. <Group> 122 {
  2636. <Polygon> {
  2637. <TRef> { chars }
  2638. <VertexRef> { 411 412 413 414 <Ref> { vpool } }
  2639. }
  2640. <PointLight> {
  2641. <VertexRef> { 415 <Ref> { vpool } }
  2642. }
  2643. }
  2644. <Group> 123 {
  2645. <Polygon> {
  2646. <TRef> { chars }
  2647. <VertexRef> { 26 27 28 29 <Ref> { vpool } }
  2648. }
  2649. <PointLight> {
  2650. <VertexRef> { 30 <Ref> { vpool } }
  2651. }
  2652. }
  2653. <Group> 124 {
  2654. <Polygon> {
  2655. <TRef> { chars }
  2656. <VertexRef> { 31 32 33 34 <Ref> { vpool } }
  2657. }
  2658. <PointLight> {
  2659. <VertexRef> { 35 <Ref> { vpool } }
  2660. }
  2661. }
  2662. <Group> 125 {
  2663. <Polygon> {
  2664. <TRef> { chars }
  2665. <VertexRef> { 21 22 23 24 <Ref> { vpool } }
  2666. }
  2667. <PointLight> {
  2668. <VertexRef> { 25 <Ref> { vpool } }
  2669. }
  2670. }
  2671. <Group> 126 {
  2672. <Polygon> {
  2673. <TRef> { chars }
  2674. <VertexRef> { 451 452 453 454 <Ref> { vpool } }
  2675. }
  2676. <PointLight> {
  2677. <VertexRef> { 455 <Ref> { vpool } }
  2678. }
  2679. }
  2680. <Group> 127 {
  2681. <Polygon> {
  2682. <TRef> { chars }
  2683. <VertexRef> { 461 462 463 464 <Ref> { vpool } }
  2684. }
  2685. <PointLight> {
  2686. <VertexRef> { 465 <Ref> { vpool } }
  2687. }
  2688. }
  2689. <Group> 305 {
  2690. <Polygon> {
  2691. <TRef> { chars }
  2692. <VertexRef> { 221 222 476 477 <Ref> { vpool } }
  2693. }
  2694. <PointLight> {
  2695. <VertexRef> { 225 <Ref> { vpool } }
  2696. }
  2697. }
  2698. <Group> ds {
  2699. <PointLight> {
  2700. <VertexRef> { 478 <Ref> { vpool } }
  2701. }
  2702. }
  2703. }