ev_example_framebuffers_preset.txt 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052
  1. ======================== GLOBAL ========================
  2. #settings
  3. #data
  4. ======================== SCENE 0 <unnamed> ========================
  5. #settings
  6. /ev/mouse/texture/sensitivity/ds/occupy 1
  7. /ev/mouse/texture/sensitivity/ds/delay 0
  8. /ev/mouse/texture/sensitivity/ds/slave 0
  9. /ev/mouse/select_radius/ds/occupy 1
  10. /ev/mouse/select_radius/ds/delay 0
  11. /ev/mouse/select_radius/ds/slave 0
  12. /ev/gemwin/border/ds/occupy 0
  13. /ev/gemwin/border/ds/delay 0
  14. /ev/gemwin/border/ds/slave 0
  15. /ev/gemwin/lighting/ds/occupy 0
  16. /ev/gemwin/lighting/ds/delay 0
  17. /ev/gemwin/lighting/ds/slave 0
  18. /ev/gemwin/frame/ds/occupy 0
  19. /ev/gemwin/frame/ds/delay 0
  20. /ev/gemwin/frame/ds/slave 0
  21. /ev/gemwin/offset/y/ds/occupy 0
  22. /ev/gemwin/offset/y/ds/delay 0
  23. /ev/gemwin/offset/y/ds/slave 0
  24. /ev/gemwin/offset/x/ds/occupy 0
  25. /ev/gemwin/offset/x/ds/delay 0
  26. /ev/gemwin/offset/x/ds/slave 0
  27. /ev/gemwin/dimen/y/ds/occupy 0
  28. /ev/gemwin/dimen/y/ds/delay 0
  29. /ev/gemwin/dimen/y/ds/slave 0
  30. /ev/gemwin/dimen/x/ds/occupy 0
  31. /ev/gemwin/dimen/x/ds/delay 0
  32. /ev/gemwin/dimen/x/ds/slave 0
  33. /ev/buf/1/shift/z/ds/occupy 1
  34. /ev/buf/1/shift/z/ds/delay 0
  35. /ev/buf/1/shift/z/ds/morph/timegrain 20
  36. /ev/buf/1/shift/z/ds/morph/curve/quality 0
  37. /ev/buf/1/shift/z/ds/slave 0
  38. /ev/buf/1/shift/z/ds/morph/curve/resolution 100
  39. /ev/buf/1/shift/z/ds/morph/curve/weight 0
  40. /ev/buf/1/shift/z/ds/morph/curve/shape 0
  41. /ev/buf/1/shift/z/ds/morph/time 0
  42. /ev/buf/1/shift/z/ds/morph 0
  43. /ev/buf/1/scale/z/ds/occupy 1
  44. /ev/buf/1/scale/z/ds/delay 0
  45. /ev/buf/1/scale/z/ds/morph/timegrain 20
  46. /ev/buf/1/scale/z/ds/morph/curve/quality 0
  47. /ev/buf/1/scale/z/ds/slave 0
  48. /ev/buf/1/scale/z/ds/morph/curve/resolution 100
  49. /ev/buf/1/scale/z/ds/morph/curve/weight 0
  50. /ev/buf/1/scale/z/ds/morph/curve/shape 0
  51. /ev/buf/1/scale/z/ds/morph/time 0
  52. /ev/buf/1/scale/z/ds/morph 0
  53. /ev/buf/1/state/ds/occupy 0
  54. /ev/buf/1/state/ds/delay 0
  55. /ev/buf/1/state/ds/slave 0
  56. /ev/buf/1/dimen/y/ds/occupy 0
  57. /ev/buf/1/dimen/y/ds/delay 0
  58. /ev/buf/1/dimen/y/ds/slave 0
  59. /ev/buf/1/dimen/x/ds/occupy 0
  60. /ev/buf/1/dimen/x/ds/delay 0
  61. /ev/buf/1/dimen/x/ds/slave 0
  62. /ev/buf/1/type/ds/occupy 0
  63. /ev/buf/1/type/ds/delay 0
  64. /ev/buf/1/type/ds/slave 0
  65. /ev/buf/1/format/ds/occupy 0
  66. /ev/buf/1/format/ds/delay 0
  67. /ev/buf/1/format/ds/slave 0
  68. /ev/buf/1/rectangle/ds/occupy 0
  69. /ev/buf/1/rectangle/ds/delay 0
  70. /ev/buf/1/rectangle/ds/slave 0
  71. /ev/buf/1/color/ds/occupy 0
  72. /ev/buf/1/color/ds/delay 0
  73. /ev/buf/1/color/ds/morph/timegrain 20
  74. /ev/buf/1/color/ds/morph/curve/quality 0
  75. /ev/buf/1/color/ds/slave 0
  76. /ev/buf/1/color/ds/morph/curve/resolution 100
  77. /ev/buf/1/color/ds/morph/curve/weight 0
  78. /ev/buf/1/color/ds/morph/curve/shape 0
  79. /ev/buf/1/color/ds/morph/time 0
  80. /ev/buf/1/color/ds/morph 0
  81. /ev/buf/1/shift/y/ds/occupy 0
  82. /ev/buf/1/shift/y/ds/delay 0
  83. /ev/buf/1/shift/y/ds/morph/timegrain 20
  84. /ev/buf/1/shift/y/ds/morph/curve/quality 0
  85. /ev/buf/1/shift/y/ds/slave 0
  86. /ev/buf/1/shift/y/ds/morph/curve/resolution 100
  87. /ev/buf/1/shift/y/ds/morph/curve/weight 0
  88. /ev/buf/1/shift/y/ds/morph/curve/shape 0
  89. /ev/buf/1/shift/y/ds/morph/time 0
  90. /ev/buf/1/shift/y/ds/morph 0
  91. /ev/buf/1/shift/x/ds/occupy 0
  92. /ev/buf/1/shift/x/ds/delay 0
  93. /ev/buf/1/shift/x/ds/morph/timegrain 20
  94. /ev/buf/1/shift/x/ds/morph/curve/quality 0
  95. /ev/buf/1/shift/x/ds/slave 0
  96. /ev/buf/1/shift/x/ds/morph/curve/resolution 100
  97. /ev/buf/1/shift/x/ds/morph/curve/weight 0
  98. /ev/buf/1/shift/x/ds/morph/curve/shape 0
  99. /ev/buf/1/shift/x/ds/morph/time 0
  100. /ev/buf/1/shift/x/ds/morph 0
  101. /ev/buf/1/scale/y/ds/occupy 0
  102. /ev/buf/1/scale/y/ds/delay 0
  103. /ev/buf/1/scale/y/ds/morph/timegrain 20
  104. /ev/buf/1/scale/y/ds/morph/curve/quality 0
  105. /ev/buf/1/scale/y/ds/slave 0
  106. /ev/buf/1/scale/y/ds/morph/curve/resolution 100
  107. /ev/buf/1/scale/y/ds/morph/curve/weight 0
  108. /ev/buf/1/scale/y/ds/morph/curve/shape 0
  109. /ev/buf/1/scale/y/ds/morph/time 0
  110. /ev/buf/1/scale/y/ds/morph 0
  111. /ev/buf/1/scale/x/ds/occupy 0
  112. /ev/buf/1/scale/x/ds/delay 0
  113. /ev/buf/1/scale/x/ds/morph/timegrain 20
  114. /ev/buf/1/scale/x/ds/morph/curve/quality 0
  115. /ev/buf/1/scale/x/ds/slave 0
  116. /ev/buf/1/scale/x/ds/morph/curve/resolution 100
  117. /ev/buf/1/scale/x/ds/morph/curve/weight 0
  118. /ev/buf/1/scale/x/ds/morph/curve/shape 0
  119. /ev/buf/1/scale/x/ds/morph/time 0
  120. /ev/buf/1/scale/x/ds/morph 0
  121. /ev/pro/w2/grid/res/y/ds/occupy 1
  122. /ev/pro/w2/grid/res/y/ds/delay 0
  123. /ev/pro/w2/grid/res/y/ds/slave 0
  124. /ev/pro/w2/grid/res/x/ds/occupy 1
  125. /ev/pro/w2/grid/res/x/ds/delay 0
  126. /ev/pro/w2/grid/res/x/ds/slave 0
  127. /ev/pro/w2/grid/width/ds/occupy 1
  128. /ev/pro/w2/grid/width/ds/delay 0
  129. /ev/pro/w2/grid/width/ds/slave 0
  130. /ev/pro/w2/grid/color/a/ds/occupy 1
  131. /ev/pro/w2/grid/color/a/ds/delay 0
  132. /ev/pro/w2/grid/color/a/ds/slave 0
  133. /ev/pro/w2/grid/color/v/ds/occupy 1
  134. /ev/pro/w2/grid/color/v/ds/delay 0
  135. /ev/pro/w2/grid/color/v/ds/slave 0
  136. /ev/pro/w2/grid/color/s/ds/occupy 1
  137. /ev/pro/w2/grid/color/s/ds/delay 0
  138. /ev/pro/w2/grid/color/s/ds/slave 0
  139. /ev/pro/w2/grid/color/h/ds/occupy 1
  140. /ev/pro/w2/grid/color/h/ds/delay 0
  141. /ev/pro/w2/grid/color/h/ds/slave 0
  142. /ev/pro/w2/grid/state/ds/occupy 0
  143. /ev/pro/w2/grid/state/ds/delay 0
  144. /ev/pro/w2/grid/state/ds/slave 0
  145. /ev/pro/w2/grid/tex/flip/vertical/ds/occupy 1
  146. /ev/pro/w2/grid/tex/flip/vertical/ds/delay 0
  147. /ev/pro/w2/grid/tex/flip/vertical/ds/slave 0
  148. /ev/pro/w2/grid/tex/flip/horizontal/ds/occupy 1
  149. /ev/pro/w2/grid/tex/flip/horizontal/ds/delay 0
  150. /ev/pro/w2/grid/tex/flip/horizontal/ds/slave 0
  151. /ev/pro/w2/grid/tex/filename/ds/occupy 1
  152. /ev/pro/w2/grid/tex/filename/ds/delay 0
  153. /ev/pro/w2/grid/tex/filename/ds/slave 0
  154. /ev/pro/w2/grid/tex/state/ds/occupy 1
  155. /ev/pro/w2/grid/tex/state/ds/delay 0
  156. /ev/pro/w2/grid/tex/state/ds/slave 0
  157. /ev/pro/w2/set_alpha/ds/occupy 1
  158. /ev/pro/w2/set_alpha/ds/delay 0
  159. /ev/pro/w2/set_alpha/ds/slave 0
  160. /ev/pro/w2/cursor/mode/ds/occupy 0
  161. /ev/pro/w2/cursor/mode/ds/delay 0
  162. /ev/pro/w2/cursor/mode/ds/slave 0
  163. /ev/pro/w2/state/ds/occupy 0
  164. /ev/pro/w2/state/ds/delay 0
  165. /ev/pro/w2/state/ds/slave 0
  166. /ev/pro/w2/texture/weight/y/ds/occupy 1
  167. /ev/pro/w2/texture/weight/y/ds/delay 0
  168. /ev/pro/w2/texture/weight/y/ds/morph/timegrain 20
  169. /ev/pro/w2/texture/weight/y/ds/morph/curve/quality 0
  170. /ev/pro/w2/texture/weight/y/ds/slave 0
  171. /ev/pro/w2/texture/weight/y/ds/morph/curve/resolution 100
  172. /ev/pro/w2/texture/weight/y/ds/morph/curve/weight 0
  173. /ev/pro/w2/texture/weight/y/ds/morph/curve/shape 0
  174. /ev/pro/w2/texture/weight/y/ds/morph/time 0
  175. /ev/pro/w2/texture/weight/y/ds/morph 0
  176. /ev/pro/w2/texture/weight/x/ds/occupy 1
  177. /ev/pro/w2/texture/weight/x/ds/delay 0
  178. /ev/pro/w2/texture/weight/x/ds/morph/timegrain 20
  179. /ev/pro/w2/texture/weight/x/ds/morph/curve/quality 0
  180. /ev/pro/w2/texture/weight/x/ds/slave 0
  181. /ev/pro/w2/texture/weight/x/ds/morph/curve/resolution 100
  182. /ev/pro/w2/texture/weight/x/ds/morph/curve/weight 0
  183. /ev/pro/w2/texture/weight/x/ds/morph/curve/shape 0
  184. /ev/pro/w2/texture/weight/x/ds/morph/time 0
  185. /ev/pro/w2/texture/weight/x/ds/morph 0
  186. /ev/pro/w2/shade/left/ds/occupy 0
  187. /ev/pro/w2/shade/left/ds/delay 0
  188. /ev/pro/w2/shade/left/ds/morph/timegrain 20
  189. /ev/pro/w2/shade/left/ds/morph/curve/quality 0
  190. /ev/pro/w2/shade/left/ds/slave 0
  191. /ev/pro/w2/shade/left/ds/morph/curve/resolution 100
  192. /ev/pro/w2/shade/left/ds/morph/curve/weight 0
  193. /ev/pro/w2/shade/left/ds/morph/curve/shape 0
  194. /ev/pro/w2/shade/left/ds/morph/time 0
  195. /ev/pro/w2/shade/left/ds/morph 0
  196. /ev/pro/w2/shade/bottom/ds/occupy 0
  197. /ev/pro/w2/shade/bottom/ds/delay 0
  198. /ev/pro/w2/shade/bottom/ds/morph/timegrain 20
  199. /ev/pro/w2/shade/bottom/ds/morph/curve/quality 0
  200. /ev/pro/w2/shade/bottom/ds/slave 0
  201. /ev/pro/w2/shade/bottom/ds/morph/curve/resolution 100
  202. /ev/pro/w2/shade/bottom/ds/morph/curve/weight 0
  203. /ev/pro/w2/shade/bottom/ds/morph/curve/shape 0
  204. /ev/pro/w2/shade/bottom/ds/morph/time 0
  205. /ev/pro/w2/shade/bottom/ds/morph 0
  206. /ev/pro/w2/shade/right/ds/occupy 0
  207. /ev/pro/w2/shade/right/ds/delay 0
  208. /ev/pro/w2/shade/right/ds/morph/timegrain 20
  209. /ev/pro/w2/shade/right/ds/morph/curve/quality 0
  210. /ev/pro/w2/shade/right/ds/slave 0
  211. /ev/pro/w2/shade/right/ds/morph/curve/resolution 100
  212. /ev/pro/w2/shade/right/ds/morph/curve/weight 0
  213. /ev/pro/w2/shade/right/ds/morph/curve/shape 0
  214. /ev/pro/w2/shade/right/ds/morph/time 0
  215. /ev/pro/w2/shade/right/ds/morph 0
  216. /ev/pro/w2/shade/top/ds/occupy 0
  217. /ev/pro/w2/shade/top/ds/delay 0
  218. /ev/pro/w2/shade/top/ds/morph/timegrain 20
  219. /ev/pro/w2/shade/top/ds/morph/curve/quality 0
  220. /ev/pro/w2/shade/top/ds/slave 0
  221. /ev/pro/w2/shade/top/ds/morph/curve/resolution 100
  222. /ev/pro/w2/shade/top/ds/morph/curve/weight 0
  223. /ev/pro/w2/shade/top/ds/morph/curve/shape 0
  224. /ev/pro/w2/shade/top/ds/morph/time 0
  225. /ev/pro/w2/shade/top/ds/morph 0
  226. /ev/pro/w2/texture/bottom/right/y/ds/occupy 0
  227. /ev/pro/w2/texture/bottom/right/y/ds/delay 0
  228. /ev/pro/w2/texture/bottom/right/y/ds/morph/timegrain 20
  229. /ev/pro/w2/texture/bottom/right/y/ds/morph/curve/quality 0
  230. /ev/pro/w2/texture/bottom/right/y/ds/slave 0
  231. /ev/pro/w2/texture/bottom/right/y/ds/morph/curve/resolution 100
  232. /ev/pro/w2/texture/bottom/right/y/ds/morph/curve/weight 0
  233. /ev/pro/w2/texture/bottom/right/y/ds/morph/curve/shape 0
  234. /ev/pro/w2/texture/bottom/right/y/ds/morph/time 0
  235. /ev/pro/w2/texture/bottom/right/y/ds/morph 0
  236. /ev/pro/w2/texture/bottom/right/x/ds/occupy 0
  237. /ev/pro/w2/texture/bottom/right/x/ds/delay 0
  238. /ev/pro/w2/texture/bottom/right/x/ds/morph/timegrain 20
  239. /ev/pro/w2/texture/bottom/right/x/ds/morph/curve/quality 0
  240. /ev/pro/w2/texture/bottom/right/x/ds/slave 0
  241. /ev/pro/w2/texture/bottom/right/x/ds/morph/curve/resolution 100
  242. /ev/pro/w2/texture/bottom/right/x/ds/morph/curve/weight 0
  243. /ev/pro/w2/texture/bottom/right/x/ds/morph/curve/shape 0
  244. /ev/pro/w2/texture/bottom/right/x/ds/morph/time 0
  245. /ev/pro/w2/texture/bottom/right/x/ds/morph 0
  246. /ev/pro/w2/texture/bottom/left/y/ds/occupy 0
  247. /ev/pro/w2/texture/bottom/left/y/ds/delay 0
  248. /ev/pro/w2/texture/bottom/left/y/ds/morph/timegrain 20
  249. /ev/pro/w2/texture/bottom/left/y/ds/morph/curve/quality 0
  250. /ev/pro/w2/texture/bottom/left/y/ds/slave 0
  251. /ev/pro/w2/texture/bottom/left/y/ds/morph/curve/resolution 100
  252. /ev/pro/w2/texture/bottom/left/y/ds/morph/curve/weight 0
  253. /ev/pro/w2/texture/bottom/left/y/ds/morph/curve/shape 0
  254. /ev/pro/w2/texture/bottom/left/y/ds/morph/time 0
  255. /ev/pro/w2/texture/bottom/left/y/ds/morph 0
  256. /ev/pro/w2/texture/bottom/left/x/ds/occupy 0
  257. /ev/pro/w2/texture/bottom/left/x/ds/delay 0
  258. /ev/pro/w2/texture/bottom/left/x/ds/morph/timegrain 20
  259. /ev/pro/w2/texture/bottom/left/x/ds/morph/curve/quality 0
  260. /ev/pro/w2/texture/bottom/left/x/ds/slave 0
  261. /ev/pro/w2/texture/bottom/left/x/ds/morph/curve/resolution 100
  262. /ev/pro/w2/texture/bottom/left/x/ds/morph/curve/weight 0
  263. /ev/pro/w2/texture/bottom/left/x/ds/morph/curve/shape 0
  264. /ev/pro/w2/texture/bottom/left/x/ds/morph/time 0
  265. /ev/pro/w2/texture/bottom/left/x/ds/morph 0
  266. /ev/pro/w2/texture/top/right/y/ds/occupy 0
  267. /ev/pro/w2/texture/top/right/y/ds/delay 0
  268. /ev/pro/w2/texture/top/right/y/ds/morph/timegrain 20
  269. /ev/pro/w2/texture/top/right/y/ds/morph/curve/quality 0
  270. /ev/pro/w2/texture/top/right/y/ds/slave 0
  271. /ev/pro/w2/texture/top/right/y/ds/morph/curve/resolution 100
  272. /ev/pro/w2/texture/top/right/y/ds/morph/curve/weight 0
  273. /ev/pro/w2/texture/top/right/y/ds/morph/curve/shape 0
  274. /ev/pro/w2/texture/top/right/y/ds/morph/time 0
  275. /ev/pro/w2/texture/top/right/y/ds/morph 0
  276. /ev/pro/w2/texture/top/right/x/ds/occupy 0
  277. /ev/pro/w2/texture/top/right/x/ds/delay 0
  278. /ev/pro/w2/texture/top/right/x/ds/morph/timegrain 20
  279. /ev/pro/w2/texture/top/right/x/ds/morph/curve/quality 0
  280. /ev/pro/w2/texture/top/right/x/ds/slave 0
  281. /ev/pro/w2/texture/top/right/x/ds/morph/curve/resolution 100
  282. /ev/pro/w2/texture/top/right/x/ds/morph/curve/weight 0
  283. /ev/pro/w2/texture/top/right/x/ds/morph/curve/shape 0
  284. /ev/pro/w2/texture/top/right/x/ds/morph/time 0
  285. /ev/pro/w2/texture/top/right/x/ds/morph 0
  286. /ev/pro/w2/texture/top/left/y/ds/occupy 0
  287. /ev/pro/w2/texture/top/left/y/ds/delay 0
  288. /ev/pro/w2/texture/top/left/y/ds/morph/timegrain 20
  289. /ev/pro/w2/texture/top/left/y/ds/morph/curve/quality 0
  290. /ev/pro/w2/texture/top/left/y/ds/slave 0
  291. /ev/pro/w2/texture/top/left/y/ds/morph/curve/resolution 100
  292. /ev/pro/w2/texture/top/left/y/ds/morph/curve/weight 0
  293. /ev/pro/w2/texture/top/left/y/ds/morph/curve/shape 0
  294. /ev/pro/w2/texture/top/left/y/ds/morph/time 0
  295. /ev/pro/w2/texture/top/left/y/ds/morph 0
  296. /ev/pro/w2/texture/top/left/x/ds/occupy 0
  297. /ev/pro/w2/texture/top/left/x/ds/delay 0
  298. /ev/pro/w2/texture/top/left/x/ds/morph/timegrain 20
  299. /ev/pro/w2/texture/top/left/x/ds/morph/curve/quality 0
  300. /ev/pro/w2/texture/top/left/x/ds/slave 0
  301. /ev/pro/w2/texture/top/left/x/ds/morph/curve/resolution 100
  302. /ev/pro/w2/texture/top/left/x/ds/morph/curve/weight 0
  303. /ev/pro/w2/texture/top/left/x/ds/morph/curve/shape 0
  304. /ev/pro/w2/texture/top/left/x/ds/morph/time 0
  305. /ev/pro/w2/texture/top/left/x/ds/morph 0
  306. /ev/pro/w2/vertex/bottom/right/y/ds/occupy 0
  307. /ev/pro/w2/vertex/bottom/right/y/ds/delay 0
  308. /ev/pro/w2/vertex/bottom/right/y/ds/morph/timegrain 20
  309. /ev/pro/w2/vertex/bottom/right/y/ds/morph/curve/quality 0
  310. /ev/pro/w2/vertex/bottom/right/y/ds/slave 0
  311. /ev/pro/w2/vertex/bottom/right/y/ds/morph/curve/resolution 100
  312. /ev/pro/w2/vertex/bottom/right/y/ds/morph/curve/weight 0
  313. /ev/pro/w2/vertex/bottom/right/y/ds/morph/curve/shape 0
  314. /ev/pro/w2/vertex/bottom/right/y/ds/morph/time 0
  315. /ev/pro/w2/vertex/bottom/right/y/ds/morph 0
  316. /ev/pro/w2/vertex/bottom/right/x/ds/occupy 0
  317. /ev/pro/w2/vertex/bottom/right/x/ds/delay 0
  318. /ev/pro/w2/vertex/bottom/right/x/ds/morph/timegrain 20
  319. /ev/pro/w2/vertex/bottom/right/x/ds/morph/curve/quality 0
  320. /ev/pro/w2/vertex/bottom/right/x/ds/slave 0
  321. /ev/pro/w2/vertex/bottom/right/x/ds/morph/curve/resolution 100
  322. /ev/pro/w2/vertex/bottom/right/x/ds/morph/curve/weight 0
  323. /ev/pro/w2/vertex/bottom/right/x/ds/morph/curve/shape 0
  324. /ev/pro/w2/vertex/bottom/right/x/ds/morph/time 0
  325. /ev/pro/w2/vertex/bottom/right/x/ds/morph 0
  326. /ev/pro/w2/vertex/bottom/left/y/ds/occupy 0
  327. /ev/pro/w2/vertex/bottom/left/y/ds/delay 0
  328. /ev/pro/w2/vertex/bottom/left/y/ds/morph/timegrain 20
  329. /ev/pro/w2/vertex/bottom/left/y/ds/morph/curve/quality 0
  330. /ev/pro/w2/vertex/bottom/left/y/ds/slave 0
  331. /ev/pro/w2/vertex/bottom/left/y/ds/morph/curve/resolution 100
  332. /ev/pro/w2/vertex/bottom/left/y/ds/morph/curve/weight 0
  333. /ev/pro/w2/vertex/bottom/left/y/ds/morph/curve/shape 0
  334. /ev/pro/w2/vertex/bottom/left/y/ds/morph/time 0
  335. /ev/pro/w2/vertex/bottom/left/y/ds/morph 0
  336. /ev/pro/w2/vertex/bottom/left/x/ds/occupy 0
  337. /ev/pro/w2/vertex/bottom/left/x/ds/delay 0
  338. /ev/pro/w2/vertex/bottom/left/x/ds/morph/timegrain 20
  339. /ev/pro/w2/vertex/bottom/left/x/ds/morph/curve/quality 0
  340. /ev/pro/w2/vertex/bottom/left/x/ds/slave 0
  341. /ev/pro/w2/vertex/bottom/left/x/ds/morph/curve/resolution 100
  342. /ev/pro/w2/vertex/bottom/left/x/ds/morph/curve/weight 0
  343. /ev/pro/w2/vertex/bottom/left/x/ds/morph/curve/shape 0
  344. /ev/pro/w2/vertex/bottom/left/x/ds/morph/time 0
  345. /ev/pro/w2/vertex/bottom/left/x/ds/morph 0
  346. /ev/pro/w2/vertex/top/right/y/ds/occupy 0
  347. /ev/pro/w2/vertex/top/right/y/ds/delay 0
  348. /ev/pro/w2/vertex/top/right/y/ds/morph/timegrain 20
  349. /ev/pro/w2/vertex/top/right/y/ds/morph/curve/quality 0
  350. /ev/pro/w2/vertex/top/right/y/ds/slave 0
  351. /ev/pro/w2/vertex/top/right/y/ds/morph/curve/resolution 100
  352. /ev/pro/w2/vertex/top/right/y/ds/morph/curve/weight 0
  353. /ev/pro/w2/vertex/top/right/y/ds/morph/curve/shape 0
  354. /ev/pro/w2/vertex/top/right/y/ds/morph/time 0
  355. /ev/pro/w2/vertex/top/right/y/ds/morph 0
  356. /ev/pro/w2/vertex/top/right/x/ds/occupy 0
  357. /ev/pro/w2/vertex/top/right/x/ds/delay 0
  358. /ev/pro/w2/vertex/top/right/x/ds/morph/timegrain 20
  359. /ev/pro/w2/vertex/top/right/x/ds/morph/curve/quality 0
  360. /ev/pro/w2/vertex/top/right/x/ds/slave 0
  361. /ev/pro/w2/vertex/top/right/x/ds/morph/curve/resolution 100
  362. /ev/pro/w2/vertex/top/right/x/ds/morph/curve/weight 0
  363. /ev/pro/w2/vertex/top/right/x/ds/morph/curve/shape 0
  364. /ev/pro/w2/vertex/top/right/x/ds/morph/time 0
  365. /ev/pro/w2/vertex/top/right/x/ds/morph 0
  366. /ev/pro/w2/vertex/top/left/y/ds/occupy 0
  367. /ev/pro/w2/vertex/top/left/y/ds/delay 0
  368. /ev/pro/w2/vertex/top/left/y/ds/morph/timegrain 20
  369. /ev/pro/w2/vertex/top/left/y/ds/morph/curve/quality 0
  370. /ev/pro/w2/vertex/top/left/y/ds/slave 0
  371. /ev/pro/w2/vertex/top/left/y/ds/morph/curve/resolution 100
  372. /ev/pro/w2/vertex/top/left/y/ds/morph/curve/weight 0
  373. /ev/pro/w2/vertex/top/left/y/ds/morph/curve/shape 0
  374. /ev/pro/w2/vertex/top/left/y/ds/morph/time 0
  375. /ev/pro/w2/vertex/top/left/y/ds/morph 0
  376. /ev/pro/w2/vertex/top/left/x/ds/occupy 0
  377. /ev/pro/w2/vertex/top/left/x/ds/delay 0
  378. /ev/pro/w2/vertex/top/left/x/ds/morph/timegrain 20
  379. /ev/pro/w2/vertex/top/left/x/ds/morph/curve/quality 0
  380. /ev/pro/w2/vertex/top/left/x/ds/slave 0
  381. /ev/pro/w2/vertex/top/left/x/ds/morph/curve/resolution 100
  382. /ev/pro/w2/vertex/top/left/x/ds/morph/curve/weight 0
  383. /ev/pro/w2/vertex/top/left/x/ds/morph/curve/shape 0
  384. /ev/pro/w2/vertex/top/left/x/ds/morph/time 0
  385. /ev/pro/w2/vertex/top/left/x/ds/morph 0
  386. /ev/pro/w1/grid/res/y/ds/occupy 1
  387. /ev/pro/w1/grid/res/y/ds/delay 0
  388. /ev/pro/w1/grid/res/y/ds/slave 0
  389. /ev/pro/w1/grid/res/x/ds/occupy 1
  390. /ev/pro/w1/grid/res/x/ds/delay 0
  391. /ev/pro/w1/grid/res/x/ds/slave 0
  392. /ev/pro/w1/grid/width/ds/occupy 1
  393. /ev/pro/w1/grid/width/ds/delay 0
  394. /ev/pro/w1/grid/width/ds/slave 0
  395. /ev/pro/w1/grid/color/a/ds/occupy 1
  396. /ev/pro/w1/grid/color/a/ds/delay 0
  397. /ev/pro/w1/grid/color/a/ds/slave 0
  398. /ev/pro/w1/grid/color/v/ds/occupy 1
  399. /ev/pro/w1/grid/color/v/ds/delay 0
  400. /ev/pro/w1/grid/color/v/ds/slave 0
  401. /ev/pro/w1/grid/color/s/ds/occupy 1
  402. /ev/pro/w1/grid/color/s/ds/delay 0
  403. /ev/pro/w1/grid/color/s/ds/slave 0
  404. /ev/pro/w1/grid/color/h/ds/occupy 1
  405. /ev/pro/w1/grid/color/h/ds/delay 0
  406. /ev/pro/w1/grid/color/h/ds/slave 0
  407. /ev/pro/w1/grid/state/ds/occupy 0
  408. /ev/pro/w1/grid/state/ds/delay 0
  409. /ev/pro/w1/grid/state/ds/slave 0
  410. /ev/pro/w1/grid/tex/flip/vertical/ds/occupy 1
  411. /ev/pro/w1/grid/tex/flip/vertical/ds/delay 0
  412. /ev/pro/w1/grid/tex/flip/vertical/ds/slave 0
  413. /ev/pro/w1/grid/tex/flip/horizontal/ds/occupy 1
  414. /ev/pro/w1/grid/tex/flip/horizontal/ds/delay 0
  415. /ev/pro/w1/grid/tex/flip/horizontal/ds/slave 0
  416. /ev/pro/w1/grid/tex/filename/ds/occupy 1
  417. /ev/pro/w1/grid/tex/filename/ds/delay 0
  418. /ev/pro/w1/grid/tex/filename/ds/slave 0
  419. /ev/pro/w1/grid/tex/state/ds/occupy 1
  420. /ev/pro/w1/grid/tex/state/ds/delay 0
  421. /ev/pro/w1/grid/tex/state/ds/slave 0
  422. /ev/pro/w1/set_alpha/ds/occupy 1
  423. /ev/pro/w1/set_alpha/ds/delay 0
  424. /ev/pro/w1/set_alpha/ds/slave 0
  425. /ev/pro/w1/cursor/mode/ds/occupy 0
  426. /ev/pro/w1/cursor/mode/ds/delay 0
  427. /ev/pro/w1/cursor/mode/ds/slave 0
  428. /ev/pro/w1/state/ds/occupy 0
  429. /ev/pro/w1/state/ds/delay 0
  430. /ev/pro/w1/state/ds/slave 0
  431. /ev/pro/w1/texture/weight/y/ds/occupy 1
  432. /ev/pro/w1/texture/weight/y/ds/delay 0
  433. /ev/pro/w1/texture/weight/y/ds/morph/timegrain 20
  434. /ev/pro/w1/texture/weight/y/ds/morph/curve/quality 0
  435. /ev/pro/w1/texture/weight/y/ds/slave 0
  436. /ev/pro/w1/texture/weight/y/ds/morph/curve/resolution 100
  437. /ev/pro/w1/texture/weight/y/ds/morph/curve/weight 0
  438. /ev/pro/w1/texture/weight/y/ds/morph/curve/shape 0
  439. /ev/pro/w1/texture/weight/y/ds/morph/time 0
  440. /ev/pro/w1/texture/weight/y/ds/morph 0
  441. /ev/pro/w1/texture/weight/x/ds/occupy 1
  442. /ev/pro/w1/texture/weight/x/ds/delay 0
  443. /ev/pro/w1/texture/weight/x/ds/morph/timegrain 20
  444. /ev/pro/w1/texture/weight/x/ds/morph/curve/quality 0
  445. /ev/pro/w1/texture/weight/x/ds/slave 0
  446. /ev/pro/w1/texture/weight/x/ds/morph/curve/resolution 100
  447. /ev/pro/w1/texture/weight/x/ds/morph/curve/weight 0
  448. /ev/pro/w1/texture/weight/x/ds/morph/curve/shape 0
  449. /ev/pro/w1/texture/weight/x/ds/morph/time 0
  450. /ev/pro/w1/texture/weight/x/ds/morph 0
  451. /ev/pro/w1/shade/left/ds/occupy 0
  452. /ev/pro/w1/shade/left/ds/delay 0
  453. /ev/pro/w1/shade/left/ds/morph/timegrain 20
  454. /ev/pro/w1/shade/left/ds/morph/curve/quality 0
  455. /ev/pro/w1/shade/left/ds/slave 0
  456. /ev/pro/w1/shade/left/ds/morph/curve/resolution 100
  457. /ev/pro/w1/shade/left/ds/morph/curve/weight 0
  458. /ev/pro/w1/shade/left/ds/morph/curve/shape 0
  459. /ev/pro/w1/shade/left/ds/morph/time 0
  460. /ev/pro/w1/shade/left/ds/morph 0
  461. /ev/pro/w1/shade/bottom/ds/occupy 0
  462. /ev/pro/w1/shade/bottom/ds/delay 0
  463. /ev/pro/w1/shade/bottom/ds/morph/timegrain 20
  464. /ev/pro/w1/shade/bottom/ds/morph/curve/quality 0
  465. /ev/pro/w1/shade/bottom/ds/slave 0
  466. /ev/pro/w1/shade/bottom/ds/morph/curve/resolution 100
  467. /ev/pro/w1/shade/bottom/ds/morph/curve/weight 0
  468. /ev/pro/w1/shade/bottom/ds/morph/curve/shape 0
  469. /ev/pro/w1/shade/bottom/ds/morph/time 0
  470. /ev/pro/w1/shade/bottom/ds/morph 0
  471. /ev/pro/w1/shade/right/ds/occupy 0
  472. /ev/pro/w1/shade/right/ds/delay 0
  473. /ev/pro/w1/shade/right/ds/morph/timegrain 20
  474. /ev/pro/w1/shade/right/ds/morph/curve/quality 0
  475. /ev/pro/w1/shade/right/ds/slave 0
  476. /ev/pro/w1/shade/right/ds/morph/curve/resolution 100
  477. /ev/pro/w1/shade/right/ds/morph/curve/weight 0
  478. /ev/pro/w1/shade/right/ds/morph/curve/shape 0
  479. /ev/pro/w1/shade/right/ds/morph/time 0
  480. /ev/pro/w1/shade/right/ds/morph 0
  481. /ev/pro/w1/shade/top/ds/occupy 0
  482. /ev/pro/w1/shade/top/ds/delay 0
  483. /ev/pro/w1/shade/top/ds/morph/timegrain 20
  484. /ev/pro/w1/shade/top/ds/morph/curve/quality 0
  485. /ev/pro/w1/shade/top/ds/slave 0
  486. /ev/pro/w1/shade/top/ds/morph/curve/resolution 100
  487. /ev/pro/w1/shade/top/ds/morph/curve/weight 0
  488. /ev/pro/w1/shade/top/ds/morph/curve/shape 0
  489. /ev/pro/w1/shade/top/ds/morph/time 0
  490. /ev/pro/w1/shade/top/ds/morph 0
  491. /ev/pro/w1/texture/bottom/right/y/ds/occupy 0
  492. /ev/pro/w1/texture/bottom/right/y/ds/delay 0
  493. /ev/pro/w1/texture/bottom/right/y/ds/morph/timegrain 20
  494. /ev/pro/w1/texture/bottom/right/y/ds/morph/curve/quality 0
  495. /ev/pro/w1/texture/bottom/right/y/ds/slave 0
  496. /ev/pro/w1/texture/bottom/right/y/ds/morph/curve/resolution 100
  497. /ev/pro/w1/texture/bottom/right/y/ds/morph/curve/weight 0
  498. /ev/pro/w1/texture/bottom/right/y/ds/morph/curve/shape 0
  499. /ev/pro/w1/texture/bottom/right/y/ds/morph/time 0
  500. /ev/pro/w1/texture/bottom/right/y/ds/morph 0
  501. /ev/pro/w1/texture/bottom/right/x/ds/occupy 0
  502. /ev/pro/w1/texture/bottom/right/x/ds/delay 0
  503. /ev/pro/w1/texture/bottom/right/x/ds/morph/timegrain 20
  504. /ev/pro/w1/texture/bottom/right/x/ds/morph/curve/quality 0
  505. /ev/pro/w1/texture/bottom/right/x/ds/slave 0
  506. /ev/pro/w1/texture/bottom/right/x/ds/morph/curve/resolution 100
  507. /ev/pro/w1/texture/bottom/right/x/ds/morph/curve/weight 0
  508. /ev/pro/w1/texture/bottom/right/x/ds/morph/curve/shape 0
  509. /ev/pro/w1/texture/bottom/right/x/ds/morph/time 0
  510. /ev/pro/w1/texture/bottom/right/x/ds/morph 0
  511. /ev/pro/w1/texture/bottom/left/y/ds/occupy 0
  512. /ev/pro/w1/texture/bottom/left/y/ds/delay 0
  513. /ev/pro/w1/texture/bottom/left/y/ds/morph/timegrain 20
  514. /ev/pro/w1/texture/bottom/left/y/ds/morph/curve/quality 0
  515. /ev/pro/w1/texture/bottom/left/y/ds/slave 0
  516. /ev/pro/w1/texture/bottom/left/y/ds/morph/curve/resolution 100
  517. /ev/pro/w1/texture/bottom/left/y/ds/morph/curve/weight 0
  518. /ev/pro/w1/texture/bottom/left/y/ds/morph/curve/shape 0
  519. /ev/pro/w1/texture/bottom/left/y/ds/morph/time 0
  520. /ev/pro/w1/texture/bottom/left/y/ds/morph 0
  521. /ev/pro/w1/texture/bottom/left/x/ds/occupy 0
  522. /ev/pro/w1/texture/bottom/left/x/ds/delay 0
  523. /ev/pro/w1/texture/bottom/left/x/ds/morph/timegrain 20
  524. /ev/pro/w1/texture/bottom/left/x/ds/morph/curve/quality 0
  525. /ev/pro/w1/texture/bottom/left/x/ds/slave 0
  526. /ev/pro/w1/texture/bottom/left/x/ds/morph/curve/resolution 100
  527. /ev/pro/w1/texture/bottom/left/x/ds/morph/curve/weight 0
  528. /ev/pro/w1/texture/bottom/left/x/ds/morph/curve/shape 0
  529. /ev/pro/w1/texture/bottom/left/x/ds/morph/time 0
  530. /ev/pro/w1/texture/bottom/left/x/ds/morph 0
  531. /ev/pro/w1/texture/top/right/y/ds/occupy 0
  532. /ev/pro/w1/texture/top/right/y/ds/delay 0
  533. /ev/pro/w1/texture/top/right/y/ds/morph/timegrain 20
  534. /ev/pro/w1/texture/top/right/y/ds/morph/curve/quality 0
  535. /ev/pro/w1/texture/top/right/y/ds/slave 0
  536. /ev/pro/w1/texture/top/right/y/ds/morph/curve/resolution 100
  537. /ev/pro/w1/texture/top/right/y/ds/morph/curve/weight 0
  538. /ev/pro/w1/texture/top/right/y/ds/morph/curve/shape 0
  539. /ev/pro/w1/texture/top/right/y/ds/morph/time 0
  540. /ev/pro/w1/texture/top/right/y/ds/morph 0
  541. /ev/pro/w1/texture/top/right/x/ds/occupy 0
  542. /ev/pro/w1/texture/top/right/x/ds/delay 0
  543. /ev/pro/w1/texture/top/right/x/ds/morph/timegrain 20
  544. /ev/pro/w1/texture/top/right/x/ds/morph/curve/quality 0
  545. /ev/pro/w1/texture/top/right/x/ds/slave 0
  546. /ev/pro/w1/texture/top/right/x/ds/morph/curve/resolution 100
  547. /ev/pro/w1/texture/top/right/x/ds/morph/curve/weight 0
  548. /ev/pro/w1/texture/top/right/x/ds/morph/curve/shape 0
  549. /ev/pro/w1/texture/top/right/x/ds/morph/time 0
  550. /ev/pro/w1/texture/top/right/x/ds/morph 0
  551. /ev/pro/w1/texture/top/left/y/ds/occupy 0
  552. /ev/pro/w1/texture/top/left/y/ds/delay 0
  553. /ev/pro/w1/texture/top/left/y/ds/morph/timegrain 20
  554. /ev/pro/w1/texture/top/left/y/ds/morph/curve/quality 0
  555. /ev/pro/w1/texture/top/left/y/ds/slave 0
  556. /ev/pro/w1/texture/top/left/y/ds/morph/curve/resolution 100
  557. /ev/pro/w1/texture/top/left/y/ds/morph/curve/weight 0
  558. /ev/pro/w1/texture/top/left/y/ds/morph/curve/shape 0
  559. /ev/pro/w1/texture/top/left/y/ds/morph/time 0
  560. /ev/pro/w1/texture/top/left/y/ds/morph 0
  561. /ev/pro/w1/texture/top/left/x/ds/occupy 0
  562. /ev/pro/w1/texture/top/left/x/ds/delay 0
  563. /ev/pro/w1/texture/top/left/x/ds/morph/timegrain 20
  564. /ev/pro/w1/texture/top/left/x/ds/morph/curve/quality 0
  565. /ev/pro/w1/texture/top/left/x/ds/slave 0
  566. /ev/pro/w1/texture/top/left/x/ds/morph/curve/resolution 100
  567. /ev/pro/w1/texture/top/left/x/ds/morph/curve/weight 0
  568. /ev/pro/w1/texture/top/left/x/ds/morph/curve/shape 0
  569. /ev/pro/w1/texture/top/left/x/ds/morph/time 0
  570. /ev/pro/w1/texture/top/left/x/ds/morph 0
  571. /ev/pro/w1/vertex/bottom/right/y/ds/occupy 0
  572. /ev/pro/w1/vertex/bottom/right/y/ds/delay 0
  573. /ev/pro/w1/vertex/bottom/right/y/ds/morph/timegrain 20
  574. /ev/pro/w1/vertex/bottom/right/y/ds/morph/curve/quality 0
  575. /ev/pro/w1/vertex/bottom/right/y/ds/slave 0
  576. /ev/pro/w1/vertex/bottom/right/y/ds/morph/curve/resolution 100
  577. /ev/pro/w1/vertex/bottom/right/y/ds/morph/curve/weight 0
  578. /ev/pro/w1/vertex/bottom/right/y/ds/morph/curve/shape 0
  579. /ev/pro/w1/vertex/bottom/right/y/ds/morph/time 0
  580. /ev/pro/w1/vertex/bottom/right/y/ds/morph 0
  581. /ev/pro/w1/vertex/bottom/right/x/ds/occupy 0
  582. /ev/pro/w1/vertex/bottom/right/x/ds/delay 0
  583. /ev/pro/w1/vertex/bottom/right/x/ds/morph/timegrain 20
  584. /ev/pro/w1/vertex/bottom/right/x/ds/morph/curve/quality 0
  585. /ev/pro/w1/vertex/bottom/right/x/ds/slave 0
  586. /ev/pro/w1/vertex/bottom/right/x/ds/morph/curve/resolution 100
  587. /ev/pro/w1/vertex/bottom/right/x/ds/morph/curve/weight 0
  588. /ev/pro/w1/vertex/bottom/right/x/ds/morph/curve/shape 0
  589. /ev/pro/w1/vertex/bottom/right/x/ds/morph/time 0
  590. /ev/pro/w1/vertex/bottom/right/x/ds/morph 0
  591. /ev/pro/w1/vertex/bottom/left/y/ds/occupy 0
  592. /ev/pro/w1/vertex/bottom/left/y/ds/delay 0
  593. /ev/pro/w1/vertex/bottom/left/y/ds/morph/timegrain 20
  594. /ev/pro/w1/vertex/bottom/left/y/ds/morph/curve/quality 0
  595. /ev/pro/w1/vertex/bottom/left/y/ds/slave 0
  596. /ev/pro/w1/vertex/bottom/left/y/ds/morph/curve/resolution 100
  597. /ev/pro/w1/vertex/bottom/left/y/ds/morph/curve/weight 0
  598. /ev/pro/w1/vertex/bottom/left/y/ds/morph/curve/shape 0
  599. /ev/pro/w1/vertex/bottom/left/y/ds/morph/time 0
  600. /ev/pro/w1/vertex/bottom/left/y/ds/morph 0
  601. /ev/pro/w1/vertex/bottom/left/x/ds/occupy 0
  602. /ev/pro/w1/vertex/bottom/left/x/ds/delay 0
  603. /ev/pro/w1/vertex/bottom/left/x/ds/morph/timegrain 20
  604. /ev/pro/w1/vertex/bottom/left/x/ds/morph/curve/quality 0
  605. /ev/pro/w1/vertex/bottom/left/x/ds/slave 0
  606. /ev/pro/w1/vertex/bottom/left/x/ds/morph/curve/resolution 100
  607. /ev/pro/w1/vertex/bottom/left/x/ds/morph/curve/weight 0
  608. /ev/pro/w1/vertex/bottom/left/x/ds/morph/curve/shape 0
  609. /ev/pro/w1/vertex/bottom/left/x/ds/morph/time 0
  610. /ev/pro/w1/vertex/bottom/left/x/ds/morph 0
  611. /ev/pro/w1/vertex/top/right/y/ds/occupy 0
  612. /ev/pro/w1/vertex/top/right/y/ds/delay 0
  613. /ev/pro/w1/vertex/top/right/y/ds/morph/timegrain 20
  614. /ev/pro/w1/vertex/top/right/y/ds/morph/curve/quality 0
  615. /ev/pro/w1/vertex/top/right/y/ds/slave 0
  616. /ev/pro/w1/vertex/top/right/y/ds/morph/curve/resolution 100
  617. /ev/pro/w1/vertex/top/right/y/ds/morph/curve/weight 0
  618. /ev/pro/w1/vertex/top/right/y/ds/morph/curve/shape 0
  619. /ev/pro/w1/vertex/top/right/y/ds/morph/time 0
  620. /ev/pro/w1/vertex/top/right/y/ds/morph 0
  621. /ev/pro/w1/vertex/top/right/x/ds/occupy 0
  622. /ev/pro/w1/vertex/top/right/x/ds/delay 0
  623. /ev/pro/w1/vertex/top/right/x/ds/morph/timegrain 20
  624. /ev/pro/w1/vertex/top/right/x/ds/morph/curve/quality 0
  625. /ev/pro/w1/vertex/top/right/x/ds/slave 0
  626. /ev/pro/w1/vertex/top/right/x/ds/morph/curve/resolution 100
  627. /ev/pro/w1/vertex/top/right/x/ds/morph/curve/weight 0
  628. /ev/pro/w1/vertex/top/right/x/ds/morph/curve/shape 0
  629. /ev/pro/w1/vertex/top/right/x/ds/morph/time 0
  630. /ev/pro/w1/vertex/top/right/x/ds/morph 0
  631. /ev/pro/w1/vertex/top/left/y/ds/occupy 0
  632. /ev/pro/w1/vertex/top/left/y/ds/delay 0
  633. /ev/pro/w1/vertex/top/left/y/ds/morph/timegrain 20
  634. /ev/pro/w1/vertex/top/left/y/ds/morph/curve/quality 0
  635. /ev/pro/w1/vertex/top/left/y/ds/slave 0
  636. /ev/pro/w1/vertex/top/left/y/ds/morph/curve/resolution 100
  637. /ev/pro/w1/vertex/top/left/y/ds/morph/curve/weight 0
  638. /ev/pro/w1/vertex/top/left/y/ds/morph/curve/shape 0
  639. /ev/pro/w1/vertex/top/left/y/ds/morph/time 0
  640. /ev/pro/w1/vertex/top/left/y/ds/morph 0
  641. /ev/pro/w1/vertex/top/left/x/ds/occupy 0
  642. /ev/pro/w1/vertex/top/left/x/ds/delay 0
  643. /ev/pro/w1/vertex/top/left/x/ds/morph/timegrain 20
  644. /ev/pro/w1/vertex/top/left/x/ds/morph/curve/quality 0
  645. /ev/pro/w1/vertex/top/left/x/ds/slave 0
  646. /ev/pro/w1/vertex/top/left/x/ds/morph/curve/resolution 100
  647. /ev/pro/w1/vertex/top/left/x/ds/morph/curve/weight 0
  648. /ev/pro/w1/vertex/top/left/x/ds/morph/curve/shape 0
  649. /ev/pro/w1/vertex/top/left/x/ds/morph/time 0
  650. /ev/pro/w1/vertex/top/left/x/ds/morph 0
  651. /ev/pro/r/grid/res/y/ds/occupy 1
  652. /ev/pro/r/grid/res/y/ds/delay 0
  653. /ev/pro/r/grid/res/y/ds/slave 0
  654. /ev/pro/r/grid/res/x/ds/occupy 1
  655. /ev/pro/r/grid/res/x/ds/delay 0
  656. /ev/pro/r/grid/res/x/ds/slave 0
  657. /ev/pro/r/grid/width/ds/occupy 1
  658. /ev/pro/r/grid/width/ds/delay 0
  659. /ev/pro/r/grid/width/ds/slave 0
  660. /ev/pro/r/grid/color/a/ds/occupy 1
  661. /ev/pro/r/grid/color/a/ds/delay 0
  662. /ev/pro/r/grid/color/a/ds/slave 0
  663. /ev/pro/r/grid/color/v/ds/occupy 1
  664. /ev/pro/r/grid/color/v/ds/delay 0
  665. /ev/pro/r/grid/color/v/ds/slave 0
  666. /ev/pro/r/grid/color/s/ds/occupy 1
  667. /ev/pro/r/grid/color/s/ds/delay 0
  668. /ev/pro/r/grid/color/s/ds/slave 0
  669. /ev/pro/r/grid/color/h/ds/occupy 1
  670. /ev/pro/r/grid/color/h/ds/delay 0
  671. /ev/pro/r/grid/color/h/ds/slave 0
  672. /ev/pro/r/grid/state/ds/occupy 0
  673. /ev/pro/r/grid/state/ds/delay 0
  674. /ev/pro/r/grid/state/ds/slave 0
  675. /ev/pro/r/grid/tex/flip/vertical/ds/occupy 1
  676. /ev/pro/r/grid/tex/flip/vertical/ds/delay 0
  677. /ev/pro/r/grid/tex/flip/vertical/ds/slave 0
  678. /ev/pro/r/grid/tex/flip/horizontal/ds/occupy 1
  679. /ev/pro/r/grid/tex/flip/horizontal/ds/delay 0
  680. /ev/pro/r/grid/tex/flip/horizontal/ds/slave 0
  681. /ev/pro/r/grid/tex/filename/ds/occupy 1
  682. /ev/pro/r/grid/tex/filename/ds/delay 0
  683. /ev/pro/r/grid/tex/filename/ds/slave 0
  684. /ev/pro/r/grid/tex/state/ds/occupy 1
  685. /ev/pro/r/grid/tex/state/ds/delay 0
  686. /ev/pro/r/grid/tex/state/ds/slave 0
  687. /ev/pro/r/set_alpha/ds/occupy 1
  688. /ev/pro/r/set_alpha/ds/delay 0
  689. /ev/pro/r/set_alpha/ds/slave 0
  690. /ev/pro/r/cursor/mode/ds/occupy 0
  691. /ev/pro/r/cursor/mode/ds/delay 0
  692. /ev/pro/r/cursor/mode/ds/slave 0
  693. /ev/pro/r/state/ds/occupy 0
  694. /ev/pro/r/state/ds/delay 0
  695. /ev/pro/r/state/ds/slave 0
  696. /ev/pro/r/texture/weight/y/ds/occupy 1
  697. /ev/pro/r/texture/weight/y/ds/delay 0
  698. /ev/pro/r/texture/weight/y/ds/morph/timegrain 20
  699. /ev/pro/r/texture/weight/y/ds/morph/curve/quality 0
  700. /ev/pro/r/texture/weight/y/ds/slave 0
  701. /ev/pro/r/texture/weight/y/ds/morph/curve/resolution 100
  702. /ev/pro/r/texture/weight/y/ds/morph/curve/weight 0
  703. /ev/pro/r/texture/weight/y/ds/morph/curve/shape 0
  704. /ev/pro/r/texture/weight/y/ds/morph/time 0
  705. /ev/pro/r/texture/weight/y/ds/morph 0
  706. /ev/pro/r/texture/weight/x/ds/occupy 1
  707. /ev/pro/r/texture/weight/x/ds/delay 0
  708. /ev/pro/r/texture/weight/x/ds/morph/timegrain 20
  709. /ev/pro/r/texture/weight/x/ds/morph/curve/quality 0
  710. /ev/pro/r/texture/weight/x/ds/slave 0
  711. /ev/pro/r/texture/weight/x/ds/morph/curve/resolution 100
  712. /ev/pro/r/texture/weight/x/ds/morph/curve/weight 0
  713. /ev/pro/r/texture/weight/x/ds/morph/curve/shape 0
  714. /ev/pro/r/texture/weight/x/ds/morph/time 0
  715. /ev/pro/r/texture/weight/x/ds/morph 0
  716. /ev/pro/r/shade/left/ds/occupy 0
  717. /ev/pro/r/shade/left/ds/delay 0
  718. /ev/pro/r/shade/left/ds/morph/timegrain 20
  719. /ev/pro/r/shade/left/ds/morph/curve/quality 0
  720. /ev/pro/r/shade/left/ds/slave 0
  721. /ev/pro/r/shade/left/ds/morph/curve/resolution 100
  722. /ev/pro/r/shade/left/ds/morph/curve/weight 0
  723. /ev/pro/r/shade/left/ds/morph/curve/shape 0
  724. /ev/pro/r/shade/left/ds/morph/time 0
  725. /ev/pro/r/shade/left/ds/morph 0
  726. /ev/pro/r/shade/bottom/ds/occupy 0
  727. /ev/pro/r/shade/bottom/ds/delay 0
  728. /ev/pro/r/shade/bottom/ds/morph/timegrain 20
  729. /ev/pro/r/shade/bottom/ds/morph/curve/quality 0
  730. /ev/pro/r/shade/bottom/ds/slave 0
  731. /ev/pro/r/shade/bottom/ds/morph/curve/resolution 100
  732. /ev/pro/r/shade/bottom/ds/morph/curve/weight 0
  733. /ev/pro/r/shade/bottom/ds/morph/curve/shape 0
  734. /ev/pro/r/shade/bottom/ds/morph/time 0
  735. /ev/pro/r/shade/bottom/ds/morph 0
  736. /ev/pro/r/shade/right/ds/occupy 0
  737. /ev/pro/r/shade/right/ds/delay 0
  738. /ev/pro/r/shade/right/ds/morph/timegrain 20
  739. /ev/pro/r/shade/right/ds/morph/curve/quality 0
  740. /ev/pro/r/shade/right/ds/slave 0
  741. /ev/pro/r/shade/right/ds/morph/curve/resolution 100
  742. /ev/pro/r/shade/right/ds/morph/curve/weight 0
  743. /ev/pro/r/shade/right/ds/morph/curve/shape 0
  744. /ev/pro/r/shade/right/ds/morph/time 0
  745. /ev/pro/r/shade/right/ds/morph 0
  746. /ev/pro/r/shade/top/ds/occupy 0
  747. /ev/pro/r/shade/top/ds/delay 0
  748. /ev/pro/r/shade/top/ds/morph/timegrain 20
  749. /ev/pro/r/shade/top/ds/morph/curve/quality 0
  750. /ev/pro/r/shade/top/ds/slave 0
  751. /ev/pro/r/shade/top/ds/morph/curve/resolution 100
  752. /ev/pro/r/shade/top/ds/morph/curve/weight 0
  753. /ev/pro/r/shade/top/ds/morph/curve/shape 0
  754. /ev/pro/r/shade/top/ds/morph/time 0
  755. /ev/pro/r/shade/top/ds/morph 0
  756. /ev/pro/r/texture/bottom/right/y/ds/occupy 0
  757. /ev/pro/r/texture/bottom/right/y/ds/delay 0
  758. /ev/pro/r/texture/bottom/right/y/ds/morph/timegrain 20
  759. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/quality 0
  760. /ev/pro/r/texture/bottom/right/y/ds/slave 0
  761. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/resolution 100
  762. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/weight 0
  763. /ev/pro/r/texture/bottom/right/y/ds/morph/curve/shape 0
  764. /ev/pro/r/texture/bottom/right/y/ds/morph/time 0
  765. /ev/pro/r/texture/bottom/right/y/ds/morph 0
  766. /ev/pro/r/texture/bottom/right/x/ds/occupy 0
  767. /ev/pro/r/texture/bottom/right/x/ds/delay 0
  768. /ev/pro/r/texture/bottom/right/x/ds/morph/timegrain 20
  769. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/quality 0
  770. /ev/pro/r/texture/bottom/right/x/ds/slave 0
  771. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/resolution 100
  772. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/weight 0
  773. /ev/pro/r/texture/bottom/right/x/ds/morph/curve/shape 0
  774. /ev/pro/r/texture/bottom/right/x/ds/morph/time 0
  775. /ev/pro/r/texture/bottom/right/x/ds/morph 0
  776. /ev/pro/r/texture/bottom/left/y/ds/occupy 0
  777. /ev/pro/r/texture/bottom/left/y/ds/delay 0
  778. /ev/pro/r/texture/bottom/left/y/ds/morph/timegrain 20
  779. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/quality 0
  780. /ev/pro/r/texture/bottom/left/y/ds/slave 0
  781. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/resolution 100
  782. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/weight 0
  783. /ev/pro/r/texture/bottom/left/y/ds/morph/curve/shape 0
  784. /ev/pro/r/texture/bottom/left/y/ds/morph/time 0
  785. /ev/pro/r/texture/bottom/left/y/ds/morph 0
  786. /ev/pro/r/texture/bottom/left/x/ds/occupy 0
  787. /ev/pro/r/texture/bottom/left/x/ds/delay 0
  788. /ev/pro/r/texture/bottom/left/x/ds/morph/timegrain 20
  789. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/quality 0
  790. /ev/pro/r/texture/bottom/left/x/ds/slave 0
  791. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/resolution 100
  792. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/weight 0
  793. /ev/pro/r/texture/bottom/left/x/ds/morph/curve/shape 0
  794. /ev/pro/r/texture/bottom/left/x/ds/morph/time 0
  795. /ev/pro/r/texture/bottom/left/x/ds/morph 0
  796. /ev/pro/r/texture/top/right/y/ds/occupy 0
  797. /ev/pro/r/texture/top/right/y/ds/delay 0
  798. /ev/pro/r/texture/top/right/y/ds/morph/timegrain 20
  799. /ev/pro/r/texture/top/right/y/ds/morph/curve/quality 0
  800. /ev/pro/r/texture/top/right/y/ds/slave 0
  801. /ev/pro/r/texture/top/right/y/ds/morph/curve/resolution 100
  802. /ev/pro/r/texture/top/right/y/ds/morph/curve/weight 0
  803. /ev/pro/r/texture/top/right/y/ds/morph/curve/shape 0
  804. /ev/pro/r/texture/top/right/y/ds/morph/time 0
  805. /ev/pro/r/texture/top/right/y/ds/morph 0
  806. /ev/pro/r/texture/top/right/x/ds/occupy 0
  807. /ev/pro/r/texture/top/right/x/ds/delay 0
  808. /ev/pro/r/texture/top/right/x/ds/morph/timegrain 20
  809. /ev/pro/r/texture/top/right/x/ds/morph/curve/quality 0
  810. /ev/pro/r/texture/top/right/x/ds/slave 0
  811. /ev/pro/r/texture/top/right/x/ds/morph/curve/resolution 100
  812. /ev/pro/r/texture/top/right/x/ds/morph/curve/weight 0
  813. /ev/pro/r/texture/top/right/x/ds/morph/curve/shape 0
  814. /ev/pro/r/texture/top/right/x/ds/morph/time 0
  815. /ev/pro/r/texture/top/right/x/ds/morph 0
  816. /ev/pro/r/texture/top/left/y/ds/occupy 0
  817. /ev/pro/r/texture/top/left/y/ds/delay 0
  818. /ev/pro/r/texture/top/left/y/ds/morph/timegrain 20
  819. /ev/pro/r/texture/top/left/y/ds/morph/curve/quality 0
  820. /ev/pro/r/texture/top/left/y/ds/slave 0
  821. /ev/pro/r/texture/top/left/y/ds/morph/curve/resolution 100
  822. /ev/pro/r/texture/top/left/y/ds/morph/curve/weight 0
  823. /ev/pro/r/texture/top/left/y/ds/morph/curve/shape 0
  824. /ev/pro/r/texture/top/left/y/ds/morph/time 0
  825. /ev/pro/r/texture/top/left/y/ds/morph 0
  826. /ev/pro/r/texture/top/left/x/ds/occupy 0
  827. /ev/pro/r/texture/top/left/x/ds/delay 0
  828. /ev/pro/r/texture/top/left/x/ds/morph/timegrain 20
  829. /ev/pro/r/texture/top/left/x/ds/morph/curve/quality 0
  830. /ev/pro/r/texture/top/left/x/ds/slave 0
  831. /ev/pro/r/texture/top/left/x/ds/morph/curve/resolution 100
  832. /ev/pro/r/texture/top/left/x/ds/morph/curve/weight 0
  833. /ev/pro/r/texture/top/left/x/ds/morph/curve/shape 0
  834. /ev/pro/r/texture/top/left/x/ds/morph/time 0
  835. /ev/pro/r/texture/top/left/x/ds/morph 0
  836. /ev/pro/r/vertex/bottom/right/y/ds/occupy 0
  837. /ev/pro/r/vertex/bottom/right/y/ds/delay 0
  838. /ev/pro/r/vertex/bottom/right/y/ds/morph/timegrain 20
  839. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/quality 0
  840. /ev/pro/r/vertex/bottom/right/y/ds/slave 0
  841. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/resolution 100
  842. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/weight 0
  843. /ev/pro/r/vertex/bottom/right/y/ds/morph/curve/shape 0
  844. /ev/pro/r/vertex/bottom/right/y/ds/morph/time 0
  845. /ev/pro/r/vertex/bottom/right/y/ds/morph 0
  846. /ev/pro/r/vertex/bottom/right/x/ds/occupy 0
  847. /ev/pro/r/vertex/bottom/right/x/ds/delay 0
  848. /ev/pro/r/vertex/bottom/right/x/ds/morph/timegrain 20
  849. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/quality 0
  850. /ev/pro/r/vertex/bottom/right/x/ds/slave 0
  851. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/resolution 100
  852. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/weight 0
  853. /ev/pro/r/vertex/bottom/right/x/ds/morph/curve/shape 0
  854. /ev/pro/r/vertex/bottom/right/x/ds/morph/time 0
  855. /ev/pro/r/vertex/bottom/right/x/ds/morph 0
  856. /ev/pro/r/vertex/bottom/left/y/ds/occupy 0
  857. /ev/pro/r/vertex/bottom/left/y/ds/delay 0
  858. /ev/pro/r/vertex/bottom/left/y/ds/morph/timegrain 20
  859. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/quality 0
  860. /ev/pro/r/vertex/bottom/left/y/ds/slave 0
  861. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/resolution 100
  862. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/weight 0
  863. /ev/pro/r/vertex/bottom/left/y/ds/morph/curve/shape 0
  864. /ev/pro/r/vertex/bottom/left/y/ds/morph/time 0
  865. /ev/pro/r/vertex/bottom/left/y/ds/morph 0
  866. /ev/pro/r/vertex/bottom/left/x/ds/occupy 0
  867. /ev/pro/r/vertex/bottom/left/x/ds/delay 0
  868. /ev/pro/r/vertex/bottom/left/x/ds/morph/timegrain 20
  869. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/quality 0
  870. /ev/pro/r/vertex/bottom/left/x/ds/slave 0
  871. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/resolution 100
  872. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/weight 0
  873. /ev/pro/r/vertex/bottom/left/x/ds/morph/curve/shape 0
  874. /ev/pro/r/vertex/bottom/left/x/ds/morph/time 0
  875. /ev/pro/r/vertex/bottom/left/x/ds/morph 0
  876. /ev/pro/r/vertex/top/right/y/ds/occupy 0
  877. /ev/pro/r/vertex/top/right/y/ds/delay 0
  878. /ev/pro/r/vertex/top/right/y/ds/morph/timegrain 20
  879. /ev/pro/r/vertex/top/right/y/ds/morph/curve/quality 0
  880. /ev/pro/r/vertex/top/right/y/ds/slave 0
  881. /ev/pro/r/vertex/top/right/y/ds/morph/curve/resolution 100
  882. /ev/pro/r/vertex/top/right/y/ds/morph/curve/weight 0
  883. /ev/pro/r/vertex/top/right/y/ds/morph/curve/shape 0
  884. /ev/pro/r/vertex/top/right/y/ds/morph/time 0
  885. /ev/pro/r/vertex/top/right/y/ds/morph 0
  886. /ev/pro/r/vertex/top/right/x/ds/occupy 0
  887. /ev/pro/r/vertex/top/right/x/ds/delay 0
  888. /ev/pro/r/vertex/top/right/x/ds/morph/timegrain 20
  889. /ev/pro/r/vertex/top/right/x/ds/morph/curve/quality 0
  890. /ev/pro/r/vertex/top/right/x/ds/slave 0
  891. /ev/pro/r/vertex/top/right/x/ds/morph/curve/resolution 100
  892. /ev/pro/r/vertex/top/right/x/ds/morph/curve/weight 0
  893. /ev/pro/r/vertex/top/right/x/ds/morph/curve/shape 0
  894. /ev/pro/r/vertex/top/right/x/ds/morph/time 0
  895. /ev/pro/r/vertex/top/right/x/ds/morph 0
  896. /ev/pro/r/vertex/top/left/y/ds/occupy 0
  897. /ev/pro/r/vertex/top/left/y/ds/delay 0
  898. /ev/pro/r/vertex/top/left/y/ds/morph/timegrain 20
  899. /ev/pro/r/vertex/top/left/y/ds/morph/curve/quality 0
  900. /ev/pro/r/vertex/top/left/y/ds/slave 0
  901. /ev/pro/r/vertex/top/left/y/ds/morph/curve/resolution 100
  902. /ev/pro/r/vertex/top/left/y/ds/morph/curve/weight 0
  903. /ev/pro/r/vertex/top/left/y/ds/morph/curve/shape 0
  904. /ev/pro/r/vertex/top/left/y/ds/morph/time 0
  905. /ev/pro/r/vertex/top/left/y/ds/morph 0
  906. /ev/pro/r/vertex/top/left/x/ds/occupy 0
  907. /ev/pro/r/vertex/top/left/x/ds/delay 0
  908. /ev/pro/r/vertex/top/left/x/ds/morph/timegrain 20
  909. /ev/pro/r/vertex/top/left/x/ds/morph/curve/quality 0
  910. /ev/pro/r/vertex/top/left/x/ds/slave 0
  911. /ev/pro/r/vertex/top/left/x/ds/morph/curve/resolution 100
  912. /ev/pro/r/vertex/top/left/x/ds/morph/curve/weight 0
  913. /ev/pro/r/vertex/top/left/x/ds/morph/curve/shape 0
  914. /ev/pro/r/vertex/top/left/x/ds/morph/time 0
  915. /ev/pro/r/vertex/top/left/x/ds/morph 0
  916. /ev/pro/c/grid/res/y/ds/occupy 1
  917. /ev/pro/c/grid/res/y/ds/delay 0
  918. /ev/pro/c/grid/res/y/ds/slave 0
  919. /ev/pro/c/grid/res/x/ds/occupy 1
  920. /ev/pro/c/grid/res/x/ds/delay 0
  921. /ev/pro/c/grid/res/x/ds/slave 0
  922. /ev/pro/c/grid/width/ds/occupy 1
  923. /ev/pro/c/grid/width/ds/delay 0
  924. /ev/pro/c/grid/width/ds/slave 0
  925. /ev/pro/c/grid/color/a/ds/occupy 1
  926. /ev/pro/c/grid/color/a/ds/delay 0
  927. /ev/pro/c/grid/color/a/ds/slave 0
  928. /ev/pro/c/grid/color/v/ds/occupy 1
  929. /ev/pro/c/grid/color/v/ds/delay 0
  930. /ev/pro/c/grid/color/v/ds/slave 0
  931. /ev/pro/c/grid/color/s/ds/occupy 1
  932. /ev/pro/c/grid/color/s/ds/delay 0
  933. /ev/pro/c/grid/color/s/ds/slave 0
  934. /ev/pro/c/grid/color/h/ds/occupy 1
  935. /ev/pro/c/grid/color/h/ds/delay 0
  936. /ev/pro/c/grid/color/h/ds/slave 0
  937. /ev/pro/c/grid/state/ds/occupy 0
  938. /ev/pro/c/grid/state/ds/delay 0
  939. /ev/pro/c/grid/state/ds/slave 0
  940. /ev/pro/c/grid/tex/flip/vertical/ds/occupy 1
  941. /ev/pro/c/grid/tex/flip/vertical/ds/delay 0
  942. /ev/pro/c/grid/tex/flip/vertical/ds/slave 0
  943. /ev/pro/c/grid/tex/flip/horizontal/ds/occupy 1
  944. /ev/pro/c/grid/tex/flip/horizontal/ds/delay 0
  945. /ev/pro/c/grid/tex/flip/horizontal/ds/slave 0
  946. /ev/pro/c/grid/tex/filename/ds/occupy 1
  947. /ev/pro/c/grid/tex/filename/ds/delay 0
  948. /ev/pro/c/grid/tex/filename/ds/slave 0
  949. /ev/pro/c/grid/tex/state/ds/occupy 1
  950. /ev/pro/c/grid/tex/state/ds/delay 0
  951. /ev/pro/c/grid/tex/state/ds/slave 0
  952. /ev/pro/c/set_alpha/ds/occupy 1
  953. /ev/pro/c/set_alpha/ds/delay 0
  954. /ev/pro/c/set_alpha/ds/slave 0
  955. /ev/pro/c/cursor/mode/ds/occupy 0
  956. /ev/pro/c/cursor/mode/ds/delay 0
  957. /ev/pro/c/cursor/mode/ds/slave 0
  958. /ev/pro/c/state/ds/occupy 0
  959. /ev/pro/c/state/ds/delay 0
  960. /ev/pro/c/state/ds/slave 0
  961. /ev/pro/c/texture/weight/y/ds/occupy 1
  962. /ev/pro/c/texture/weight/y/ds/delay 0
  963. /ev/pro/c/texture/weight/y/ds/morph/timegrain 20
  964. /ev/pro/c/texture/weight/y/ds/morph/curve/quality 0
  965. /ev/pro/c/texture/weight/y/ds/slave 0
  966. /ev/pro/c/texture/weight/y/ds/morph/curve/resolution 100
  967. /ev/pro/c/texture/weight/y/ds/morph/curve/weight 0
  968. /ev/pro/c/texture/weight/y/ds/morph/curve/shape 0
  969. /ev/pro/c/texture/weight/y/ds/morph/time 0
  970. /ev/pro/c/texture/weight/y/ds/morph 0
  971. /ev/pro/c/texture/weight/x/ds/occupy 1
  972. /ev/pro/c/texture/weight/x/ds/delay 0
  973. /ev/pro/c/texture/weight/x/ds/morph/timegrain 20
  974. /ev/pro/c/texture/weight/x/ds/morph/curve/quality 0
  975. /ev/pro/c/texture/weight/x/ds/slave 0
  976. /ev/pro/c/texture/weight/x/ds/morph/curve/resolution 100
  977. /ev/pro/c/texture/weight/x/ds/morph/curve/weight 0
  978. /ev/pro/c/texture/weight/x/ds/morph/curve/shape 0
  979. /ev/pro/c/texture/weight/x/ds/morph/time 0
  980. /ev/pro/c/texture/weight/x/ds/morph 0
  981. /ev/pro/c/shade/left/ds/occupy 0
  982. /ev/pro/c/shade/left/ds/delay 0
  983. /ev/pro/c/shade/left/ds/morph/timegrain 20
  984. /ev/pro/c/shade/left/ds/morph/curve/quality 0
  985. /ev/pro/c/shade/left/ds/slave 0
  986. /ev/pro/c/shade/left/ds/morph/curve/resolution 100
  987. /ev/pro/c/shade/left/ds/morph/curve/weight 0
  988. /ev/pro/c/shade/left/ds/morph/curve/shape 0
  989. /ev/pro/c/shade/left/ds/morph/time 0
  990. /ev/pro/c/shade/left/ds/morph 0
  991. /ev/pro/c/shade/bottom/ds/occupy 0
  992. /ev/pro/c/shade/bottom/ds/delay 0
  993. /ev/pro/c/shade/bottom/ds/morph/timegrain 20
  994. /ev/pro/c/shade/bottom/ds/morph/curve/quality 0
  995. /ev/pro/c/shade/bottom/ds/slave 0
  996. /ev/pro/c/shade/bottom/ds/morph/curve/resolution 100
  997. /ev/pro/c/shade/bottom/ds/morph/curve/weight 0
  998. /ev/pro/c/shade/bottom/ds/morph/curve/shape 0
  999. /ev/pro/c/shade/bottom/ds/morph/time 0
  1000. /ev/pro/c/shade/bottom/ds/morph 0
  1001. /ev/pro/c/shade/right/ds/occupy 0
  1002. /ev/pro/c/shade/right/ds/delay 0
  1003. /ev/pro/c/shade/right/ds/morph/timegrain 20
  1004. /ev/pro/c/shade/right/ds/morph/curve/quality 0
  1005. /ev/pro/c/shade/right/ds/slave 0
  1006. /ev/pro/c/shade/right/ds/morph/curve/resolution 100
  1007. /ev/pro/c/shade/right/ds/morph/curve/weight 0
  1008. /ev/pro/c/shade/right/ds/morph/curve/shape 0
  1009. /ev/pro/c/shade/right/ds/morph/time 0
  1010. /ev/pro/c/shade/right/ds/morph 0
  1011. /ev/pro/c/shade/top/ds/occupy 0
  1012. /ev/pro/c/shade/top/ds/delay 0
  1013. /ev/pro/c/shade/top/ds/morph/timegrain 20
  1014. /ev/pro/c/shade/top/ds/morph/curve/quality 0
  1015. /ev/pro/c/shade/top/ds/slave 0
  1016. /ev/pro/c/shade/top/ds/morph/curve/resolution 100
  1017. /ev/pro/c/shade/top/ds/morph/curve/weight 0
  1018. /ev/pro/c/shade/top/ds/morph/curve/shape 0
  1019. /ev/pro/c/shade/top/ds/morph/time 0
  1020. /ev/pro/c/shade/top/ds/morph 0
  1021. /ev/pro/c/texture/bottom/right/y/ds/occupy 0
  1022. /ev/pro/c/texture/bottom/right/y/ds/delay 0
  1023. /ev/pro/c/texture/bottom/right/y/ds/morph/timegrain 20
  1024. /ev/pro/c/texture/bottom/right/y/ds/morph/curve/quality 0
  1025. /ev/pro/c/texture/bottom/right/y/ds/slave 0
  1026. /ev/pro/c/texture/bottom/right/y/ds/morph/curve/resolution 100
  1027. /ev/pro/c/texture/bottom/right/y/ds/morph/curve/weight 0
  1028. /ev/pro/c/texture/bottom/right/y/ds/morph/curve/shape 0
  1029. /ev/pro/c/texture/bottom/right/y/ds/morph/time 0
  1030. /ev/pro/c/texture/bottom/right/y/ds/morph 0
  1031. /ev/pro/c/texture/bottom/right/x/ds/occupy 0
  1032. /ev/pro/c/texture/bottom/right/x/ds/delay 0
  1033. /ev/pro/c/texture/bottom/right/x/ds/morph/timegrain 20
  1034. /ev/pro/c/texture/bottom/right/x/ds/morph/curve/quality 0
  1035. /ev/pro/c/texture/bottom/right/x/ds/slave 0
  1036. /ev/pro/c/texture/bottom/right/x/ds/morph/curve/resolution 100
  1037. /ev/pro/c/texture/bottom/right/x/ds/morph/curve/weight 0
  1038. /ev/pro/c/texture/bottom/right/x/ds/morph/curve/shape 0
  1039. /ev/pro/c/texture/bottom/right/x/ds/morph/time 0
  1040. /ev/pro/c/texture/bottom/right/x/ds/morph 0
  1041. /ev/pro/c/texture/bottom/left/y/ds/occupy 0
  1042. /ev/pro/c/texture/bottom/left/y/ds/delay 0
  1043. /ev/pro/c/texture/bottom/left/y/ds/morph/timegrain 20
  1044. /ev/pro/c/texture/bottom/left/y/ds/morph/curve/quality 0
  1045. /ev/pro/c/texture/bottom/left/y/ds/slave 0
  1046. /ev/pro/c/texture/bottom/left/y/ds/morph/curve/resolution 100
  1047. /ev/pro/c/texture/bottom/left/y/ds/morph/curve/weight 0
  1048. /ev/pro/c/texture/bottom/left/y/ds/morph/curve/shape 0
  1049. /ev/pro/c/texture/bottom/left/y/ds/morph/time 0
  1050. /ev/pro/c/texture/bottom/left/y/ds/morph 0
  1051. /ev/pro/c/texture/bottom/left/x/ds/occupy 0
  1052. /ev/pro/c/texture/bottom/left/x/ds/delay 0
  1053. /ev/pro/c/texture/bottom/left/x/ds/morph/timegrain 20
  1054. /ev/pro/c/texture/bottom/left/x/ds/morph/curve/quality 0
  1055. /ev/pro/c/texture/bottom/left/x/ds/slave 0
  1056. /ev/pro/c/texture/bottom/left/x/ds/morph/curve/resolution 100
  1057. /ev/pro/c/texture/bottom/left/x/ds/morph/curve/weight 0
  1058. /ev/pro/c/texture/bottom/left/x/ds/morph/curve/shape 0
  1059. /ev/pro/c/texture/bottom/left/x/ds/morph/time 0
  1060. /ev/pro/c/texture/bottom/left/x/ds/morph 0
  1061. /ev/pro/c/texture/top/right/y/ds/occupy 0
  1062. /ev/pro/c/texture/top/right/y/ds/delay 0
  1063. /ev/pro/c/texture/top/right/y/ds/morph/timegrain 20
  1064. /ev/pro/c/texture/top/right/y/ds/morph/curve/quality 0
  1065. /ev/pro/c/texture/top/right/y/ds/slave 0
  1066. /ev/pro/c/texture/top/right/y/ds/morph/curve/resolution 100
  1067. /ev/pro/c/texture/top/right/y/ds/morph/curve/weight 0
  1068. /ev/pro/c/texture/top/right/y/ds/morph/curve/shape 0
  1069. /ev/pro/c/texture/top/right/y/ds/morph/time 0
  1070. /ev/pro/c/texture/top/right/y/ds/morph 0
  1071. /ev/pro/c/texture/top/right/x/ds/occupy 0
  1072. /ev/pro/c/texture/top/right/x/ds/delay 0
  1073. /ev/pro/c/texture/top/right/x/ds/morph/timegrain 20
  1074. /ev/pro/c/texture/top/right/x/ds/morph/curve/quality 0
  1075. /ev/pro/c/texture/top/right/x/ds/slave 0
  1076. /ev/pro/c/texture/top/right/x/ds/morph/curve/resolution 100
  1077. /ev/pro/c/texture/top/right/x/ds/morph/curve/weight 0
  1078. /ev/pro/c/texture/top/right/x/ds/morph/curve/shape 0
  1079. /ev/pro/c/texture/top/right/x/ds/morph/time 0
  1080. /ev/pro/c/texture/top/right/x/ds/morph 0
  1081. /ev/pro/c/texture/top/left/y/ds/occupy 0
  1082. /ev/pro/c/texture/top/left/y/ds/delay 0
  1083. /ev/pro/c/texture/top/left/y/ds/morph/timegrain 20
  1084. /ev/pro/c/texture/top/left/y/ds/morph/curve/quality 0
  1085. /ev/pro/c/texture/top/left/y/ds/slave 0
  1086. /ev/pro/c/texture/top/left/y/ds/morph/curve/resolution 100
  1087. /ev/pro/c/texture/top/left/y/ds/morph/curve/weight 0
  1088. /ev/pro/c/texture/top/left/y/ds/morph/curve/shape 0
  1089. /ev/pro/c/texture/top/left/y/ds/morph/time 0
  1090. /ev/pro/c/texture/top/left/y/ds/morph 0
  1091. /ev/pro/c/texture/top/left/x/ds/occupy 0
  1092. /ev/pro/c/texture/top/left/x/ds/delay 0
  1093. /ev/pro/c/texture/top/left/x/ds/morph/timegrain 20
  1094. /ev/pro/c/texture/top/left/x/ds/morph/curve/quality 0
  1095. /ev/pro/c/texture/top/left/x/ds/slave 0
  1096. /ev/pro/c/texture/top/left/x/ds/morph/curve/resolution 100
  1097. /ev/pro/c/texture/top/left/x/ds/morph/curve/weight 0
  1098. /ev/pro/c/texture/top/left/x/ds/morph/curve/shape 0
  1099. /ev/pro/c/texture/top/left/x/ds/morph/time 0
  1100. /ev/pro/c/texture/top/left/x/ds/morph 0
  1101. /ev/pro/c/vertex/bottom/right/y/ds/occupy 0
  1102. /ev/pro/c/vertex/bottom/right/y/ds/delay 0
  1103. /ev/pro/c/vertex/bottom/right/y/ds/morph/timegrain 20
  1104. /ev/pro/c/vertex/bottom/right/y/ds/morph/curve/quality 0
  1105. /ev/pro/c/vertex/bottom/right/y/ds/slave 0
  1106. /ev/pro/c/vertex/bottom/right/y/ds/morph/curve/resolution 100
  1107. /ev/pro/c/vertex/bottom/right/y/ds/morph/curve/weight 0
  1108. /ev/pro/c/vertex/bottom/right/y/ds/morph/curve/shape 0
  1109. /ev/pro/c/vertex/bottom/right/y/ds/morph/time 0
  1110. /ev/pro/c/vertex/bottom/right/y/ds/morph 0
  1111. /ev/pro/c/vertex/bottom/right/x/ds/occupy 0
  1112. /ev/pro/c/vertex/bottom/right/x/ds/delay 0
  1113. /ev/pro/c/vertex/bottom/right/x/ds/morph/timegrain 20
  1114. /ev/pro/c/vertex/bottom/right/x/ds/morph/curve/quality 0
  1115. /ev/pro/c/vertex/bottom/right/x/ds/slave 0
  1116. /ev/pro/c/vertex/bottom/right/x/ds/morph/curve/resolution 100
  1117. /ev/pro/c/vertex/bottom/right/x/ds/morph/curve/weight 0
  1118. /ev/pro/c/vertex/bottom/right/x/ds/morph/curve/shape 0
  1119. /ev/pro/c/vertex/bottom/right/x/ds/morph/time 0
  1120. /ev/pro/c/vertex/bottom/right/x/ds/morph 0
  1121. /ev/pro/c/vertex/bottom/left/y/ds/occupy 0
  1122. /ev/pro/c/vertex/bottom/left/y/ds/delay 0
  1123. /ev/pro/c/vertex/bottom/left/y/ds/morph/timegrain 20
  1124. /ev/pro/c/vertex/bottom/left/y/ds/morph/curve/quality 0
  1125. /ev/pro/c/vertex/bottom/left/y/ds/slave 0
  1126. /ev/pro/c/vertex/bottom/left/y/ds/morph/curve/resolution 100
  1127. /ev/pro/c/vertex/bottom/left/y/ds/morph/curve/weight 0
  1128. /ev/pro/c/vertex/bottom/left/y/ds/morph/curve/shape 0
  1129. /ev/pro/c/vertex/bottom/left/y/ds/morph/time 0
  1130. /ev/pro/c/vertex/bottom/left/y/ds/morph 0
  1131. /ev/pro/c/vertex/bottom/left/x/ds/occupy 0
  1132. /ev/pro/c/vertex/bottom/left/x/ds/delay 0
  1133. /ev/pro/c/vertex/bottom/left/x/ds/morph/timegrain 20
  1134. /ev/pro/c/vertex/bottom/left/x/ds/morph/curve/quality 0
  1135. /ev/pro/c/vertex/bottom/left/x/ds/slave 0
  1136. /ev/pro/c/vertex/bottom/left/x/ds/morph/curve/resolution 100
  1137. /ev/pro/c/vertex/bottom/left/x/ds/morph/curve/weight 0
  1138. /ev/pro/c/vertex/bottom/left/x/ds/morph/curve/shape 0
  1139. /ev/pro/c/vertex/bottom/left/x/ds/morph/time 0
  1140. /ev/pro/c/vertex/bottom/left/x/ds/morph 0
  1141. /ev/pro/c/vertex/top/right/y/ds/occupy 0
  1142. /ev/pro/c/vertex/top/right/y/ds/delay 0
  1143. /ev/pro/c/vertex/top/right/y/ds/morph/timegrain 20
  1144. /ev/pro/c/vertex/top/right/y/ds/morph/curve/quality 0
  1145. /ev/pro/c/vertex/top/right/y/ds/slave 0
  1146. /ev/pro/c/vertex/top/right/y/ds/morph/curve/resolution 100
  1147. /ev/pro/c/vertex/top/right/y/ds/morph/curve/weight 0
  1148. /ev/pro/c/vertex/top/right/y/ds/morph/curve/shape 0
  1149. /ev/pro/c/vertex/top/right/y/ds/morph/time 0
  1150. /ev/pro/c/vertex/top/right/y/ds/morph 0
  1151. /ev/pro/c/vertex/top/right/x/ds/occupy 0
  1152. /ev/pro/c/vertex/top/right/x/ds/delay 0
  1153. /ev/pro/c/vertex/top/right/x/ds/morph/timegrain 20
  1154. /ev/pro/c/vertex/top/right/x/ds/morph/curve/quality 0
  1155. /ev/pro/c/vertex/top/right/x/ds/slave 0
  1156. /ev/pro/c/vertex/top/right/x/ds/morph/curve/resolution 100
  1157. /ev/pro/c/vertex/top/right/x/ds/morph/curve/weight 0
  1158. /ev/pro/c/vertex/top/right/x/ds/morph/curve/shape 0
  1159. /ev/pro/c/vertex/top/right/x/ds/morph/time 0
  1160. /ev/pro/c/vertex/top/right/x/ds/morph 0
  1161. /ev/pro/c/vertex/top/left/y/ds/occupy 0
  1162. /ev/pro/c/vertex/top/left/y/ds/delay 0
  1163. /ev/pro/c/vertex/top/left/y/ds/morph/timegrain 20
  1164. /ev/pro/c/vertex/top/left/y/ds/morph/curve/quality 0
  1165. /ev/pro/c/vertex/top/left/y/ds/slave 0
  1166. /ev/pro/c/vertex/top/left/y/ds/morph/curve/resolution 100
  1167. /ev/pro/c/vertex/top/left/y/ds/morph/curve/weight 0
  1168. /ev/pro/c/vertex/top/left/y/ds/morph/curve/shape 0
  1169. /ev/pro/c/vertex/top/left/y/ds/morph/time 0
  1170. /ev/pro/c/vertex/top/left/y/ds/morph 0
  1171. /ev/pro/c/vertex/top/left/x/ds/occupy 0
  1172. /ev/pro/c/vertex/top/left/x/ds/delay 0
  1173. /ev/pro/c/vertex/top/left/x/ds/morph/timegrain 20
  1174. /ev/pro/c/vertex/top/left/x/ds/morph/curve/quality 0
  1175. /ev/pro/c/vertex/top/left/x/ds/slave 0
  1176. /ev/pro/c/vertex/top/left/x/ds/morph/curve/resolution 100
  1177. /ev/pro/c/vertex/top/left/x/ds/morph/curve/weight 0
  1178. /ev/pro/c/vertex/top/left/x/ds/morph/curve/shape 0
  1179. /ev/pro/c/vertex/top/left/x/ds/morph/time 0
  1180. /ev/pro/c/vertex/top/left/x/ds/morph 0
  1181. /ev/pro/l/grid/res/y/ds/occupy 1
  1182. /ev/pro/l/grid/res/y/ds/delay 0
  1183. /ev/pro/l/grid/res/y/ds/slave 0
  1184. /ev/pro/l/grid/res/x/ds/occupy 1
  1185. /ev/pro/l/grid/res/x/ds/delay 0
  1186. /ev/pro/l/grid/res/x/ds/slave 0
  1187. /ev/pro/l/grid/width/ds/occupy 1
  1188. /ev/pro/l/grid/width/ds/delay 0
  1189. /ev/pro/l/grid/width/ds/slave 0
  1190. /ev/pro/l/grid/color/a/ds/occupy 1
  1191. /ev/pro/l/grid/color/a/ds/delay 0
  1192. /ev/pro/l/grid/color/a/ds/slave 0
  1193. /ev/pro/l/grid/color/v/ds/occupy 1
  1194. /ev/pro/l/grid/color/v/ds/delay 0
  1195. /ev/pro/l/grid/color/v/ds/slave 0
  1196. /ev/pro/l/grid/color/s/ds/occupy 1
  1197. /ev/pro/l/grid/color/s/ds/delay 0
  1198. /ev/pro/l/grid/color/s/ds/slave 0
  1199. /ev/pro/l/grid/color/h/ds/occupy 1
  1200. /ev/pro/l/grid/color/h/ds/delay 0
  1201. /ev/pro/l/grid/color/h/ds/slave 0
  1202. /ev/pro/l/grid/state/ds/occupy 0
  1203. /ev/pro/l/grid/state/ds/delay 0
  1204. /ev/pro/l/grid/state/ds/slave 0
  1205. /ev/pro/l/grid/tex/flip/vertical/ds/occupy 1
  1206. /ev/pro/l/grid/tex/flip/vertical/ds/delay 0
  1207. /ev/pro/l/grid/tex/flip/vertical/ds/slave 0
  1208. /ev/pro/l/grid/tex/flip/horizontal/ds/occupy 1
  1209. /ev/pro/l/grid/tex/flip/horizontal/ds/delay 0
  1210. /ev/pro/l/grid/tex/flip/horizontal/ds/slave 0
  1211. /ev/pro/l/grid/tex/filename/ds/occupy 1
  1212. /ev/pro/l/grid/tex/filename/ds/delay 0
  1213. /ev/pro/l/grid/tex/filename/ds/slave 0
  1214. /ev/pro/l/grid/tex/state/ds/occupy 1
  1215. /ev/pro/l/grid/tex/state/ds/delay 0
  1216. /ev/pro/l/grid/tex/state/ds/slave 0
  1217. /ev/pro/l/set_alpha/ds/occupy 1
  1218. /ev/pro/l/set_alpha/ds/delay 0
  1219. /ev/pro/l/set_alpha/ds/slave 0
  1220. /ev/pro/l/cursor/mode/ds/occupy 0
  1221. /ev/pro/l/cursor/mode/ds/delay 0
  1222. /ev/pro/l/cursor/mode/ds/slave 0
  1223. /ev/pro/l/state/ds/occupy 0
  1224. /ev/pro/l/state/ds/delay 0
  1225. /ev/pro/l/state/ds/slave 0
  1226. /ev/pro/l/texture/weight/y/ds/occupy 1
  1227. /ev/pro/l/texture/weight/y/ds/delay 0
  1228. /ev/pro/l/texture/weight/y/ds/morph/timegrain 20
  1229. /ev/pro/l/texture/weight/y/ds/morph/curve/quality 0
  1230. /ev/pro/l/texture/weight/y/ds/slave 0
  1231. /ev/pro/l/texture/weight/y/ds/morph/curve/resolution 100
  1232. /ev/pro/l/texture/weight/y/ds/morph/curve/weight 0
  1233. /ev/pro/l/texture/weight/y/ds/morph/curve/shape 0
  1234. /ev/pro/l/texture/weight/y/ds/morph/time 0
  1235. /ev/pro/l/texture/weight/y/ds/morph 0
  1236. /ev/pro/l/texture/weight/x/ds/occupy 1
  1237. /ev/pro/l/texture/weight/x/ds/delay 0
  1238. /ev/pro/l/texture/weight/x/ds/morph/timegrain 20
  1239. /ev/pro/l/texture/weight/x/ds/morph/curve/quality 0
  1240. /ev/pro/l/texture/weight/x/ds/slave 0
  1241. /ev/pro/l/texture/weight/x/ds/morph/curve/resolution 100
  1242. /ev/pro/l/texture/weight/x/ds/morph/curve/weight 0
  1243. /ev/pro/l/texture/weight/x/ds/morph/curve/shape 0
  1244. /ev/pro/l/texture/weight/x/ds/morph/time 0
  1245. /ev/pro/l/texture/weight/x/ds/morph 0
  1246. /ev/pro/l/shade/left/ds/occupy 0
  1247. /ev/pro/l/shade/left/ds/delay 0
  1248. /ev/pro/l/shade/left/ds/morph/timegrain 20
  1249. /ev/pro/l/shade/left/ds/morph/curve/quality 0
  1250. /ev/pro/l/shade/left/ds/slave 0
  1251. /ev/pro/l/shade/left/ds/morph/curve/resolution 100
  1252. /ev/pro/l/shade/left/ds/morph/curve/weight 0
  1253. /ev/pro/l/shade/left/ds/morph/curve/shape 0
  1254. /ev/pro/l/shade/left/ds/morph/time 0
  1255. /ev/pro/l/shade/left/ds/morph 0
  1256. /ev/pro/l/shade/bottom/ds/occupy 0
  1257. /ev/pro/l/shade/bottom/ds/delay 0
  1258. /ev/pro/l/shade/bottom/ds/morph/timegrain 20
  1259. /ev/pro/l/shade/bottom/ds/morph/curve/quality 0
  1260. /ev/pro/l/shade/bottom/ds/slave 0
  1261. /ev/pro/l/shade/bottom/ds/morph/curve/resolution 100
  1262. /ev/pro/l/shade/bottom/ds/morph/curve/weight 0
  1263. /ev/pro/l/shade/bottom/ds/morph/curve/shape 0
  1264. /ev/pro/l/shade/bottom/ds/morph/time 0
  1265. /ev/pro/l/shade/bottom/ds/morph 0
  1266. /ev/pro/l/shade/right/ds/occupy 0
  1267. /ev/pro/l/shade/right/ds/delay 0
  1268. /ev/pro/l/shade/right/ds/morph/timegrain 20
  1269. /ev/pro/l/shade/right/ds/morph/curve/quality 0
  1270. /ev/pro/l/shade/right/ds/slave 0
  1271. /ev/pro/l/shade/right/ds/morph/curve/resolution 100
  1272. /ev/pro/l/shade/right/ds/morph/curve/weight 0
  1273. /ev/pro/l/shade/right/ds/morph/curve/shape 0
  1274. /ev/pro/l/shade/right/ds/morph/time 0
  1275. /ev/pro/l/shade/right/ds/morph 0
  1276. /ev/pro/l/shade/top/ds/occupy 0
  1277. /ev/pro/l/shade/top/ds/delay 0
  1278. /ev/pro/l/shade/top/ds/morph/timegrain 20
  1279. /ev/pro/l/shade/top/ds/morph/curve/quality 0
  1280. /ev/pro/l/shade/top/ds/slave 0
  1281. /ev/pro/l/shade/top/ds/morph/curve/resolution 100
  1282. /ev/pro/l/shade/top/ds/morph/curve/weight 0
  1283. /ev/pro/l/shade/top/ds/morph/curve/shape 0
  1284. /ev/pro/l/shade/top/ds/morph/time 0
  1285. /ev/pro/l/shade/top/ds/morph 0
  1286. /ev/pro/l/texture/bottom/right/y/ds/occupy 0
  1287. /ev/pro/l/texture/bottom/right/y/ds/delay 0
  1288. /ev/pro/l/texture/bottom/right/y/ds/morph/timegrain 20
  1289. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/quality 0
  1290. /ev/pro/l/texture/bottom/right/y/ds/slave 0
  1291. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/resolution 100
  1292. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/weight 0
  1293. /ev/pro/l/texture/bottom/right/y/ds/morph/curve/shape 0
  1294. /ev/pro/l/texture/bottom/right/y/ds/morph/time 0
  1295. /ev/pro/l/texture/bottom/right/y/ds/morph 0
  1296. /ev/pro/l/texture/bottom/right/x/ds/occupy 0
  1297. /ev/pro/l/texture/bottom/right/x/ds/delay 0
  1298. /ev/pro/l/texture/bottom/right/x/ds/morph/timegrain 20
  1299. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/quality 0
  1300. /ev/pro/l/texture/bottom/right/x/ds/slave 0
  1301. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/resolution 100
  1302. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/weight 0
  1303. /ev/pro/l/texture/bottom/right/x/ds/morph/curve/shape 0
  1304. /ev/pro/l/texture/bottom/right/x/ds/morph/time 0
  1305. /ev/pro/l/texture/bottom/right/x/ds/morph 0
  1306. /ev/pro/l/texture/bottom/left/y/ds/occupy 0
  1307. /ev/pro/l/texture/bottom/left/y/ds/delay 0
  1308. /ev/pro/l/texture/bottom/left/y/ds/morph/timegrain 20
  1309. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/quality 0
  1310. /ev/pro/l/texture/bottom/left/y/ds/slave 0
  1311. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/resolution 100
  1312. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/weight 0
  1313. /ev/pro/l/texture/bottom/left/y/ds/morph/curve/shape 0
  1314. /ev/pro/l/texture/bottom/left/y/ds/morph/time 0
  1315. /ev/pro/l/texture/bottom/left/y/ds/morph 0
  1316. /ev/pro/l/texture/bottom/left/x/ds/occupy 0
  1317. /ev/pro/l/texture/bottom/left/x/ds/delay 0
  1318. /ev/pro/l/texture/bottom/left/x/ds/morph/timegrain 20
  1319. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/quality 0
  1320. /ev/pro/l/texture/bottom/left/x/ds/slave 0
  1321. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/resolution 100
  1322. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/weight 0
  1323. /ev/pro/l/texture/bottom/left/x/ds/morph/curve/shape 0
  1324. /ev/pro/l/texture/bottom/left/x/ds/morph/time 0
  1325. /ev/pro/l/texture/bottom/left/x/ds/morph 0
  1326. /ev/pro/l/texture/top/right/y/ds/occupy 0
  1327. /ev/pro/l/texture/top/right/y/ds/delay 0
  1328. /ev/pro/l/texture/top/right/y/ds/morph/timegrain 20
  1329. /ev/pro/l/texture/top/right/y/ds/morph/curve/quality 0
  1330. /ev/pro/l/texture/top/right/y/ds/slave 0
  1331. /ev/pro/l/texture/top/right/y/ds/morph/curve/resolution 100
  1332. /ev/pro/l/texture/top/right/y/ds/morph/curve/weight 0
  1333. /ev/pro/l/texture/top/right/y/ds/morph/curve/shape 0
  1334. /ev/pro/l/texture/top/right/y/ds/morph/time 0
  1335. /ev/pro/l/texture/top/right/y/ds/morph 0
  1336. /ev/pro/l/texture/top/right/x/ds/occupy 0
  1337. /ev/pro/l/texture/top/right/x/ds/delay 0
  1338. /ev/pro/l/texture/top/right/x/ds/morph/timegrain 20
  1339. /ev/pro/l/texture/top/right/x/ds/morph/curve/quality 0
  1340. /ev/pro/l/texture/top/right/x/ds/slave 0
  1341. /ev/pro/l/texture/top/right/x/ds/morph/curve/resolution 100
  1342. /ev/pro/l/texture/top/right/x/ds/morph/curve/weight 0
  1343. /ev/pro/l/texture/top/right/x/ds/morph/curve/shape 0
  1344. /ev/pro/l/texture/top/right/x/ds/morph/time 0
  1345. /ev/pro/l/texture/top/right/x/ds/morph 0
  1346. /ev/pro/l/texture/top/left/y/ds/occupy 0
  1347. /ev/pro/l/texture/top/left/y/ds/delay 0
  1348. /ev/pro/l/texture/top/left/y/ds/morph/timegrain 20
  1349. /ev/pro/l/texture/top/left/y/ds/morph/curve/quality 0
  1350. /ev/pro/l/texture/top/left/y/ds/slave 0
  1351. /ev/pro/l/texture/top/left/y/ds/morph/curve/resolution 100
  1352. /ev/pro/l/texture/top/left/y/ds/morph/curve/weight 0
  1353. /ev/pro/l/texture/top/left/y/ds/morph/curve/shape 0
  1354. /ev/pro/l/texture/top/left/y/ds/morph/time 0
  1355. /ev/pro/l/texture/top/left/y/ds/morph 0
  1356. /ev/pro/l/texture/top/left/x/ds/occupy 0
  1357. /ev/pro/l/texture/top/left/x/ds/delay 0
  1358. /ev/pro/l/texture/top/left/x/ds/morph/timegrain 20
  1359. /ev/pro/l/texture/top/left/x/ds/morph/curve/quality 0
  1360. /ev/pro/l/texture/top/left/x/ds/slave 0
  1361. /ev/pro/l/texture/top/left/x/ds/morph/curve/resolution 100
  1362. /ev/pro/l/texture/top/left/x/ds/morph/curve/weight 0
  1363. /ev/pro/l/texture/top/left/x/ds/morph/curve/shape 0
  1364. /ev/pro/l/texture/top/left/x/ds/morph/time 0
  1365. /ev/pro/l/texture/top/left/x/ds/morph 0
  1366. /ev/pro/l/vertex/bottom/right/y/ds/occupy 0
  1367. /ev/pro/l/vertex/bottom/right/y/ds/delay 0
  1368. /ev/pro/l/vertex/bottom/right/y/ds/morph/timegrain 20
  1369. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/quality 0
  1370. /ev/pro/l/vertex/bottom/right/y/ds/slave 0
  1371. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/resolution 100
  1372. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/weight 0
  1373. /ev/pro/l/vertex/bottom/right/y/ds/morph/curve/shape 0
  1374. /ev/pro/l/vertex/bottom/right/y/ds/morph/time 0
  1375. /ev/pro/l/vertex/bottom/right/y/ds/morph 0
  1376. /ev/pro/l/vertex/bottom/right/x/ds/occupy 0
  1377. /ev/pro/l/vertex/bottom/right/x/ds/delay 0
  1378. /ev/pro/l/vertex/bottom/right/x/ds/morph/timegrain 20
  1379. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/quality 0
  1380. /ev/pro/l/vertex/bottom/right/x/ds/slave 0
  1381. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/resolution 100
  1382. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/weight 0
  1383. /ev/pro/l/vertex/bottom/right/x/ds/morph/curve/shape 0
  1384. /ev/pro/l/vertex/bottom/right/x/ds/morph/time 0
  1385. /ev/pro/l/vertex/bottom/right/x/ds/morph 0
  1386. /ev/pro/l/vertex/bottom/left/y/ds/occupy 0
  1387. /ev/pro/l/vertex/bottom/left/y/ds/delay 0
  1388. /ev/pro/l/vertex/bottom/left/y/ds/morph/timegrain 20
  1389. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/quality 0
  1390. /ev/pro/l/vertex/bottom/left/y/ds/slave 0
  1391. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/resolution 100
  1392. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/weight 0
  1393. /ev/pro/l/vertex/bottom/left/y/ds/morph/curve/shape 0
  1394. /ev/pro/l/vertex/bottom/left/y/ds/morph/time 0
  1395. /ev/pro/l/vertex/bottom/left/y/ds/morph 0
  1396. /ev/pro/l/vertex/bottom/left/x/ds/occupy 0
  1397. /ev/pro/l/vertex/bottom/left/x/ds/delay 0
  1398. /ev/pro/l/vertex/bottom/left/x/ds/morph/timegrain 20
  1399. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/quality 0
  1400. /ev/pro/l/vertex/bottom/left/x/ds/slave 0
  1401. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/resolution 100
  1402. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/weight 0
  1403. /ev/pro/l/vertex/bottom/left/x/ds/morph/curve/shape 0
  1404. /ev/pro/l/vertex/bottom/left/x/ds/morph/time 0
  1405. /ev/pro/l/vertex/bottom/left/x/ds/morph 0
  1406. /ev/pro/l/vertex/top/right/y/ds/occupy 0
  1407. /ev/pro/l/vertex/top/right/y/ds/delay 0
  1408. /ev/pro/l/vertex/top/right/y/ds/morph/timegrain 20
  1409. /ev/pro/l/vertex/top/right/y/ds/morph/curve/quality 0
  1410. /ev/pro/l/vertex/top/right/y/ds/slave 0
  1411. /ev/pro/l/vertex/top/right/y/ds/morph/curve/resolution 100
  1412. /ev/pro/l/vertex/top/right/y/ds/morph/curve/weight 0
  1413. /ev/pro/l/vertex/top/right/y/ds/morph/curve/shape 0
  1414. /ev/pro/l/vertex/top/right/y/ds/morph/time 0
  1415. /ev/pro/l/vertex/top/right/y/ds/morph 0
  1416. /ev/pro/l/vertex/top/right/x/ds/occupy 0
  1417. /ev/pro/l/vertex/top/right/x/ds/delay 0
  1418. /ev/pro/l/vertex/top/right/x/ds/morph/timegrain 20
  1419. /ev/pro/l/vertex/top/right/x/ds/morph/curve/quality 0
  1420. /ev/pro/l/vertex/top/right/x/ds/slave 0
  1421. /ev/pro/l/vertex/top/right/x/ds/morph/curve/resolution 100
  1422. /ev/pro/l/vertex/top/right/x/ds/morph/curve/weight 0
  1423. /ev/pro/l/vertex/top/right/x/ds/morph/curve/shape 0
  1424. /ev/pro/l/vertex/top/right/x/ds/morph/time 0
  1425. /ev/pro/l/vertex/top/right/x/ds/morph 0
  1426. /ev/pro/l/vertex/top/left/y/ds/occupy 0
  1427. /ev/pro/l/vertex/top/left/y/ds/delay 0
  1428. /ev/pro/l/vertex/top/left/y/ds/morph/timegrain 20
  1429. /ev/pro/l/vertex/top/left/y/ds/morph/curve/quality 0
  1430. /ev/pro/l/vertex/top/left/y/ds/slave 0
  1431. /ev/pro/l/vertex/top/left/y/ds/morph/curve/resolution 100
  1432. /ev/pro/l/vertex/top/left/y/ds/morph/curve/weight 0
  1433. /ev/pro/l/vertex/top/left/y/ds/morph/curve/shape 0
  1434. /ev/pro/l/vertex/top/left/y/ds/morph/time 0
  1435. /ev/pro/l/vertex/top/left/y/ds/morph 0
  1436. /ev/pro/l/vertex/top/left/x/ds/occupy 0
  1437. /ev/pro/l/vertex/top/left/x/ds/delay 0
  1438. /ev/pro/l/vertex/top/left/x/ds/morph/timegrain 20
  1439. /ev/pro/l/vertex/top/left/x/ds/morph/curve/quality 0
  1440. /ev/pro/l/vertex/top/left/x/ds/slave 0
  1441. /ev/pro/l/vertex/top/left/x/ds/morph/curve/resolution 100
  1442. /ev/pro/l/vertex/top/left/x/ds/morph/curve/weight 0
  1443. /ev/pro/l/vertex/top/left/x/ds/morph/curve/shape 0
  1444. /ev/pro/l/vertex/top/left/x/ds/morph/time 0
  1445. /ev/pro/l/vertex/top/left/x/ds/morph 0
  1446. /ev/buf/0/shift/z/ds/occupy 1
  1447. /ev/buf/0/shift/z/ds/delay 0
  1448. /ev/buf/0/shift/z/ds/morph/timegrain 20
  1449. /ev/buf/0/shift/z/ds/morph/curve/quality 0
  1450. /ev/buf/0/shift/z/ds/slave 0
  1451. /ev/buf/0/shift/z/ds/morph/curve/resolution 100
  1452. /ev/buf/0/shift/z/ds/morph/curve/weight 0
  1453. /ev/buf/0/shift/z/ds/morph/curve/shape 0
  1454. /ev/buf/0/shift/z/ds/morph/time 0
  1455. /ev/buf/0/shift/z/ds/morph 0
  1456. /ev/buf/0/scale/z/ds/occupy 1
  1457. /ev/buf/0/scale/z/ds/delay 0
  1458. /ev/buf/0/scale/z/ds/morph/timegrain 20
  1459. /ev/buf/0/scale/z/ds/morph/curve/quality 0
  1460. /ev/buf/0/scale/z/ds/slave 0
  1461. /ev/buf/0/scale/z/ds/morph/curve/resolution 100
  1462. /ev/buf/0/scale/z/ds/morph/curve/weight 0
  1463. /ev/buf/0/scale/z/ds/morph/curve/shape 0
  1464. /ev/buf/0/scale/z/ds/morph/time 0
  1465. /ev/buf/0/scale/z/ds/morph 0
  1466. /ev/buf/0/state/ds/occupy 0
  1467. /ev/buf/0/state/ds/delay 0
  1468. /ev/buf/0/state/ds/slave 0
  1469. /ev/buf/0/dimen/y/ds/occupy 0
  1470. /ev/buf/0/dimen/y/ds/delay 0
  1471. /ev/buf/0/dimen/y/ds/slave 0
  1472. /ev/buf/0/dimen/x/ds/occupy 0
  1473. /ev/buf/0/dimen/x/ds/delay 0
  1474. /ev/buf/0/dimen/x/ds/slave 0
  1475. /ev/buf/0/type/ds/occupy 0
  1476. /ev/buf/0/type/ds/delay 0
  1477. /ev/buf/0/type/ds/slave 0
  1478. /ev/buf/0/format/ds/occupy 0
  1479. /ev/buf/0/format/ds/delay 0
  1480. /ev/buf/0/format/ds/slave 0
  1481. /ev/buf/0/rectangle/ds/occupy 0
  1482. /ev/buf/0/rectangle/ds/delay 0
  1483. /ev/buf/0/rectangle/ds/slave 0
  1484. /ev/buf/0/color/ds/occupy 0
  1485. /ev/buf/0/color/ds/delay 0
  1486. /ev/buf/0/color/ds/morph/timegrain 20
  1487. /ev/buf/0/color/ds/morph/curve/quality 0
  1488. /ev/buf/0/color/ds/slave 0
  1489. /ev/buf/0/color/ds/morph/curve/resolution 100
  1490. /ev/buf/0/color/ds/morph/curve/weight 0
  1491. /ev/buf/0/color/ds/morph/curve/shape 0
  1492. /ev/buf/0/color/ds/morph/time 0
  1493. /ev/buf/0/color/ds/morph 0
  1494. /ev/buf/0/shift/y/ds/occupy 0
  1495. /ev/buf/0/shift/y/ds/delay 0
  1496. /ev/buf/0/shift/y/ds/morph/timegrain 20
  1497. /ev/buf/0/shift/y/ds/morph/curve/quality 0
  1498. /ev/buf/0/shift/y/ds/slave 0
  1499. /ev/buf/0/shift/y/ds/morph/curve/resolution 100
  1500. /ev/buf/0/shift/y/ds/morph/curve/weight 0
  1501. /ev/buf/0/shift/y/ds/morph/curve/shape 0
  1502. /ev/buf/0/shift/y/ds/morph/time 0
  1503. /ev/buf/0/shift/y/ds/morph 0
  1504. /ev/buf/0/shift/x/ds/occupy 0
  1505. /ev/buf/0/shift/x/ds/delay 0
  1506. /ev/buf/0/shift/x/ds/morph/timegrain 20
  1507. /ev/buf/0/shift/x/ds/morph/curve/quality 0
  1508. /ev/buf/0/shift/x/ds/slave 0
  1509. /ev/buf/0/shift/x/ds/morph/curve/resolution 100
  1510. /ev/buf/0/shift/x/ds/morph/curve/weight 0
  1511. /ev/buf/0/shift/x/ds/morph/curve/shape 0
  1512. /ev/buf/0/shift/x/ds/morph/time 0
  1513. /ev/buf/0/shift/x/ds/morph 0
  1514. /ev/buf/0/scale/y/ds/occupy 0
  1515. /ev/buf/0/scale/y/ds/delay 0
  1516. /ev/buf/0/scale/y/ds/morph/timegrain 20
  1517. /ev/buf/0/scale/y/ds/morph/curve/quality 0
  1518. /ev/buf/0/scale/y/ds/slave 0
  1519. /ev/buf/0/scale/y/ds/morph/curve/resolution 100
  1520. /ev/buf/0/scale/y/ds/morph/curve/weight 0
  1521. /ev/buf/0/scale/y/ds/morph/curve/shape 0
  1522. /ev/buf/0/scale/y/ds/morph/time 0
  1523. /ev/buf/0/scale/y/ds/morph 0
  1524. /ev/buf/0/scale/x/ds/occupy 0
  1525. /ev/buf/0/scale/x/ds/delay 0
  1526. /ev/buf/0/scale/x/ds/morph/timegrain 20
  1527. /ev/buf/0/scale/x/ds/morph/curve/quality 0
  1528. /ev/buf/0/scale/x/ds/slave 0
  1529. /ev/buf/0/scale/x/ds/morph/curve/resolution 100
  1530. /ev/buf/0/scale/x/ds/morph/curve/weight 0
  1531. /ev/buf/0/scale/x/ds/morph/curve/shape 0
  1532. /ev/buf/0/scale/x/ds/morph/time 0
  1533. /ev/buf/0/scale/x/ds/morph 0
  1534. #data
  1535. /ev/mouse/texture/sensitivity 50
  1536. /ev/mouse/select_radius 0.100436
  1537. /ev/gemwin/border 1
  1538. /ev/gemwin/lighting 30
  1539. /ev/gemwin/frame 25
  1540. /ev/gemwin/offset/y 0
  1541. /ev/gemwin/offset/x 0
  1542. /ev/gemwin/dimen/y 600
  1543. /ev/gemwin/dimen/x 800
  1544. /ev/buf/1/shift/z 0
  1545. /ev/buf/1/scale/z 1
  1546. /ev/buf/1/state 1
  1547. /ev/buf/1/dimen/y 1024
  1548. /ev/buf/1/dimen/x 1024
  1549. /ev/buf/1/type BYTE
  1550. /ev/buf/1/format RGBA
  1551. /ev/buf/1/rectangle 1
  1552. /ev/buf/1/color 0.2 0.2 0.7 1
  1553. /ev/buf/1/shift/y 0
  1554. /ev/buf/1/shift/x 0
  1555. /ev/buf/1/scale/y 1
  1556. /ev/buf/1/scale/x 1
  1557. /ev/pro/w2/grid/res/y 16
  1558. /ev/pro/w2/grid/res/x 16
  1559. /ev/pro/w2/grid/width 2
  1560. /ev/pro/w2/grid/color/a 0.6
  1561. /ev/pro/w2/grid/color/v 1
  1562. /ev/pro/w2/grid/color/s 0.6
  1563. /ev/pro/w2/grid/color/h 0.631373
  1564. /ev/pro/w2/grid/state 0
  1565. /ev/pro/w2/grid/tex/flip/vertical 0
  1566. /ev/pro/w2/grid/tex/flip/horizontal 0
  1567. /ev/pro/w2/grid/tex/filename ../media/grid.png
  1568. /ev/pro/w2/grid/tex/state 0
  1569. /ev/pro/w2/set_alpha 1
  1570. /ev/pro/w2/cursor/mode 2
  1571. /ev/pro/w2/state 1
  1572. /ev/pro/w2/texture/weight/y 0
  1573. /ev/pro/w2/texture/weight/x 0.157143
  1574. /ev/pro/w2/shade/left 0
  1575. /ev/pro/w2/shade/bottom 0
  1576. /ev/pro/w2/shade/right 0
  1577. /ev/pro/w2/shade/top 0
  1578. /ev/pro/w2/texture/bottom/right/y 0
  1579. /ev/pro/w2/texture/bottom/right/x 1024
  1580. /ev/pro/w2/texture/bottom/left/y 0
  1581. /ev/pro/w2/texture/bottom/left/x 700
  1582. /ev/pro/w2/texture/top/right/y 1024
  1583. /ev/pro/w2/texture/top/right/x 1024
  1584. /ev/pro/w2/texture/top/left/y 1024
  1585. /ev/pro/w2/texture/top/left/x 700
  1586. /ev/pro/w2/vertex/bottom/right/y -0.493333
  1587. /ev/pro/w2/vertex/bottom/right/x -1.75333
  1588. /ev/pro/w2/vertex/bottom/left/y -1.12
  1589. /ev/pro/w2/vertex/bottom/left/x -2.75667
  1590. /ev/pro/w2/vertex/top/right/y 1.09333
  1591. /ev/pro/w2/vertex/top/right/x -1.75667
  1592. /ev/pro/w2/vertex/top/left/y 1.49333
  1593. /ev/pro/w2/vertex/top/left/x -2.58667
  1594. /ev/pro/w1/grid/res/y 16
  1595. /ev/pro/w1/grid/res/x 16
  1596. /ev/pro/w1/grid/width 2
  1597. /ev/pro/w1/grid/color/a 0.6
  1598. /ev/pro/w1/grid/color/v 1
  1599. /ev/pro/w1/grid/color/s 0.6
  1600. /ev/pro/w1/grid/color/h 0.921569
  1601. /ev/pro/w1/grid/state 0
  1602. /ev/pro/w1/grid/tex/flip/vertical 0
  1603. /ev/pro/w1/grid/tex/flip/horizontal 0
  1604. /ev/pro/w1/grid/tex/filename ../media/grid.png
  1605. /ev/pro/w1/grid/tex/state 0
  1606. /ev/pro/w1/set_alpha 1
  1607. /ev/pro/w1/cursor/mode 2
  1608. /ev/pro/w1/state 1
  1609. /ev/pro/w1/texture/weight/y 0
  1610. /ev/pro/w1/texture/weight/x 0.2
  1611. /ev/pro/w1/shade/left 0
  1612. /ev/pro/w1/shade/bottom 0
  1613. /ev/pro/w1/shade/right 0
  1614. /ev/pro/w1/shade/top 0
  1615. /ev/pro/w1/texture/bottom/right/y 0
  1616. /ev/pro/w1/texture/bottom/right/x 512
  1617. /ev/pro/w1/texture/bottom/left/y 0
  1618. /ev/pro/w1/texture/bottom/left/x 0
  1619. /ev/pro/w1/texture/top/right/y 1024
  1620. /ev/pro/w1/texture/top/right/x 512
  1621. /ev/pro/w1/texture/top/left/y 1024
  1622. /ev/pro/w1/texture/top/left/x 0
  1623. /ev/pro/w1/vertex/bottom/right/y -1.29333
  1624. /ev/pro/w1/vertex/bottom/right/x -3.12
  1625. /ev/pro/w1/vertex/bottom/left/y -2.34667
  1626. /ev/pro/w1/vertex/bottom/left/x -4.65333
  1627. /ev/pro/w1/vertex/top/right/y 1.62667
  1628. /ev/pro/w1/vertex/top/right/x -2.90667
  1629. /ev/pro/w1/vertex/top/left/y 2.38667
  1630. /ev/pro/w1/vertex/top/left/x -4.58667
  1631. /ev/pro/r/grid/res/y 16
  1632. /ev/pro/r/grid/res/x 16
  1633. /ev/pro/r/grid/width 2
  1634. /ev/pro/r/grid/color/a 0.6
  1635. /ev/pro/r/grid/color/v 1
  1636. /ev/pro/r/grid/color/s 0.6
  1637. /ev/pro/r/grid/color/h 0.729412
  1638. /ev/pro/r/grid/state 0
  1639. /ev/pro/r/grid/tex/flip/vertical 0
  1640. /ev/pro/r/grid/tex/flip/horizontal 0
  1641. /ev/pro/r/grid/tex/filename ../media/grid.png
  1642. /ev/pro/r/grid/tex/state 0
  1643. /ev/pro/r/set_alpha 1
  1644. /ev/pro/r/cursor/mode 2
  1645. /ev/pro/r/state 1
  1646. /ev/pro/r/texture/weight/y 0
  1647. /ev/pro/r/texture/weight/x 0
  1648. /ev/pro/r/shade/left 0
  1649. /ev/pro/r/shade/bottom 0
  1650. /ev/pro/r/shade/right 0
  1651. /ev/pro/r/shade/top 0
  1652. /ev/pro/r/texture/bottom/right/y 421
  1653. /ev/pro/r/texture/bottom/right/x 1024
  1654. /ev/pro/r/texture/bottom/left/y 421
  1655. /ev/pro/r/texture/bottom/left/x 682
  1656. /ev/pro/r/texture/top/right/y 610
  1657. /ev/pro/r/texture/top/right/x 1024
  1658. /ev/pro/r/texture/top/left/y 610
  1659. /ev/pro/r/texture/top/left/x 681.78
  1660. /ev/pro/r/vertex/bottom/right/y -2.93333
  1661. /ev/pro/r/vertex/bottom/right/x 4.92
  1662. /ev/pro/r/vertex/bottom/left/y -0.606666
  1663. /ev/pro/r/vertex/bottom/left/x 1.79333
  1664. /ev/pro/r/vertex/top/right/y 2.85333
  1665. /ev/pro/r/vertex/top/right/x 4.74334
  1666. /ev/pro/r/vertex/top/left/y 1.66667
  1667. /ev/pro/r/vertex/top/left/x 1.70333
  1668. /ev/pro/c/grid/res/y 16
  1669. /ev/pro/c/grid/res/x 16
  1670. /ev/pro/c/grid/width 2
  1671. /ev/pro/c/grid/color/a 0.6
  1672. /ev/pro/c/grid/color/v 1
  1673. /ev/pro/c/grid/color/s 0.6
  1674. /ev/pro/c/grid/color/h 0.929412
  1675. /ev/pro/c/grid/state 0
  1676. /ev/pro/c/grid/tex/flip/vertical 0
  1677. /ev/pro/c/grid/tex/flip/horizontal 0
  1678. /ev/pro/c/grid/tex/filename ../media/grid.png
  1679. /ev/pro/c/grid/tex/state 0
  1680. /ev/pro/c/set_alpha 1
  1681. /ev/pro/c/cursor/mode 2
  1682. /ev/pro/c/state 1
  1683. /ev/pro/c/texture/weight/y 0
  1684. /ev/pro/c/texture/weight/x 0
  1685. /ev/pro/c/shade/left 0
  1686. /ev/pro/c/shade/bottom 0
  1687. /ev/pro/c/shade/right 0
  1688. /ev/pro/c/shade/top 0
  1689. /ev/pro/c/texture/bottom/right/y 421
  1690. /ev/pro/c/texture/bottom/right/x 682
  1691. /ev/pro/c/texture/bottom/left/y 421
  1692. /ev/pro/c/texture/bottom/left/x 341
  1693. /ev/pro/c/texture/top/right/y 610
  1694. /ev/pro/c/texture/top/right/x 682
  1695. /ev/pro/c/texture/top/left/y 610
  1696. /ev/pro/c/texture/top/left/x 341
  1697. /ev/pro/c/vertex/bottom/right/y -0.613333
  1698. /ev/pro/c/vertex/bottom/right/x 1.81333
  1699. /ev/pro/c/vertex/bottom/left/y -0.986663
  1700. /ev/pro/c/vertex/bottom/left/x -1.35
  1701. /ev/pro/c/vertex/top/right/y 1.68
  1702. /ev/pro/c/vertex/top/right/x 1.72
  1703. /ev/pro/c/vertex/top/left/y 1.84334
  1704. /ev/pro/c/vertex/top/left/x -1.31667
  1705. /ev/pro/l/grid/res/y 16
  1706. /ev/pro/l/grid/res/x 16
  1707. /ev/pro/l/grid/width 2
  1708. /ev/pro/l/grid/color/a 0.6
  1709. /ev/pro/l/grid/color/v 1
  1710. /ev/pro/l/grid/color/s 0.6
  1711. /ev/pro/l/grid/color/h 0.745098
  1712. /ev/pro/l/grid/state 0
  1713. /ev/pro/l/grid/tex/flip/vertical 0
  1714. /ev/pro/l/grid/tex/flip/horizontal 0
  1715. /ev/pro/l/grid/tex/filename ../media/grid.png
  1716. /ev/pro/l/grid/tex/state 0
  1717. /ev/pro/l/set_alpha 1
  1718. /ev/pro/l/cursor/mode 2
  1719. /ev/pro/l/state 1
  1720. /ev/pro/l/texture/weight/y 0
  1721. /ev/pro/l/texture/weight/x 0
  1722. /ev/pro/l/shade/left 0
  1723. /ev/pro/l/shade/bottom 0
  1724. /ev/pro/l/shade/right 0
  1725. /ev/pro/l/shade/top 0
  1726. /ev/pro/l/texture/bottom/right/y 421
  1727. /ev/pro/l/texture/bottom/right/x 341
  1728. /ev/pro/l/texture/bottom/left/y 421
  1729. /ev/pro/l/texture/bottom/left/x 0
  1730. /ev/pro/l/texture/top/right/y 610
  1731. /ev/pro/l/texture/top/right/x 341
  1732. /ev/pro/l/texture/top/left/y 610
  1733. /ev/pro/l/texture/top/left/x 0
  1734. /ev/pro/l/vertex/bottom/right/y -0.973333
  1735. /ev/pro/l/vertex/bottom/right/x -1.34667
  1736. /ev/pro/l/vertex/bottom/left/y -3.32
  1737. /ev/pro/l/vertex/bottom/left/x -4.90667
  1738. /ev/pro/l/vertex/top/right/y 1.85334
  1739. /ev/pro/l/vertex/top/right/x -1.31
  1740. /ev/pro/l/vertex/top/left/y 3.48
  1741. /ev/pro/l/vertex/top/left/x -4.81
  1742. /ev/buf/0/shift/z 0
  1743. /ev/buf/0/scale/z 1
  1744. /ev/buf/0/state 1
  1745. /ev/buf/0/dimen/y 1024
  1746. /ev/buf/0/dimen/x 1024
  1747. /ev/buf/0/type BYTE
  1748. /ev/buf/0/format RGBA
  1749. /ev/buf/0/rectangle 1
  1750. /ev/buf/0/color 0.9 0.6 0.1 1
  1751. /ev/buf/0/shift/y 0
  1752. /ev/buf/0/shift/x 0
  1753. /ev/buf/0/scale/y 1.05
  1754. /ev/buf/0/scale/x 1.05
  1755. ======================== SCENE 1 <unnamed> ========================
  1756. #settings
  1757. #data
  1758. ======================== SCENE 2 <unnamed> ========================
  1759. #settings
  1760. #data
  1761. ======================== SCENE 3 <unnamed> ========================
  1762. #settings
  1763. #data
  1764. ======================== SCENE 4 <unnamed> ========================
  1765. #settings
  1766. #data
  1767. ======================== SCENE 5 <unnamed> ========================
  1768. #settings
  1769. #data
  1770. ======================== SCENE 6 <unnamed> ========================
  1771. #settings
  1772. #data
  1773. ======================== SCENE 7 <unnamed> ========================
  1774. #settings
  1775. #data
  1776. ======================== SCENE 8 <unnamed> ========================
  1777. #settings
  1778. #data
  1779. ======================== SCENE 9 <unnamed> ========================
  1780. #settings
  1781. #data
  1782. ======================== SCENE 10 <unnamed> ========================
  1783. #settings
  1784. #data
  1785. ======================== SCENE 11 <unnamed> ========================
  1786. #settings
  1787. #data
  1788. ======================== SCENE 12 <unnamed> ========================
  1789. #settings
  1790. #data
  1791. ======================== SCENE 13 <unnamed> ========================
  1792. #settings
  1793. #data
  1794. ======================== SCENE 14 <unnamed> ========================
  1795. #settings
  1796. #data
  1797. ======================== SCENE 15 <unnamed> ========================
  1798. #settings
  1799. #data
  1800. ======================== SCENE 16 <unnamed> ========================
  1801. #settings
  1802. #data
  1803. ======================== SCENE 17 <unnamed> ========================
  1804. #settings
  1805. #data
  1806. ======================== SCENE 18 <unnamed> ========================
  1807. #settings
  1808. #data
  1809. ======================== SCENE 19 <unnamed> ========================
  1810. #settings
  1811. #data
  1812. ======================== SCENE 20 <unnamed> ========================
  1813. #settings
  1814. #data
  1815. ======================== SCENE 21 <unnamed> ========================
  1816. #settings
  1817. #data
  1818. ======================== SCENE 22 <unnamed> ========================
  1819. #settings
  1820. #data
  1821. ======================== SCENE 23 <unnamed> ========================
  1822. #settings
  1823. #data
  1824. ======================== SCENE 24 <unnamed> ========================
  1825. #settings
  1826. #data
  1827. ======================== SCENE 25 <unnamed> ========================
  1828. #settings
  1829. #data
  1830. ======================== SCENE 26 <unnamed> ========================
  1831. #settings
  1832. #data
  1833. ======================== SCENE 27 <unnamed> ========================
  1834. #settings
  1835. #data
  1836. ======================== SCENE 28 <unnamed> ========================
  1837. #settings
  1838. #data
  1839. ======================== SCENE 29 <unnamed> ========================
  1840. #settings
  1841. #data
  1842. ======================== SCENE 30 <unnamed> ========================
  1843. #settings
  1844. #data
  1845. ======================== SCENE 31 <unnamed> ========================
  1846. #settings
  1847. #data
  1848. ======================== SCENE 32 <unnamed> ========================
  1849. #settings
  1850. #data
  1851. ======================== SCENE 33 <unnamed> ========================
  1852. #settings
  1853. #data
  1854. ======================== SCENE 34 <unnamed> ========================
  1855. #settings
  1856. #data
  1857. ======================== SCENE 35 <unnamed> ========================
  1858. #settings
  1859. #data
  1860. ======================== SCENE 36 <unnamed> ========================
  1861. #settings
  1862. #data
  1863. ======================== SCENE 37 <unnamed> ========================
  1864. #settings
  1865. #data
  1866. ======================== SCENE 38 <unnamed> ========================
  1867. #settings
  1868. #data
  1869. ======================== SCENE 39 <unnamed> ========================
  1870. #settings
  1871. #data
  1872. ======================== SCENE 40 <unnamed> ========================
  1873. #settings
  1874. #data
  1875. ======================== SCENE 41 <unnamed> ========================
  1876. #settings
  1877. #data
  1878. ======================== SCENE 42 <unnamed> ========================
  1879. #settings
  1880. #data
  1881. ======================== SCENE 43 <unnamed> ========================
  1882. #settings
  1883. #data
  1884. ======================== SCENE 44 <unnamed> ========================
  1885. #settings
  1886. #data
  1887. ======================== SCENE 45 <unnamed> ========================
  1888. #settings
  1889. #data
  1890. ======================== SCENE 46 <unnamed> ========================
  1891. #settings
  1892. #data
  1893. ======================== SCENE 47 <unnamed> ========================
  1894. #settings
  1895. #data
  1896. ======================== SCENE 48 <unnamed> ========================
  1897. #settings
  1898. #data
  1899. ======================== SCENE 49 <unnamed> ========================
  1900. #settings
  1901. #data
  1902. ======================== SCENE 50 <unnamed> ========================
  1903. #settings
  1904. #data
  1905. ======================== SCENE 51 <unnamed> ========================
  1906. #settings
  1907. #data
  1908. ======================== SCENE 52 <unnamed> ========================
  1909. #settings
  1910. #data
  1911. ======================== SCENE 53 <unnamed> ========================
  1912. #settings
  1913. #data
  1914. ======================== SCENE 54 <unnamed> ========================
  1915. #settings
  1916. #data
  1917. ======================== SCENE 55 <unnamed> ========================
  1918. #settings
  1919. #data
  1920. ======================== SCENE 56 <unnamed> ========================
  1921. #settings
  1922. #data
  1923. ======================== SCENE 57 <unnamed> ========================
  1924. #settings
  1925. #data
  1926. ======================== SCENE 58 <unnamed> ========================
  1927. #settings
  1928. #data
  1929. ======================== SCENE 59 <unnamed> ========================
  1930. #settings
  1931. #data
  1932. ======================== SCENE 60 <unnamed> ========================
  1933. #settings
  1934. #data
  1935. ======================== SCENE 61 <unnamed> ========================
  1936. #settings
  1937. #data
  1938. ======================== SCENE 62 <unnamed> ========================
  1939. #settings
  1940. #data
  1941. ======================== SCENE 63 <unnamed> ========================
  1942. #settings
  1943. #data
  1944. ======================== SCENE 64 <unnamed> ========================
  1945. #settings
  1946. #data
  1947. ======================== SCENE 65 <unnamed> ========================
  1948. #settings
  1949. #data
  1950. ======================== SCENE 66 <unnamed> ========================
  1951. #settings
  1952. #data
  1953. ======================== SCENE 67 <unnamed> ========================
  1954. #settings
  1955. #data
  1956. ======================== SCENE 68 <unnamed> ========================
  1957. #settings
  1958. #data
  1959. ======================== SCENE 69 <unnamed> ========================
  1960. #settings
  1961. #data
  1962. ======================== SCENE 70 <unnamed> ========================
  1963. #settings
  1964. #data
  1965. ======================== SCENE 71 <unnamed> ========================
  1966. #settings
  1967. #data
  1968. ======================== SCENE 72 <unnamed> ========================
  1969. #settings
  1970. #data
  1971. ======================== SCENE 73 <unnamed> ========================
  1972. #settings
  1973. #data
  1974. ======================== SCENE 74 <unnamed> ========================
  1975. #settings
  1976. #data
  1977. ======================== SCENE 75 <unnamed> ========================
  1978. #settings
  1979. #data
  1980. ======================== SCENE 76 <unnamed> ========================
  1981. #settings
  1982. #data
  1983. ======================== SCENE 77 <unnamed> ========================
  1984. #settings
  1985. #data
  1986. ======================== SCENE 78 <unnamed> ========================
  1987. #settings
  1988. #data
  1989. ======================== SCENE 79 <unnamed> ========================
  1990. #settings
  1991. #data
  1992. ======================== SCENE 80 <unnamed> ========================
  1993. #settings
  1994. #data
  1995. ======================== SCENE 81 <unnamed> ========================
  1996. #settings
  1997. #data
  1998. ======================== SCENE 82 <unnamed> ========================
  1999. #settings
  2000. #data
  2001. ======================== SCENE 83 <unnamed> ========================
  2002. #settings
  2003. #data
  2004. ======================== SCENE 84 <unnamed> ========================
  2005. #settings
  2006. #data
  2007. ======================== SCENE 85 <unnamed> ========================
  2008. #settings
  2009. #data
  2010. ======================== SCENE 86 <unnamed> ========================
  2011. #settings
  2012. #data
  2013. ======================== SCENE 87 <unnamed> ========================
  2014. #settings
  2015. #data
  2016. ======================== SCENE 88 <unnamed> ========================
  2017. #settings
  2018. #data
  2019. ======================== SCENE 89 <unnamed> ========================
  2020. #settings
  2021. #data
  2022. ======================== SCENE 90 <unnamed> ========================
  2023. #settings
  2024. #data
  2025. ======================== SCENE 91 <unnamed> ========================
  2026. #settings
  2027. #data
  2028. ======================== SCENE 92 <unnamed> ========================
  2029. #settings
  2030. #data
  2031. ======================== SCENE 93 <unnamed> ========================
  2032. #settings
  2033. #data
  2034. ======================== SCENE 94 <unnamed> ========================
  2035. #settings
  2036. #data
  2037. ======================== SCENE 95 <unnamed> ========================
  2038. #settings
  2039. #data
  2040. ======================== SCENE 96 <unnamed> ========================
  2041. #settings
  2042. #data
  2043. ======================== SCENE 97 <unnamed> ========================
  2044. #settings
  2045. #data
  2046. ======================== SCENE 98 <unnamed> ========================
  2047. #settings
  2048. #data
  2049. ======================== SCENE 99 <unnamed> ========================
  2050. #settings
  2051. #data