added optional button to restart game (door, panel and touch variants)
[rocksndiamonds.git] / src / conf_gfx.c
1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // conf_gfx.c
10 // ============================================================================
11
12 #include "libgame/libgame.h"
13 #include "main.h"
14
15
16 // List values that are not defined in the configuration file are set to
17 // reliable default values. If that value is GFX_ARG_UNDEFINED, it will
18 // be dynamically determined, using some of the other list values.
19
20 struct ConfigTypeInfo image_config_suffix[] =
21 {
22   { ".x",                               ARG_UNDEFINED,  TYPE_INTEGER    },
23   { ".y",                               ARG_UNDEFINED,  TYPE_INTEGER    },
24   { ".xpos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
25   { ".ypos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
26   { ".width",                           ARG_UNDEFINED,  TYPE_INTEGER    },
27   { ".height",                          ARG_UNDEFINED,  TYPE_INTEGER    },
28   { ".vertical",                        "false",        TYPE_BOOLEAN    },
29   { ".offset",                          ARG_UNDEFINED,  TYPE_INTEGER    },
30   { ".xoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
31   { ".yoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
32   { ".2nd_movement_tile",               "false",        TYPE_BOOLEAN    },
33   { ".2nd_vertical",                    ARG_UNDEFINED,  TYPE_BOOLEAN    },
34   { ".2nd_offset",                      ARG_UNDEFINED,  TYPE_INTEGER    },
35   { ".2nd_xoffset",                     ARG_UNDEFINED,  TYPE_INTEGER    },
36   { ".2nd_yoffset",                     ARG_UNDEFINED,  TYPE_INTEGER    },
37   { ".2nd_swap_tiles",                  ARG_UNDEFINED,  TYPE_BOOLEAN    },
38   { ".frames",                          ARG_UNDEFINED,  TYPE_INTEGER    },
39   { ".frames_per_line",                 ARG_UNDEFINED,  TYPE_INTEGER    },
40   { ".start_frame",                     ARG_UNDEFINED,  TYPE_INTEGER    },
41   { ".delay",                           "1",            TYPE_INTEGER    },
42   { ".anim_mode",                       ARG_UNDEFINED,  TYPE_STRING     },
43   { ".global_sync",                     "false",        TYPE_BOOLEAN    },
44   { ".crumbled_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
45   { ".diggable_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
46   { ".border_size",                     ARG_UNDEFINED,  TYPE_INTEGER    },
47   { ".step_offset",                     "4",            TYPE_INTEGER    },
48   { ".step_xoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
49   { ".step_yoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
50   { ".step_delay",                      "1",            TYPE_INTEGER    },
51   { ".direction",                       ARG_UNDEFINED,  TYPE_STRING     },
52   { ".position",                        ARG_UNDEFINED,  TYPE_STRING     },
53   { ".draw_xoffset",                    "0",            TYPE_INTEGER    },
54   { ".draw_yoffset",                    "0",            TYPE_INTEGER    },
55   { ".draw_masked",                     ARG_UNDEFINED,  TYPE_BOOLEAN    },
56   { ".draw_order",                      ARG_UNDEFINED,  TYPE_INTEGER    },
57   { ".init_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
58   { ".init_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
59   { ".init_delay_action",               ARG_UNDEFINED,  TYPE_STRING     },
60   { ".anim_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
61   { ".anim_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
62   { ".anim_delay_action",               ARG_UNDEFINED,  TYPE_STRING     },
63   { ".post_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
64   { ".post_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
65   { ".post_delay_action",               ARG_UNDEFINED,  TYPE_STRING     },
66   { ".init_event",                      ARG_UNDEFINED,  TYPE_STRING     },
67   { ".init_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
68   { ".anim_event",                      ARG_UNDEFINED,  TYPE_STRING     },
69   { ".anim_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
70   { ".name",                            ARG_UNDEFINED,  TYPE_STRING     },
71   { ".scale_up_factor",                 ARG_UNDEFINED,  TYPE_INTEGER    },
72   { ".tile_size",                       ARG_UNDEFINED,  TYPE_INTEGER    },
73   { ".clone_from",                      ARG_UNDEFINED,  TYPE_GRAPHIC    },
74   { ".fade_mode",                       ARG_UNDEFINED,  TYPE_INTEGER    },
75   { ".fade_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
76   { ".post_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
77   { ".auto_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
78   { ".auto_delay_unit",                 ARG_UNDEFINED,  TYPE_INTEGER    },
79   { ".align",                           ARG_UNDEFINED,  TYPE_INTEGER    },
80   { ".valign",                          ARG_UNDEFINED,  TYPE_INTEGER    },
81   { ".sort_priority",                   ARG_UNDEFINED,  TYPE_INTEGER    },
82   { ".class",                           ARG_UNDEFINED,  TYPE_STRING     },
83   { ".style",                           ARG_UNDEFINED,  TYPE_STRING     },
84   { ".active_xoffset",                  "0",            TYPE_INTEGER    },
85   { ".active_yoffset",                  "0",            TYPE_INTEGER    },
86   { ".pressed_xoffset",                 "0",            TYPE_INTEGER    },
87   { ".pressed_yoffset",                 "0",            TYPE_INTEGER    },
88
89   { NULL,                               NULL,           0               }
90 };
91
92 struct ConfigInfo image_config[] =
93 {
94   // ==========================================================================
95   // image definitions for game elements (for in-game and editor graphics)
96   // ==========================================================================
97
98   // images for Boulder Dash style elements and actions
99
100   { "bd_wall",                                  "RocksDC.png"           },
101   { "bd_wall.xpos",                             "12"                    },
102   { "bd_wall.ypos",                             "9"                     },
103   { "bd_wall.frames",                           "1"                     },
104   { "bd_wall.EDITOR",                           "RocksDC.png"           },
105   { "bd_wall.EDITOR.xpos",                      "14"                    },
106   { "bd_wall.EDITOR.ypos",                      "13"                    },
107
108   { "bd_rock",                                  "RocksDC.png"           },
109   { "bd_rock.xpos",                             "12"                    },
110   { "bd_rock.ypos",                             "10"                    },
111   { "bd_rock.frames",                           "1"                     },
112   { "bd_rock.EDITOR",                           "RocksDC.png"           },
113   { "bd_rock.EDITOR.xpos",                      "14"                    },
114   { "bd_rock.EDITOR.ypos",                      "14"                    },
115   { "bd_rock.moving.left",                      "RocksDC.png"           },
116   { "bd_rock.moving.left.xpos",                 "12"                    },
117   { "bd_rock.moving.left.ypos",                 "10"                    },
118   { "bd_rock.moving.left.frames",               "4"                     },
119   { "bd_rock.moving.left.delay",                "2"                     },
120   { "bd_rock.moving.left.anim_mode",            "reverse"               },
121   { "bd_rock.moving.right",                     "RocksDC.png"           },
122   { "bd_rock.moving.right.xpos",                "12"                    },
123   { "bd_rock.moving.right.ypos",                "10"                    },
124   { "bd_rock.moving.right.frames",              "4"                     },
125   { "bd_rock.moving.right.start_frame",         "1"                     },
126   { "bd_rock.moving.right.delay",               "2"                     },
127   { "bd_rock.pushing.left",                     "RocksDC.png"           },
128   { "bd_rock.pushing.left.xpos",                "12"                    },
129   { "bd_rock.pushing.left.ypos",                "10"                    },
130   { "bd_rock.pushing.left.frames",              "4"                     },
131   { "bd_rock.pushing.left.delay",               "2"                     },
132   { "bd_rock.pushing.left.anim_mode",           "reverse"               },
133   { "bd_rock.pushing.right",                    "RocksDC.png"           },
134   { "bd_rock.pushing.right.xpos",               "12"                    },
135   { "bd_rock.pushing.right.ypos",               "10"                    },
136   { "bd_rock.pushing.right.frames",             "4"                     },
137   { "bd_rock.pushing.right.start_frame",        "1"                     },
138   { "bd_rock.pushing.right.delay",              "2"                     },
139
140   { "bd_diamond",                               "RocksElements.png"     },
141   { "bd_diamond.xpos",                          "0"                     },
142   { "bd_diamond.ypos",                          "10"                    },
143   { "bd_diamond.frames",                        "4"                     },
144   { "bd_diamond.delay",                         "4"                     },
145   { "bd_diamond.anim_mode",                     "reverse"               },
146   { "bd_diamond.moving",                        "RocksElements.png"     },
147   { "bd_diamond.moving.xpos",                   "3"                     },
148   { "bd_diamond.moving.ypos",                   "10"                    },
149   { "bd_diamond.moving.frames",                 "2"                     },
150   { "bd_diamond.moving.delay",                  "4"                     },
151   { "bd_diamond.falling",                       "RocksElements.png"     },
152   { "bd_diamond.falling.xpos",                  "3"                     },
153   { "bd_diamond.falling.ypos",                  "10"                    },
154   { "bd_diamond.falling.frames",                "2"                     },
155   { "bd_diamond.falling.delay",                 "4"                     },
156   { "bd_diamond.collecting",                    "RocksCollect.png"      },
157   { "bd_diamond.collecting.xpos",               "0"                     },
158   { "bd_diamond.collecting.ypos",               "8"                     },
159   { "bd_diamond.collecting.frames",             "7"                     },
160   { "bd_diamond.collecting.anim_mode",          "linear"                },
161
162   { "bd_magic_wall",                            "RocksElements.png"     },
163   { "bd_magic_wall.xpos",                       "12"                    },
164   { "bd_magic_wall.ypos",                       "10"                    },
165   { "bd_magic_wall.frames",                     "1"                     },
166   { "bd_magic_wall.active",                     "RocksElements.png"     },
167   { "bd_magic_wall.active.xpos",                "12"                    },
168   { "bd_magic_wall.active.ypos",                "10"                    },
169   { "bd_magic_wall.active.frames",              "4"                     },
170   { "bd_magic_wall.active.anim_mode",           "reverse"               },
171   { "bd_magic_wall.active.delay",               "4"                     },
172   { "bd_magic_wall.active.global_sync",         "true"                  },
173   { "bd_magic_wall.filling",                    "RocksElements.png"     },
174   { "bd_magic_wall.filling.xpos",               "12"                    },
175   { "bd_magic_wall.filling.ypos",               "10"                    },
176   { "bd_magic_wall.filling.frames",             "4"                     },
177   { "bd_magic_wall.filling.anim_mode",          "reverse"               },
178   { "bd_magic_wall.filling.delay",              "4"                     },
179   { "bd_magic_wall.filling.global_sync",        "true"                  },
180   { "bd_magic_wall_full",                       "RocksElements.png"     },
181   { "bd_magic_wall_full.xpos",                  "12"                    },
182   { "bd_magic_wall_full.ypos",                  "10"                    },
183   { "bd_magic_wall_full.frames",                "4"                     },
184   { "bd_magic_wall_full.anim_mode",             "reverse"               },
185   { "bd_magic_wall_full.delay",                 "4"                     },
186   { "bd_magic_wall_full.global_sync",           "true"                  },
187   { "bd_magic_wall.emptying",                   "RocksElements.png"     },
188   { "bd_magic_wall.emptying.xpos",              "12"                    },
189   { "bd_magic_wall.emptying.ypos",              "10"                    },
190   { "bd_magic_wall.emptying.frames",            "4"                     },
191   { "bd_magic_wall.emptying.anim_mode",         "reverse"               },
192   { "bd_magic_wall.emptying.delay",             "4"                     },
193   { "bd_magic_wall.emptying.global_sync",       "true"                  },
194   { "bd_magic_wall_dead",                       "RocksElements.png"     },
195   { "bd_magic_wall_dead.xpos",                  "12"                    },
196   { "bd_magic_wall_dead.ypos",                  "10"                    },
197   { "bd_magic_wall_dead.frames",                "1"                     },
198
199   { "bd_amoeba",                                "RocksElements.png"     },
200   { "bd_amoeba.xpos",                           "8"                     },
201   { "bd_amoeba.ypos",                           "6"                     },
202   { "bd_amoeba.frames",                         "4"                     },
203   { "bd_amoeba.delay",                          "1000000"               },
204   { "bd_amoeba.anim_mode",                      "random"                },
205   { "bd_amoeba.EDITOR",                         "RocksElements.png"     },
206   { "bd_amoeba.EDITOR.xpos",                    "8"                     },
207   { "bd_amoeba.EDITOR.ypos",                    "7"                     },
208
209   { "bd_butterfly",                             "RocksElements.png"     },
210   { "bd_butterfly.xpos",                        "4"                     },
211   { "bd_butterfly.ypos",                        "12"                    },
212   { "bd_butterfly.frames",                      "2"                     },
213   { "bd_butterfly.anim_mode",                   "pingpong"              },
214   { "bd_butterfly.delay",                       "4"                     },
215   { "bd_butterfly.global_sync",                 "true"                  },
216   { "bd_butterfly.right",                       "RocksElements.png"     },
217   { "bd_butterfly.right.xpos",                  "4"                     },
218   { "bd_butterfly.right.ypos",                  "12"                    },
219   { "bd_butterfly.right.frames",                "2"                     },
220   { "bd_butterfly.right.anim_mode",             "pingpong"              },
221   { "bd_butterfly.right.delay",                 "4"                     },
222   { "bd_butterfly.right.global_sync",           "true"                  },
223   { "bd_butterfly.right.EDITOR",                "RocksElements.png"     },
224   { "bd_butterfly.right.EDITOR.xpos",           "8"                     },
225   { "bd_butterfly.right.EDITOR.ypos",           "12"                    },
226   { "bd_butterfly.up",                          "RocksElements.png"     },
227   { "bd_butterfly.up.xpos",                     "4"                     },
228   { "bd_butterfly.up.ypos",                     "12"                    },
229   { "bd_butterfly.up.frames",                   "2"                     },
230   { "bd_butterfly.up.anim_mode",                "pingpong"              },
231   { "bd_butterfly.up.delay",                    "4"                     },
232   { "bd_butterfly.up.global_sync",              "true"                  },
233   { "bd_butterfly.up.EDITOR",                   "RocksElements.png"     },
234   { "bd_butterfly.up.EDITOR.xpos",              "9"                     },
235   { "bd_butterfly.up.EDITOR.ypos",              "12"                    },
236   { "bd_butterfly.left",                        "RocksElements.png"     },
237   { "bd_butterfly.left.xpos",                   "4"                     },
238   { "bd_butterfly.left.ypos",                   "12"                    },
239   { "bd_butterfly.left.frames",                 "2"                     },
240   { "bd_butterfly.left.anim_mode",              "pingpong"              },
241   { "bd_butterfly.left.delay",                  "4"                     },
242   { "bd_butterfly.left.global_sync",            "true"                  },
243   { "bd_butterfly.left.EDITOR",                 "RocksElements.png"     },
244   { "bd_butterfly.left.EDITOR.xpos",            "10"                    },
245   { "bd_butterfly.left.EDITOR.ypos",            "12"                    },
246   { "bd_butterfly.down",                        "RocksElements.png"     },
247   { "bd_butterfly.down.xpos",                   "4"                     },
248   { "bd_butterfly.down.ypos",                   "12"                    },
249   { "bd_butterfly.down.frames",                 "2"                     },
250   { "bd_butterfly.down.anim_mode",              "pingpong"              },
251   { "bd_butterfly.down.delay",                  "4"                     },
252   { "bd_butterfly.down.global_sync",            "true"                  },
253   { "bd_butterfly.down.EDITOR",                 "RocksElements.png"     },
254   { "bd_butterfly.down.EDITOR.xpos",            "11"                    },
255   { "bd_butterfly.down.EDITOR.ypos",            "12"                    },
256
257   { "bd_firefly",                               "RocksElements.png"     },
258   { "bd_firefly.xpos",                          "6"                     },
259   { "bd_firefly.ypos",                          "12"                    },
260   { "bd_firefly.frames",                        "2"                     },
261   { "bd_firefly.anim_mode",                     "pingpong"              },
262   { "bd_firefly.delay",                         "4"                     },
263   { "bd_firefly.global_sync",                   "true"                  },
264   { "bd_firefly.right",                         "RocksElements.png"     },
265   { "bd_firefly.right.xpos",                    "6"                     },
266   { "bd_firefly.right.ypos",                    "12"                    },
267   { "bd_firefly.right.frames",                  "2"                     },
268   { "bd_firefly.right.anim_mode",               "pingpong"              },
269   { "bd_firefly.right.delay",                   "4"                     },
270   { "bd_firefly.right.global_sync",             "true"                  },
271   { "bd_firefly.right.EDITOR",                  "RocksElements.png"     },
272   { "bd_firefly.right.EDITOR.xpos",             "12"                    },
273   { "bd_firefly.right.EDITOR.ypos",             "12"                    },
274   { "bd_firefly.up",                            "RocksElements.png"     },
275   { "bd_firefly.up.xpos",                       "6"                     },
276   { "bd_firefly.up.ypos",                       "12"                    },
277   { "bd_firefly.up.frames",                     "2"                     },
278   { "bd_firefly.up.anim_mode",                  "pingpong"              },
279   { "bd_firefly.up.delay",                      "4"                     },
280   { "bd_firefly.up.global_sync",                "true"                  },
281   { "bd_firefly.up.EDITOR",                     "RocksElements.png"     },
282   { "bd_firefly.up.EDITOR.xpos",                "13"                    },
283   { "bd_firefly.up.EDITOR.ypos",                "12"                    },
284   { "bd_firefly.left",                          "RocksElements.png"     },
285   { "bd_firefly.left.xpos",                     "6"                     },
286   { "bd_firefly.left.ypos",                     "12"                    },
287   { "bd_firefly.left.frames",                   "2"                     },
288   { "bd_firefly.left.anim_mode",                "pingpong"              },
289   { "bd_firefly.left.delay",                    "4"                     },
290   { "bd_firefly.left.global_sync",              "true"                  },
291   { "bd_firefly.left.EDITOR",                   "RocksElements.png"     },
292   { "bd_firefly.left.EDITOR.xpos",              "14"                    },
293   { "bd_firefly.left.EDITOR.ypos",              "12"                    },
294   { "bd_firefly.down",                          "RocksElements.png"     },
295   { "bd_firefly.down.xpos",                     "6"                     },
296   { "bd_firefly.down.ypos",                     "12"                    },
297   { "bd_firefly.down.frames",                   "2"                     },
298   { "bd_firefly.down.anim_mode",                "pingpong"              },
299   { "bd_firefly.down.delay",                    "4"                     },
300   { "bd_firefly.down.global_sync",              "true"                  },
301   { "bd_firefly.down.EDITOR",                   "RocksElements.png"     },
302   { "bd_firefly.down.EDITOR.xpos",              "15"                    },
303   { "bd_firefly.down.EDITOR.ypos",              "12"                    },
304
305   // images for Supaplex style elements and actions
306
307   { "[sp_default].exploding",                   "RocksSP.png"           },
308   { "[sp_default].exploding.xpos",              "8"                     },
309   { "[sp_default].exploding.ypos",              "3"                     },
310   { "[sp_default].exploding.frames",            "8"                     },
311   { "[sp_default].exploding.delay",             "4"                     },
312   { "[sp_default].exploding.anim_mode",         "linear"                },
313
314   { "sp_zonk",                                  "RocksSP.png"           },
315   { "sp_zonk.xpos",                             "1"                     },
316   { "sp_zonk.ypos",                             "0"                     },
317   { "sp_zonk.frames",                           "1"                     },
318   { "sp_zonk.moving.left",                      "RocksSP.png"           },
319   { "sp_zonk.moving.left.xpos",                 "0"                     },
320   { "sp_zonk.moving.left.ypos",                 "6"                     },
321   { "sp_zonk.moving.left.frames",               "4"                     },
322   { "sp_zonk.moving.left.delay",                "1"                     },
323   { "sp_zonk.moving.left.anim_mode",            "reverse"               },
324   { "sp_zonk.moving.right",                     "RocksSP.png"           },
325   { "sp_zonk.moving.right.xpos",                "0"                     },
326   { "sp_zonk.moving.right.ypos",                "6"                     },
327   { "sp_zonk.moving.right.frames",              "4"                     },
328   { "sp_zonk.moving.right.start_frame",         "1"                     },
329   { "sp_zonk.moving.right.delay",               "1"                     },
330   { "sp_zonk.pushing.left",                     "RocksSP.png"           },
331   { "sp_zonk.pushing.left.xpos",                "0"                     },
332   { "sp_zonk.pushing.left.ypos",                "6"                     },
333   { "sp_zonk.pushing.left.frames",              "4"                     },
334   { "sp_zonk.pushing.left.delay",               "1"                     },
335   { "sp_zonk.pushing.left.anim_mode",           "reverse"               },
336   { "sp_zonk.pushing.right",                    "RocksSP.png"           },
337   { "sp_zonk.pushing.right.xpos",               "0"                     },
338   { "sp_zonk.pushing.right.ypos",               "6"                     },
339   { "sp_zonk.pushing.right.frames",             "4"                     },
340   { "sp_zonk.pushing.right.start_frame",        "1"                     },
341   { "sp_zonk.pushing.right.delay",              "1"                     },
342
343   { "sp_base",                                  "RocksSP.png"           },
344   { "sp_base.xpos",                             "2"                     },
345   { "sp_base.ypos",                             "0"                     },
346   { "sp_base.frames",                           "1"                     },
347   { "sp_base.digging",                          "RocksSP.png"           },
348   { "sp_base.digging.xpos",                     "2"                     },
349   { "sp_base.digging.ypos",                     "0"                     },
350   { "sp_base.digging.frames",                   "1"                     },
351   { "sp_base.digging.anim_mode",                "opaque_player"         },
352   { "sp_base.snapping",                         "RocksSP.png"           },
353   { "sp_base.snapping.xpos",                    "8"                     },
354   { "sp_base.snapping.ypos",                    "2"                     },
355   { "sp_base.snapping.frames",                  "7"                     },
356   { "sp_base.snapping.anim_mode",               "linear"                },
357
358   { "sp_murphy",                                "RocksSP.png"           },
359   { "sp_murphy.xpos",                           "3"                     },
360   { "sp_murphy.ypos",                           "0"                     },
361   { "sp_murphy.frames",                         "1"                     },
362   { "sp_murphy.moving.left",                    "RocksSP.png"           },
363   { "sp_murphy.moving.left.xpos",               "8"                     },
364   { "sp_murphy.moving.left.ypos",               "0"                     },
365   { "sp_murphy.moving.left.frames",             "3"                     },
366   { "sp_murphy.moving.left.anim_mode",          "pingpong"              },
367   { "sp_murphy.moving.left.delay",              "2"                     },
368   { "sp_murphy.moving.left.start_frame",        "1"                     },
369   { "sp_murphy.moving.right",                   "RocksSP.png"           },
370   { "sp_murphy.moving.right.xpos",              "11"                    },
371   { "sp_murphy.moving.right.ypos",              "0"                     },
372   { "sp_murphy.moving.right.frames",            "3"                     },
373   { "sp_murphy.moving.right.anim_mode",         "pingpong"              },
374   { "sp_murphy.moving.right.delay",             "2"                     },
375   { "sp_murphy.moving.right.start_frame",       "1"                     },
376   { "sp_murphy.digging.left",                   "RocksSP.png"           },
377   { "sp_murphy.digging.left.xpos",              "8"                     },
378   { "sp_murphy.digging.left.ypos",              "0"                     },
379   { "sp_murphy.digging.left.frames",            "3"                     },
380   { "sp_murphy.digging.left.anim_mode",         "pingpong"              },
381   { "sp_murphy.digging.left.delay",             "2"                     },
382   { "sp_murphy.digging.left.start_frame",       "1"                     },
383   { "sp_murphy.digging.right",                  "RocksSP.png"           },
384   { "sp_murphy.digging.right.xpos",             "11"                    },
385   { "sp_murphy.digging.right.ypos",             "0"                     },
386   { "sp_murphy.digging.right.frames",           "3"                     },
387   { "sp_murphy.digging.right.anim_mode",        "pingpong"              },
388   { "sp_murphy.digging.right.delay",            "2"                     },
389   { "sp_murphy.digging.right.start_frame",      "1"                     },
390   { "sp_murphy.collecting.left",                "RocksSP.png"           },
391   { "sp_murphy.collecting.left.xpos",           "8"                     },
392   { "sp_murphy.collecting.left.ypos",           "0"                     },
393   { "sp_murphy.collecting.left.frames",         "3"                     },
394   { "sp_murphy.collecting.left.anim_mode",      "pingpong"              },
395   { "sp_murphy.collecting.left.delay",          "2"                     },
396   { "sp_murphy.collecting.left.start_frame",    "1"                     },
397   { "sp_murphy.collecting.right",               "RocksSP.png"           },
398   { "sp_murphy.collecting.right.xpos",          "11"                    },
399   { "sp_murphy.collecting.right.ypos",          "0"                     },
400   { "sp_murphy.collecting.right.frames",        "3"                     },
401   { "sp_murphy.collecting.right.anim_mode",     "pingpong"              },
402   { "sp_murphy.collecting.right.delay",         "2"                     },
403   { "sp_murphy.collecting.right.start_frame",   "1"                     },
404   { "sp_murphy.pushing.left",                   "RocksSP.png"           },
405   { "sp_murphy.pushing.left.xpos",              "11"                    },
406   { "sp_murphy.pushing.left.ypos",              "1"                     },
407   { "sp_murphy.pushing.left.frames",            "1"                     },
408   { "sp_murphy.pushing.right",                  "RocksSP.png"           },
409   { "sp_murphy.pushing.right.xpos",             "10"                    },
410   { "sp_murphy.pushing.right.ypos",             "1"                     },
411   { "sp_murphy.pushing.right.frames",           "1"                     },
412   { "sp_murphy.snapping.left",                  "RocksSP.png"           },
413   { "sp_murphy.snapping.left.xpos",             "9"                     },
414   { "sp_murphy.snapping.left.ypos",             "1"                     },
415   { "sp_murphy.snapping.left.frames",           "1"                     },
416   { "sp_murphy.snapping.right",                 "RocksSP.png"           },
417   { "sp_murphy.snapping.right.xpos",            "8"                     },
418   { "sp_murphy.snapping.right.ypos",            "1"                     },
419   { "sp_murphy.snapping.right.frames",          "1"                     },
420   { "sp_murphy.snapping.up",                    "RocksSP.png"           },
421   { "sp_murphy.snapping.up.xpos",               "14"                    },
422   { "sp_murphy.snapping.up.ypos",               "0"                     },
423   { "sp_murphy.snapping.up.frames",             "1"                     },
424   { "sp_murphy.snapping.down",                  "RocksSP.png"           },
425   { "sp_murphy.snapping.down.xpos",             "15"                    },
426   { "sp_murphy.snapping.down.ypos",             "0"                     },
427   { "sp_murphy.snapping.down.frames",           "1"                     },
428   { "sp_murphy.boring",                         "RocksSP.png"           },
429   { "sp_murphy.boring.xpos",                    "11"                    },
430   { "sp_murphy.boring.ypos",                    "12"                    },
431   { "sp_murphy.boring.frames",                  "1"                     },
432   { "sp_murphy.boring[1]",                      "RocksSP.png"           },
433   { "sp_murphy.boring[1].xpos",                 "0"                     },
434   { "sp_murphy.boring[1].ypos",                 "12"                    },
435   { "sp_murphy.boring[1].frames",               "12"                    },
436   { "sp_murphy.boring[1].delay",                "10"                    },
437   { "sp_murphy.boring[1].anim_mode",            "linear"                },
438   { "sp_murphy.boring[1].anim_delay_fixed",     "120"                   },
439   { "sp_murphy.boring[1].anim_delay_random",    "0"                     },
440   { "sp_murphy.boring[1].post_delay_fixed",     "500"                   },
441   { "sp_murphy.boring[1].post_delay_random",    "500"                   },
442   { "sp_murphy.sleeping.left",                  "RocksSP.png"           },
443   { "sp_murphy.sleeping.left.xpos",             "4"                     },
444   { "sp_murphy.sleeping.left.ypos",             "9"                     },
445   { "sp_murphy.sleeping.left.frames",           "3"                     },
446   { "sp_murphy.sleeping.left.delay",            "100"                   },
447   { "sp_murphy.sleeping.left.anim_mode",        "linear,reverse"        },
448   { "sp_murphy.sleeping.right",                 "RocksSP.png"           },
449   { "sp_murphy.sleeping.right.xpos",            "13"                    },
450   { "sp_murphy.sleeping.right.ypos",            "12"                    },
451   { "sp_murphy.sleeping.right.frames",          "3"                     },
452   { "sp_murphy.sleeping.right.delay",           "100"                   },
453   { "sp_murphy.sleeping.right.anim_mode",       "linear"                },
454   { "sp_murphy.dropping",                       "RocksSP.png"           },
455   { "sp_murphy.dropping.xpos",                  "11"                    },
456   { "sp_murphy.dropping.ypos",                  "12"                    },
457   { "sp_murphy.dropping.frames",                "1"                     },
458   { "sp_murphy.shrinking",                      "RocksSP.png"           },
459   { "sp_murphy.shrinking.xpos",                 "8"                     },
460   { "sp_murphy.shrinking.ypos",                 "14"                    },
461   { "sp_murphy.shrinking.frames",               "8"                     },
462   { "sp_murphy.shrinking.delay",                "4"                     },
463   { "sp_murphy.shrinking.anim_mode",            "linear"                },
464
465   { "sp_murphy_clone",                          "RocksSP.png"           },
466   { "sp_murphy_clone.xpos",                     "3"                     },
467   { "sp_murphy_clone.ypos",                     "0"                     },
468   { "sp_murphy_clone.frames",                   "1"                     },
469
470   { "sp_infotron",                              "RocksSP.png"           },
471   { "sp_infotron.xpos",                         "4"                     },
472   { "sp_infotron.ypos",                         "0"                     },
473   { "sp_infotron.frames",                       "1"                     },
474   { "sp_infotron.EDITOR",                       "RocksSP.png"           },
475   { "sp_infotron.EDITOR.xpos",                  "8"                     },
476   { "sp_infotron.EDITOR.ypos",                  "11"                    },
477   { "sp_infotron.moving.left",                  "RocksSP.png"           },
478   { "sp_infotron.moving.left.xpos",             "8"                     },
479   { "sp_infotron.moving.left.ypos",             "13"                    },
480   { "sp_infotron.moving.left.frames",           "8"                     },
481   { "sp_infotron.moving.right",                 "RocksSP.png"           },
482   { "sp_infotron.moving.right.xpos",            "8"                     },
483   { "sp_infotron.moving.right.ypos",            "13"                    },
484   { "sp_infotron.moving.right.frames",          "8"                     },
485   { "sp_infotron.moving.right.start_frame",     "6"                     },
486   { "sp_infotron.moving.right.anim_mode",       "reverse"               },
487   { "sp_infotron.collecting",                   "RocksSP.png"           },
488   { "sp_infotron.collecting.xpos",              "8"                     },
489   { "sp_infotron.collecting.ypos",              "7"                     },
490   { "sp_infotron.collecting.frames",            "8"                     },
491   { "sp_infotron.collecting.anim_mode",         "linear"                },
492
493   { "sp_chip_single",                           "RocksSP.png"           },
494   { "sp_chip_single.xpos",                      "5"                     },
495   { "sp_chip_single.ypos",                      "0"                     },
496   { "sp_chip_single.frames",                    "1"                     },
497   { "sp_chip_left",                             "RocksSP.png"           },
498   { "sp_chip_left.xpos",                        "2"                     },
499   { "sp_chip_left.ypos",                        "3"                     },
500   { "sp_chip_left.frames",                      "1"                     },
501   { "sp_chip_right",                            "RocksSP.png"           },
502   { "sp_chip_right.xpos",                       "3"                     },
503   { "sp_chip_right.ypos",                       "3"                     },
504   { "sp_chip_right.frames",                     "1"                     },
505   { "sp_chip_top",                              "RocksSP.png"           },
506   { "sp_chip_top.xpos",                         "6"                     },
507   { "sp_chip_top.ypos",                         "4"                     },
508   { "sp_chip_top.frames",                       "1"                     },
509   { "sp_chip_bottom",                           "RocksSP.png"           },
510   { "sp_chip_bottom.xpos",                      "7"                     },
511   { "sp_chip_bottom.ypos",                      "4"                     },
512   { "sp_chip_bottom.frames",                    "1"                     },
513
514   { "sp_hardware_gray",                         "RocksSP.png"           },
515   { "sp_hardware_gray.xpos",                    "6"                     },
516   { "sp_hardware_gray.ypos",                    "0"                     },
517   { "sp_hardware_gray.frames",                  "1"                     },
518   { "sp_hardware_green",                        "RocksSP.png"           },
519   { "sp_hardware_green.xpos",                   "5"                     },
520   { "sp_hardware_green.ypos",                   "3"                     },
521   { "sp_hardware_green.frames",                 "1"                     },
522   { "sp_hardware_blue",                         "RocksSP.png"           },
523   { "sp_hardware_blue.xpos",                    "6"                     },
524   { "sp_hardware_blue.ypos",                    "3"                     },
525   { "sp_hardware_blue.frames",                  "1"                     },
526   { "sp_hardware_red",                          "RocksSP.png"           },
527   { "sp_hardware_red.xpos",                     "7"                     },
528   { "sp_hardware_red.ypos",                     "3"                     },
529   { "sp_hardware_red.frames",                   "1"                     },
530   { "sp_hardware_yellow",                       "RocksSP.png"           },
531   { "sp_hardware_yellow.xpos",                  "0"                     },
532   { "sp_hardware_yellow.ypos",                  "4"                     },
533   { "sp_hardware_yellow.frames",                "1"                     },
534
535   { "sp_exit_closed",                           "RocksSP.png"           },
536   { "sp_exit_closed.xpos",                      "7"                     },
537   { "sp_exit_closed.ypos",                      "0"                     },
538   { "sp_exit_closed.frames",                    "1"                     },
539   { "sp_exit.opening",                          "RocksSP.png"           },
540   { "sp_exit.opening.xpos",                     "7"                     },
541   { "sp_exit.opening.ypos",                     "0"                     },
542   { "sp_exit.opening.frames",                   "1"                     },
543   { "sp_exit_open",                             "RocksSP.png"           },
544   { "sp_exit_open.xpos",                        "7"                     },
545   { "sp_exit_open.ypos",                        "0"                     },
546   { "sp_exit_open.frames",                      "1"                     },
547   { "sp_exit.closing",                          "RocksSP.png"           },
548   { "sp_exit.closing.xpos",                     "7"                     },
549   { "sp_exit.closing.ypos",                     "0"                     },
550   { "sp_exit.closing.frames",                   "1"                     },
551
552   { "sp_disk_orange",                           "RocksSP.png"           },
553   { "sp_disk_orange.xpos",                      "0"                     },
554   { "sp_disk_orange.ypos",                      "1"                     },
555   { "sp_disk_orange.frames",                    "1"                     },
556
557   { "sp_disk_yellow",                           "RocksSP.png"           },
558   { "sp_disk_yellow.xpos",                      "2"                     },
559   { "sp_disk_yellow.ypos",                      "2"                     },
560   { "sp_disk_yellow.frames",                    "1"                     },
561
562   { "sp_disk_red",                              "RocksSP.png"           },
563   { "sp_disk_red.xpos",                         "4"                     },
564   { "sp_disk_red.ypos",                         "2"                     },
565   { "sp_disk_red.frames",                       "1"                     },
566   { "sp_disk_red.collecting",                   "RocksSP.png"           },
567   { "sp_disk_red.collecting.xpos",              "9"                     },
568   { "sp_disk_red.collecting.ypos",              "5"                     },
569   { "sp_disk_red.collecting.frames",            "7"                     },
570   { "sp_disk_red.collecting.anim_mode",         "linear"                },
571   { "sp_disk_red.active",                       "RocksSP.png"           },
572   { "sp_disk_red.active.xpos",                  "4"                     },
573   { "sp_disk_red.active.ypos",                  "2"                     },
574   { "sp_disk_red.active.frames",                "1"                     },
575
576   { "sp_port_right",                            "RocksSP.png"           },
577   { "sp_port_right.xpos",                       "1"                     },
578   { "sp_port_right.ypos",                       "1"                     },
579   { "sp_port_right.frames",                     "1"                     },
580   { "sp_port_down",                             "RocksSP.png"           },
581   { "sp_port_down.xpos",                        "2"                     },
582   { "sp_port_down.ypos",                        "1"                     },
583   { "sp_port_down.frames",                      "1"                     },
584   { "sp_port_left",                             "RocksSP.png"           },
585   { "sp_port_left.xpos",                        "3"                     },
586   { "sp_port_left.ypos",                        "1"                     },
587   { "sp_port_left.frames",                      "1"                     },
588   { "sp_port_up",                               "RocksSP.png"           },
589   { "sp_port_up.xpos",                          "4"                     },
590   { "sp_port_up.ypos",                          "1"                     },
591   { "sp_port_up.frames",                        "1"                     },
592   { "sp_port_horizontal",                       "RocksSP.png"           },
593   { "sp_port_horizontal.xpos",                  "6"                     },
594   { "sp_port_horizontal.ypos",                  "2"                     },
595   { "sp_port_horizontal.frames",                "1"                     },
596   { "sp_port_vertical",                         "RocksSP.png"           },
597   { "sp_port_vertical.xpos",                    "5"                     },
598   { "sp_port_vertical.ypos",                    "2"                     },
599   { "sp_port_vertical.frames",                  "1"                     },
600   { "sp_port_any",                              "RocksSP.png"           },
601   { "sp_port_any.xpos",                         "7"                     },
602   { "sp_port_any.ypos",                         "2"                     },
603   { "sp_port_any.frames",                       "1"                     },
604   { "sp_gravity_port_right",                    "RocksSP.png"           },
605   { "sp_gravity_port_right.xpos",               "1"                     },
606   { "sp_gravity_port_right.ypos",               "1"                     },
607   { "sp_gravity_port_right.frames",             "1"                     },
608   { "sp_gravity_port_right.EDITOR",             "RocksSP.png"           },
609   { "sp_gravity_port_right.EDITOR.xpos",        "0"                     },
610   { "sp_gravity_port_right.EDITOR.ypos",        "14"                    },
611   { "sp_gravity_port_down",                     "RocksSP.png"           },
612   { "sp_gravity_port_down.xpos",                "2"                     },
613   { "sp_gravity_port_down.ypos",                "1"                     },
614   { "sp_gravity_port_down.frames",              "1"                     },
615   { "sp_gravity_port_down.EDITOR",              "RocksSP.png"           },
616   { "sp_gravity_port_down.EDITOR.xpos",         "1"                     },
617   { "sp_gravity_port_down.EDITOR.ypos",         "14"                    },
618   { "sp_gravity_port_left",                     "RocksSP.png"           },
619   { "sp_gravity_port_left.xpos",                "3"                     },
620   { "sp_gravity_port_left.ypos",                "1"                     },
621   { "sp_gravity_port_left.frames",              "1"                     },
622   { "sp_gravity_port_left.EDITOR",              "RocksSP.png"           },
623   { "sp_gravity_port_left.EDITOR.xpos",         "2"                     },
624   { "sp_gravity_port_left.EDITOR.ypos",         "14"                    },
625   { "sp_gravity_port_up",                       "RocksSP.png"           },
626   { "sp_gravity_port_up.xpos",                  "4"                     },
627   { "sp_gravity_port_up.ypos",                  "1"                     },
628   { "sp_gravity_port_up.frames",                "1"                     },
629   { "sp_gravity_port_up.EDITOR",                "RocksSP.png"           },
630   { "sp_gravity_port_up.EDITOR.xpos",           "3"                     },
631   { "sp_gravity_port_up.EDITOR.ypos",           "14"                    },
632   { "sp_gravity_on_port_right",                 "RocksSP.png"           },
633   { "sp_gravity_on_port_right.xpos",            "1"                     },
634   { "sp_gravity_on_port_right.ypos",            "1"                     },
635   { "sp_gravity_on_port_right.frames",          "1"                     },
636   { "sp_gravity_on_port_right.EDITOR",          "RocksSP.png"           },
637   { "sp_gravity_on_port_right.EDITOR.xpos",     "0"                     },
638   { "sp_gravity_on_port_right.EDITOR.ypos",     "13"                    },
639   { "sp_gravity_on_port_down",                  "RocksSP.png"           },
640   { "sp_gravity_on_port_down.xpos",             "2"                     },
641   { "sp_gravity_on_port_down.ypos",             "1"                     },
642   { "sp_gravity_on_port_down.frames",           "1"                     },
643   { "sp_gravity_on_port_down.EDITOR",           "RocksSP.png"           },
644   { "sp_gravity_on_port_down.EDITOR.xpos",      "1"                     },
645   { "sp_gravity_on_port_down.EDITOR.ypos",      "13"                    },
646   { "sp_gravity_on_port_left",                  "RocksSP.png"           },
647   { "sp_gravity_on_port_left.xpos",             "3"                     },
648   { "sp_gravity_on_port_left.ypos",             "1"                     },
649   { "sp_gravity_on_port_left.frames",           "1"                     },
650   { "sp_gravity_on_port_left.EDITOR",           "RocksSP.png"           },
651   { "sp_gravity_on_port_left.EDITOR.xpos",      "2"                     },
652   { "sp_gravity_on_port_left.EDITOR.ypos",      "13"                    },
653   { "sp_gravity_on_port_up",                    "RocksSP.png"           },
654   { "sp_gravity_on_port_up.xpos",               "4"                     },
655   { "sp_gravity_on_port_up.ypos",               "1"                     },
656   { "sp_gravity_on_port_up.frames",             "1"                     },
657   { "sp_gravity_on_port_up.EDITOR",             "RocksSP.png"           },
658   { "sp_gravity_on_port_up.EDITOR.xpos",        "3"                     },
659   { "sp_gravity_on_port_up.EDITOR.ypos",        "13"                    },
660   { "sp_gravity_off_port_right",                "RocksSP.png"           },
661   { "sp_gravity_off_port_right.xpos",           "1"                     },
662   { "sp_gravity_off_port_right.ypos",           "1"                     },
663   { "sp_gravity_off_port_right.frames",         "1"                     },
664   { "sp_gravity_off_port_right.EDITOR",         "RocksSP.png"           },
665   { "sp_gravity_off_port_right.EDITOR.xpos",    "4"                     },
666   { "sp_gravity_off_port_right.EDITOR.ypos",    "13"                    },
667   { "sp_gravity_off_port_down",                 "RocksSP.png"           },
668   { "sp_gravity_off_port_down.xpos",            "2"                     },
669   { "sp_gravity_off_port_down.ypos",            "1"                     },
670   { "sp_gravity_off_port_down.frames",          "1"                     },
671   { "sp_gravity_off_port_down.EDITOR",          "RocksSP.png"           },
672   { "sp_gravity_off_port_down.EDITOR.xpos",     "5"                     },
673   { "sp_gravity_off_port_down.EDITOR.ypos",     "13"                    },
674   { "sp_gravity_off_port_left",                 "RocksSP.png"           },
675   { "sp_gravity_off_port_left.xpos",            "3"                     },
676   { "sp_gravity_off_port_left.ypos",            "1"                     },
677   { "sp_gravity_off_port_left.frames",          "1"                     },
678   { "sp_gravity_off_port_left.EDITOR",          "RocksSP.png"           },
679   { "sp_gravity_off_port_left.EDITOR.xpos",     "6"                     },
680   { "sp_gravity_off_port_left.EDITOR.ypos",     "13"                    },
681   { "sp_gravity_off_port_up",                   "RocksSP.png"           },
682   { "sp_gravity_off_port_up.xpos",              "4"                     },
683   { "sp_gravity_off_port_up.ypos",              "1"                     },
684   { "sp_gravity_off_port_up.frames",            "1"                     },
685   { "sp_gravity_off_port_up.EDITOR",            "RocksSP.png"           },
686   { "sp_gravity_off_port_up.EDITOR.xpos",       "7"                     },
687   { "sp_gravity_off_port_up.EDITOR.ypos",       "13"                    },
688
689   { "sp_sniksnak",                              "RocksSP.png"           },
690   { "sp_sniksnak.xpos",                         "1"                     },
691   { "sp_sniksnak.ypos",                         "2"                     },
692   { "sp_sniksnak.frames",                       "1"                     },
693   { "sp_sniksnak.left",                         "RocksSP.png"           },
694   { "sp_sniksnak.left.xpos",                    "8"                     },
695   { "sp_sniksnak.left.ypos",                    "8"                     },
696   { "sp_sniksnak.left.frames",                  "4"                     },
697   { "sp_sniksnak.left.anim_mode",               "pingpong2"             },
698   { "sp_sniksnak.right",                        "RocksSP.png"           },
699   { "sp_sniksnak.right.xpos",                   "12"                    },
700   { "sp_sniksnak.right.ypos",                   "8"                     },
701   { "sp_sniksnak.right.frames",                 "4"                     },
702   { "sp_sniksnak.right.anim_mode",              "pingpong2"             },
703   { "sp_sniksnak.up",                           "RocksSP.png"           },
704   { "sp_sniksnak.up.xpos",                      "8"                     },
705   { "sp_sniksnak.up.ypos",                      "9"                     },
706   { "sp_sniksnak.up.frames",                    "4"                     },
707   { "sp_sniksnak.up.anim_mode",                 "pingpong2"             },
708   { "sp_sniksnak.down",                         "RocksSP.png"           },
709   { "sp_sniksnak.down.xpos",                    "12"                    },
710   { "sp_sniksnak.down.ypos",                    "9"                     },
711   { "sp_sniksnak.down.frames",                  "4"                     },
712   { "sp_sniksnak.down.anim_mode",               "pingpong2"             },
713   { "sp_sniksnak.turning_from_left.up",         "RocksSP.png"           },
714   { "sp_sniksnak.turning_from_left.up.xpos",    "12"                    },
715   { "sp_sniksnak.turning_from_left.up.ypos",    "6"                     },
716   { "sp_sniksnak.turning_from_left.up.frames",  "2"                     },
717   { "sp_sniksnak.turning_from_left.up.delay",   "4"                     },
718   { "sp_sniksnak.turning_from_left.up.offset",  "1408"                  },
719   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"               },
720   { "sp_sniksnak.turning_from_left.down",       "RocksSP.png"           },
721   { "sp_sniksnak.turning_from_left.down.xpos",  "13"                    },
722   { "sp_sniksnak.turning_from_left.down.ypos",  "6"                     },
723   { "sp_sniksnak.turning_from_left.down.frames","2"                     },
724   { "sp_sniksnak.turning_from_left.down.delay", "4"                     },
725   { "sp_sniksnak.turning_from_left.down.offset","1504"                  },
726   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"             },
727   { "sp_sniksnak.turning_from_right.up",        "RocksSP.png"           },
728   { "sp_sniksnak.turning_from_right.up.xpos",   "15"                    },
729   { "sp_sniksnak.turning_from_right.up.ypos",   "6"                     },
730   { "sp_sniksnak.turning_from_right.up.frames", "2"                     },
731   { "sp_sniksnak.turning_from_right.up.delay",  "4"                     },
732   { "sp_sniksnak.turning_from_right.up.offset", "1312"                  },
733   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"              },
734   { "sp_sniksnak.turning_from_right.down",      "RocksSP.png"           },
735   { "sp_sniksnak.turning_from_right.down.xpos", "14"                    },
736   { "sp_sniksnak.turning_from_right.down.ypos", "6"                     },
737   { "sp_sniksnak.turning_from_right.down.frames","2"                    },
738   { "sp_sniksnak.turning_from_right.down.delay","4"                     },
739   { "sp_sniksnak.turning_from_right.down.offset","1472"                 },
740   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"            },
741   { "sp_sniksnak.turning_from_up.left",         "RocksSP.png"           },
742   { "sp_sniksnak.turning_from_up.left.xpos",    "12"                    },
743   { "sp_sniksnak.turning_from_up.left.ypos",    "6"                     },
744   { "sp_sniksnak.turning_from_up.left.frames",  "2"                     },
745   { "sp_sniksnak.turning_from_up.left.delay",   "4"                     },
746   { "sp_sniksnak.turning_from_up.left.offset",  "896"                   },
747   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"               },
748   { "sp_sniksnak.turning_from_up.right",        "RocksSP.png"           },
749   { "sp_sniksnak.turning_from_up.right.xpos",   "15"                    },
750   { "sp_sniksnak.turning_from_up.right.ypos",   "6"                     },
751   { "sp_sniksnak.turning_from_up.right.frames", "2"                     },
752   { "sp_sniksnak.turning_from_up.right.delay",  "4"                     },
753   { "sp_sniksnak.turning_from_up.right.offset", "928"                   },
754   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"              },
755   { "sp_sniksnak.turning_from_down.left",       "RocksSP.png"           },
756   { "sp_sniksnak.turning_from_down.left.xpos",  "13"                    },
757   { "sp_sniksnak.turning_from_down.left.ypos",  "6"                     },
758   { "sp_sniksnak.turning_from_down.left.frames","2"                     },
759   { "sp_sniksnak.turning_from_down.left.delay", "4"                     },
760   { "sp_sniksnak.turning_from_down.left.offset","864"                   },
761   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"             },
762   { "sp_sniksnak.turning_from_down.right",      "RocksSP.png"           },
763   { "sp_sniksnak.turning_from_down.right.xpos", "14"                    },
764   { "sp_sniksnak.turning_from_down.right.ypos", "6"                     },
765   { "sp_sniksnak.turning_from_down.right.frames","2"                    },
766   { "sp_sniksnak.turning_from_down.right.delay","4"                     },
767   { "sp_sniksnak.turning_from_down.right.offset","960"                  },
768   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"            },
769
770   { "sp_electron",                              "RocksSP.png"           },
771   { "sp_electron.xpos",                         "8"                     },
772   { "sp_electron.ypos",                         "10"                    },
773   { "sp_electron.frames",                       "8"                     },
774   { "sp_electron.delay",                        "4"                     },
775   { "sp_electron.global_sync",                  "true"                  },
776   { "sp_electron.EDITOR",                       "RocksSP.png"           },
777   { "sp_electron.EDITOR.xpos",                  "10"                    },
778   { "sp_electron.EDITOR.ypos",                  "11"                    },
779   { "sp_electron.exploding",                    "RocksSP.png"           },
780   { "sp_electron.exploding.xpos",               "8"                     },
781   { "sp_electron.exploding.ypos",               "4"                     },
782   { "sp_electron.exploding.frames",             "8"                     },
783   { "sp_electron.exploding.delay",              "4"                     },
784   { "sp_electron.exploding.anim_mode",          "linear"                },
785
786   { "sp_terminal",                              "RocksSP.png"           },
787   { "sp_terminal.xpos",                         "0"                     },
788   { "sp_terminal.ypos",                         "10"                    },
789   { "sp_terminal.frames",                       "7"                     },
790   { "sp_terminal.delay",                        "12"                    },
791   { "sp_terminal.EDITOR",                       "RocksSP.png"           },
792   { "sp_terminal.EDITOR.xpos",                  "9"                     },
793   { "sp_terminal.EDITOR.ypos",                  "11"                    },
794   { "sp_terminal.active",                       "RocksSP.png"           },
795   { "sp_terminal.active.xpos",                  "0"                     },
796   { "sp_terminal.active.ypos",                  "11"                    },
797   { "sp_terminal.active.frames",                "7"                     },
798   { "sp_terminal.active.delay",                 "4"                     },
799
800   { "sp_buggy_base",                            "RocksSP.png"           },
801   { "sp_buggy_base.xpos",                       "1"                     },
802   { "sp_buggy_base.ypos",                       "3"                     },
803   { "sp_buggy_base.frames",                     "1"                     },
804   { "sp_buggy_base.EDITOR",                     "RocksSP.png"           },
805   { "sp_buggy_base.EDITOR.xpos",                "9"                     },
806   { "sp_buggy_base.EDITOR.ypos",                "6"                     },
807   { "sp_buggy_base.activating",                 "RocksSP.png"           },
808   { "sp_buggy_base.activating.xpos",            "15"                    },
809   { "sp_buggy_base.activating.ypos",            "2"                     },
810   { "sp_buggy_base.activating.frames",          "1"                     },
811   { "sp_buggy_base.active",                     "RocksSP.png"           },
812   { "sp_buggy_base.active.xpos",                "8"                     },
813   { "sp_buggy_base.active.ypos",                "6"                     },
814   { "sp_buggy_base.active.frames",              "4"                     },
815   { "sp_buggy_base.active.delay",               "4"                     },
816   { "sp_buggy_base.active.anim_mode",           "pingpong"              },
817
818   { "sp_hardware_base_1",                       "RocksSP.png"           },
819   { "sp_hardware_base_1.xpos",                  "4"                     },
820   { "sp_hardware_base_1.ypos",                  "3"                     },
821   { "sp_hardware_base_1.frames",                "1"                     },
822   { "sp_hardware_base_2",                       "RocksSP.png"           },
823   { "sp_hardware_base_2.xpos",                  "1"                     },
824   { "sp_hardware_base_2.ypos",                  "4"                     },
825   { "sp_hardware_base_2.frames",                "1"                     },
826   { "sp_hardware_base_3",                       "RocksSP.png"           },
827   { "sp_hardware_base_3.xpos",                  "2"                     },
828   { "sp_hardware_base_3.ypos",                  "4"                     },
829   { "sp_hardware_base_3.frames",                "1"                     },
830   { "sp_hardware_base_4",                       "RocksSP.png"           },
831   { "sp_hardware_base_4.xpos",                  "3"                     },
832   { "sp_hardware_base_4.ypos",                  "4"                     },
833   { "sp_hardware_base_4.frames",                "1"                     },
834   { "sp_hardware_base_5",                       "RocksSP.png"           },
835   { "sp_hardware_base_5.xpos",                  "4"                     },
836   { "sp_hardware_base_5.ypos",                  "4"                     },
837   { "sp_hardware_base_5.frames",                "1"                     },
838   { "sp_hardware_base_6",                       "RocksSP.png"           },
839   { "sp_hardware_base_6.xpos",                  "5"                     },
840   { "sp_hardware_base_6.ypos",                  "4"                     },
841   { "sp_hardware_base_6.frames",                "1"                     },
842
843   // images for Sokoban style elements and actions
844
845   { "sokoban_object",                           "RocksElements.png"     },
846   { "sokoban_object.xpos",                      "9"                     },
847   { "sokoban_object.ypos",                      "7"                     },
848   { "sokoban_object.frames",                    "1"                     },
849
850   { "sokoban_field_empty",                      "RocksElements.png"     },
851   { "sokoban_field_empty.xpos",                 "10"                    },
852   { "sokoban_field_empty.ypos",                 "7"                     },
853   { "sokoban_field_empty.frames",               "1"                     },
854
855   { "sokoban_field_full",                       "RocksElements.png"     },
856   { "sokoban_field_full.xpos",                  "11"                    },
857   { "sokoban_field_full.ypos",                  "7"                     },
858   { "sokoban_field_full.frames",                "1"                     },
859
860   { "sokoban_field_player",                     "RocksHeroes.png"       },
861   { "sokoban_field_player.xpos",                "0"                     },
862   { "sokoban_field_player.ypos",                "15"                    },
863   { "sokoban_field_player.frames",              "1"                     },
864
865   // images for Emerald Mine style elements and actions
866
867   { "empty_space",                              "RocksSP.png"           },
868   { "empty_space.xpos",                         "0"                     },
869   { "empty_space.ypos",                         "0"                     },
870   { "empty_space.frames",                       "1"                     },
871
872   { "sand",                                     "RocksElements.png"     },
873   { "sand.xpos",                                "0"                     },
874   { "sand.ypos",                                "0"                     },
875   { "sand.frames",                              "1"                     },
876   { "sand.CRUMBLED",                            "RocksElements.png"     },
877   { "sand.CRUMBLED.xpos",                       "1"                     },
878   { "sand.CRUMBLED.ypos",                       "0"                     },
879   { "sand.CRUMBLED.frames",                     "1"                     },
880   { "sand.digging.left",                        "RocksMore.png"         },
881   { "sand.digging.left.xpos",                   "6"                     },
882   { "sand.digging.left.ypos",                   "3"                     },
883   { "sand.digging.left.frames",                 "3"                     },
884   { "sand.digging.left.delay",                  "2"                     },
885   { "sand.digging.left.anim_mode",              "linear"                },
886   { "sand.digging.right",                       "RocksMore.png"         },
887   { "sand.digging.right.xpos",                  "9"                     },
888   { "sand.digging.right.ypos",                  "3"                     },
889   { "sand.digging.right.frames",                "3"                     },
890   { "sand.digging.right.delay",                 "2"                     },
891   { "sand.digging.right.anim_mode",             "linear"                },
892   { "sand.digging.up",                          "RocksMore.png"         },
893   { "sand.digging.up.xpos",                     "0"                     },
894   { "sand.digging.up.ypos",                     "3"                     },
895   { "sand.digging.up.frames",                   "3"                     },
896   { "sand.digging.up.delay",                    "2"                     },
897   { "sand.digging.up.anim_mode",                "linear"                },
898   { "sand.digging.down",                        "RocksMore.png"         },
899   { "sand.digging.down.xpos",                   "3"                     },
900   { "sand.digging.down.ypos",                   "3"                     },
901   { "sand.digging.down.frames",                 "3"                     },
902   { "sand.digging.down.delay",                  "2"                     },
903   { "sand.digging.down.anim_mode",              "linear"                },
904   { "sand.digging.left.CRUMBLED",               "RocksMore.png"         },
905   { "sand.digging.left.CRUMBLED.xpos",          "6"                     },
906   { "sand.digging.left.CRUMBLED.ypos",          "0"                     },
907   { "sand.digging.left.CRUMBLED.frames",        "3"                     },
908   { "sand.digging.left.CRUMBLED.delay",         "2"                     },
909   { "sand.digging.left.CRUMBLED.anim_mode",     "linear"                },
910   { "sand.digging.right.CRUMBLED",              "RocksMore.png"         },
911   { "sand.digging.right.CRUMBLED.xpos",         "9"                     },
912   { "sand.digging.right.CRUMBLED.ypos",         "0"                     },
913   { "sand.digging.right.CRUMBLED.frames",       "3"                     },
914   { "sand.digging.right.CRUMBLED.delay",        "2"                     },
915   { "sand.digging.right.CRUMBLED.anim_mode",    "linear"                },
916   { "sand.digging.up.CRUMBLED",                 "RocksMore.png"         },
917   { "sand.digging.up.CRUMBLED.xpos",            "0"                     },
918   { "sand.digging.up.CRUMBLED.ypos",            "0"                     },
919   { "sand.digging.up.CRUMBLED.frames",          "3"                     },
920   { "sand.digging.up.CRUMBLED.delay",           "2"                     },
921   { "sand.digging.up.CRUMBLED.anim_mode",       "linear"                },
922   { "sand.digging.down.CRUMBLED",               "RocksMore.png"         },
923   { "sand.digging.down.CRUMBLED.xpos",          "3"                     },
924   { "sand.digging.down.CRUMBLED.ypos",          "0"                     },
925   { "sand.digging.down.CRUMBLED.frames",        "3"                     },
926   { "sand.digging.down.CRUMBLED.delay",         "2"                     },
927   { "sand.digging.down.CRUMBLED.anim_mode",     "linear"                },
928
929   { "wall",                                     "RocksElements.png"     },
930   { "wall.xpos",                                "5"                     },
931   { "wall.ypos",                                "0"                     },
932   { "wall.frames",                              "1"                     },
933
934   { "wall_slippery",                            "RocksElements.png"     },
935   { "wall_slippery.xpos",                       "6"                     },
936   { "wall_slippery.ypos",                       "0"                     },
937   { "wall_slippery.frames",                     "1"                     },
938
939   { "steelwall",                                "RocksElements.png"     },
940   { "steelwall.xpos",                           "4"                     },
941   { "steelwall.ypos",                           "0"                     },
942   { "steelwall.frames",                         "1"                     },
943
944   { "rock",                                     "RocksElements.png"     },
945   { "rock.xpos",                                "12"                    },
946   { "rock.ypos",                                "0"                     },
947   { "rock.frames",                              "1"                     },
948   { "rock.moving.left",                         "RocksElements.png"     },
949   { "rock.moving.left.xpos",                    "12"                    },
950   { "rock.moving.left.ypos",                    "0"                     },
951   { "rock.moving.left.frames",                  "4"                     },
952   { "rock.moving.left.delay",                   "2"                     },
953   { "rock.moving.left.anim_mode",               "reverse"               },
954   { "rock.moving.right",                        "RocksElements.png"     },
955   { "rock.moving.right.xpos",                   "12"                    },
956   { "rock.moving.right.ypos",                   "0"                     },
957   { "rock.moving.right.frames",                 "4"                     },
958   { "rock.moving.right.start_frame",            "1"                     },
959   { "rock.moving.right.delay",                  "2"                     },
960   { "rock.pushing.left",                        "RocksElements.png"     },
961   { "rock.pushing.left.xpos",                   "12"                    },
962   { "rock.pushing.left.ypos",                   "0"                     },
963   { "rock.pushing.left.frames",                 "4"                     },
964   { "rock.pushing.left.delay",                  "2"                     },
965   { "rock.pushing.left.anim_mode",              "reverse"               },
966   { "rock.pushing.right",                       "RocksElements.png"     },
967   { "rock.pushing.right.xpos",                  "12"                    },
968   { "rock.pushing.right.ypos",                  "0"                     },
969   { "rock.pushing.right.frames",                "4"                     },
970   { "rock.pushing.right.start_frame",           "1"                     },
971   { "rock.pushing.right.delay",                 "2"                     },
972
973   { "emerald",                                  "RocksElements.png"     },
974   { "emerald.xpos",                             "8"                     },
975   { "emerald.ypos",                             "0"                     },
976   { "emerald.frames",                           "1"                     },
977   { "emerald.moving",                           "RocksElements.png"     },
978   { "emerald.moving.xpos",                      "8"                     },
979   { "emerald.moving.ypos",                      "0"                     },
980   { "emerald.moving.frames",                    "2"                     },
981   { "emerald.moving.delay",                     "4"                     },
982   { "emerald.falling",                          "RocksElements.png"     },
983   { "emerald.falling.xpos",                     "8"                     },
984   { "emerald.falling.ypos",                     "0"                     },
985   { "emerald.falling.frames",                   "2"                     },
986   { "emerald.falling.delay",                    "4"                     },
987   { "emerald.collecting",                       "RocksCollect.png"      },
988   { "emerald.collecting.xpos",                  "0"                     },
989   { "emerald.collecting.ypos",                  "0"                     },
990   { "emerald.collecting.frames",                "7"                     },
991   { "emerald.collecting.anim_mode",             "linear"                },
992
993   { "diamond",                                  "RocksElements.png"     },
994   { "diamond.xpos",                             "10"                    },
995   { "diamond.ypos",                             "0"                     },
996   { "diamond.frames",                           "1"                     },
997   { "diamond.moving",                           "RocksElements.png"     },
998   { "diamond.moving.xpos",                      "10"                    },
999   { "diamond.moving.ypos",                      "0"                     },
1000   { "diamond.moving.frames",                    "2"                     },
1001   { "diamond.moving.delay",                     "4"                     },
1002   { "diamond.falling",                          "RocksElements.png"     },
1003   { "diamond.falling.xpos",                     "10"                    },
1004   { "diamond.falling.ypos",                     "0"                     },
1005   { "diamond.falling.frames",                   "2"                     },
1006   { "diamond.falling.delay",                    "4"                     },
1007   { "diamond.collecting",                       "RocksCollect.png"      },
1008   { "diamond.collecting.xpos",                  "0"                     },
1009   { "diamond.collecting.ypos",                  "1"                     },
1010   { "diamond.collecting.frames",                "7"                     },
1011   { "diamond.collecting.anim_mode",             "linear"                },
1012
1013   { "bomb",                                     "RocksElements.png"     },
1014   { "bomb.xpos",                                "11"                    },
1015   { "bomb.ypos",                                "1"                     },
1016   { "bomb.frames",                              "1"                     },
1017
1018   { "nut",                                      "RocksElements.png"     },
1019   { "nut.xpos",                                 "12"                    },
1020   { "nut.ypos",                                 "1"                     },
1021   { "nut.frames",                               "1"                     },
1022   { "nut.breaking",                             "RocksElements.png"     },
1023   { "nut.breaking.xpos",                        "13"                    },
1024   { "nut.breaking.ypos",                        "1"                     },
1025   { "nut.breaking.frames",                      "3"                     },
1026   { "nut.breaking.delay",                       "2"                     },
1027   { "nut.breaking.anim_mode",                   "linear"                },
1028
1029   { "dynamite",                                 "RocksElements.png"     },
1030   { "dynamite.xpos",                            "0"                     },
1031   { "dynamite.ypos",                            "3"                     },
1032   { "dynamite.frames",                          "1"                     },
1033   { "dynamite.active",                          "RocksElements.png"     },
1034   { "dynamite.active.xpos",                     "1"                     },
1035   { "dynamite.active.ypos",                     "3"                     },
1036   { "dynamite.active.frames",                   "7"                     },
1037   { "dynamite.active.delay",                    "12"                    },
1038   { "dynamite.active.anim_mode",                "linear"                },
1039   { "dynamite.collecting",                      "RocksCollect.png"      },
1040   { "dynamite.collecting.xpos",                 "0"                     },
1041   { "dynamite.collecting.ypos",                 "7"                     },
1042   { "dynamite.collecting.frames",               "7"                     },
1043   { "dynamite.collecting.anim_mode",            "linear"                },
1044
1045   { "em_dynamite",                              "RocksEMC.png"          },
1046   { "em_dynamite.xpos",                         "0"                     },
1047   { "em_dynamite.ypos",                         "15"                    },
1048   { "em_dynamite.frames",                       "1"                     },
1049   { "em_dynamite.active",                       "RocksEMC.png"          },
1050   { "em_dynamite.active.xpos",                  "1"                     },
1051   { "em_dynamite.active.ypos",                  "15"                    },
1052   { "em_dynamite.active.frames",                "4"                     },
1053   { "em_dynamite.active.delay",                 "8"                     },
1054   { "em_dynamite.active.anim_mode",             "linear"                },
1055   { "em_dynamite.active.EDITOR",                "RocksEMC.png"          },
1056   { "em_dynamite.active.EDITOR.xpos",           "2"                     },
1057   { "em_dynamite.active.EDITOR.ypos",           "15"                    },
1058   { "em_dynamite.collecting",                   "RocksCollect.png"      },
1059   { "em_dynamite.collecting.xpos",              "0"                     },
1060   { "em_dynamite.collecting.ypos",              "15"                    },
1061   { "em_dynamite.collecting.frames",            "7"                     },
1062   { "em_dynamite.collecting.anim_mode",         "linear"                },
1063
1064   { "wall_emerald",                             "RocksElements.png"     },
1065   { "wall_emerald.xpos",                        "4"                     },
1066   { "wall_emerald.ypos",                        "8"                     },
1067   { "wall_emerald.frames",                      "1"                     },
1068
1069   { "wall_diamond",                             "RocksElements.png"     },
1070   { "wall_diamond.xpos",                        "5"                     },
1071   { "wall_diamond.ypos",                        "8"                     },
1072   { "wall_diamond.frames",                      "1"                     },
1073
1074   { "bug",                                      "RocksElements.png"     },
1075   { "bug.xpos",                                 "8"                     },
1076   { "bug.ypos",                                 "4"                     },
1077   { "bug.frames",                               "4"                     },
1078   { "bug.delay",                                "8"                     },
1079   { "bug.right",                                "RocksElements.png"     },
1080   { "bug.right.xpos",                           "8"                     },
1081   { "bug.right.ypos",                           "4"                     },
1082   { "bug.right.frames",                         "1"                     },
1083   { "bug.up",                                   "RocksElements.png"     },
1084   { "bug.up.xpos",                              "9"                     },
1085   { "bug.up.ypos",                              "4"                     },
1086   { "bug.up.frames",                            "1"                     },
1087   { "bug.left",                                 "RocksElements.png"     },
1088   { "bug.left.xpos",                            "10"                    },
1089   { "bug.left.ypos",                            "4"                     },
1090   { "bug.left.frames",                          "1"                     },
1091   { "bug.down",                                 "RocksElements.png"     },
1092   { "bug.down.xpos",                            "11"                    },
1093   { "bug.down.ypos",                            "4"                     },
1094   { "bug.down.frames",                          "1"                     },
1095   { "bug.moving.right",                         "RocksElements.png"     },
1096   { "bug.moving.right.xpos",                    "8"                     },
1097   { "bug.moving.right.ypos",                    "4"                     },
1098   { "bug.moving.right.frames",                  "2"                     },
1099   { "bug.moving.right.delay",                   "4"                     },
1100   { "bug.moving.right.offset",                  "128"                   },
1101   { "bug.moving.up",                            "RocksElements.png"     },
1102   { "bug.moving.up.xpos",                       "9"                     },
1103   { "bug.moving.up.ypos",                       "4"                     },
1104   { "bug.moving.up.frames",                     "2"                     },
1105   { "bug.moving.up.delay",                      "4"                     },
1106   { "bug.moving.up.offset",                     "128"                   },
1107   { "bug.moving.left",                          "RocksElements.png"     },
1108   { "bug.moving.left.xpos",                     "10"                    },
1109   { "bug.moving.left.ypos",                     "4"                     },
1110   { "bug.moving.left.frames",                   "2"                     },
1111   { "bug.moving.left.delay",                    "4"                     },
1112   { "bug.moving.left.offset",                   "128"                   },
1113   { "bug.moving.down",                          "RocksElements.png"     },
1114   { "bug.moving.down.xpos",                     "11"                    },
1115   { "bug.moving.down.ypos",                     "4"                     },
1116   { "bug.moving.down.frames",                   "2"                     },
1117   { "bug.moving.down.delay",                    "4"                     },
1118   { "bug.moving.down.offset",                   "128"                   },
1119   { "bug.turning_from_right.up",                "RocksMore.png"         },
1120   { "bug.turning_from_right.up.xpos",           "0"                     },
1121   { "bug.turning_from_right.up.ypos",           "6"                     },
1122   { "bug.turning_from_right.up.frames",         "4"                     },
1123   { "bug.turning_from_right.up.delay",          "2"                     },
1124   { "bug.turning_from_right.up.anim_mode",      "linear,reverse"        },
1125   { "bug.turning_from_up.left",                 "RocksMore.png"         },
1126   { "bug.turning_from_up.left.xpos",            "12"                    },
1127   { "bug.turning_from_up.left.ypos",            "6"                     },
1128   { "bug.turning_from_up.left.frames",          "4"                     },
1129   { "bug.turning_from_up.left.delay",           "2"                     },
1130   { "bug.turning_from_up.left.anim_mode",       "linear,reverse"        },
1131   { "bug.turning_from_left.down",               "RocksMore.png"         },
1132   { "bug.turning_from_left.down.xpos",          "8"                     },
1133   { "bug.turning_from_left.down.ypos",          "6"                     },
1134   { "bug.turning_from_left.down.frames",        "4"                     },
1135   { "bug.turning_from_left.down.delay",         "2"                     },
1136   { "bug.turning_from_left.down.anim_mode",     "linear,reverse"        },
1137   { "bug.turning_from_down.right",              "RocksMore.png"         },
1138   { "bug.turning_from_down.right.xpos",         "4"                     },
1139   { "bug.turning_from_down.right.ypos",         "6"                     },
1140   { "bug.turning_from_down.right.frames",       "4"                     },
1141   { "bug.turning_from_down.right.delay",        "2"                     },
1142   { "bug.turning_from_down.right.anim_mode",    "linear,reverse"        },
1143   { "bug.turning_from_right.down",              "RocksMore.png"         },
1144   { "bug.turning_from_right.down.xpos",         "5"                     },
1145   { "bug.turning_from_right.down.ypos",         "6"                     },
1146   { "bug.turning_from_right.down.frames",       "4"                     },
1147   { "bug.turning_from_right.down.delay",        "2"                     },
1148   { "bug.turning_from_right.down.anim_mode",    "linear"                },
1149   { "bug.turning_from_up.right",                "RocksMore.png"         },
1150   { "bug.turning_from_up.right.xpos",           "1"                     },
1151   { "bug.turning_from_up.right.ypos",           "6"                     },
1152   { "bug.turning_from_up.right.frames",         "4"                     },
1153   { "bug.turning_from_up.right.delay",          "2"                     },
1154   { "bug.turning_from_up.right.anim_mode",      "linear"                },
1155   { "bug.turning_from_left.up",                 "RocksMore.png"         },
1156   { "bug.turning_from_left.up.xpos",            "13"                    },
1157   { "bug.turning_from_left.up.ypos",            "6"                     },
1158   { "bug.turning_from_left.up.frames",          "4"                     },
1159   { "bug.turning_from_left.up.delay",           "2"                     },
1160   { "bug.turning_from_left.up.anim_mode",       "linear"                },
1161   { "bug.turning_from_down.left",               "RocksMore.png"         },
1162   { "bug.turning_from_down.left.xpos",          "9"                     },
1163   { "bug.turning_from_down.left.ypos",          "6"                     },
1164   { "bug.turning_from_down.left.frames",        "4"                     },
1165   { "bug.turning_from_down.left.delay",         "2"                     },
1166   { "bug.turning_from_down.left.anim_mode",     "linear"                },
1167
1168   { "spaceship",                                "RocksElements.png"     },
1169   { "spaceship.xpos",                           "8"                     },
1170   { "spaceship.ypos",                           "3"                     },
1171   { "spaceship.frames",                         "4"                     },
1172   { "spaceship.delay",                          "8"                     },
1173   { "spaceship.right",                          "RocksElements.png"     },
1174   { "spaceship.right.xpos",                     "8"                     },
1175   { "spaceship.right.ypos",                     "3"                     },
1176   { "spaceship.right.frames",                   "1"                     },
1177   { "spaceship.up",                             "RocksElements.png"     },
1178   { "spaceship.up.xpos",                        "9"                     },
1179   { "spaceship.up.ypos",                        "3"                     },
1180   { "spaceship.up.frames",                      "1"                     },
1181   { "spaceship.left",                           "RocksElements.png"     },
1182   { "spaceship.left.xpos",                      "10"                    },
1183   { "spaceship.left.ypos",                      "3"                     },
1184   { "spaceship.left.frames",                    "1"                     },
1185   { "spaceship.down",                           "RocksElements.png"     },
1186   { "spaceship.down.xpos",                      "11"                    },
1187   { "spaceship.down.ypos",                      "3"                     },
1188   { "spaceship.down.frames",                    "1"                     },
1189   { "spaceship.moving.right",                   "RocksElements.png"     },
1190   { "spaceship.moving.right.xpos",              "8"                     },
1191   { "spaceship.moving.right.ypos",              "3"                     },
1192   { "spaceship.moving.right.frames",            "2"                     },
1193   { "spaceship.moving.right.delay",             "4"                     },
1194   { "spaceship.moving.right.offset",            "128"                   },
1195   { "spaceship.moving.up",                      "RocksElements.png"     },
1196   { "spaceship.moving.up.xpos",                 "9"                     },
1197   { "spaceship.moving.up.ypos",                 "3"                     },
1198   { "spaceship.moving.up.frames",               "2"                     },
1199   { "spaceship.moving.up.delay",                "4"                     },
1200   { "spaceship.moving.up.offset",               "128"                   },
1201   { "spaceship.moving.left",                    "RocksElements.png"     },
1202   { "spaceship.moving.left.xpos",               "10"                    },
1203   { "spaceship.moving.left.ypos",               "3"                     },
1204   { "spaceship.moving.left.frames",             "2"                     },
1205   { "spaceship.moving.left.delay",              "4"                     },
1206   { "spaceship.moving.left.offset",             "128"                   },
1207   { "spaceship.moving.down",                    "RocksElements.png"     },
1208   { "spaceship.moving.down.xpos",               "11"                    },
1209   { "spaceship.moving.down.ypos",               "3"                     },
1210   { "spaceship.moving.down.frames",             "2"                     },
1211   { "spaceship.moving.down.delay",              "4"                     },
1212   { "spaceship.moving.down.offset",             "128"                   },
1213   { "spaceship.turning_from_right.up",          "RocksMore.png"         },
1214   { "spaceship.turning_from_right.up.xpos",     "0"                     },
1215   { "spaceship.turning_from_right.up.ypos",     "5"                     },
1216   { "spaceship.turning_from_right.up.frames",   "4"                     },
1217   { "spaceship.turning_from_right.up.delay",    "2"                     },
1218   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"        },
1219   { "spaceship.turning_from_up.left",           "RocksMore.png"         },
1220   { "spaceship.turning_from_up.left.xpos",      "12"                    },
1221   { "spaceship.turning_from_up.left.ypos",      "5"                     },
1222   { "spaceship.turning_from_up.left.frames",    "4"                     },
1223   { "spaceship.turning_from_up.left.delay",     "2"                     },
1224   { "spaceship.turning_from_up.left.anim_mode", "linear,reverse"        },
1225   { "spaceship.turning_from_left.down",         "RocksMore.png"         },
1226   { "spaceship.turning_from_left.down.xpos",    "8"                     },
1227   { "spaceship.turning_from_left.down.ypos",    "5"                     },
1228   { "spaceship.turning_from_left.down.frames",  "4"                     },
1229   { "spaceship.turning_from_left.down.delay",   "2"                     },
1230   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"       },
1231   { "spaceship.turning_from_down.right",        "RocksMore.png"         },
1232   { "spaceship.turning_from_down.right.xpos",   "4"                     },
1233   { "spaceship.turning_from_down.right.ypos",   "5"                     },
1234   { "spaceship.turning_from_down.right.frames", "4"                     },
1235   { "spaceship.turning_from_down.right.delay",  "2"                     },
1236   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"      },
1237   { "spaceship.turning_from_right.down",        "RocksMore.png"         },
1238   { "spaceship.turning_from_right.down.xpos",   "5"                     },
1239   { "spaceship.turning_from_right.down.ypos",   "5"                     },
1240   { "spaceship.turning_from_right.down.frames", "4"                     },
1241   { "spaceship.turning_from_right.down.delay",  "2"                     },
1242   { "spaceship.turning_from_right.down.anim_mode","linear"              },
1243   { "spaceship.turning_from_up.right",          "RocksMore.png"         },
1244   { "spaceship.turning_from_up.right.xpos",     "1"                     },
1245   { "spaceship.turning_from_up.right.ypos",     "5"                     },
1246   { "spaceship.turning_from_up.right.frames",   "4"                     },
1247   { "spaceship.turning_from_up.right.delay",    "2"                     },
1248   { "spaceship.turning_from_up.right.anim_mode","linear"                },
1249   { "spaceship.turning_from_left.up",           "RocksMore.png"         },
1250   { "spaceship.turning_from_left.up.xpos",      "13"                    },
1251   { "spaceship.turning_from_left.up.ypos",      "5"                     },
1252   { "spaceship.turning_from_left.up.frames",    "4"                     },
1253   { "spaceship.turning_from_left.up.delay",     "2"                     },
1254   { "spaceship.turning_from_left.up.anim_mode", "linear"                },
1255   { "spaceship.turning_from_down.left",         "RocksMore.png"         },
1256   { "spaceship.turning_from_down.left.xpos",    "9"                     },
1257   { "spaceship.turning_from_down.left.ypos",    "5"                     },
1258   { "spaceship.turning_from_down.left.frames",  "4"                     },
1259   { "spaceship.turning_from_down.left.delay",   "2"                     },
1260   { "spaceship.turning_from_down.left.anim_mode","linear"               },
1261
1262   { "yamyam",                                   "RocksElements.png"     },
1263   { "yamyam.xpos",                              "0"                     },
1264   { "yamyam.ypos",                              "5"                     },
1265   { "yamyam.frames",                            "4"                     },
1266   { "yamyam.anim_mode",                         "pingpong2"             },
1267   { "yamyam.left",                              "RocksElements.png"     },
1268   { "yamyam.left.xpos",                         "0"                     },
1269   { "yamyam.left.ypos",                         "5"                     },
1270   { "yamyam.left.frames",                       "4"                     },
1271   { "yamyam.left.anim_mode",                    "pingpong2"             },
1272   { "yamyam.left.EDITOR",                       "RocksEMC.png"          },
1273   { "yamyam.left.EDITOR.xpos",                  "7"                     },
1274   { "yamyam.left.EDITOR.ypos",                  "15"                    },
1275   { "yamyam.right",                             "RocksElements.png"     },
1276   { "yamyam.right.xpos",                        "0"                     },
1277   { "yamyam.right.ypos",                        "5"                     },
1278   { "yamyam.right.frames",                      "4"                     },
1279   { "yamyam.right.anim_mode",                   "pingpong2"             },
1280   { "yamyam.right.EDITOR",                      "RocksEMC.png"          },
1281   { "yamyam.right.EDITOR.xpos",                 "8"                     },
1282   { "yamyam.right.EDITOR.ypos",                 "15"                    },
1283   { "yamyam.up",                                "RocksElements.png"     },
1284   { "yamyam.up.xpos",                           "0"                     },
1285   { "yamyam.up.ypos",                           "5"                     },
1286   { "yamyam.up.frames",                         "4"                     },
1287   { "yamyam.up.anim_mode",                      "pingpong2"             },
1288   { "yamyam.up.EDITOR",                         "RocksEMC.png"          },
1289   { "yamyam.up.EDITOR.xpos",                    "5"                     },
1290   { "yamyam.up.EDITOR.ypos",                    "15"                    },
1291   { "yamyam.down",                              "RocksElements.png"     },
1292   { "yamyam.down.xpos",                         "0"                     },
1293   { "yamyam.down.ypos",                         "5"                     },
1294   { "yamyam.down.frames",                       "4"                     },
1295   { "yamyam.down.anim_mode",                    "pingpong2"             },
1296   { "yamyam.down.EDITOR",                       "RocksEMC.png"          },
1297   { "yamyam.down.EDITOR.xpos",                  "6"                     },
1298   { "yamyam.down.EDITOR.ypos",                  "15"                    },
1299   { "yamyam.moving",                            "RocksElements.png"     },
1300   { "yamyam.moving.xpos",                       "0"                     },
1301   { "yamyam.moving.ypos",                       "5"                     },
1302   { "yamyam.moving.frames",                     "1"                     },
1303
1304   { "robot",                                    "RocksElements.png"     },
1305   { "robot.xpos",                               "4"                     },
1306   { "robot.ypos",                               "5"                     },
1307   { "robot.frames",                             "4"                     },
1308   { "robot.anim_mode",                          "pingpong2"             },
1309   { "robot.moving",                             "RocksElements.png"     },
1310   { "robot.moving.xpos",                        "4"                     },
1311   { "robot.moving.ypos",                        "5"                     },
1312   { "robot.moving.frames",                      "1"                     },
1313
1314   { "robot_wheel",                              "RocksElements.png"     },
1315   { "robot_wheel.xpos",                         "0"                     },
1316   { "robot_wheel.ypos",                         "6"                     },
1317   { "robot_wheel.frames",                       "1"                     },
1318   { "robot_wheel.active",                       "RocksElements.png"     },
1319   { "robot_wheel.active.xpos",                  "0"                     },
1320   { "robot_wheel.active.ypos",                  "6"                     },
1321   { "robot_wheel.active.frames",                "4"                     },
1322
1323   { "magic_wall",                               "RocksElements.png"     },
1324   { "magic_wall.xpos",                          "0"                     },
1325   { "magic_wall.ypos",                          "8"                     },
1326   { "magic_wall.frames",                        "1"                     },
1327   { "magic_wall.active",                        "RocksElements.png"     },
1328   { "magic_wall.active.xpos",                   "0"                     },
1329   { "magic_wall.active.ypos",                   "8"                     },
1330   { "magic_wall.active.frames",                 "4"                     },
1331   { "magic_wall.active.anim_mode",              "reverse"               },
1332   { "magic_wall.active.delay",                  "4"                     },
1333   { "magic_wall.active.global_sync",            "true"                  },
1334   { "magic_wall.filling",                       "RocksElements.png"     },
1335   { "magic_wall.filling.xpos",                  "0"                     },
1336   { "magic_wall.filling.ypos",                  "8"                     },
1337   { "magic_wall.filling.frames",                "4"                     },
1338   { "magic_wall.filling.anim_mode",             "reverse"               },
1339   { "magic_wall.filling.delay",                 "4"                     },
1340   { "magic_wall.filling.global_sync",           "true"                  },
1341   { "magic_wall_full",                          "RocksElements.png"     },
1342   { "magic_wall_full.xpos",                     "0"                     },
1343   { "magic_wall_full.ypos",                     "8"                     },
1344   { "magic_wall_full.frames",                   "4"                     },
1345   { "magic_wall_full.anim_mode",                "reverse"               },
1346   { "magic_wall_full.delay",                    "4"                     },
1347   { "magic_wall_full.global_sync",              "true"                  },
1348   { "magic_wall.emptying",                      "RocksElements.png"     },
1349   { "magic_wall.emptying.xpos",                 "0"                     },
1350   { "magic_wall.emptying.ypos",                 "8"                     },
1351   { "magic_wall.emptying.frames",               "4"                     },
1352   { "magic_wall.emptying.anim_mode",            "reverse"               },
1353   { "magic_wall.emptying.delay",                "4"                     },
1354   { "magic_wall.emptying.global_sync",          "true"                  },
1355   { "magic_wall_dead",                          "RocksElements.png"     },
1356   { "magic_wall_dead.xpos",                     "0"                     },
1357   { "magic_wall_dead.ypos",                     "8"                     },
1358   { "magic_wall_dead.frames",                   "1"                     },
1359
1360   { "dc_magic_wall",                            "RocksDC2.png"          },
1361   { "dc_magic_wall.xpos",                       "0"                     },
1362   { "dc_magic_wall.ypos",                       "3"                     },
1363   { "dc_magic_wall.frames",                     "1"                     },
1364   { "dc_magic_wall.active",                     "RocksDC2.png"          },
1365   { "dc_magic_wall.active.xpos",                "0"                     },
1366   { "dc_magic_wall.active.ypos",                "3"                     },
1367   { "dc_magic_wall.active.frames",              "4"                     },
1368   { "dc_magic_wall.active.anim_mode",           "reverse"               },
1369   { "dc_magic_wall.active.delay",               "4"                     },
1370   { "dc_magic_wall.active.global_sync",         "true"                  },
1371   { "dc_magic_wall.filling",                    "RocksDC2.png"          },
1372   { "dc_magic_wall.filling.xpos",               "0"                     },
1373   { "dc_magic_wall.filling.ypos",               "3"                     },
1374   { "dc_magic_wall.filling.frames",             "4"                     },
1375   { "dc_magic_wall.filling.anim_mode",          "reverse"               },
1376   { "dc_magic_wall.filling.delay",              "4"                     },
1377   { "dc_magic_wall.filling.global_sync",        "true"                  },
1378   { "dc_magic_wall_full",                       "RocksDC2.png"          },
1379   { "dc_magic_wall_full.xpos",                  "0"                     },
1380   { "dc_magic_wall_full.ypos",                  "3"                     },
1381   { "dc_magic_wall_full.frames",                "4"                     },
1382   { "dc_magic_wall_full.anim_mode",             "reverse"               },
1383   { "dc_magic_wall_full.delay",                 "4"                     },
1384   { "dc_magic_wall_full.global_sync",           "true"                  },
1385   { "dc_magic_wall.emptying",                   "RocksDC2.png"          },
1386   { "dc_magic_wall.emptying.xpos",              "0"                     },
1387   { "dc_magic_wall.emptying.ypos",              "3"                     },
1388   { "dc_magic_wall.emptying.frames",            "4"                     },
1389   { "dc_magic_wall.emptying.anim_mode",         "reverse"               },
1390   { "dc_magic_wall.emptying.delay",             "4"                     },
1391   { "dc_magic_wall.emptying.global_sync",       "true"                  },
1392   { "dc_magic_wall_dead",                       "RocksDC2.png"          },
1393   { "dc_magic_wall_dead.xpos",                  "0"                     },
1394   { "dc_magic_wall_dead.ypos",                  "3"                     },
1395   { "dc_magic_wall_dead.frames",                "1"                     },
1396
1397   { "quicksand_empty",                          "RocksElements.png"     },
1398   { "quicksand_empty.xpos",                     "2"                     },
1399   { "quicksand_empty.ypos",                     "0"                     },
1400   { "quicksand_empty.frames",                   "1"                     },
1401   { "quicksand.filling",                        "RocksElements.png"     },
1402   { "quicksand.filling.xpos",                   "3"                     },
1403   { "quicksand.filling.ypos",                   "0"                     },
1404   { "quicksand.filling.frames",                 "1"                     },
1405   { "quicksand_full",                           "RocksElements.png"     },
1406   { "quicksand_full.xpos",                      "3"                     },
1407   { "quicksand_full.ypos",                      "0"                     },
1408   { "quicksand_full.frames",                    "1"                     },
1409   { "quicksand_full.EDITOR",                    "RocksElements.png"     },
1410   { "quicksand_full.EDITOR.xpos",               "3"                     },
1411   { "quicksand_full.EDITOR.ypos",               "14"                    },
1412   { "quicksand.emptying",                       "RocksElements.png"     },
1413   { "quicksand.emptying.xpos",                  "3"                     },
1414   { "quicksand.emptying.ypos",                  "0"                     },
1415   { "quicksand.emptying.frames",                "1"                     },
1416
1417   { "quicksand_fast_empty",                     "RocksDC2.png"          },
1418   { "quicksand_fast_empty.xpos",                "4"                     },
1419   { "quicksand_fast_empty.ypos",                "3"                     },
1420   { "quicksand_fast_empty.frames",              "1"                     },
1421   { "quicksand_fast.filling",                   "RocksDC2.png"          },
1422   { "quicksand_fast.filling.xpos",              "4"                     },
1423   { "quicksand_fast.filling.ypos",              "3"                     },
1424   { "quicksand_fast.filling.frames",            "1"                     },
1425   { "quicksand_fast_full",                      "RocksDC2.png"          },
1426   { "quicksand_fast_full.xpos",                 "4"                     },
1427   { "quicksand_fast_full.ypos",                 "3"                     },
1428   { "quicksand_fast_full.frames",               "1"                     },
1429   { "quicksand_fast_full.EDITOR",               "RocksDC2.png"          },
1430   { "quicksand_fast_full.EDITOR.xpos",          "5"                     },
1431   { "quicksand_fast_full.EDITOR.ypos",          "3"                     },
1432   { "quicksand_fast.emptying",                  "RocksDC2.png"          },
1433   { "quicksand_fast.emptying.xpos",             "4"                     },
1434   { "quicksand_fast.emptying.ypos",             "3"                     },
1435   { "quicksand_fast.emptying.frames",           "1"                     },
1436
1437   { "acid_pool_topleft",                        "RocksElements.png"     },
1438   { "acid_pool_topleft.xpos",                   "0"                     },
1439   { "acid_pool_topleft.ypos",                   "1"                     },
1440   { "acid_pool_topleft.frames",                 "1"                     },
1441   { "acid_pool_topright",                       "RocksElements.png"     },
1442   { "acid_pool_topright.xpos",                  "2"                     },
1443   { "acid_pool_topright.ypos",                  "1"                     },
1444   { "acid_pool_topright.frames",                "1"                     },
1445   { "acid_pool_bottomleft",                     "RocksElements.png"     },
1446   { "acid_pool_bottomleft.xpos",                "0"                     },
1447   { "acid_pool_bottomleft.ypos",                "2"                     },
1448   { "acid_pool_bottomleft.frames",              "1"                     },
1449   { "acid_pool_bottom",                         "RocksElements.png"     },
1450   { "acid_pool_bottom.xpos",                    "1"                     },
1451   { "acid_pool_bottom.ypos",                    "2"                     },
1452   { "acid_pool_bottom.frames",                  "1"                     },
1453   { "acid_pool_bottomright",                    "RocksElements.png"     },
1454   { "acid_pool_bottomright.xpos",               "2"                     },
1455   { "acid_pool_bottomright.ypos",               "2"                     },
1456   { "acid_pool_bottomright.frames",             "1"                     },
1457
1458   { "acid",                                     "RocksElements.png"     },
1459   { "acid.xpos",                                "12"                    },
1460   { "acid.ypos",                                "7"                     },
1461   { "acid.frames",                              "4"                     },
1462   { "acid.delay",                               "10"                    },
1463   { "acid.global_sync",                         "true"                  },
1464
1465   { "acid_splash_left",                         "RocksHeroes.png"       },
1466   { "acid_splash_left.xpos",                    "8"                     },
1467   { "acid_splash_left.ypos",                    "10"                    },
1468   { "acid_splash_left.frames",                  "4"                     },
1469   { "acid_splash_left.delay",                   "2"                     },
1470   { "acid_splash_left.anim_mode",               "linear"                },
1471   { "acid_splash_right",                        "RocksHeroes.png"       },
1472   { "acid_splash_right.xpos",                   "12"                    },
1473   { "acid_splash_right.ypos",                   "10"                    },
1474   { "acid_splash_right.frames",                 "4"                     },
1475   { "acid_splash_right.delay",                  "2"                     },
1476   { "acid_splash_right.anim_mode",              "linear"                },
1477
1478   { "amoeba_drop",                              "RocksElements.png"     },
1479   { "amoeba_drop.xpos",                         "5"                     },
1480   { "amoeba_drop.ypos",                         "6"                     },
1481   { "amoeba_drop.frames",                       "1"                     },
1482   { "amoeba.growing",                           "RocksElements.png"     },
1483   { "amoeba.growing.xpos",                      "5"                     },
1484   { "amoeba.growing.ypos",                      "6"                     },
1485   { "amoeba.growing.frames",                    "3"                     },
1486   { "amoeba.growing.delay",                     "2"                     },
1487   { "amoeba.growing.anim_mode",                 "linear"                },
1488   { "amoeba.shrinking",                         "RocksElements.png"     },
1489   { "amoeba.shrinking.xpos",                    "5"                     },
1490   { "amoeba.shrinking.ypos",                    "6"                     },
1491   { "amoeba.shrinking.frames",                  "3"                     },
1492   { "amoeba.shrinking.delay",                   "2"                     },
1493   { "amoeba.shrinking.anim_mode",               "linear,reverse"        },
1494   { "amoeba_wet",                               "RocksElements.png"     },
1495   { "amoeba_wet.xpos",                          "8"                     },
1496   { "amoeba_wet.ypos",                          "6"                     },
1497   { "amoeba_wet.frames",                        "4"                     },
1498   { "amoeba_wet.delay",                         "1000000"               },
1499   { "amoeba_wet.anim_mode",                     "random"                },
1500   { "amoeba_wet.EDITOR",                        "RocksElements.png"     },
1501   { "amoeba_wet.EDITOR.xpos",                   "4"                     },
1502   { "amoeba_wet.EDITOR.ypos",                   "6"                     },
1503   { "amoeba.dropping",                          "RocksElements.png"     },
1504   { "amoeba.dropping.xpos",                     "8"                     },
1505   { "amoeba.dropping.ypos",                     "6"                     },
1506   { "amoeba.dropping.frames",                   "4"                     },
1507   { "amoeba.dropping.delay",                    "1000000"               },
1508   { "amoeba.dropping.anim_mode",                "random"                },
1509   { "amoeba_dry",                               "RocksElements.png"     },
1510   { "amoeba_dry.xpos",                          "8"                     },
1511   { "amoeba_dry.ypos",                          "6"                     },
1512   { "amoeba_dry.frames",                        "4"                     },
1513   { "amoeba_dry.delay",                         "1000000"               },
1514   { "amoeba_dry.anim_mode",                     "random"                },
1515   { "amoeba_full",                              "RocksElements.png"     },
1516   { "amoeba_full.xpos",                         "8"                     },
1517   { "amoeba_full.ypos",                         "6"                     },
1518   { "amoeba_full.frames",                       "4"                     },
1519   { "amoeba_full.delay",                        "1000000"               },
1520   { "amoeba_full.anim_mode",                    "random"                },
1521   { "amoeba_full.EDITOR",                       "RocksElements.png"     },
1522   { "amoeba_full.EDITOR.xpos",                  "8"                     },
1523   { "amoeba_full.EDITOR.ypos",                  "7"                     },
1524   { "amoeba_dead",                              "RocksElements.png"     },
1525   { "amoeba_dead.xpos",                         "12"                    },
1526   { "amoeba_dead.ypos",                         "6"                     },
1527   { "amoeba_dead.frames",                       "4"                     },
1528   { "amoeba_dead.delay",                        "1000000"               },
1529   { "amoeba_dead.anim_mode",                    "random"                },
1530   { "amoeba_dead.EDITOR",                       "RocksElements.png"     },
1531   { "amoeba_dead.EDITOR.xpos",                  "12"                    },
1532   { "amoeba_dead.EDITOR.ypos",                  "6"                     },
1533
1534   { "em_key_1",                                 "RocksSP.png"           },
1535   { "em_key_1.xpos",                            "4"                     },
1536   { "em_key_1.ypos",                            "6"                     },
1537   { "em_key_1.frames",                          "1"                     },
1538   { "em_key_1.collecting",                      "RocksCollect.png"      },
1539   { "em_key_1.collecting.xpos",                 "7"                     },
1540   { "em_key_1.collecting.ypos",                 "4"                     },
1541   { "em_key_1.collecting.frames",               "7"                     },
1542   { "em_key_1.collecting.anim_mode",            "linear"                },
1543   { "em_key_2",                                 "RocksSP.png"           },
1544   { "em_key_2.xpos",                            "5"                     },
1545   { "em_key_2.ypos",                            "6"                     },
1546   { "em_key_2.frames",                          "1"                     },
1547   { "em_key_2.collecting",                      "RocksCollect.png"      },
1548   { "em_key_2.collecting.xpos",                 "7"                     },
1549   { "em_key_2.collecting.ypos",                 "5"                     },
1550   { "em_key_2.collecting.frames",               "7"                     },
1551   { "em_key_2.collecting.anim_mode",            "linear"                },
1552   { "em_key_3",                                 "RocksSP.png"           },
1553   { "em_key_3.xpos",                            "6"                     },
1554   { "em_key_3.ypos",                            "6"                     },
1555   { "em_key_3.frames",                          "1"                     },
1556   { "em_key_3.collecting",                      "RocksCollect.png"      },
1557   { "em_key_3.collecting.xpos",                 "7"                     },
1558   { "em_key_3.collecting.ypos",                 "6"                     },
1559   { "em_key_3.collecting.frames",               "7"                     },
1560   { "em_key_3.collecting.anim_mode",            "linear"                },
1561   { "em_key_4",                                 "RocksSP.png"           },
1562   { "em_key_4.xpos",                            "7"                     },
1563   { "em_key_4.ypos",                            "6"                     },
1564   { "em_key_4.frames",                          "1"                     },
1565   { "em_key_4.collecting",                      "RocksCollect.png"      },
1566   { "em_key_4.collecting.xpos",                 "7"                     },
1567   { "em_key_4.collecting.ypos",                 "7"                     },
1568   { "em_key_4.collecting.frames",               "7"                     },
1569   { "em_key_4.collecting.anim_mode",            "linear"                },
1570
1571   { "dc_key_white",                             "RocksSP.png"           },
1572   { "dc_key_white.xpos",                        "13"                    },
1573   { "dc_key_white.ypos",                        "1"                     },
1574   { "dc_key_white.frames",                      "1"                     },
1575   { "dc_key_white.collecting",                  "RocksCollect.png"      },
1576   { "dc_key_white.collecting.xpos",             "7"                     },
1577   { "dc_key_white.collecting.ypos",             "0"                     },
1578   { "dc_key_white.collecting.frames",           "7"                     },
1579   { "dc_key_white.collecting.anim_mode",        "linear"                },
1580
1581   { "em_gate_1",                                "RocksSP.png"           },
1582   { "em_gate_1.xpos",                           "0"                     },
1583   { "em_gate_1.ypos",                           "7"                     },
1584   { "em_gate_1.frames",                         "1"                     },
1585   { "em_gate_2",                                "RocksSP.png"           },
1586   { "em_gate_2.xpos",                           "1"                     },
1587   { "em_gate_2.ypos",                           "7"                     },
1588   { "em_gate_2.frames",                         "1"                     },
1589   { "em_gate_3",                                "RocksSP.png"           },
1590   { "em_gate_3.xpos",                           "2"                     },
1591   { "em_gate_3.ypos",                           "7"                     },
1592   { "em_gate_3.frames",                         "1"                     },
1593   { "em_gate_4",                                "RocksSP.png"           },
1594   { "em_gate_4.xpos",                           "3"                     },
1595   { "em_gate_4.ypos",                           "7"                     },
1596   { "em_gate_4.frames",                         "1"                     },
1597
1598   { "dc_gate_white",                            "RocksSP.png"           },
1599   { "dc_gate_white.xpos",                       "14"                    },
1600   { "dc_gate_white.ypos",                       "1"                     },
1601   { "dc_gate_white.frames",                     "1"                     },
1602
1603   { "em_gate_1_gray",                           "RocksSP.png"           },
1604   { "em_gate_1_gray.xpos",                      "4"                     },
1605   { "em_gate_1_gray.ypos",                      "7"                     },
1606   { "em_gate_1_gray.frames",                    "1"                     },
1607   { "em_gate_1_gray.EDITOR",                    "RocksSP.png"           },
1608   { "em_gate_1_gray.EDITOR.xpos",               "12"                    },
1609   { "em_gate_1_gray.EDITOR.ypos",               "11"                    },
1610   { "em_gate_1_gray.active",                    "RocksSP.png"           },
1611   { "em_gate_1_gray.active.xpos",               "0"                     },
1612   { "em_gate_1_gray.active.ypos",               "7"                     },
1613   { "em_gate_1_gray.active.frames",             "1"                     },
1614   { "em_gate_2_gray",                           "RocksSP.png"           },
1615   { "em_gate_2_gray.xpos",                      "5"                     },
1616   { "em_gate_2_gray.ypos",                      "7"                     },
1617   { "em_gate_2_gray.frames",                    "1"                     },
1618   { "em_gate_2_gray.EDITOR",                    "RocksSP.png"           },
1619   { "em_gate_2_gray.EDITOR.xpos",               "13"                    },
1620   { "em_gate_2_gray.EDITOR.ypos",               "11"                    },
1621   { "em_gate_2_gray.active",                    "RocksSP.png"           },
1622   { "em_gate_2_gray.active.xpos",               "1"                     },
1623   { "em_gate_2_gray.active.ypos",               "7"                     },
1624   { "em_gate_2_gray.active.frames",             "1"                     },
1625   { "em_gate_3_gray",                           "RocksSP.png"           },
1626   { "em_gate_3_gray.xpos",                      "6"                     },
1627   { "em_gate_3_gray.ypos",                      "7"                     },
1628   { "em_gate_3_gray.frames",                    "1"                     },
1629   { "em_gate_3_gray.EDITOR",                    "RocksSP.png"           },
1630   { "em_gate_3_gray.EDITOR.xpos",               "14"                    },
1631   { "em_gate_3_gray.EDITOR.ypos",               "11"                    },
1632   { "em_gate_3_gray.active",                    "RocksSP.png"           },
1633   { "em_gate_3_gray.active.xpos",               "2"                     },
1634   { "em_gate_3_gray.active.ypos",               "7"                     },
1635   { "em_gate_3_gray.active.frames",             "1"                     },
1636   { "em_gate_4_gray",                           "RocksSP.png"           },
1637   { "em_gate_4_gray.xpos",                      "7"                     },
1638   { "em_gate_4_gray.ypos",                      "7"                     },
1639   { "em_gate_4_gray.frames",                    "1"                     },
1640   { "em_gate_4_gray.EDITOR",                    "RocksSP.png"           },
1641   { "em_gate_4_gray.EDITOR.xpos",               "15"                    },
1642   { "em_gate_4_gray.EDITOR.ypos",               "11"                    },
1643   { "em_gate_4_gray.active",                    "RocksSP.png"           },
1644   { "em_gate_4_gray.active.xpos",               "3"                     },
1645   { "em_gate_4_gray.active.ypos",               "7"                     },
1646   { "em_gate_4_gray.active.frames",             "1"                     },
1647
1648   { "dc_gate_white_gray",                       "RocksSP.png"           },
1649   { "dc_gate_white_gray.xpos",                  "7"                     },
1650   { "dc_gate_white_gray.ypos",                  "7"                     },
1651   { "dc_gate_white_gray.frames",                "1"                     },
1652   { "dc_gate_white_gray.EDITOR",                "RocksSP.png"           },
1653   { "dc_gate_white_gray.EDITOR.xpos",           "15"                    },
1654   { "dc_gate_white_gray.EDITOR.ypos",           "1"                     },
1655   { "dc_gate_white_gray.active",                "RocksSP.png"           },
1656   { "dc_gate_white_gray.active.xpos",           "14"                    },
1657   { "dc_gate_white_gray.active.ypos",           "1"                     },
1658   { "dc_gate_white_gray.active.frames",         "1"                     },
1659
1660   { "dc_gate_fake_gray",                        "RocksSP.png"           },
1661   { "dc_gate_fake_gray.xpos",                   "7"                     },
1662   { "dc_gate_fake_gray.ypos",                   "7"                     },
1663   { "dc_gate_fake_gray.frames",                 "1"                     },
1664
1665   { "exit_closed",                              "RocksElements.png"     },
1666   { "exit_closed.xpos",                         "0"                     },
1667   { "exit_closed.ypos",                         "11"                    },
1668   { "exit_closed.frames",                       "1"                     },
1669   { "exit.opening",                             "RocksElements.png"     },
1670   { "exit.opening.xpos",                        "0"                     },
1671   { "exit.opening.ypos",                        "11"                    },
1672   { "exit.opening.frames",                      "5"                     },
1673   { "exit.opening.delay",                       "6"                     },
1674   { "exit.opening.anim_mode",                   "linear"                },
1675   { "exit_open",                                "RocksElements.png"     },
1676   { "exit_open.xpos",                           "4"                     },
1677   { "exit_open.ypos",                           "11"                    },
1678   { "exit_open.frames",                         "4"                     },
1679   { "exit_open.delay",                          "4"                     },
1680   { "exit_open.anim_mode",                      "pingpong"              },
1681   { "exit.closing",                             "RocksElements.png"     },
1682   { "exit.closing.xpos",                        "0"                     },
1683   { "exit.closing.ypos",                        "11"                    },
1684   { "exit.closing.frames",                      "5"                     },
1685   { "exit.closing.delay",                       "6"                     },
1686   { "exit.closing.anim_mode",                   "linear,reverse"        },
1687
1688   { "steel_exit_closed",                        "RocksDC2.png"  },
1689   { "steel_exit_closed.xpos",                   "8"                     },
1690   { "steel_exit_closed.ypos",                   "0"                     },
1691   { "steel_exit_closed.frames",                 "1"                     },
1692   { "steel_exit.opening",                       "RocksDC2.png"  },
1693   { "steel_exit.opening.xpos",                  "8"                     },
1694   { "steel_exit.opening.ypos",                  "0"                     },
1695   { "steel_exit.opening.frames",                "5"                     },
1696   { "steel_exit.opening.delay",                 "6"                     },
1697   { "steel_exit.opening.anim_mode",             "linear"                },
1698   { "steel_exit_open",                          "RocksDC2.png"  },
1699   { "steel_exit_open.xpos",                     "12"                    },
1700   { "steel_exit_open.ypos",                     "0"                     },
1701   { "steel_exit_open.frames",                   "4"                     },
1702   { "steel_exit_open.delay",                    "4"                     },
1703   { "steel_exit_open.anim_mode",                "pingpong"              },
1704   { "steel_exit.closing",                       "RocksDC2.png"  },
1705   { "steel_exit.closing.xpos",                  "8"                     },
1706   { "steel_exit.closing.ypos",                  "0"                     },
1707   { "steel_exit.closing.frames",                "5"                     },
1708   { "steel_exit.closing.delay",                 "6"                     },
1709   { "steel_exit.closing.anim_mode",             "linear,reverse"        },
1710
1711   { "em_exit_closed",                           "RocksDC2.png"  },
1712   { "em_exit_closed.xpos",                      "0"                     },
1713   { "em_exit_closed.ypos",                      "4"                     },
1714   { "em_exit_closed.frames",                    "1"                     },
1715   { "em_exit.opening",                          "RocksDC2.png"  },
1716   { "em_exit.opening.xpos",                     "0"                     },
1717   { "em_exit.opening.ypos",                     "4"                     },
1718   { "em_exit.opening.frames",                   "5"                     },
1719   { "em_exit.opening.delay",                    "6"                     },
1720   { "em_exit.opening.anim_mode",                "linear"                },
1721   { "em_exit_open",                             "RocksDC2.png"  },
1722   { "em_exit_open.xpos",                        "4"                     },
1723   { "em_exit_open.ypos",                        "4"                     },
1724   { "em_exit_open.frames",                      "4"                     },
1725   { "em_exit_open.delay",                       "4"                     },
1726   { "em_exit_open.anim_mode",                   "pingpong"              },
1727   { "em_exit.closing",                          "RocksDC2.png"  },
1728   { "em_exit.closing.xpos",                     "0"                     },
1729   { "em_exit.closing.ypos",                     "6"                     },
1730   { "em_exit.closing.frames",                   "5"                     },
1731   { "em_exit.closing.delay",                    "6"                     },
1732   { "em_exit.closing.anim_mode",                "linear"                },
1733
1734   { "em_steel_exit_closed",                     "RocksDC2.png"  },
1735   { "em_steel_exit_closed.xpos",                "0"                     },
1736   { "em_steel_exit_closed.ypos",                "5"                     },
1737   { "em_steel_exit_closed.frames",              "1"                     },
1738   { "em_steel_exit.opening",                    "RocksDC2.png"  },
1739   { "em_steel_exit.opening.xpos",               "0"                     },
1740   { "em_steel_exit.opening.ypos",               "5"                     },
1741   { "em_steel_exit.opening.frames",             "5"                     },
1742   { "em_steel_exit.opening.delay",              "6"                     },
1743   { "em_steel_exit.opening.anim_mode",          "linear"                },
1744   { "em_steel_exit_open",                       "RocksDC2.png"  },
1745   { "em_steel_exit_open.xpos",                  "4"                     },
1746   { "em_steel_exit_open.ypos",                  "5"                     },
1747   { "em_steel_exit_open.frames",                "4"                     },
1748   { "em_steel_exit_open.delay",                 "4"                     },
1749   { "em_steel_exit_open.anim_mode",             "pingpong"              },
1750   { "em_steel_exit.closing",                    "RocksDC2.png"  },
1751   { "em_steel_exit.closing.xpos",               "0"                     },
1752   { "em_steel_exit.closing.ypos",               "7"                     },
1753   { "em_steel_exit.closing.frames",             "5"                     },
1754   { "em_steel_exit.closing.delay",              "6"                     },
1755   { "em_steel_exit.closing.anim_mode",          "linear"                },
1756
1757   // images for Emerald Mine Club style elements and actions
1758
1759   { "balloon",                                  "RocksDC.png"           },
1760   { "balloon.xpos",                             "12"                    },
1761   { "balloon.ypos",                             "7"                     },
1762   { "balloon.frames",                           "1"                     },
1763   { "balloon.moving",                           "RocksDC.png"           },
1764   { "balloon.moving.xpos",                      "12"                    },
1765   { "balloon.moving.ypos",                      "7"                     },
1766   { "balloon.moving.frames",                    "4"                     },
1767   { "balloon.moving.anim_mode",                 "pingpong"              },
1768   { "balloon.moving.delay",                     "2"                     },
1769   { "balloon.pushing",                          "RocksDC.png"           },
1770   { "balloon.pushing.xpos",                     "12"                    },
1771   { "balloon.pushing.ypos",                     "7"                     },
1772   { "balloon.pushing.frames",                   "4"                     },
1773   { "balloon.pushing.anim_mode",                "pingpong"              },
1774   { "balloon.pushing.delay",                    "2"                     },
1775   { "balloon_switch_left",                      "RocksDC.png"           },
1776   { "balloon_switch_left.xpos",                 "8"                     },
1777   { "balloon_switch_left.ypos",                 "7"                     },
1778   { "balloon_switch_left.frames",               "1"                     },
1779   { "balloon_switch_right",                     "RocksDC.png"           },
1780   { "balloon_switch_right.xpos",                "9"                     },
1781   { "balloon_switch_right.ypos",                "7"                     },
1782   { "balloon_switch_right.frames",              "1"                     },
1783   { "balloon_switch_up",                        "RocksDC.png"           },
1784   { "balloon_switch_up.xpos",                   "10"                    },
1785   { "balloon_switch_up.ypos",                   "7"                     },
1786   { "balloon_switch_up.frames",                 "1"                     },
1787   { "balloon_switch_down",                      "RocksDC.png"           },
1788   { "balloon_switch_down.xpos",                 "11"                    },
1789   { "balloon_switch_down.ypos",                 "7"                     },
1790   { "balloon_switch_down.frames",               "1"                     },
1791   { "balloon_switch_any",                       "RocksDC.png"           },
1792   { "balloon_switch_any.xpos",                  "15"                    },
1793   { "balloon_switch_any.ypos",                  "0"                     },
1794   { "balloon_switch_any.frames",                "1"                     },
1795   { "balloon_switch_none",                      "RocksDC.png"           },
1796   { "balloon_switch_none.xpos",                 "13"                    },
1797   { "balloon_switch_none.ypos",                 "5"                     },
1798   { "balloon_switch_none.frames",               "1"                     },
1799
1800   { "spring",                                   "RocksDC.png"           },
1801   { "spring.xpos",                              "8"                     },
1802   { "spring.ypos",                              "13"                    },
1803   { "spring.frames",                            "1"                     },
1804
1805   { "spring.left",                              UNDEFINED_FILENAME      },
1806   { "spring.left.clone_from",                   "spring"                },
1807   { "spring.right",                             UNDEFINED_FILENAME      },
1808   { "spring.right.clone_from",                  "spring"                },
1809
1810   { "emc_steelwall_1",                          "RocksDC.png"           },
1811   { "emc_steelwall_1.xpos",                     "14"                    },
1812   { "emc_steelwall_1.ypos",                     "0"                     },
1813   { "emc_steelwall_1.frames",                   "1"                     },
1814   { "emc_steelwall_2",                          "RocksEMC.png"          },
1815   { "emc_steelwall_2.xpos",                     "9"                     },
1816   { "emc_steelwall_2.ypos",                     "8"                     },
1817   { "emc_steelwall_2.frames",                   "1"                     },
1818   { "emc_steelwall_3",                          "RocksEMC.png"          },
1819   { "emc_steelwall_3.xpos",                     "9"                     },
1820   { "emc_steelwall_3.ypos",                     "9"                     },
1821   { "emc_steelwall_3.frames",                   "1"                     },
1822   { "emc_steelwall_4",                          "RocksEMC.png"          },
1823   { "emc_steelwall_4.xpos",                     "9"                     },
1824   { "emc_steelwall_4.ypos",                     "10"                    },
1825   { "emc_steelwall_4.frames",                   "1"                     },
1826
1827   { "emc_wall_1",                               "RocksDC.png"           },
1828   { "emc_wall_1.xpos",                          "13"                    },
1829   { "emc_wall_1.ypos",                          "6"                     },
1830   { "emc_wall_1.frames",                        "1"                     },
1831   { "emc_wall_2",                               "RocksDC.png"           },
1832   { "emc_wall_2.xpos",                          "14"                    },
1833   { "emc_wall_2.ypos",                          "6"                     },
1834   { "emc_wall_2.frames",                        "1"                     },
1835   { "emc_wall_3",                               "RocksDC.png"           },
1836   { "emc_wall_3.xpos",                          "15"                    },
1837   { "emc_wall_3.ypos",                          "6"                     },
1838   { "emc_wall_3.frames",                        "1"                     },
1839   { "emc_wall_4",                               "RocksDC.png"           },
1840   { "emc_wall_4.xpos",                          "14"                    },
1841   { "emc_wall_4.ypos",                          "1"                     },
1842   { "emc_wall_4.frames",                        "1"                     },
1843   { "emc_wall_5",                               "RocksDC.png"           },
1844   { "emc_wall_5.xpos",                          "15"                    },
1845   { "emc_wall_5.ypos",                          "1"                     },
1846   { "emc_wall_5.frames",                        "1"                     },
1847   { "emc_wall_6",                               "RocksDC.png"           },
1848   { "emc_wall_6.xpos",                          "14"                    },
1849   { "emc_wall_6.ypos",                          "2"                     },
1850   { "emc_wall_6.frames",                        "1"                     },
1851   { "emc_wall_7",                               "RocksDC.png"           },
1852   { "emc_wall_7.xpos",                          "15"                    },
1853   { "emc_wall_7.ypos",                          "2"                     },
1854   { "emc_wall_7.frames",                        "1"                     },
1855   { "emc_wall_8",                               "RocksEMC.png"          },
1856   { "emc_wall_8.xpos",                          "8"                     },
1857   { "emc_wall_8.ypos",                          "7"                     },
1858   { "emc_wall_8.frames",                        "1"                     },
1859
1860   // images for Diamond Caves style elements and actions
1861
1862   { "invisible_steelwall",                      "RocksSP.png"           },
1863   { "invisible_steelwall.xpos",                 "3"                     },
1864   { "invisible_steelwall.ypos",                 "5"                     },
1865   { "invisible_steelwall.frames",               "1"                     },
1866   { "invisible_steelwall.EDITOR",               "RocksSP.png"           },
1867   { "invisible_steelwall.EDITOR.xpos",          "1"                     },
1868   { "invisible_steelwall.EDITOR.ypos",          "5"                     },
1869   { "invisible_steelwall.active",               "RocksSP.png"           },
1870   { "invisible_steelwall.active.xpos",          "1"                     },
1871   { "invisible_steelwall.active.ypos",          "5"                     },
1872   { "invisible_steelwall.active.frames",        "1"                     },
1873
1874   { "invisible_wall",                           "RocksSP.png"           },
1875   { "invisible_wall.xpos",                      "7"                     },
1876   { "invisible_wall.ypos",                      "5"                     },
1877   { "invisible_wall.frames",                    "1"                     },
1878   { "invisible_wall.EDITOR",                    "RocksSP.png"           },
1879   { "invisible_wall.EDITOR.xpos",               "5"                     },
1880   { "invisible_wall.EDITOR.ypos",               "5"                     },
1881   { "invisible_wall.active",                    "RocksSP.png"           },
1882   { "invisible_wall.active.xpos",               "5"                     },
1883   { "invisible_wall.active.ypos",               "5"                     },
1884   { "invisible_wall.active.frames",             "1"                     },
1885
1886   { "invisible_sand",                           "RocksSP.png"           },
1887   { "invisible_sand.xpos",                      "0"                     },
1888   { "invisible_sand.ypos",                      "0"                     },
1889   { "invisible_sand.frames",                    "1"                     },
1890   { "invisible_sand.EDITOR",                    "RocksEMC.png"          },
1891   { "invisible_sand.EDITOR.xpos",               "2"                     },
1892   { "invisible_sand.EDITOR.ypos",               "4"                     },
1893   { "invisible_sand.active",                    "RocksEMC.png"          },
1894   { "invisible_sand.active.xpos",               "2"                     },
1895   { "invisible_sand.active.ypos",               "4"                     },
1896   { "invisible_sand.active.frames",             "1"                     },
1897   { "invisible_sand.active.CRUMBLED",           "RocksEMC.png"          },
1898   { "invisible_sand.active.CRUMBLED.xpos",      "3"                     },
1899   { "invisible_sand.active.CRUMBLED.ypos",      "4"                     },
1900   { "invisible_sand.active.CRUMBLED.frames",    "1"                     },
1901   { "invisible_sand.active.digging.left",       "RocksEMC.png"          },
1902   { "invisible_sand.active.digging.left.xpos",  "6"                     },
1903   { "invisible_sand.active.digging.left.ypos",  "2"                     },
1904   { "invisible_sand.active.digging.left.frames","3"                     },
1905   { "invisible_sand.active.digging.left.delay", "2"                     },
1906   { "invisible_sand.active.digging.left.anim_mode","linear"             },
1907   { "invisible_sand.active.digging.right",      "RocksEMC.png"          },
1908   { "invisible_sand.active.digging.right.xpos", "9"                     },
1909   { "invisible_sand.active.digging.right.ypos", "2"                     },
1910   { "invisible_sand.active.digging.right.frames","3"                    },
1911   { "invisible_sand.active.digging.right.delay","2"                     },
1912   { "invisible_sand.active.digging.right.anim_mode","linear"            },
1913   { "invisible_sand.active.digging.up",         "RocksEMC.png"          },
1914   { "invisible_sand.active.digging.up.xpos",    "0"                     },
1915   { "invisible_sand.active.digging.up.ypos",    "2"                     },
1916   { "invisible_sand.active.digging.up.frames",  "3"                     },
1917   { "invisible_sand.active.digging.up.delay",   "2"                     },
1918   { "invisible_sand.active.digging.up.anim_mode","linear"               },
1919   { "invisible_sand.active.digging.down",       "RocksEMC.png"          },
1920   { "invisible_sand.active.digging.down.xpos",  "3"                     },
1921   { "invisible_sand.active.digging.down.ypos",  "2"                     },
1922   { "invisible_sand.active.digging.down.frames","3"                     },
1923   { "invisible_sand.active.digging.down.delay", "2"                     },
1924   { "invisible_sand.active.digging.down.anim_mode","linear"             },
1925   { "invisible_sand.active.digging.left.CRUMBLED",      "RocksEMC.png"  },
1926   { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6"             },
1927   { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3"             },
1928   { "invisible_sand.active.digging.left.CRUMBLED.frames","3"            },
1929   { "invisible_sand.active.digging.left.CRUMBLED.delay","2"             },
1930   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear"    },
1931   { "invisible_sand.active.digging.right.CRUMBLED",     "RocksEMC.png"  },
1932   { "invisible_sand.active.digging.right.CRUMBLED.xpos","9"             },
1933   { "invisible_sand.active.digging.right.CRUMBLED.ypos","3"             },
1934   { "invisible_sand.active.digging.right.CRUMBLED.frames","3"           },
1935   { "invisible_sand.active.digging.right.CRUMBLED.delay","2"            },
1936   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear"   },
1937   { "invisible_sand.active.digging.up.CRUMBLED",        "RocksEMC.png"  },
1938   { "invisible_sand.active.digging.up.CRUMBLED.xpos",   "0"             },
1939   { "invisible_sand.active.digging.up.CRUMBLED.ypos",   "3"             },
1940   { "invisible_sand.active.digging.up.CRUMBLED.frames", "3"             },
1941   { "invisible_sand.active.digging.up.CRUMBLED.delay",  "2"             },
1942   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear"      },
1943   { "invisible_sand.active.digging.down.CRUMBLED",      "RocksEMC.png"  },
1944   { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3"             },
1945   { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3"             },
1946   { "invisible_sand.active.digging.down.CRUMBLED.frames","3"            },
1947   { "invisible_sand.active.digging.down.CRUMBLED.delay","2"             },
1948   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear"    },
1949
1950   { "conveyor_belt_1_middle",                   "RocksDC.png"           },
1951   { "conveyor_belt_1_middle.xpos",              "0"                     },
1952   { "conveyor_belt_1_middle.ypos",              "0"                     },
1953   { "conveyor_belt_1_middle.frames",            "1"                     },
1954   { "conveyor_belt_1_middle.active",            "RocksDC.png"           },
1955   { "conveyor_belt_1_middle.active.xpos",       "0"                     },
1956   { "conveyor_belt_1_middle.active.ypos",       "0"                     },
1957   { "conveyor_belt_1_middle.active.frames",     "8"                     },
1958   { "conveyor_belt_1_middle.active.delay",      "2"                     },
1959   { "conveyor_belt_1_left",                     "RocksDC.png"           },
1960   { "conveyor_belt_1_left.xpos",                "0"                     },
1961   { "conveyor_belt_1_left.ypos",                "1"                     },
1962   { "conveyor_belt_1_left.frames",              "1"                     },
1963   { "conveyor_belt_1_left.active",              "RocksDC.png"           },
1964   { "conveyor_belt_1_left.active.xpos",         "0"                     },
1965   { "conveyor_belt_1_left.active.ypos",         "1"                     },
1966   { "conveyor_belt_1_left.active.frames",       "8"                     },
1967   { "conveyor_belt_1_left.active.delay",        "2"                     },
1968   { "conveyor_belt_1_right",                    "RocksDC.png"           },
1969   { "conveyor_belt_1_right.xpos",               "0"                     },
1970   { "conveyor_belt_1_right.ypos",               "2"                     },
1971   { "conveyor_belt_1_right.frames",             "1"                     },
1972   { "conveyor_belt_1_right.active",             "RocksDC.png"           },
1973   { "conveyor_belt_1_right.active.xpos",        "0"                     },
1974   { "conveyor_belt_1_right.active.ypos",        "2"                     },
1975   { "conveyor_belt_1_right.active.frames",      "8"                     },
1976   { "conveyor_belt_1_right.active.delay",       "2"                     },
1977   { "conveyor_belt_1_switch_left",              "RocksDC.png"           },
1978   { "conveyor_belt_1_switch_left.xpos",         "0"                     },
1979   { "conveyor_belt_1_switch_left.ypos",         "12"                    },
1980   { "conveyor_belt_1_switch_left.frames",       "1"                     },
1981   { "conveyor_belt_1_switch_middle",            "RocksDC.png"           },
1982   { "conveyor_belt_1_switch_middle.xpos",       "0"                     },
1983   { "conveyor_belt_1_switch_middle.ypos",       "13"                    },
1984   { "conveyor_belt_1_switch_middle.frames",     "1"                     },
1985   { "conveyor_belt_1_switch_right",             "RocksDC.png"           },
1986   { "conveyor_belt_1_switch_right.xpos",        "0"                     },
1987   { "conveyor_belt_1_switch_right.ypos",        "14"                    },
1988   { "conveyor_belt_1_switch_right.frames",      "1"                     },
1989
1990   { "conveyor_belt_2_middle",                   "RocksDC.png"           },
1991   { "conveyor_belt_2_middle.xpos",              "0"                     },
1992   { "conveyor_belt_2_middle.ypos",              "3"                     },
1993   { "conveyor_belt_2_middle.frames",            "1"                     },
1994   { "conveyor_belt_2_middle.active",            "RocksDC.png"           },
1995   { "conveyor_belt_2_middle.active.xpos",       "0"                     },
1996   { "conveyor_belt_2_middle.active.ypos",       "3"                     },
1997   { "conveyor_belt_2_middle.active.frames",     "8"                     },
1998   { "conveyor_belt_2_middle.active.delay",      "2"                     },
1999   { "conveyor_belt_2_left",                     "RocksDC.png"           },
2000   { "conveyor_belt_2_left.xpos",                "0"                     },
2001   { "conveyor_belt_2_left.ypos",                "4"                     },
2002   { "conveyor_belt_2_left.frames",              "1"                     },
2003   { "conveyor_belt_2_left.active",              "RocksDC.png"           },
2004   { "conveyor_belt_2_left.active.xpos",         "0"                     },
2005   { "conveyor_belt_2_left.active.ypos",         "4"                     },
2006   { "conveyor_belt_2_left.active.frames",       "8"                     },
2007   { "conveyor_belt_2_left.active.delay",        "2"                     },
2008   { "conveyor_belt_2_right",                    "RocksDC.png"           },
2009   { "conveyor_belt_2_right.xpos",               "0"                     },
2010   { "conveyor_belt_2_right.ypos",               "5"                     },
2011   { "conveyor_belt_2_right.frames",             "1"                     },
2012   { "conveyor_belt_2_right.active",             "RocksDC.png"           },
2013   { "conveyor_belt_2_right.active.xpos",        "0"                     },
2014   { "conveyor_belt_2_right.active.ypos",        "5"                     },
2015   { "conveyor_belt_2_right.active.frames",      "8"                     },
2016   { "conveyor_belt_2_right.active.delay",       "2"                     },
2017   { "conveyor_belt_2_switch_left",              "RocksDC.png"           },
2018   { "conveyor_belt_2_switch_left.xpos",         "1"                     },
2019   { "conveyor_belt_2_switch_left.ypos",         "12"                    },
2020   { "conveyor_belt_2_switch_left.frames",       "1"                     },
2021   { "conveyor_belt_2_switch_middle",            "RocksDC.png"           },
2022   { "conveyor_belt_2_switch_middle.xpos",       "1"                     },
2023   { "conveyor_belt_2_switch_middle.ypos",       "13"                    },
2024   { "conveyor_belt_2_switch_middle.frames",     "1"                     },
2025   { "conveyor_belt_2_switch_right",             "RocksDC.png"           },
2026   { "conveyor_belt_2_switch_right.xpos",        "1"                     },
2027   { "conveyor_belt_2_switch_right.ypos",        "14"                    },
2028   { "conveyor_belt_2_switch_right.frames",      "1"                     },
2029
2030   { "conveyor_belt_3_middle",                   "RocksDC.png"           },
2031   { "conveyor_belt_3_middle.xpos",              "0"                     },
2032   { "conveyor_belt_3_middle.ypos",              "6"                     },
2033   { "conveyor_belt_3_middle.frames",            "1"                     },
2034   { "conveyor_belt_3_middle.active",            "RocksDC.png"           },
2035   { "conveyor_belt_3_middle.active.xpos",       "0"                     },
2036   { "conveyor_belt_3_middle.active.ypos",       "6"                     },
2037   { "conveyor_belt_3_middle.active.frames",     "8"                     },
2038   { "conveyor_belt_3_middle.active.delay",      "2"                     },
2039   { "conveyor_belt_3_left",                     "RocksDC.png"           },
2040   { "conveyor_belt_3_left.xpos",                "0"                     },
2041   { "conveyor_belt_3_left.ypos",                "7"                     },
2042   { "conveyor_belt_3_left.frames",              "1"                     },
2043   { "conveyor_belt_3_left.active",              "RocksDC.png"           },
2044   { "conveyor_belt_3_left.active.xpos",         "0"                     },
2045   { "conveyor_belt_3_left.active.ypos",         "7"                     },
2046   { "conveyor_belt_3_left.active.frames",       "8"                     },
2047   { "conveyor_belt_3_left.active.delay",        "2"                     },
2048   { "conveyor_belt_3_right",                    "RocksDC.png"           },
2049   { "conveyor_belt_3_right.xpos",               "0"                     },
2050   { "conveyor_belt_3_right.ypos",               "8"                     },
2051   { "conveyor_belt_3_right.frames",             "1"                     },
2052   { "conveyor_belt_3_right.active",             "RocksDC.png"           },
2053   { "conveyor_belt_3_right.active.xpos",        "0"                     },
2054   { "conveyor_belt_3_right.active.ypos",        "8"                     },
2055   { "conveyor_belt_3_right.active.frames",      "8"                     },
2056   { "conveyor_belt_3_right.active.delay",       "2"                     },
2057   { "conveyor_belt_3_switch_left",              "RocksDC.png"           },
2058   { "conveyor_belt_3_switch_left.xpos",         "2"                     },
2059   { "conveyor_belt_3_switch_left.ypos",         "12"                    },
2060   { "conveyor_belt_3_switch_left.frames",       "1"                     },
2061   { "conveyor_belt_3_switch_middle",            "RocksDC.png"           },
2062   { "conveyor_belt_3_switch_middle.xpos",       "2"                     },
2063   { "conveyor_belt_3_switch_middle.ypos",       "13"                    },
2064   { "conveyor_belt_3_switch_middle.frames",     "1"                     },
2065   { "conveyor_belt_3_switch_right",             "RocksDC.png"           },
2066   { "conveyor_belt_3_switch_right.xpos",        "2"                     },
2067   { "conveyor_belt_3_switch_right.ypos",        "14"                    },
2068   { "conveyor_belt_3_switch_right.frames",      "1"                     },
2069
2070   { "conveyor_belt_4_middle",                   "RocksDC.png"           },
2071   { "conveyor_belt_4_middle.xpos",              "0"                     },
2072   { "conveyor_belt_4_middle.ypos",              "9"                     },
2073   { "conveyor_belt_4_middle.frames",            "1"                     },
2074   { "conveyor_belt_4_middle.active",            "RocksDC.png"           },
2075   { "conveyor_belt_4_middle.active.xpos",       "0"                     },
2076   { "conveyor_belt_4_middle.active.ypos",       "9"                     },
2077   { "conveyor_belt_4_middle.active.frames",     "8"                     },
2078   { "conveyor_belt_4_middle.active.delay",      "2"                     },
2079   { "conveyor_belt_4_left",                     "RocksDC.png"           },
2080   { "conveyor_belt_4_left.xpos",                "0"                     },
2081   { "conveyor_belt_4_left.ypos",                "10"                    },
2082   { "conveyor_belt_4_left.frames",              "1"                     },
2083   { "conveyor_belt_4_left.active",              "RocksDC.png"           },
2084   { "conveyor_belt_4_left.active.xpos",         "0"                     },
2085   { "conveyor_belt_4_left.active.ypos",         "10"                    },
2086   { "conveyor_belt_4_left.active.frames",       "8"                     },
2087   { "conveyor_belt_4_left.active.delay",        "2"                     },
2088   { "conveyor_belt_4_right",                    "RocksDC.png"           },
2089   { "conveyor_belt_4_right.xpos",               "0"                     },
2090   { "conveyor_belt_4_right.ypos",               "11"                    },
2091   { "conveyor_belt_4_right.frames",             "1"                     },
2092   { "conveyor_belt_4_right.active",             "RocksDC.png"           },
2093   { "conveyor_belt_4_right.active.xpos",        "0"                     },
2094   { "conveyor_belt_4_right.active.ypos",        "11"                    },
2095   { "conveyor_belt_4_right.active.frames",      "8"                     },
2096   { "conveyor_belt_4_right.active.delay",       "2"                     },
2097   { "conveyor_belt_4_switch_left",              "RocksDC.png"           },
2098   { "conveyor_belt_4_switch_left.xpos",         "3"                     },
2099   { "conveyor_belt_4_switch_left.ypos",         "12"                    },
2100   { "conveyor_belt_4_switch_left.frames",       "1"                     },
2101   { "conveyor_belt_4_switch_middle",            "RocksDC.png"           },
2102   { "conveyor_belt_4_switch_middle.xpos",       "3"                     },
2103   { "conveyor_belt_4_switch_middle.ypos",       "13"                    },
2104   { "conveyor_belt_4_switch_middle.frames",     "1"                     },
2105   { "conveyor_belt_4_switch_right",             "RocksDC.png"           },
2106   { "conveyor_belt_4_switch_right.xpos",        "3"                     },
2107   { "conveyor_belt_4_switch_right.ypos",        "14"                    },
2108   { "conveyor_belt_4_switch_right.frames",      "1"                     },
2109
2110   { "switchgate_switch_up",                     "RocksDC.png"           },
2111   { "switchgate_switch_up.xpos",                "4"                     },
2112   { "switchgate_switch_up.ypos",                "12"                    },
2113   { "switchgate_switch_up.frames",              "1"                     },
2114   { "switchgate_switch_down",                   "RocksDC.png"           },
2115   { "switchgate_switch_down.xpos",              "5"                     },
2116   { "switchgate_switch_down.ypos",              "12"                    },
2117   { "switchgate_switch_down.frames",            "1"                     },
2118
2119   { "dc_switchgate_switch_up",                  "RocksDC2.png"          },
2120   { "dc_switchgate_switch_up.xpos",             "10"                    },
2121   { "dc_switchgate_switch_up.ypos",             "1"                     },
2122   { "dc_switchgate_switch_up.frames",           "1"                     },
2123   { "dc_switchgate_switch_down",                "RocksDC2.png"          },
2124   { "dc_switchgate_switch_down.xpos",           "11"                    },
2125   { "dc_switchgate_switch_down.ypos",           "1"                     },
2126   { "dc_switchgate_switch_down.frames",         "1"                     },
2127
2128   { "light_switch",                             "RocksDC.png"           },
2129   { "light_switch.xpos",                        "6"                     },
2130   { "light_switch.ypos",                        "12"                    },
2131   { "light_switch.frames",                      "1"                     },
2132   { "light_switch.active",                      "RocksDC.png"           },
2133   { "light_switch.active.xpos",                 "7"                     },
2134   { "light_switch.active.ypos",                 "12"                    },
2135   { "light_switch.active.frames",               "1"                     },
2136
2137   { "timegate_switch",                          "RocksDC.png"           },
2138   { "timegate_switch.xpos",                     "0"                     },
2139   { "timegate_switch.ypos",                     "15"                    },
2140   { "timegate_switch.frames",                   "1"                     },
2141   { "timegate_switch.active",                   "RocksDC.png"           },
2142   { "timegate_switch.active.xpos",              "0"                     },
2143   { "timegate_switch.active.ypos",              "15"                    },
2144   { "timegate_switch.active.frames",            "4"                     },
2145
2146   { "dc_timegate_switch",                       "RocksDC2.png"          },
2147   { "dc_timegate_switch.xpos",                  "12"                    },
2148   { "dc_timegate_switch.ypos",                  "1"                     },
2149   { "dc_timegate_switch.frames",                "1"                     },
2150   { "dc_timegate_switch.active",                "RocksDC2.png"          },
2151   { "dc_timegate_switch.active.xpos",           "12"                    },
2152   { "dc_timegate_switch.active.ypos",           "1"                     },
2153   { "dc_timegate_switch.active.frames",         "4"                     },
2154
2155   { "envelope_1",                               "RocksMore.png"         },
2156   { "envelope_1.xpos",                          "0"                     },
2157   { "envelope_1.ypos",                          "4"                     },
2158   { "envelope_1.frames",                        "1"                     },
2159   { "envelope_1.collecting",                    "RocksCollect.png"      },
2160   { "envelope_1.collecting.xpos",               "7"                     },
2161   { "envelope_1.collecting.ypos",               "8"                     },
2162   { "envelope_1.collecting.frames",             "7"                     },
2163   { "envelope_1.collecting.anim_mode",          "linear"                },
2164   { "envelope_2",                               "RocksMore.png"         },
2165   { "envelope_2.xpos",                          "1"                     },
2166   { "envelope_2.ypos",                          "4"                     },
2167   { "envelope_2.frames",                        "1"                     },
2168   { "envelope_2.collecting",                    "RocksCollect.png"      },
2169   { "envelope_2.collecting.xpos",               "7"                     },
2170   { "envelope_2.collecting.ypos",               "9"                     },
2171   { "envelope_2.collecting.frames",             "7"                     },
2172   { "envelope_2.collecting.anim_mode",          "linear"                },
2173   { "envelope_3",                               "RocksMore.png"         },
2174   { "envelope_3.xpos",                          "2"                     },
2175   { "envelope_3.ypos",                          "4"                     },
2176   { "envelope_3.frames",                        "1"                     },
2177   { "envelope_3.collecting",                    "RocksCollect.png"      },
2178   { "envelope_3.collecting.xpos",               "7"                     },
2179   { "envelope_3.collecting.ypos",               "10"                    },
2180   { "envelope_3.collecting.frames",             "7"                     },
2181   { "envelope_3.collecting.anim_mode",          "linear"                },
2182   { "envelope_4",                               "RocksMore.png"         },
2183   { "envelope_4.xpos",                          "3"                     },
2184   { "envelope_4.ypos",                          "4"                     },
2185   { "envelope_4.frames",                        "1"                     },
2186   { "envelope_4.collecting",                    "RocksCollect.png"      },
2187   { "envelope_4.collecting.xpos",               "7"                     },
2188   { "envelope_4.collecting.ypos",               "11"                    },
2189   { "envelope_4.collecting.frames",             "7"                     },
2190   { "envelope_4.collecting.anim_mode",          "linear"                },
2191
2192   { "sign_radioactivity",                       "RocksDC.png"           },
2193   { "sign_radioactivity.xpos",                  "4"                     },
2194   { "sign_radioactivity.ypos",                  "13"                    },
2195   { "sign_radioactivity.frames",                "1"                     },
2196
2197   { "sign_give_way",                            "RocksDC.png"           },
2198   { "sign_give_way.xpos",                       "5"                     },
2199   { "sign_give_way.ypos",                       "13"                    },
2200   { "sign_give_way.frames",                     "1"                     },
2201
2202   { "sign_no_entry",                            "RocksDC.png"           },
2203   { "sign_no_entry.xpos",                       "6"                     },
2204   { "sign_no_entry.ypos",                       "13"                    },
2205   { "sign_no_entry.frames",                     "1"                     },
2206
2207   { "sign_emergency_exit",                      "RocksDC.png"           },
2208   { "sign_emergency_exit.xpos",                 "7"                     },
2209   { "sign_emergency_exit.ypos",                 "13"                    },
2210   { "sign_emergency_exit.frames",               "1"                     },
2211
2212   { "sign_yin_yang",                            "RocksDC.png"           },
2213   { "sign_yin_yang.xpos",                       "4"                     },
2214   { "sign_yin_yang.ypos",                       "14"                    },
2215   { "sign_yin_yang.frames",                     "1"                     },
2216
2217   { "sign_exclamation",                         "RocksDC.png"           },
2218   { "sign_exclamation.xpos",                    "5"                     },
2219   { "sign_exclamation.ypos",                    "14"                    },
2220   { "sign_exclamation.frames",                  "1"                     },
2221
2222   { "sign_stop",                                "RocksDC.png"           },
2223   { "sign_stop.xpos",                           "6"                     },
2224   { "sign_stop.ypos",                           "14"                    },
2225   { "sign_stop.frames",                         "1"                     },
2226
2227   { "sign_parking",                             "RocksDC.png"           },
2228   { "sign_parking.xpos",                        "6"                     },
2229   { "sign_parking.ypos",                        "15"                    },
2230   { "sign_parking.frames",                      "1"                     },
2231
2232   { "sign_wheelchair",                          "RocksDC.png"           },
2233   { "sign_wheelchair.xpos",                     "7"                     },
2234   { "sign_wheelchair.ypos",                     "15"                    },
2235   { "sign_wheelchair.frames",                   "1"                     },
2236
2237   { "sign_entry_forbidden",                     "RocksDC.png"           },
2238   { "sign_entry_forbidden.xpos",                "12"                    },
2239   { "sign_entry_forbidden.ypos",                "15"                    },
2240   { "sign_entry_forbidden.frames",              "1"                     },
2241
2242   { "sperms",                                   "RocksDC2.png"          },
2243   { "sperms.xpos",                              "11"                    },
2244   { "sperms.ypos",                              "3"                     },
2245   { "sperms.frames",                            "1"                     },
2246
2247   { "bullet",                                   "RocksDC2.png"          },
2248   { "bullet.xpos",                              "12"                    },
2249   { "bullet.ypos",                              "3"                     },
2250   { "bullet.frames",                            "1"                     },
2251
2252   { "heart",                                    "RocksDC2.png"          },
2253   { "heart.xpos",                               "13"                    },
2254   { "heart.ypos",                               "3"                     },
2255   { "heart.frames",                             "1"                     },
2256
2257   { "cross",                                    "RocksDC2.png"          },
2258   { "cross.xpos",                               "14"                    },
2259   { "cross.ypos",                               "3"                     },
2260   { "cross.frames",                             "1"                     },
2261
2262   { "frankie",                                  "RocksDC2.png"          },
2263   { "frankie.xpos",                             "15"                    },
2264   { "frankie.ypos",                             "3"                     },
2265   { "frankie.frames",                           "1"                     },
2266
2267   { "sign_sperms",                              "RocksDC2.png"          },
2268   { "sign_sperms.xpos",                         "11"                    },
2269   { "sign_sperms.ypos",                         "2"                     },
2270   { "sign_sperms.frames",                       "1"                     },
2271
2272   { "sign_bullet",                              "RocksDC2.png"          },
2273   { "sign_bullet.xpos",                         "12"                    },
2274   { "sign_bullet.ypos",                         "2"                     },
2275   { "sign_bullet.frames",                       "1"                     },
2276
2277   { "sign_heart",                               "RocksDC2.png"          },
2278   { "sign_heart.xpos",                          "13"                    },
2279   { "sign_heart.ypos",                          "2"                     },
2280   { "sign_heart.frames",                        "1"                     },
2281
2282   { "sign_cross",                               "RocksDC2.png"          },
2283   { "sign_cross.xpos",                          "14"                    },
2284   { "sign_cross.ypos",                          "2"                     },
2285   { "sign_cross.frames",                        "1"                     },
2286
2287   { "sign_frankie",                             "RocksDC2.png"          },
2288   { "sign_frankie.xpos",                        "15"                    },
2289   { "sign_frankie.ypos",                        "2"                     },
2290   { "sign_frankie.frames",                      "1"                     },
2291
2292   { "landmine",                                 "RocksDC.png"           },
2293   { "landmine.xpos",                            "7"                     },
2294   { "landmine.ypos",                            "14"                    },
2295   { "landmine.frames",                          "1"                     },
2296   { "landmine.crumbled_like",                   "sand"                  },
2297
2298   { "dc_landmine",                              "RocksDC.png"           },
2299   { "dc_landmine.xpos",                         "14"                    },
2300   { "dc_landmine.ypos",                         "5"                     },
2301   { "dc_landmine.frames",                       "1"                     },
2302   { "dc_landmine.crumbled_like",                "sand"                  },
2303
2304   { "steelwall_slippery",                       "RocksDC.png"           },
2305   { "steelwall_slippery.xpos",                  "5"                     },
2306   { "steelwall_slippery.ypos",                  "15"                    },
2307   { "steelwall_slippery.frames",                "1"                     },
2308
2309   { "extra_time",                               "RocksDC.png"           },
2310   { "extra_time.xpos",                          "8"                     },
2311   { "extra_time.ypos",                          "0"                     },
2312   { "extra_time.frames",                        "6"                     },
2313   { "extra_time.delay",                         "4"                     },
2314   { "extra_time.collecting",                    "RocksCollect.png"      },
2315   { "extra_time.collecting.xpos",               "7"                     },
2316   { "extra_time.collecting.ypos",               "2"                     },
2317   { "extra_time.collecting.frames",             "7"                     },
2318   { "extra_time.collecting.anim_mode",          "linear"                },
2319
2320   { "shield_normal",                            "RocksDC.png"           },
2321   { "shield_normal.xpos",                       "8"                     },
2322   { "shield_normal.ypos",                       "2"                     },
2323   { "shield_normal.frames",                     "6"                     },
2324   { "shield_normal.delay",                      "4"                     },
2325   { "shield_normal.active",                     "RocksHeroes.png"       },
2326   { "shield_normal.active.xpos",                "1"                     },
2327   { "shield_normal.active.ypos",                "13"                    },
2328   { "shield_normal.active.frames",              "3"                     },
2329   { "shield_normal.active.delay",               "8"                     },
2330   { "shield_normal.active.anim_mode",           "pingpong"              },
2331   { "shield_normal.collecting",                 "RocksCollect.png"      },
2332   { "shield_normal.collecting.xpos",            "7"                     },
2333   { "shield_normal.collecting.ypos",            "1"                     },
2334   { "shield_normal.collecting.frames",          "7"                     },
2335   { "shield_normal.collecting.anim_mode",       "linear"                },
2336
2337   { "shield_deadly",                            "RocksDC.png"           },
2338   { "shield_deadly.xpos",                       "8"                     },
2339   { "shield_deadly.ypos",                       "1"                     },
2340   { "shield_deadly.frames",                     "6"                     },
2341   { "shield_deadly.delay",                      "4"                     },
2342   { "shield_deadly.active",                     "RocksHeroes.png"       },
2343   { "shield_deadly.active.xpos",                "5"                     },
2344   { "shield_deadly.active.ypos",                "13"                    },
2345   { "shield_deadly.active.frames",              "3"                     },
2346   { "shield_deadly.active.delay",               "8"                     },
2347   { "shield_deadly.active.anim_mode",           "pingpong"              },
2348   { "shield_deadly.collecting",                 "RocksCollect.png"      },
2349   { "shield_deadly.collecting.xpos",            "7"                     },
2350   { "shield_deadly.collecting.ypos",            "3"                     },
2351   { "shield_deadly.collecting.frames",          "7"                     },
2352   { "shield_deadly.collecting.anim_mode",       "linear"                },
2353
2354   { "switchgate_closed",                        "RocksDC.png"           },
2355   { "switchgate_closed.xpos",                   "8"                     },
2356   { "switchgate_closed.ypos",                   "5"                     },
2357   { "switchgate_closed.frames",                 "1"                     },
2358   { "switchgate.opening",                       "RocksDC.png"           },
2359   { "switchgate.opening.xpos",                  "8"                     },
2360   { "switchgate.opening.ypos",                  "5"                     },
2361   { "switchgate.opening.frames",                "5"                     },
2362   { "switchgate.opening.delay",                 "6"                     },
2363   { "switchgate_open",                          "RocksDC.png"           },
2364   { "switchgate_open.xpos",                     "12"                    },
2365   { "switchgate_open.ypos",                     "5"                     },
2366   { "switchgate_open.frames",                   "1"                     },
2367   { "switchgate.closing",                       "RocksDC.png"           },
2368   { "switchgate.closing.xpos",                  "8"                     },
2369   { "switchgate.closing.ypos",                  "5"                     },
2370   { "switchgate.closing.frames",                "5"                     },
2371   { "switchgate.closing.delay",                 "6"                     },
2372   { "switchgate.closing.anim_mode",             "reverse"               },
2373
2374   { "timegate_closed",                          "RocksDC.png"           },
2375   { "timegate_closed.xpos",                     "8"                     },
2376   { "timegate_closed.ypos",                     "6"                     },
2377   { "timegate_closed.frames",                   "1"                     },
2378   { "timegate.opening",                         "RocksDC.png"           },
2379   { "timegate.opening.xpos",                    "8"                     },
2380   { "timegate.opening.ypos",                    "6"                     },
2381   { "timegate.opening.frames",                  "5"                     },
2382   { "timegate.opening.delay",                   "6"                     },
2383   { "timegate_open",                            "RocksDC.png"           },
2384   { "timegate_open.xpos",                       "12"                    },
2385   { "timegate_open.ypos",                       "6"                     },
2386   { "timegate_open.frames",                     "1"                     },
2387   { "timegate.closing",                         "RocksDC.png"           },
2388   { "timegate.closing.xpos",                    "8"                     },
2389   { "timegate.closing.ypos",                    "6"                     },
2390   { "timegate.closing.frames",                  "5"                     },
2391   { "timegate.closing.delay",                   "6"                     },
2392   { "timegate.closing.anim_mode",               "reverse"               },
2393
2394   { "pearl",                                    "RocksDC.png"           },
2395   { "pearl.xpos",                               "8"                     },
2396   { "pearl.ypos",                               "11"                    },
2397   { "pearl.frames",                             "1"                     },
2398   { "pearl.breaking",                           "RocksDC.png"           },
2399   { "pearl.breaking.xpos",                      "8"                     },
2400   { "pearl.breaking.ypos",                      "12"                    },
2401   { "pearl.breaking.frames",                    "4"                     },
2402   { "pearl.breaking.delay",                     "2"                     },
2403   { "pearl.breaking.anim_mode",                 "linear"                },
2404   { "pearl.collecting",                         "RocksCollect.png"      },
2405   { "pearl.collecting.xpos",                    "0"                     },
2406   { "pearl.collecting.ypos",                    "16"                    },
2407   { "pearl.collecting.frames",                  "7"                     },
2408   { "pearl.collecting.anim_mode",               "linear"                },
2409
2410   { "crystal",                                  "RocksDC.png"           },
2411   { "crystal.xpos",                             "9"                     },
2412   { "crystal.ypos",                             "11"                    },
2413   { "crystal.frames",                           "1"                     },
2414   { "crystal.collecting",                       "RocksCollect.png"      },
2415   { "crystal.collecting.xpos",                  "0"                     },
2416   { "crystal.collecting.ypos",                  "17"                    },
2417   { "crystal.collecting.frames",                "7"                     },
2418   { "crystal.collecting.anim_mode",             "linear"                },
2419
2420   { "wall_pearl",                               "RocksDC.png"           },
2421   { "wall_pearl.xpos",                          "10"                    },
2422   { "wall_pearl.ypos",                          "11"                    },
2423   { "wall_pearl.frames",                        "1"                     },
2424
2425   { "wall_crystal",                             "RocksDC.png"           },
2426   { "wall_crystal.xpos",                        "11"                    },
2427   { "wall_crystal.ypos",                        "11"                    },
2428   { "wall_crystal.frames",                      "1"                     },
2429
2430   { "dc_steelwall_1_left",                      "RocksDC2.png"          },
2431   { "dc_steelwall_1_left.xpos",                 "5"                     },
2432   { "dc_steelwall_1_left.ypos",                 "1"                     },
2433   { "dc_steelwall_1_left.frames",               "1"                     },
2434   { "dc_steelwall_1_right",                     "RocksDC2.png"          },
2435   { "dc_steelwall_1_right.xpos",                "3"                     },
2436   { "dc_steelwall_1_right.ypos",                "1"                     },
2437   { "dc_steelwall_1_right.frames",              "1"                     },
2438   { "dc_steelwall_1_top",                       "RocksDC2.png"          },
2439   { "dc_steelwall_1_top.xpos",                  "4"                     },
2440   { "dc_steelwall_1_top.ypos",                  "2"                     },
2441   { "dc_steelwall_1_top.frames",                "1"                     },
2442   { "dc_steelwall_1_bottom",                    "RocksDC2.png"          },
2443   { "dc_steelwall_1_bottom.xpos",               "4"                     },
2444   { "dc_steelwall_1_bottom.ypos",               "0"                     },
2445   { "dc_steelwall_1_bottom.frames",             "1"                     },
2446   { "dc_steelwall_1_horizontal",                "RocksDC2.png"          },
2447   { "dc_steelwall_1_horizontal.xpos",           "1"                     },
2448   { "dc_steelwall_1_horizontal.ypos",           "0"                     },
2449   { "dc_steelwall_1_horizontal.frames",         "1"                     },
2450   { "dc_steelwall_1_vertical",                  "RocksDC2.png"          },
2451   { "dc_steelwall_1_vertical.xpos",             "0"                     },
2452   { "dc_steelwall_1_vertical.ypos",             "1"                     },
2453   { "dc_steelwall_1_vertical.frames",           "1"                     },
2454   { "dc_steelwall_1_topleft",                   "RocksDC2.png"          },
2455   { "dc_steelwall_1_topleft.xpos",              "0"                     },
2456   { "dc_steelwall_1_topleft.ypos",              "0"                     },
2457   { "dc_steelwall_1_topleft.frames",            "1"                     },
2458   { "dc_steelwall_1_topright",                  "RocksDC2.png"          },
2459   { "dc_steelwall_1_topright.xpos",             "2"                     },
2460   { "dc_steelwall_1_topright.ypos",             "0"                     },
2461   { "dc_steelwall_1_topright.frames",           "1"                     },
2462   { "dc_steelwall_1_bottomleft",                "RocksDC2.png"          },
2463   { "dc_steelwall_1_bottomleft.xpos",           "0"                     },
2464   { "dc_steelwall_1_bottomleft.ypos",           "2"                     },
2465   { "dc_steelwall_1_bottomleft.frames",         "1"                     },
2466   { "dc_steelwall_1_bottomright",               "RocksDC2.png"          },
2467   { "dc_steelwall_1_bottomright.xpos",          "2"                     },
2468   { "dc_steelwall_1_bottomright.ypos",          "2"                     },
2469   { "dc_steelwall_1_bottomright.frames",        "1"                     },
2470   { "dc_steelwall_1_topleft_2",                 "RocksDC2.png"          },
2471   { "dc_steelwall_1_topleft_2.xpos",            "5"                     },
2472   { "dc_steelwall_1_topleft_2.ypos",            "2"                     },
2473   { "dc_steelwall_1_topleft_2.frames",          "1"                     },
2474   { "dc_steelwall_1_topright_2",                "RocksDC2.png"          },
2475   { "dc_steelwall_1_topright_2.xpos",           "3"                     },
2476   { "dc_steelwall_1_topright_2.ypos",           "2"                     },
2477   { "dc_steelwall_1_topright_2.frames",         "1"                     },
2478   { "dc_steelwall_1_bottomleft_2",              "RocksDC2.png"          },
2479   { "dc_steelwall_1_bottomleft_2.xpos",         "5"                     },
2480   { "dc_steelwall_1_bottomleft_2.ypos",         "0"                     },
2481   { "dc_steelwall_1_bottomleft_2.frames",       "1"                     },
2482   { "dc_steelwall_1_bottomright_2",             "RocksDC2.png"          },
2483   { "dc_steelwall_1_bottomright_2.xpos",        "3"                     },
2484   { "dc_steelwall_1_bottomright_2.ypos",        "0"                     },
2485   { "dc_steelwall_1_bottomright_2.frames",      "1"                     },
2486
2487   { "dc_steelwall_2_left",                      "RocksDC2.png"          },
2488   { "dc_steelwall_2_left.xpos",                 "6"                     },
2489   { "dc_steelwall_2_left.ypos",                 "1"                     },
2490   { "dc_steelwall_2_left.frames",               "1"                     },
2491   { "dc_steelwall_2_right",                     "RocksDC2.png"          },
2492   { "dc_steelwall_2_right.xpos",                "9"                     },
2493   { "dc_steelwall_2_right.ypos",                "1"                     },
2494   { "dc_steelwall_2_right.frames",              "1"                     },
2495   { "dc_steelwall_2_top",                       "RocksDC2.png"          },
2496   { "dc_steelwall_2_top.xpos",                  "7"                     },
2497   { "dc_steelwall_2_top.ypos",                  "0"                     },
2498   { "dc_steelwall_2_top.frames",                "1"                     },
2499   { "dc_steelwall_2_bottom",                    "RocksDC2.png"          },
2500   { "dc_steelwall_2_bottom.xpos",               "7"                     },
2501   { "dc_steelwall_2_bottom.ypos",               "3"                     },
2502   { "dc_steelwall_2_bottom.frames",             "1"                     },
2503   { "dc_steelwall_2_horizontal",                "RocksDC2.png"          },
2504   { "dc_steelwall_2_horizontal.xpos",           "8"                     },
2505   { "dc_steelwall_2_horizontal.ypos",           "1"                     },
2506   { "dc_steelwall_2_horizontal.frames",         "1"                     },
2507   { "dc_steelwall_2_vertical",                  "RocksDC2.png"          },
2508   { "dc_steelwall_2_vertical.xpos",             "7"                     },
2509   { "dc_steelwall_2_vertical.ypos",             "2"                     },
2510   { "dc_steelwall_2_vertical.frames",           "1"                     },
2511   { "dc_steelwall_2_middle",                    "RocksDC2.png"          },
2512   { "dc_steelwall_2_middle.xpos",               "7"                     },
2513   { "dc_steelwall_2_middle.ypos",               "1"                     },
2514   { "dc_steelwall_2_middle.frames",             "1"                     },
2515   { "dc_steelwall_2_single",                    "RocksDC2.png"          },
2516   { "dc_steelwall_2_single.xpos",               "6"                     },
2517   { "dc_steelwall_2_single.ypos",               "0"                     },
2518   { "dc_steelwall_2_single.frames",             "1"                     },
2519
2520   // images for DX Boulderdash style elements and actions
2521
2522   { "tube_right_down",                          "RocksDC.png"           },
2523   { "tube_right_down.xpos",                     "9"                     },
2524   { "tube_right_down.ypos",                     "13"                    },
2525   { "tube_right_down.frames",                   "1"                     },
2526
2527   { "tube_horizontal_down",                     "RocksDC.png"           },
2528   { "tube_horizontal_down.xpos",                "10"                    },
2529   { "tube_horizontal_down.ypos",                "13"                    },
2530   { "tube_horizontal_down.frames",              "1"                     },
2531
2532   { "tube_left_down",                           "RocksDC.png"           },
2533   { "tube_left_down.xpos",                      "11"                    },
2534   { "tube_left_down.ypos",                      "13"                    },
2535   { "tube_left_down.frames",                    "1"                     },
2536
2537   { "tube_horizontal",                          "RocksDC.png"           },
2538   { "tube_horizontal.xpos",                     "8"                     },
2539   { "tube_horizontal.ypos",                     "14"                    },
2540   { "tube_horizontal.frames",                   "1"                     },
2541
2542   { "tube_vertical_right",                      "RocksDC.png"           },
2543   { "tube_vertical_right.xpos",                 "9"                     },
2544   { "tube_vertical_right.ypos",                 "14"                    },
2545   { "tube_vertical_right.frames",               "1"                     },
2546
2547   { "tube_any",                                 "RocksDC.png"           },
2548   { "tube_any.xpos",                            "10"                    },
2549   { "tube_any.ypos",                            "14"                    },
2550   { "tube_any.frames",                          "1"                     },
2551
2552   { "tube_vertical_left",                       "RocksDC.png"           },
2553   { "tube_vertical_left.xpos",                  "11"                    },
2554   { "tube_vertical_left.ypos",                  "14"                    },
2555   { "tube_vertical_left.frames",                "1"                     },
2556
2557   { "tube_vertical",                            "RocksDC.png"           },
2558   { "tube_vertical.xpos",                       "8"                     },
2559   { "tube_vertical.ypos",                       "15"                    },
2560   { "tube_vertical.frames",                     "1"                     },
2561
2562   { "tube_right_up",                            "RocksDC.png"           },
2563   { "tube_right_up.xpos",                       "9"                     },
2564   { "tube_right_up.ypos",                       "15"                    },
2565   { "tube_right_up.frames",                     "1"                     },
2566
2567   { "tube_horizontal_up",                       "RocksDC.png"           },
2568   { "tube_horizontal_up.xpos",                  "10"                    },
2569   { "tube_horizontal_up.ypos",                  "15"                    },
2570   { "tube_horizontal_up.frames",                "1"                     },
2571
2572   { "tube_left_up",                             "RocksDC.png"           },
2573   { "tube_left_up.xpos",                        "11"                    },
2574   { "tube_left_up.ypos",                        "15"                    },
2575   { "tube_left_up.frames",                      "1"                     },
2576
2577   { "trap",                                     "RocksDC.png"           },
2578   { "trap.xpos",                                "12"                    },
2579   { "trap.ypos",                                "8"                     },
2580   { "trap.frames",                              "1"                     },
2581   { "trap.crumbled_like",                       "sand"                  },
2582   { "trap.diggable_like",                       "sand"                  },
2583   { "trap.active",                              "RocksDC.png"           },
2584   { "trap.active.xpos",                         "12"                    },
2585   { "trap.active.ypos",                         "8"                     },
2586   { "trap.active.frames",                       "4"                     },
2587   { "trap.active.delay",                        "4"                     },
2588   { "trap.active.anim_mode",                    "pingpong2"             },
2589   { "trap.active.crumbled_like",                "sand"                  },
2590
2591   { "dx_supabomb",                              "RocksDC.png"           },
2592   { "dx_supabomb.xpos",                         "15"                    },
2593   { "dx_supabomb.ypos",                         "9"                     },
2594   { "dx_supabomb.frames",                       "1"                     },
2595
2596   // images for Rocks'n'Diamonds style elements and actions
2597
2598   { "key_1",                                    "RocksElements.png"     },
2599   { "key_1.xpos",                               "4"                     },
2600   { "key_1.ypos",                               "1"                     },
2601   { "key_1.frames",                             "1"                     },
2602   { "key_1.collecting",                         "RocksCollect.png"      },
2603   { "key_1.collecting.xpos",                    "0"                     },
2604   { "key_1.collecting.ypos",                    "3"                     },
2605   { "key_1.collecting.frames",                  "7"                     },
2606   { "key_1.collecting.anim_mode",               "linear"                },
2607   { "key_2",                                    "RocksElements.png"     },
2608   { "key_2.xpos",                               "5"                     },
2609   { "key_2.ypos",                               "1"                     },
2610   { "key_2.frames",                             "1"                     },
2611   { "key_2.collecting",                         "RocksCollect.png"      },
2612   { "key_2.collecting.xpos",                    "0"                     },
2613   { "key_2.collecting.ypos",                    "4"                     },
2614   { "key_2.collecting.frames",                  "7"                     },
2615   { "key_2.collecting.anim_mode",               "linear"                },
2616   { "key_3",                                    "RocksElements.png"     },
2617   { "key_3.xpos",                               "6"                     },
2618   { "key_3.ypos",                               "1"                     },
2619   { "key_3.frames",                             "1"                     },
2620   { "key_3.collecting",                         "RocksCollect.png"      },
2621   { "key_3.collecting.xpos",                    "0"                     },
2622   { "key_3.collecting.ypos",                    "5"                     },
2623   { "key_3.collecting.frames",                  "7"                     },
2624   { "key_3.collecting.anim_mode",               "linear"                },
2625   { "key_4",                                    "RocksElements.png"     },
2626   { "key_4.xpos",                               "7"                     },
2627   { "key_4.ypos",                               "1"                     },
2628   { "key_4.frames",                             "1"                     },
2629   { "key_4.collecting",                         "RocksCollect.png"      },
2630   { "key_4.collecting.xpos",                    "0"                     },
2631   { "key_4.collecting.ypos",                    "6"                     },
2632   { "key_4.collecting.frames",                  "7"                     },
2633   { "key_4.collecting.anim_mode",               "linear"                },
2634
2635   { "gate_1",                                   "RocksElements.png"     },
2636   { "gate_1.xpos",                              "4"                     },
2637   { "gate_1.ypos",                              "2"                     },
2638   { "gate_1.frames",                            "1"                     },
2639   { "gate_2",                                   "RocksElements.png"     },
2640   { "gate_2.xpos",                              "5"                     },
2641   { "gate_2.ypos",                              "2"                     },
2642   { "gate_2.frames",                            "1"                     },
2643   { "gate_3",                                   "RocksElements.png"     },
2644   { "gate_3.xpos",                              "6"                     },
2645   { "gate_3.ypos",                              "2"                     },
2646   { "gate_3.frames",                            "1"                     },
2647   { "gate_4",                                   "RocksElements.png"     },
2648   { "gate_4.xpos",                              "7"                     },
2649   { "gate_4.ypos",                              "2"                     },
2650   { "gate_4.frames",                            "1"                     },
2651   { "gate_1_gray",                              "RocksElements.png"     },
2652   { "gate_1_gray.xpos",                         "8"                     },
2653   { "gate_1_gray.ypos",                         "2"                     },
2654   { "gate_1_gray.frames",                       "1"                     },
2655   { "gate_1_gray.EDITOR",                       "RocksElements.png"     },
2656   { "gate_1_gray.EDITOR.xpos",                  "8"                     },
2657   { "gate_1_gray.EDITOR.ypos",                  "14"                    },
2658   { "gate_1_gray.active",                       "RocksElements.png"     },
2659   { "gate_1_gray.active.xpos",                  "4"                     },
2660   { "gate_1_gray.active.ypos",                  "2"                     },
2661   { "gate_1_gray.active.frames",                "1"                     },
2662   { "gate_2_gray",                              "RocksElements.png"     },
2663   { "gate_2_gray.xpos",                         "9"                     },
2664   { "gate_2_gray.ypos",                         "2"                     },
2665   { "gate_2_gray.frames",                       "1"                     },
2666   { "gate_2_gray.EDITOR",                       "RocksElements.png"     },
2667   { "gate_2_gray.EDITOR.xpos",                  "9"                     },
2668   { "gate_2_gray.EDITOR.ypos",                  "14"                    },
2669   { "gate_2_gray.active",                       "RocksElements.png"     },
2670   { "gate_2_gray.active.xpos",                  "5"                     },
2671   { "gate_2_gray.active.ypos",                  "2"                     },
2672   { "gate_2_gray.active.frames",                "1"                     },
2673   { "gate_3_gray",                              "RocksElements.png"     },
2674   { "gate_3_gray.xpos",                         "10"                    },
2675   { "gate_3_gray.ypos",                         "2"                     },
2676   { "gate_3_gray.frames",                       "1"                     },
2677   { "gate_3_gray.EDITOR",                       "RocksElements.png"     },
2678   { "gate_3_gray.EDITOR.xpos",                  "10"                    },
2679   { "gate_3_gray.EDITOR.ypos",                  "14"                    },
2680   { "gate_3_gray.active",                       "RocksElements.png"     },
2681   { "gate_3_gray.active.xpos",                  "6"                     },
2682   { "gate_3_gray.active.ypos",                  "2"                     },
2683   { "gate_3_gray.active.frames",                "1"                     },
2684   { "gate_4_gray",                              "RocksElements.png"     },
2685   { "gate_4_gray.xpos",                         "11"                    },
2686   { "gate_4_gray.ypos",                         "2"                     },
2687   { "gate_4_gray.frames",                       "1"                     },
2688   { "gate_4_gray.EDITOR",                       "RocksElements.png"     },
2689   { "gate_4_gray.EDITOR.xpos",                  "11"                    },
2690   { "gate_4_gray.EDITOR.ypos",                  "14"                    },
2691   { "gate_4_gray.active",                       "RocksElements.png"     },
2692   { "gate_4_gray.active.xpos",                  "7"                     },
2693   { "gate_4_gray.active.ypos",                  "2"                     },
2694   { "gate_4_gray.active.frames",                "1"                     },
2695
2696   { "game_of_life",                             "RocksElements.png"     },
2697   { "game_of_life.xpos",                        "8"                     },
2698   { "game_of_life.ypos",                        "1"                     },
2699   { "game_of_life.frames",                      "1"                     },
2700
2701   { "biomaze",                                  "RocksElements.png"     },
2702   { "biomaze.xpos",                             "9"                     },
2703   { "biomaze.ypos",                             "1"                     },
2704   { "biomaze.frames",                           "1"                     },
2705
2706   { "pacman",                                   "RocksElements.png"     },
2707   { "pacman.xpos",                              "8"                     },
2708   { "pacman.ypos",                              "5"                     },
2709   { "pacman.frames",                            "1"                     },
2710   { "pacman.right",                             "RocksElements.png"     },
2711   { "pacman.right.xpos",                        "8"                     },
2712   { "pacman.right.ypos",                        "5"                     },
2713   { "pacman.right.frames",                      "2"                     },
2714   { "pacman.right.delay",                       "4"                     },
2715   { "pacman.right.offset",                      "128"                   },
2716   { "pacman.up",                                "RocksElements.png"     },
2717   { "pacman.up.xpos",                           "9"                     },
2718   { "pacman.up.ypos",                           "5"                     },
2719   { "pacman.up.frames",                         "2"                     },
2720   { "pacman.up.delay",                          "4"                     },
2721   { "pacman.up.offset",                         "128"                   },
2722   { "pacman.left",                              "RocksElements.png"     },
2723   { "pacman.left.xpos",                         "10"                    },
2724   { "pacman.left.ypos",                         "5"                     },
2725   { "pacman.left.frames",                       "2"                     },
2726   { "pacman.left.delay",                        "4"                     },
2727   { "pacman.left.offset",                       "128"                   },
2728   { "pacman.down",                              "RocksElements.png"     },
2729   { "pacman.down.xpos",                         "11"                    },
2730   { "pacman.down.ypos",                         "5"                     },
2731   { "pacman.down.frames",                       "2"                     },
2732   { "pacman.down.delay",                        "4"                     },
2733   { "pacman.down.offset",                       "128"                   },
2734   { "pacman.turning_from_right",                "RocksElements.png"     },
2735   { "pacman.turning_from_right.xpos",           "12"                    },
2736   { "pacman.turning_from_right.ypos",           "5"                     },
2737   { "pacman.turning_from_right.frames",         "1"                     },
2738   { "pacman.turning_from_up",                   "RocksElements.png"     },
2739   { "pacman.turning_from_up.xpos",              "13"                    },
2740   { "pacman.turning_from_up.ypos",              "5"                     },
2741   { "pacman.turning_from_up.frames",            "1"                     },
2742   { "pacman.turning_from_left",                 "RocksElements.png"     },
2743   { "pacman.turning_from_left.xpos",            "14"                    },
2744   { "pacman.turning_from_left.ypos",            "5"                     },
2745   { "pacman.turning_from_left.frames",          "1"                     },
2746   { "pacman.turning_from_down",                 "RocksElements.png"     },
2747   { "pacman.turning_from_down.xpos",            "15"                    },
2748   { "pacman.turning_from_down.ypos",            "5"                     },
2749   { "pacman.turning_from_down.frames",          "1"                     },
2750
2751   { "lamp",                                     "RocksElements.png"     },
2752   { "lamp.xpos",                                "0"                     },
2753   { "lamp.ypos",                                "7"                     },
2754   { "lamp.frames",                              "1"                     },
2755   { "lamp.active",                              "RocksElements.png"     },
2756   { "lamp.active.xpos",                         "1"                     },
2757   { "lamp.active.ypos",                         "7"                     },
2758   { "lamp.active.frames",                       "1"                     },
2759
2760   { "time_orb_full",                            "RocksElements.png"     },
2761   { "time_orb_full.xpos",                       "2"                     },
2762   { "time_orb_full.ypos",                       "7"                     },
2763   { "time_orb_full.frames",                     "1"                     },
2764   { "time_orb_empty",                           "RocksElements.png"     },
2765   { "time_orb_empty.xpos",                      "3"                     },
2766   { "time_orb_empty.ypos",                      "7"                     },
2767   { "time_orb_empty.frames",                    "1"                     },
2768
2769   { "emerald_yellow",                           "RocksElements.png"     },
2770   { "emerald_yellow.xpos",                      "10"                    },
2771   { "emerald_yellow.ypos",                      "8"                     },
2772   { "emerald_yellow.frames",                    "1"                     },
2773   { "emerald_yellow.moving",                    "RocksElements.png"     },
2774   { "emerald_yellow.moving.xpos",               "10"                    },
2775   { "emerald_yellow.moving.ypos",               "8"                     },
2776   { "emerald_yellow.moving.frames",             "2"                     },
2777   { "emerald_yellow.moving.delay",              "4"                     },
2778   { "emerald_yellow.falling",                   "RocksElements.png"     },
2779   { "emerald_yellow.falling.xpos",              "10"                    },
2780   { "emerald_yellow.falling.ypos",              "8"                     },
2781   { "emerald_yellow.falling.frames",            "2"                     },
2782   { "emerald_yellow.falling.delay",             "4"                     },
2783   { "emerald_yellow.collecting",                "RocksCollect.png"      },
2784   { "emerald_yellow.collecting.xpos",           "0"                     },
2785   { "emerald_yellow.collecting.ypos",           "9"                     },
2786   { "emerald_yellow.collecting.frames",         "7"                     },
2787   { "emerald_yellow.collecting.anim_mode",      "linear"                },
2788   { "emerald_red",                              "RocksElements.png"     },
2789   { "emerald_red.xpos",                         "8"                     },
2790   { "emerald_red.ypos",                         "9"                     },
2791   { "emerald_red.frames",                       "1"                     },
2792   { "emerald_red.moving",                       "RocksElements.png"     },
2793   { "emerald_red.moving.xpos",                  "8"                     },
2794   { "emerald_red.moving.ypos",                  "9"                     },
2795   { "emerald_red.moving.frames",                "2"                     },
2796   { "emerald_red.moving.delay",                 "4"                     },
2797   { "emerald_red.falling",                      "RocksElements.png"     },
2798   { "emerald_red.falling.xpos",                 "8"                     },
2799   { "emerald_red.falling.ypos",                 "9"                     },
2800   { "emerald_red.falling.frames",               "2"                     },
2801   { "emerald_red.falling.delay",                "4"                     },
2802   { "emerald_red.collecting",                   "RocksCollect.png"      },
2803   { "emerald_red.collecting.xpos",              "0"                     },
2804   { "emerald_red.collecting.ypos",              "13"                    },
2805   { "emerald_red.collecting.frames",            "7"                     },
2806   { "emerald_red.collecting.anim_mode",         "linear"                },
2807   { "emerald_purple",                           "RocksElements.png"     },
2808   { "emerald_purple.xpos",                      "10"                    },
2809   { "emerald_purple.ypos",                      "9"                     },
2810   { "emerald_purple.frames",                    "1"                     },
2811   { "emerald_purple.moving",                    "RocksElements.png"     },
2812   { "emerald_purple.moving.xpos",               "10"                    },
2813   { "emerald_purple.moving.ypos",               "9"                     },
2814   { "emerald_purple.moving.frames",             "2"                     },
2815   { "emerald_purple.moving.delay",              "4"                     },
2816   { "emerald_purple.falling",                   "RocksElements.png"     },
2817   { "emerald_purple.falling.xpos",              "10"                    },
2818   { "emerald_purple.falling.ypos",              "9"                     },
2819   { "emerald_purple.falling.frames",            "2"                     },
2820   { "emerald_purple.falling.delay",             "4"                     },
2821   { "emerald_purple.collecting",                "RocksCollect.png"      },
2822   { "emerald_purple.collecting.xpos",           "0"                     },
2823   { "emerald_purple.collecting.ypos",           "14"                    },
2824   { "emerald_purple.collecting.frames",         "7"                     },
2825   { "emerald_purple.collecting.anim_mode",      "linear"                },
2826
2827   { "wall_emerald_yellow",                      "RocksElements.png"     },
2828   { "wall_emerald_yellow.xpos",                 "8"                     },
2829   { "wall_emerald_yellow.ypos",                 "8"                     },
2830   { "wall_emerald_yellow.frames",               "1"                     },
2831   { "wall_emerald_red",                         "RocksElements.png"     },
2832   { "wall_emerald_red.xpos",                    "6"                     },
2833   { "wall_emerald_red.ypos",                    "8"                     },
2834   { "wall_emerald_red.frames",                  "1"                     },
2835   { "wall_emerald_purple",                      "RocksElements.png"     },
2836   { "wall_emerald_purple.xpos",                 "7"                     },
2837   { "wall_emerald_purple.ypos",                 "8"                     },
2838   { "wall_emerald_purple.frames",               "1"                     },
2839   { "wall_bd_diamond",                          "RocksElements.png"     },
2840   { "wall_bd_diamond.xpos",                     "9"                     },
2841   { "wall_bd_diamond.ypos",                     "8"                     },
2842   { "wall_bd_diamond.frames",                   "1"                     },
2843
2844   { "expandable_wall",                          "RocksElements.png"     },
2845   { "expandable_wall.xpos",                     "11"                    },
2846   { "expandable_wall.ypos",                     "10"                    },
2847   { "expandable_wall.frames",                   "1"                     },
2848   { "expandable_wall_horizontal",               "RocksElements.png"     },
2849   { "expandable_wall_horizontal.xpos",          "5"                     },
2850   { "expandable_wall_horizontal.ypos",          "9"                     },
2851   { "expandable_wall_horizontal.frames",        "1"                     },
2852   { "expandable_wall_horizontal.EDITOR",        "RocksElements.png"     },
2853   { "expandable_wall_horizontal.EDITOR.xpos",   "13"                    },
2854   { "expandable_wall_horizontal.EDITOR.ypos",   "13"                    },
2855   { "expandable_wall_vertical",                 "RocksElements.png"     },
2856   { "expandable_wall_vertical.xpos",            "6"                     },
2857   { "expandable_wall_vertical.ypos",            "9"                     },
2858   { "expandable_wall_vertical.frames",          "1"                     },
2859   { "expandable_wall_vertical.EDITOR",          "RocksElements.png"     },
2860   { "expandable_wall_vertical.EDITOR.xpos",     "14"                    },
2861   { "expandable_wall_vertical.EDITOR.ypos",     "13"                    },
2862   { "expandable_wall_any",                      "RocksElements.png"     },
2863   { "expandable_wall_any.xpos",                 "4"                     },
2864   { "expandable_wall_any.ypos",                 "9"                     },
2865   { "expandable_wall_any.frames",               "1"                     },
2866   { "expandable_wall_any.EDITOR",               "RocksElements.png"     },
2867   { "expandable_wall_any.EDITOR.xpos",          "12"                    },
2868   { "expandable_wall_any.EDITOR.ypos",          "13"                    },
2869
2870   { "expandable_steelwall_horizontal",          "RocksDC2.png"          },
2871   { "expandable_steelwall_horizontal.xpos",     "6"                     },
2872   { "expandable_steelwall_horizontal.ypos",     "2"                     },
2873   { "expandable_steelwall_horizontal.frames",   "1"                     },
2874   { "expandable_steelwall_horizontal.EDITOR",   "RocksDC2.png"          },
2875   { "expandable_steelwall_horizontal.EDITOR.xpos","9"                   },
2876   { "expandable_steelwall_horizontal.EDITOR.ypos","2"                   },
2877   { "expandable_steelwall_vertical",            "RocksDC2.png"          },
2878   { "expandable_steelwall_vertical.xpos",       "6"                     },
2879   { "expandable_steelwall_vertical.ypos",       "2"                     },
2880   { "expandable_steelwall_vertical.frames",     "1"                     },
2881   { "expandable_steelwall_vertical.EDITOR",     "RocksDC2.png"          },
2882   { "expandable_steelwall_vertical.EDITOR.xpos","10"                    },
2883   { "expandable_steelwall_vertical.EDITOR.ypos","2"                     },
2884   { "expandable_steelwall_any",                 "RocksDC2.png"          },
2885   { "expandable_steelwall_any.xpos",            "6"                     },
2886   { "expandable_steelwall_any.ypos",            "2"                     },
2887   { "expandable_steelwall_any.frames",          "1"                     },
2888   { "expandable_steelwall_any.EDITOR",          "RocksDC2.png"          },
2889   { "expandable_steelwall_any.EDITOR.xpos",     "8"                     },
2890   { "expandable_steelwall_any.EDITOR.ypos",     "2"                     },
2891
2892   { "bd_expandable_wall",                       "RocksElements.png"     },
2893   { "bd_expandable_wall.xpos",                  "5"                     },
2894   { "bd_expandable_wall.ypos",                  "9"                     },
2895   { "bd_expandable_wall.frames",                "1"                     },
2896   { "bd_expandable_wall.EDITOR",                "RocksDC.png"           },
2897   { "bd_expandable_wall.EDITOR.xpos",           "15"                    },
2898   { "bd_expandable_wall.EDITOR.ypos",           "15"                    },
2899
2900   { "expandable_wall.growing.left",             "RocksElements.png"     },
2901   { "expandable_wall.growing.left.xpos",        "8"                     },
2902   { "expandable_wall.growing.left.ypos",        "10"                    },
2903   { "expandable_wall.growing.left.frames",      "3"                     },
2904   { "expandable_wall.growing.left.delay",       "6"                     },
2905   { "expandable_wall.growing.left.anim_mode",   "linear"                },
2906   { "expandable_wall.growing.right",            "RocksElements.png"     },
2907   { "expandable_wall.growing.right.xpos",       "5"                     },
2908   { "expandable_wall.growing.right.ypos",       "10"                    },
2909   { "expandable_wall.growing.right.frames",     "3"                     },
2910   { "expandable_wall.growing.right.delay",      "6"                     },
2911   { "expandable_wall.growing.right.anim_mode",  "linear"                },
2912   { "expandable_wall.growing.up",               "RocksHeroes.png"       },
2913   { "expandable_wall.growing.up.xpos",          "3"                     },
2914   { "expandable_wall.growing.up.ypos",          "12"                    },
2915   { "expandable_wall.growing.up.frames",        "3"                     },
2916   { "expandable_wall.growing.up.delay",         "6"                     },
2917   { "expandable_wall.growing.up.anim_mode",     "linear"                },
2918   { "expandable_wall.growing.down",             "RocksHeroes.png"       },
2919   { "expandable_wall.growing.down.xpos",        "0"                     },
2920   { "expandable_wall.growing.down.ypos",        "12"                    },
2921   { "expandable_wall.growing.down.frames",      "3"                     },
2922   { "expandable_wall.growing.down.delay",       "6"                     },
2923   { "expandable_wall.growing.down.anim_mode",   "linear"                },
2924
2925   { "expandable_steelwall.growing.left",        "RocksDC2.png"          },
2926   { "expandable_steelwall.growing.left.xpos",   "8"                     },
2927   { "expandable_steelwall.growing.left.ypos",   "4"                     },
2928   { "expandable_steelwall.growing.left.frames", "4"                     },
2929   { "expandable_steelwall.growing.left.delay",  "4"                     },
2930   { "expandable_steelwall.growing.left.anim_mode","linear"              },
2931   { "expandable_steelwall.growing.right",       "RocksDC2.png"          },
2932   { "expandable_steelwall.growing.right.xpos",  "12"                    },
2933   { "expandable_steelwall.growing.right.ypos",  "4"                     },
2934   { "expandable_steelwall.growing.right.frames","4"                     },
2935   { "expandable_steelwall.growing.right.delay", "4"                     },
2936   { "expandable_steelwall.growing.right.anim_mode","linear"             },
2937   { "expandable_steelwall.growing.up",          "RocksDC2.png"          },
2938   { "expandable_steelwall.growing.up.xpos",     "8"                     },
2939   { "expandable_steelwall.growing.up.ypos",     "5"                     },
2940   { "expandable_steelwall.growing.up.frames",   "4"                     },
2941   { "expandable_steelwall.growing.up.delay",    "4"                     },
2942   { "expandable_steelwall.growing.up.anim_mode","linear"                },
2943   { "expandable_steelwall.growing.down",        "RocksDC2.png"          },
2944   { "expandable_steelwall.growing.down.xpos",   "12"                    },
2945   { "expandable_steelwall.growing.down.ypos",   "5"                     },
2946   { "expandable_steelwall.growing.down.frames", "4"                     },
2947   { "expandable_steelwall.growing.down.delay",  "4"                     },
2948   { "expandable_steelwall.growing.down.anim_mode","linear"              },
2949
2950   { "black_orb",                                "RocksElements.png"     },
2951   { "black_orb.xpos",                           "13"                    },
2952   { "black_orb.ypos",                           "9"                     },
2953   { "black_orb.frames",                         "1"                     },
2954
2955   { "speed_pill",                               "RocksElements.png"     },
2956   { "speed_pill.xpos",                          "14"                    },
2957   { "speed_pill.ypos",                          "9"                     },
2958   { "speed_pill.frames",                        "1"                     },
2959   { "speed_pill.collecting",                    "RocksCollect.png"      },
2960   { "speed_pill.collecting.xpos",               "0"                     },
2961   { "speed_pill.collecting.ypos",               "2"                     },
2962   { "speed_pill.collecting.frames",             "7"                     },
2963   { "speed_pill.collecting.anim_mode",          "linear"                },
2964
2965   { "dark_yamyam",                              "RocksElements.png"     },
2966   { "dark_yamyam.xpos",                         "8"                     },
2967   { "dark_yamyam.ypos",                         "11"                    },
2968   { "dark_yamyam.frames",                       "4"                     },
2969   { "dark_yamyam.anim_mode",                    "pingpong2"             },
2970
2971   { "dynabomb",                                 "RocksElements.png"     },
2972   { "dynabomb.xpos",                            "12"                    },
2973   { "dynabomb.ypos",                            "11"                    },
2974   { "dynabomb.frames",                          "1"                     },
2975   { "dynabomb.active",                          "RocksElements.png"     },
2976   { "dynabomb.active.xpos",                     "12"                    },
2977   { "dynabomb.active.ypos",                     "11"                    },
2978   { "dynabomb.active.frames",                   "4"                     },
2979   { "dynabomb.active.delay",                    "6"                     },
2980   { "dynabomb.active.anim_mode",                "pingpong"              },
2981   { "dynabomb_player_1",                        "RocksElements.png"     },
2982   { "dynabomb_player_1.xpos",                   "12"                    },
2983   { "dynabomb_player_1.ypos",                   "11"                    },
2984   { "dynabomb_player_1.frames",                 "1"                     },
2985   { "dynabomb_player_1.active",                 "RocksElements.png"     },
2986   { "dynabomb_player_1.active.xpos",            "12"                    },
2987   { "dynabomb_player_1.active.ypos",            "11"                    },
2988   { "dynabomb_player_1.active.frames",          "4"                     },
2989   { "dynabomb_player_1.active.delay",           "6"                     },
2990   { "dynabomb_player_1.active.anim_mode",       "pingpong"              },
2991   { "dynabomb_player_2",                        "RocksElements.png"     },
2992   { "dynabomb_player_2.xpos",                   "12"                    },
2993   { "dynabomb_player_2.ypos",                   "11"                    },
2994   { "dynabomb_player_2.frames",                 "1"                     },
2995   { "dynabomb_player_2.active",                 "RocksElements.png"     },
2996   { "dynabomb_player_2.active.xpos",            "12"                    },
2997   { "dynabomb_player_2.active.ypos",            "11"                    },
2998   { "dynabomb_player_2.active.frames",          "4"                     },
2999   { "dynabomb_player_2.active.delay",           "6"                     },
3000   { "dynabomb_player_2.active.anim_mode",       "pingpong"              },
3001   { "dynabomb_player_3",                        "RocksElements.png"     },
3002   { "dynabomb_player_3.xpos",                   "12"                    },
3003   { "dynabomb_player_3.ypos",                   "11"                    },
3004   { "dynabomb_player_3.frames",                 "1"                     },
3005   { "dynabomb_player_3.active",                 "RocksElements.png"     },
3006   { "dynabomb_player_3.active.xpos",            "12"                    },
3007   { "dynabomb_player_3.active.ypos",            "11"                    },
3008   { "dynabomb_player_3.active.frames",          "4"                     },
3009   { "dynabomb_player_3.active.delay",           "6"                     },
3010   { "dynabomb_player_3.active.anim_mode",       "pingpong"              },
3011   { "dynabomb_player_4",                        "RocksElements.png"     },
3012   { "dynabomb_player_4.xpos",                   "12"                    },
3013   { "dynabomb_player_4.ypos",                   "11"                    },
3014   { "dynabomb_player_4.frames",                 "1"                     },
3015   { "dynabomb_player_4.active",                 "RocksElements.png"     },
3016   { "dynabomb_player_4.active.xpos",            "12"                    },
3017   { "dynabomb_player_4.active.ypos",            "11"                    },
3018   { "dynabomb_player_4.active.frames",          "4"                     },
3019   { "dynabomb_player_4.active.delay",           "6"                     },
3020   { "dynabomb_player_4.active.anim_mode",       "pingpong"              },
3021   { "dynabomb_increase_number",                 "RocksElements.png"     },
3022   { "dynabomb_increase_number.xpos",            "12"                    },
3023   { "dynabomb_increase_number.ypos",            "11"                    },
3024   { "dynabomb_increase_number.frames",          "1"                     },
3025   { "dynabomb_increase_number.collecting",      "RocksCollect.png"      },
3026   { "dynabomb_increase_number.collecting.xpos", "0"                     },
3027   { "dynabomb_increase_number.collecting.ypos", "10"                    },
3028   { "dynabomb_increase_number.collecting.frames", "7"                   },
3029   { "dynabomb_increase_number.collecting.anim_mode", "linear"           },
3030   { "dynabomb_increase_size",                   "RocksElements.png"     },
3031   { "dynabomb_increase_size.xpos",              "15"                    },
3032   { "dynabomb_increase_size.ypos",              "11"                    },
3033   { "dynabomb_increase_size.frames",            "1"                     },
3034   { "dynabomb_increase_size.collecting",        "RocksCollect.png"      },
3035   { "dynabomb_increase_size.collecting.xpos",   "0"                     },
3036   { "dynabomb_increase_size.collecting.ypos",   "11"                    },
3037   { "dynabomb_increase_size.collecting.frames", "7"                     },
3038   { "dynabomb_increase_size.collecting.anim_mode", "linear"             },
3039   { "dynabomb_increase_power",                  "RocksElements.png"     },
3040   { "dynabomb_increase_power.xpos",             "12"                    },
3041   { "dynabomb_increase_power.ypos",             "9"                     },
3042   { "dynabomb_increase_power.frames",           "1"                     },
3043   { "dynabomb_increase_power.collecting",       "RocksCollect.png"      },
3044   { "dynabomb_increase_power.collecting.xpos",  "0"                     },
3045   { "dynabomb_increase_power.collecting.ypos",  "12"                    },
3046   { "dynabomb_increase_power.collecting.frames", "7"                    },
3047   { "dynabomb_increase_power.collecting.anim_mode", "linear"            },
3048
3049   { "pig",                                      "RocksHeroes.png"       },
3050   { "pig.xpos",                                 "8"                     },
3051   { "pig.ypos",                                 "0"                     },
3052   { "pig.frames",                               "1"                     },
3053   { "pig.down",                                 "RocksHeroes.png"       },
3054   { "pig.down.xpos",                            "8"                     },
3055   { "pig.down.ypos",                            "0"                     },
3056   { "pig.down.frames",                          "1"                     },
3057   { "pig.up",                                   "RocksHeroes.png"       },
3058   { "pig.up.xpos",                              "12"                    },
3059   { "pig.up.ypos",                              "0"                     },
3060   { "pig.up.frames",                            "1"                     },
3061   { "pig.left",                                 "RocksHeroes.png"       },
3062   { "pig.left.xpos",                            "8"                     },
3063   { "pig.left.ypos",                            "1"                     },
3064   { "pig.left.frames",                          "1"                     },
3065   { "pig.right",                                "RocksHeroes.png"       },
3066   { "pig.right.xpos",                           "12"                    },
3067   { "pig.right.ypos",                           "1"                     },
3068   { "pig.right.frames",                         "1"                     },
3069   { "pig.moving.down",                          "RocksHeroes.png"       },
3070   { "pig.moving.down.xpos",                     "8"                     },
3071   { "pig.moving.down.ypos",                     "0"                     },
3072   { "pig.moving.down.frames",                   "4"                     },
3073   { "pig.moving.down.delay",                    "2"                     },
3074   { "pig.moving.up",                            "RocksHeroes.png"       },
3075   { "pig.moving.up.xpos",                       "12"                    },
3076   { "pig.moving.up.ypos",                       "0"                     },
3077   { "pig.moving.up.frames",                     "4"                     },
3078   { "pig.moving.up.delay",                      "2"                     },
3079   { "pig.moving.left",                          "RocksHeroes.png"       },
3080   { "pig.moving.left.xpos",                     "8"                     },
3081   { "pig.moving.left.ypos",                     "1"                     },
3082   { "pig.moving.left.frames",                   "4"                     },
3083   { "pig.moving.left.delay",                    "2"                     },
3084   { "pig.moving.right",                         "RocksHeroes.png"       },
3085   { "pig.moving.right.xpos",                    "12"                    },
3086   { "pig.moving.right.ypos",                    "1"                     },
3087   { "pig.moving.right.frames",                  "4"                     },
3088   { "pig.moving.right.delay",                   "2"                     },
3089   { "pig.digging.down",                         "RocksHeroes.png"       },
3090   { "pig.digging.down.xpos",                    "8"                     },
3091   { "pig.digging.down.ypos",                    "0"                     },
3092   { "pig.digging.down.frames",                  "4"                     },
3093   { "pig.digging.down.delay",                   "2"                     },
3094   { "pig.digging.up",                           "RocksHeroes.png"       },
3095   { "pig.digging.up.xpos",                      "12"                    },
3096   { "pig.digging.up.ypos",                      "0"                     },
3097   { "pig.digging.up.frames",                    "4"                     },
3098   { "pig.digging.up.delay",                     "2"                     },
3099   { "pig.digging.left",                         "RocksHeroes.png"       },
3100   { "pig.digging.left.xpos",                    "8"                     },
3101   { "pig.digging.left.ypos",                    "1"                     },
3102   { "pig.digging.left.frames",                  "4"                     },
3103   { "pig.digging.left.delay",                   "2"                     },
3104   { "pig.digging.right",                        "RocksHeroes.png"       },
3105   { "pig.digging.right.xpos",                   "12"                    },
3106   { "pig.digging.right.ypos",                   "1"                     },
3107   { "pig.digging.right.frames",                 "4"                     },
3108   { "pig.digging.right.delay",                  "2"                     },
3109
3110   { "dragon",                                   "RocksHeroes.png"       },
3111   { "dragon.xpos",                              "8"                     },
3112   { "dragon.ypos",                              "2"                     },
3113   { "dragon.frames",                            "1"                     },
3114   { "dragon.down",                              "RocksHeroes.png"       },
3115   { "dragon.down.xpos",                         "8"                     },
3116   { "dragon.down.ypos",                         "2"                     },
3117   { "dragon.down.frames",                       "1"                     },
3118   { "dragon.up",                                "RocksHeroes.png"       },
3119   { "dragon.up.xpos",                           "12"                    },
3120   { "dragon.up.ypos",                           "2"                     },
3121   { "dragon.up.frames",                         "1"                     },
3122   { "dragon.left",                              "RocksHeroes.png"       },
3123   { "dragon.left.xpos",                         "8"                     },
3124   { "dragon.left.ypos",                         "3"                     },
3125   { "dragon.left.frames",                       "1"                     },
3126   { "dragon.right",                             "RocksHeroes.png"       },
3127   { "dragon.right.xpos",                        "12"                    },
3128   { "dragon.right.ypos",                        "3"                     },
3129   { "dragon.right.frames",                      "1"                     },
3130   { "dragon.moving.down",                       "RocksHeroes.png"       },
3131   { "dragon.moving.down.xpos",                  "8"                     },
3132   { "dragon.moving.down.ypos",                  "2"                     },
3133   { "dragon.moving.down.frames",                "4"                     },
3134   { "dragon.moving.down.delay",                 "2"                     },
3135   { "dragon.moving.up",                         "RocksHeroes.png"       },
3136   { "dragon.moving.up.xpos",                    "12"                    },
3137   { "dragon.moving.up.ypos",                    "2"                     },
3138   { "dragon.moving.up.frames",                  "4"                     },
3139   { "dragon.moving.up.delay",                   "2"                     },
3140   { "dragon.moving.left",                       "RocksHeroes.png"       },
3141   { "dragon.moving.left.xpos",                  "8"                     },
3142   { "dragon.moving.left.ypos",                  "3"                     },
3143   { "dragon.moving.left.frames",                "4"                     },
3144   { "dragon.moving.left.delay",                 "2"                     },
3145   { "dragon.moving.right",                      "RocksHeroes.png"       },
3146   { "dragon.moving.right.xpos",                 "12"                    },
3147   { "dragon.moving.right.ypos",                 "3"                     },
3148   { "dragon.moving.right.frames",               "4"                     },
3149   { "dragon.moving.right.delay",                "2"                     },
3150   { "dragon.attacking.down",                    "RocksHeroes.png"       },
3151   { "dragon.attacking.down.xpos",               "8"                     },
3152   { "dragon.attacking.down.ypos",               "2"                     },
3153   { "dragon.attacking.down.frames",             "1"                     },
3154   { "dragon.attacking.up",                      "RocksHeroes.png"       },
3155   { "dragon.attacking.up.xpos",                 "12"                    },
3156   { "dragon.attacking.up.ypos",                 "2"                     },
3157   { "dragon.attacking.up.frames",               "1"                     },
3158   { "dragon.attacking.left",                    "RocksHeroes.png"       },
3159   { "dragon.attacking.left.xpos",               "8"                     },
3160   { "dragon.attacking.left.ypos",               "3"                     },
3161   { "dragon.attacking.left.frames",             "1"                     },
3162   { "dragon.attacking.right",                   "RocksHeroes.png"       },
3163   { "dragon.attacking.right.xpos",              "12"                    },
3164   { "dragon.attacking.right.ypos",              "3"                     },
3165   { "dragon.attacking.right.frames",            "1"                     },
3166
3167   { "mole",                                     "RocksHeroes.png"       },
3168   { "mole.xpos",                                "8"                     },
3169   { "mole.ypos",                                "4"                     },
3170   { "mole.frames",                              "1"                     },
3171   { "mole.down",                                "RocksHeroes.png"       },
3172   { "mole.down.xpos",                           "8"                     },
3173   { "mole.down.ypos",                           "4"                     },
3174   { "mole.down.frames",                         "1"                     },
3175   { "mole.up",                                  "RocksHeroes.png"       },
3176   { "mole.up.xpos",                             "12"                    },
3177   { "mole.up.ypos",                             "4"                     },
3178   { "mole.up.frames",                           "1"                     },
3179   { "mole.left",                                "RocksHeroes.png"       },
3180   { "mole.left.xpos",                           "8"                     },
3181   { "mole.left.ypos",                           "5"                     },
3182   { "mole.left.frames",                         "1"                     },
3183   { "mole.right",                               "RocksHeroes.png"       },
3184   { "mole.right.xpos",                          "12"                    },
3185   { "mole.right.ypos",                          "5"                     },
3186   { "mole.right.frames",                        "1"                     },
3187   { "mole.moving.down",                         "RocksHeroes.png"       },
3188   { "mole.moving.down.xpos",                    "8"                     },
3189   { "mole.moving.down.ypos",                    "4"                     },
3190   { "mole.moving.down.frames",                  "4"                     },
3191   { "mole.moving.down.delay",                   "2"                     },
3192   { "mole.moving.up",                           "RocksHeroes.png"       },
3193   { "mole.moving.up.xpos",                      "12"                    },
3194   { "mole.moving.up.ypos",                      "4"                     },
3195   { "mole.moving.up.frames",                    "4"                     },
3196   { "mole.moving.up.delay",                     "2"                     },
3197   { "mole.moving.left",                         "RocksHeroes.png"       },
3198   { "mole.moving.left.xpos",                    "8"                     },
3199   { "mole.moving.left.ypos",                    "5"                     },
3200   { "mole.moving.left.frames",                  "4"                     },
3201   { "mole.moving.left.delay",                   "2"                     },
3202   { "mole.moving.right",                        "RocksHeroes.png"       },
3203   { "mole.moving.right.xpos",                   "12"                    },
3204   { "mole.moving.right.ypos",                   "5"                     },
3205   { "mole.moving.right.frames",                 "4"                     },
3206   { "mole.moving.right.delay",                  "2"                     },
3207   { "mole.digging.down",                        "RocksHeroes.png"       },
3208   { "mole.digging.down.xpos",                   "8"                     },
3209   { "mole.digging.down.ypos",                   "4"                     },
3210   { "mole.digging.down.frames",                 "4"                     },
3211   { "mole.digging.down.delay",                  "2"                     },
3212   { "mole.digging.up",                          "RocksHeroes.png"       },
3213   { "mole.digging.up.xpos",                     "12"                    },
3214   { "mole.digging.up.ypos",                     "4"                     },
3215   { "mole.digging.up.frames",                   "4"                     },
3216   { "mole.digging.up.delay",                    "2"                     },
3217   { "mole.digging.left",                        "RocksHeroes.png"       },
3218   { "mole.digging.left.xpos",                   "8"                     },
3219   { "mole.digging.left.ypos",                   "5"                     },
3220   { "mole.digging.left.frames",                 "4"                     },
3221   { "mole.digging.left.delay",                  "2"                     },
3222   { "mole.digging.right",                       "RocksHeroes.png"       },
3223   { "mole.digging.right.xpos",                  "12"                    },
3224   { "mole.digging.right.ypos",                  "5"                     },
3225   { "mole.digging.right.frames",                "4"                     },
3226   { "mole.digging.right.delay",                 "2"                     },
3227
3228   { "penguin",                                  "RocksHeroes.png"       },
3229   { "penguin.xpos",                             "8"                     },
3230   { "penguin.ypos",                             "6"                     },
3231   { "penguin.frames",                           "1"                     },
3232   { "penguin.down",                             "RocksHeroes.png"       },
3233   { "penguin.down.xpos",                        "8"                     },
3234   { "penguin.down.ypos",                        "6"                     },
3235   { "penguin.down.frames",                      "1"                     },
3236   { "penguin.up",                               "RocksHeroes.png"       },
3237   { "penguin.up.xpos",                          "12"                    },
3238   { "penguin.up.ypos",                          "6"                     },
3239   { "penguin.up.frames",                        "1"                     },
3240   { "penguin.left",                             "RocksHeroes.png"       },
3241   { "penguin.left.xpos",                        "8"                     },
3242   { "penguin.left.ypos",                        "7"                     },
3243   { "penguin.left.frames",                      "1"                     },
3244   { "penguin.right",                            "RocksHeroes.png"       },
3245   { "penguin.right.xpos",                       "12"                    },
3246   { "penguin.right.ypos",                       "7"                     },
3247   { "penguin.right.frames",                     "1"                     },
3248   { "penguin.moving.down",                      "RocksHeroes.png"       },
3249   { "penguin.moving.down.xpos",                 "8"                     },
3250   { "penguin.moving.down.ypos",                 "6"                     },
3251   { "penguin.moving.down.frames",               "4"                     },
3252   { "penguin.moving.down.delay",                "2"                     },
3253   { "penguin.moving.up",                        "RocksHeroes.png"       },
3254   { "penguin.moving.up.xpos",                   "12"                    },
3255   { "penguin.moving.up.ypos",                   "6"                     },
3256   { "penguin.moving.up.frames",                 "4"                     },
3257   { "penguin.moving.up.delay",                  "2"                     },
3258   { "penguin.moving.left",                      "RocksHeroes.png"       },
3259   { "penguin.moving.left.xpos",                 "8"                     },
3260   { "penguin.moving.left.ypos",                 "7"                     },
3261   { "penguin.moving.left.frames",               "4"                     },
3262   { "penguin.moving.left.delay",                "2"                     },
3263   { "penguin.moving.right",                     "RocksHeroes.png"       },
3264   { "penguin.moving.right.xpos",                "12"                    },
3265   { "penguin.moving.right.ypos",                "7"                     },
3266   { "penguin.moving.right.frames",              "4"                     },
3267   { "penguin.moving.right.delay",               "2"                     },
3268
3269   { "satellite",                                "RocksHeroes.png"       },
3270   { "satellite.xpos",                           "8"                     },
3271   { "satellite.ypos",                           "9"                     },
3272   { "satellite.frames",                         "8"                     },
3273   { "satellite.delay",                          "2"                     },
3274   { "satellite.global_sync",                    "true"                  },
3275
3276   { "flames_1_left",                            "RocksHeroes.png"       },
3277   { "flames_1_left.xpos",                       "8"                     },
3278   { "flames_1_left.ypos",                       "12"                    },
3279   { "flames_1_left.frames",                     "2"                     },
3280   { "flames_1_left.offset",                     "96"                    },
3281   { "flames_2_left",                            "RocksHeroes.png"       },
3282   { "flames_2_left.xpos",                       "9"                     },
3283   { "flames_2_left.ypos",                       "12"                    },
3284   { "flames_2_left.frames",                     "2"                     },
3285   { "flames_2_left.offset",                     "96"                    },
3286   { "flames_3_left",                            "RocksHeroes.png"       },
3287   { "flames_3_left.xpos",                       "10"                    },
3288   { "flames_3_left.ypos",                       "12"                    },
3289   { "flames_3_left.frames",                     "2"                     },
3290   { "flames_3_left.offset",                     "96"                    },
3291
3292   { "flames_1_right",                           "RocksHeroes.png"       },
3293   { "flames_1_right.xpos",                      "8"                     },
3294   { "flames_1_right.ypos",                      "13"                    },
3295   { "flames_1_right.frames",                    "2"                     },
3296   { "flames_1_right.offset",                    "96"                    },
3297   { "flames_2_right",                           "RocksHeroes.png"       },
3298   { "flames_2_right.xpos",                      "9"                     },
3299   { "flames_2_right.ypos",                      "13"                    },
3300   { "flames_2_right.frames",                    "2"                     },
3301   { "flames_2_right.offset",                    "96"                    },
3302   { "flames_3_right",                           "RocksHeroes.png"       },
3303   { "flames_3_right.xpos",                      "10"                    },
3304   { "flames_3_right.ypos",                      "13"                    },
3305   { "flames_3_right.frames",                    "2"                     },
3306   { "flames_3_right.offset",                    "96"                    },
3307
3308   { "flames_1_up",                              "RocksHeroes.png"       },
3309   { "flames_1_up.xpos",                         "8"                     },
3310   { "flames_1_up.ypos",                         "14"                    },
3311   { "flames_1_up.frames",                       "2"                     },
3312   { "flames_1_up.offset",                       "96"                    },
3313   { "flames_2_up",                              "RocksHeroes.png"       },
3314   { "flames_2_up.xpos",                         "9"                     },
3315   { "flames_2_up.ypos",                         "14"                    },
3316   { "flames_2_up.frames",                       "2"                     },
3317   { "flames_2_up.offset",                       "96"                    },
3318   { "flames_3_up",                              "RocksHeroes.png"       },
3319   { "flames_3_up.xpos",                         "10"                    },
3320   { "flames_3_up.ypos",                         "14"                    },
3321   { "flames_3_up.frames",                       "2"                     },
3322   { "flames_3_up.offset",                       "96"                    },
3323
3324   { "flames_1_down",                            "RocksHeroes.png"       },
3325   { "flames_1_down.xpos",                       "8"                     },
3326   { "flames_1_down.ypos",                       "15"                    },
3327   { "flames_1_down.frames",                     "2"                     },
3328   { "flames_1_down.offset",                     "96"                    },
3329   { "flames_2_down",                            "RocksHeroes.png"       },
3330   { "flames_2_down.xpos",                       "9"                     },
3331   { "flames_2_down.ypos",                       "15"                    },
3332   { "flames_2_down.frames",                     "2"                     },
3333   { "flames_2_down.offset",                     "96"                    },
3334   { "flames_3_down",                            "RocksHeroes.png"       },
3335   { "flames_3_down.xpos",                       "10"                    },
3336   { "flames_3_down.ypos",                       "15"                    },
3337   { "flames_3_down.frames",                     "2"                     },
3338   { "flames_3_down.offset",                     "96"                    },
3339
3340   { "stoneblock",                               "RocksElements.png"     },
3341   { "stoneblock.xpos",                          "10"                    },
3342   { "stoneblock.ypos",                          "1"                     },
3343   { "stoneblock.frames",                        "1"                     },
3344
3345   // images for other elements and actions
3346
3347   { "player_1",                                 "RocksHeroes.png"       },
3348   { "player_1.xpos",                            "0"                     },
3349   { "player_1.ypos",                            "0"                     },
3350   { "player_1.frames",                          "1"                     },
3351   { "player_1.down",                            "RocksHeroes.png"       },
3352   { "player_1.down.xpos",                       "0"                     },
3353   { "player_1.down.ypos",                       "0"                     },
3354   { "player_1.down.frames",                     "1"                     },
3355   { "player_1.up",                              "RocksHeroes.png"       },
3356   { "player_1.up.xpos",                         "4"                     },
3357   { "player_1.up.ypos",                         "0"                     },
3358   { "player_1.up.frames",                       "1"                     },
3359   { "player_1.left",                            "RocksHeroes.png"       },
3360   { "player_1.left.xpos",                       "0"                     },
3361   { "player_1.left.ypos",                       "1"                     },
3362   { "player_1.left.frames",                     "1"                     },
3363   { "player_1.right",                           "RocksHeroes.png"       },
3364   { "player_1.right.xpos",                      "4"                     },
3365   { "player_1.right.ypos",                      "1"                     },
3366   { "player_1.right.frames",                    "1"                     },
3367   { "player_1.moving.down",                     "RocksHeroes.png"       },
3368   { "player_1.moving.down.xpos",                "0"                     },
3369   { "player_1.moving.down.ypos",                "0"                     },
3370   { "player_1.moving.down.frames",              "4"                     },
3371   { "player_1.moving.down.start_frame",         "1"                     },
3372   { "player_1.moving.down.delay",               "4"                     },
3373   { "player_1.moving.up",                       "RocksHeroes.png"       },
3374   { "player_1.moving.up.xpos",                  "4"                     },
3375   { "player_1.moving.up.ypos",                  "0"                     },
3376   { "player_1.moving.up.frames",                "4"                     },
3377   { "player_1.moving.up.start_frame",           "1"                     },
3378   { "player_1.moving.up.delay",                 "4"                     },
3379   { "player_1.moving.left",                     "RocksHeroes.png"       },
3380   { "player_1.moving.left.xpos",                "0"                     },
3381   { "player_1.moving.left.ypos",                "1"                     },
3382   { "player_1.moving.left.frames",              "4"                     },
3383   { "player_1.moving.left.start_frame",         "1"                     },
3384   { "player_1.moving.left.delay",               "4"                     },
3385   { "player_1.moving.right",                    "RocksHeroes.png"       },
3386   { "player_1.moving.right.xpos",               "4"                     },
3387   { "player_1.moving.right.ypos",               "1"                     },
3388   { "player_1.moving.right.frames",             "4"                     },
3389   { "player_1.moving.right.start_frame",        "1"                     },
3390   { "player_1.moving.right.delay",              "4"                     },
3391   { "player_1.digging.down",                    "RocksHeroes.png"       },
3392   { "player_1.digging.down.xpos",               "0"                     },
3393   { "player_1.digging.down.ypos",               "0"                     },
3394   { "player_1.digging.down.frames",             "4"                     },
3395   { "player_1.digging.down.start_frame",        "1"                     },
3396   { "player_1.digging.down.delay",              "4"                     },
3397   { "player_1.digging.up",                      "RocksHeroes.png"       },
3398   { "player_1.digging.up.xpos",                 "4"                     },
3399   { "player_1.digging.up.ypos",                 "0"                     },
3400   { "player_1.digging.up.frames",               "4"                     },
3401   { "player_1.digging.up.start_frame",          "1"                     },
3402   { "player_1.digging.up.delay",                "4"                     },
3403   { "player_1.digging.left",                    "RocksHeroes.png"       },
3404   { "player_1.digging.left.xpos",               "0"                     },
3405   { "player_1.digging.left.ypos",               "1"                     },
3406   { "player_1.digging.left.frames",             "4"                     },
3407   { "player_1.digging.left.start_frame",        "1"                     },
3408   { "player_1.digging.left.delay",              "4"                     },
3409   { "player_1.digging.right",                   "RocksHeroes.png"       },
3410   { "player_1.digging.right.xpos",              "4"                     },
3411   { "player_1.digging.right.ypos",              "1"                     },
3412   { "player_1.digging.right.frames",            "4"                     },
3413   { "player_1.digging.right.start_frame",       "1"                     },
3414   { "player_1.digging.right.delay",             "4"                     },
3415   { "player_1.collecting.down",                 "RocksHeroes.png"       },
3416   { "player_1.collecting.down.xpos",            "0"                     },
3417   { "player_1.collecting.down.ypos",            "0"                     },
3418   { "player_1.collecting.down.frames",          "4"                     },
3419   { "player_1.collecting.down.start_frame",     "1"                     },
3420   { "player_1.collecting.down.delay",           "4"                     },
3421   { "player_1.collecting.up",                   "RocksHeroes.png"       },
3422   { "player_1.collecting.up.xpos",              "4"                     },
3423   { "player_1.collecting.up.ypos",              "0"                     },
3424   { "player_1.collecting.up.frames",            "4"                     },
3425   { "player_1.collecting.up.start_frame",       "1"                     },
3426   { "player_1.collecting.up.delay",             "4"                     },
3427   { "player_1.collecting.left",                 "RocksHeroes.png"       },
3428   { "player_1.collecting.left.xpos",            "0"                     },
3429   { "player_1.collecting.left.ypos",            "1"                     },
3430   { "player_1.collecting.left.frames",          "4"                     },
3431   { "player_1.collecting.left.start_frame",     "1"                     },
3432   { "player_1.collecting.left.delay",           "4"                     },
3433   { "player_1.collecting.right",                "RocksHeroes.png"       },
3434   { "player_1.collecting.right.xpos",           "4"                     },
3435   { "player_1.collecting.right.ypos",           "1"                     },
3436   { "player_1.collecting.right.frames",         "4"                     },
3437   { "player_1.collecting.right.start_frame",    "1"                     },
3438   { "player_1.collecting.right.delay",          "4"                     },
3439   { "player_1.pushing.down",                    "RocksHeroes.png"       },
3440   { "player_1.pushing.down.xpos",               "0"                     },
3441   { "player_1.pushing.down.ypos",               "0"                     },
3442   { "player_1.pushing.down.frames",             "4"                     },
3443   { "player_1.pushing.down.delay",              "4"                     },
3444   { "player_1.pushing.up",                      "RocksHeroes.png"       },
3445   { "player_1.pushing.up.xpos",                 "4"                     },
3446   { "player_1.pushing.up.ypos",                 "0"                     },
3447   { "player_1.pushing.up.frames",               "4"                     },
3448   { "player_1.pushing.up.delay",                "4"                     },
3449   { "player_1.pushing.left",                    "RocksHeroes.png"       },
3450   { "player_1.pushing.left.xpos",               "4"                     },
3451   { "player_1.pushing.left.ypos",               "2"                     },
3452   { "player_1.pushing.left.frames",             "4"                     },
3453   { "player_1.pushing.left.delay",              "4"                     },
3454   { "player_1.pushing.right",                   "RocksHeroes.png"       },
3455   { "player_1.pushing.right.xpos",              "0"                     },
3456   { "player_1.pushing.right.ypos",              "2"                     },
3457   { "player_1.pushing.right.frames",            "4"                     },
3458   { "player_1.pushing.right.delay",             "4"                     },
3459   { "player_1.snapping.down",                   "RocksHeroes.png"       },
3460   { "player_1.snapping.down.xpos",              "0"                     },
3461   { "player_1.snapping.down.ypos",              "0"                     },
3462   { "player_1.snapping.down.frames",            "1"                     },
3463   { "player_1.snapping.up",                     "RocksHeroes.png"       },
3464   { "player_1.snapping.up.xpos",                "4"                     },
3465   { "player_1.snapping.up.ypos",                "0"                     },
3466   { "player_1.snapping.up.frames",              "1"                     },
3467   { "player_1.snapping.left",                   "RocksHeroes.png"       },
3468   { "player_1.snapping.left.xpos",              "0"                     },
3469   { "player_1.snapping.left.ypos",              "1"                     },
3470   { "player_1.snapping.left.frames",            "1"                     },
3471   { "player_1.snapping.right",                  "RocksHeroes.png"       },
3472   { "player_1.snapping.right.xpos",             "4"                     },
3473   { "player_1.snapping.right.ypos",             "1"                     },
3474   { "player_1.snapping.right.frames",           "1"                     },
3475
3476   { "player_2",                                 "RocksHeroes.png"       },
3477   { "player_2.xpos",                            "0"                     },
3478   { "player_2.ypos",                            "3"                     },
3479   { "player_2.frames",                          "1"                     },
3480   { "player_2.down",                            "RocksHeroes.png"       },
3481   { "player_2.down.xpos",                       "0"                     },
3482   { "player_2.down.ypos",                       "3"                     },
3483   { "player_2.down.frames",                     "1"                     },
3484   { "player_2.up",                              "RocksHeroes.png"       },
3485   { "player_2.up.xpos",                         "4"                     },
3486   { "player_2.up.ypos",                         "3"                     },
3487   { "player_2.up.frames",                       "1"                     },
3488   { "player_2.left",                            "RocksHeroes.png"       },
3489   { "player_2.left.xpos",                       "0"                     },
3490   { "player_2.left.ypos",                       "4"                     },
3491   { "player_2.left.frames",                     "1"                     },
3492   { "player_2.right",                           "RocksHeroes.png"       },
3493   { "player_2.right.xpos",                      "4"                     },
3494   { "player_2.right.ypos",                      "4"                     },
3495   { "player_2.right.frames",                    "1"                     },
3496   { "player_2.moving.down",                     "RocksHeroes.png"       },
3497   { "player_2.moving.down.xpos",                "0"                     },
3498   { "player_2.moving.down.ypos",                "3"                     },
3499   { "player_2.moving.down.frames",              "4"                     },
3500   { "player_2.moving.down.start_frame",         "1"                     },
3501   { "player_2.moving.down.delay",               "4"                     },
3502   { "player_2.moving.up",                       "RocksHeroes.png"       },
3503   { "player_2.moving.up.xpos",                  "4"                     },
3504   { "player_2.moving.up.ypos",                  "3"                     },
3505   { "player_2.moving.up.frames",                "4"                     },
3506   { "player_2.moving.up.start_frame",           "1"                     },
3507   { "player_2.moving.up.delay",                 "4"                     },
3508   { "player_2.moving.left",                     "RocksHeroes.png"       },
3509   { "player_2.moving.left.xpos",                "0"                     },
3510   { "player_2.moving.left.ypos",                "4"                     },
3511   { "player_2.moving.left.frames",              "4"                     },
3512   { "player_2.moving.left.start_frame",         "1"                     },
3513   { "player_2.moving.left.delay",               "4"                     },
3514   { "player_2.moving.right",                    "RocksHeroes.png"       },
3515   { "player_2.moving.right.xpos",               "4"                     },
3516   { "player_2.moving.right.ypos",               "4"                     },
3517   { "player_2.moving.right.frames",             "4"                     },
3518   { "player_2.moving.right.start_frame",        "1"                     },
3519   { "player_2.moving.right.delay",              "4"                     },
3520   { "player_2.digging.down",                    "RocksHeroes.png"       },
3521   { "player_2.digging.down.xpos",               "0"                     },
3522   { "player_2.digging.down.ypos",               "3"                     },
3523   { "player_2.digging.down.frames",             "4"                     },
3524   { "player_2.digging.down.start_frame",        "1"                     },
3525   { "player_2.digging.down.delay",              "4"                     },
3526   { "player_2.digging.up",                      "RocksHeroes.png"       },
3527   { "player_2.digging.up.xpos",                 "4"                     },
3528   { "player_2.digging.up.ypos",                 "3"                     },
3529   { "player_2.digging.up.frames",               "4"                     },
3530   { "player_2.digging.up.start_frame",          "1"                     },
3531   { "player_2.digging.up.delay",                "4"                     },
3532   { "player_2.digging.left",                    "RocksHeroes.png"       },
3533   { "player_2.digging.left.xpos",               "0"                     },
3534   { "player_2.digging.left.ypos",               "4"                     },
3535   { "player_2.digging.left.frames",             "4"                     },
3536   { "player_2.digging.left.start_frame",        "1"                     },
3537   { "player_2.digging.left.delay",              "4"                     },
3538   { "player_2.digging.right",                   "RocksHeroes.png"       },
3539   { "player_2.digging.right.xpos",              "4"                     },
3540   { "player_2.digging.right.ypos",              "4"                     },
3541   { "player_2.digging.right.frames",            "4"                     },
3542   { "player_2.digging.right.start_frame",       "1"                     },
3543   { "player_2.digging.right.delay",             "4"                     },
3544   { "player_2.collecting.down",                 "RocksHeroes.png"       },
3545   { "player_2.collecting.down.xpos",            "0"                     },
3546   { "player_2.collecting.down.ypos",            "3"                     },
3547   { "player_2.collecting.down.frames",          "4"                     },
3548   { "player_2.collecting.down.start_frame",     "1"                     },
3549   { "player_2.collecting.down.delay",           "4"                     },
3550   { "player_2.collecting.up",                   "RocksHeroes.png"       },
3551   { "player_2.collecting.up.xpos",              "4"                     },
3552   { "player_2.collecting.up.ypos",              "3"                     },
3553   { "player_2.collecting.up.frames",            "4"                     },
3554   { "player_2.collecting.up.start_frame",       "1"                     },
3555   { "player_2.collecting.up.delay",             "4"                     },
3556   { "player_2.collecting.left",                 "RocksHeroes.png"       },
3557   { "player_2.collecting.left.xpos",            "0"                     },
3558   { "player_2.collecting.left.ypos",            "4"                     },
3559   { "player_2.collecting.left.frames",          "4"                     },
3560   { "player_2.collecting.left.start_frame",     "1"                     },
3561   { "player_2.collecting.left.delay",           "4"                     },
3562   { "player_2.collecting.right",                "RocksHeroes.png"       },
3563   { "player_2.collecting.right.xpos",           "4"                     },
3564   { "player_2.collecting.right.ypos",           "4"                     },
3565   { "player_2.collecting.right.frames",         "4"                     },
3566   { "player_2.collecting.right.start_frame",    "1"                     },
3567   { "player_2.collecting.right.delay",          "4"                     },
3568   { "player_2.pushing.down",                    "RocksHeroes.png"       },
3569   { "player_2.pushing.down.xpos",               "0"                     },
3570   { "player_2.pushing.down.ypos",               "3"                     },
3571   { "player_2.pushing.down.frames",             "4"                     },
3572   { "player_2.pushing.down.delay",              "4"                     },
3573   { "player_2.pushing.up",                      "RocksHeroes.png"       },
3574   { "player_2.pushing.up.xpos",                 "4"                     },
3575   { "player_2.pushing.up.ypos",                 "3"                     },
3576   { "player_2.pushing.up.frames",               "4"                     },
3577   { "player_2.pushing.up.delay",                "4"                     },
3578   { "player_2.pushing.left",                    "RocksHeroes.png"       },
3579   { "player_2.pushing.left.xpos",               "4"                     },
3580   { "player_2.pushing.left.ypos",               "5"                     },
3581   { "player_2.pushing.left.frames",             "4"                     },
3582   { "player_2.pushing.left.delay",              "4"                     },
3583   { "player_2.pushing.right",                   "RocksHeroes.png"       },
3584   { "player_2.pushing.right.xpos",              "0"                     },
3585   { "player_2.pushing.right.ypos",              "5"                     },
3586   { "player_2.pushing.right.frames",            "4"                     },
3587   { "player_2.pushing.right.delay",             "4"                     },
3588   { "player_2.snapping.down",                   "RocksHeroes.png"       },
3589   { "player_2.snapping.down.xpos",              "0"                     },
3590   { "player_2.snapping.down.ypos",              "3"                     },
3591   { "player_2.snapping.down.frames",            "1"                     },
3592   { "player_2.snapping.up",                     "RocksHeroes.png"       },
3593   { "player_2.snapping.up.xpos",                "4"                     },
3594   { "player_2.snapping.up.ypos",                "3"                     },
3595   { "player_2.snapping.up.frames",              "1"                     },
3596   { "player_2.snapping.left",                   "RocksHeroes.png"       },
3597   { "player_2.snapping.left.xpos",              "0"                     },
3598   { "player_2.snapping.left.ypos",              "4"                     },
3599   { "player_2.snapping.left.frames",            "1"                     },
3600   { "player_2.snapping.right",                  "RocksHeroes.png"       },
3601   { "player_2.snapping.right.xpos",             "4"                     },
3602   { "player_2.snapping.right.ypos",             "4"                     },
3603   { "player_2.snapping.right.frames",           "1"                     },
3604
3605   { "player_3",                                 "RocksHeroes.png"       },
3606   { "player_3.xpos",                            "0"                     },
3607   { "player_3.ypos",                            "6"                     },
3608   { "player_3.frames",                          "1"                     },
3609   { "player_3.down",                            "RocksHeroes.png"       },
3610   { "player_3.down.xpos",                       "0"                     },
3611   { "player_3.down.ypos",                       "6"                     },
3612   { "player_3.down.frames",                     "1"                     },
3613   { "player_3.up",                              "RocksHeroes.png"       },
3614   { "player_3.up.xpos",                         "4"                     },
3615   { "player_3.up.ypos",                         "6"                     },
3616   { "player_3.up.frames",                       "1"                     },
3617   { "player_3.left",                            "RocksHeroes.png"       },
3618   { "player_3.left.xpos",                       "0"                     },
3619   { "player_3.left.ypos",                       "7"                     },
3620   { "player_3.left.frames",                     "1"                     },
3621   { "player_3.right",                           "RocksHeroes.png"       },
3622   { "player_3.right.xpos",                      "4"                     },
3623   { "player_3.right.ypos",                      "7"                     },
3624   { "player_3.right.frames",                    "1"                     },
3625   { "player_3.moving.down",                     "RocksHeroes.png"       },
3626   { "player_3.moving.down.xpos",                "0"                     },
3627   { "player_3.moving.down.ypos",                "6"                     },
3628   { "player_3.moving.down.frames",              "4"                     },
3629   { "player_3.moving.down.start_frame",         "1"                     },
3630   { "player_3.moving.down.delay",               "4"                     },
3631   { "player_3.moving.up",                       "RocksHeroes.png"       },
3632   { "player_3.moving.up.xpos",                  "4"                     },
3633   { "player_3.moving.up.ypos",                  "6"                     },
3634   { "player_3.moving.up.frames",                "4"                     },
3635   { "player_3.moving.up.start_frame",           "1"                     },
3636   { "player_3.moving.up.delay",                 "4"                     },
3637   { "player_3.moving.left",                     "RocksHeroes.png"       },
3638   { "player_3.moving.left.xpos",                "0"                     },
3639   { "player_3.moving.left.ypos",                "7"                     },
3640   { "player_3.moving.left.frames",              "4"                     },
3641   { "player_3.moving.left.start_frame",         "1"                     },
3642   { "player_3.moving.left.delay",               "4"                     },
3643   { "player_3.moving.right",                    "RocksHeroes.png"       },
3644   { "player_3.moving.right.xpos",               "4"                     },
3645   { "player_3.moving.right.ypos",               "7"                     },
3646   { "player_3.moving.right.frames",             "4"                     },
3647   { "player_3.moving.right.start_frame",        "1"                     },
3648   { "player_3.moving.right.delay",              "4"                     },
3649   { "player_3.digging.down",                    "RocksHeroes.png"       },
3650   { "player_3.digging.down.xpos",               "0"                     },
3651   { "player_3.digging.down.ypos",               "6"                     },
3652   { "player_3.digging.down.frames",             "4"                     },
3653   { "player_3.digging.down.start_frame",        "1"                     },
3654   { "player_3.digging.down.delay",              "4"                     },
3655   { "player_3.digging.up",                      "RocksHeroes.png"       },
3656   { "player_3.digging.up.xpos",                 "4"                     },
3657   { "player_3.digging.up.ypos",                 "6"                     },
3658   { "player_3.digging.up.frames",               "4"                     },
3659   { "player_3.digging.up.start_frame",          "1"                     },
3660   { "player_3.digging.up.delay",                "4"                     },
3661   { "player_3.digging.left",                    "RocksHeroes.png"       },
3662   { "player_3.digging.left.xpos",               "0"                     },
3663   { "player_3.digging.left.ypos",               "7"                     },
3664   { "player_3.digging.left.frames",             "4"                     },
3665   { "player_3.digging.left.start_frame",        "1"                     },
3666   { "player_3.digging.left.delay",              "4"                     },
3667   { "player_3.digging.right",                   "RocksHeroes.png"       },
3668   { "player_3.digging.right.xpos",              "4"                     },
3669   { "player_3.digging.right.ypos",              "7"                     },
3670   { "player_3.digging.right.frames",            "4"                     },
3671   { "player_3.digging.right.start_frame",       "1"                     },
3672   { "player_3.digging.right.delay",             "4"                     },
3673   { "player_3.collecting.down",                 "RocksHeroes.png"       },
3674   { "player_3.collecting.down.xpos",            "0"                     },
3675   { "player_3.collecting.down.ypos",            "6"                     },
3676   { "player_3.collecting.down.frames",          "4"                     },
3677   { "player_3.collecting.down.start_frame",     "1"                     },
3678   { "player_3.collecting.down.delay",           "4"                     },
3679   { "player_3.collecting.up",                   "RocksHeroes.png"       },
3680   { "player_3.collecting.up.xpos",              "4"                     },
3681   { "player_3.collecting.up.ypos",              "6"                     },
3682   { "player_3.collecting.up.frames",            "4"                     },
3683   { "player_3.collecting.up.start_frame",       "1"                     },
3684   { "player_3.collecting.up.delay",             "4"                     },
3685   { "player_3.collecting.left",                 "RocksHeroes.png"       },
3686   { "player_3.collecting.left.xpos",            "0"                     },
3687   { "player_3.collecting.left.ypos",            "7"                     },
3688   { "player_3.collecting.left.frames",          "4"                     },
3689   { "player_3.collecting.left.start_frame",     "1"                     },
3690   { "player_3.collecting.left.delay",           "4"                     },
3691   { "player_3.collecting.right",                "RocksHeroes.png"       },
3692   { "player_3.collecting.right.xpos",           "4"                     },
3693   { "player_3.collecting.right.ypos",           "7"                     },
3694   { "player_3.collecting.right.frames",         "4"                     },
3695   { "player_3.collecting.right.start_frame",    "1"                     },
3696   { "player_3.collecting.right.delay",          "4"                     },
3697   { "player_3.pushing.down",                    "RocksHeroes.png"       },
3698   { "player_3.pushing.down.xpos",               "0"                     },
3699   { "player_3.pushing.down.ypos",               "6"                     },
3700   { "player_3.pushing.down.frames",             "4"                     },
3701   { "player_3.pushing.down.delay",              "4"                     },
3702   { "player_3.pushing.up",                      "RocksHeroes.png"       },
3703   { "player_3.pushing.up.xpos",                 "4"                     },
3704   { "player_3.pushing.up.ypos",                 "6"                     },
3705   { "player_3.pushing.up.frames",               "4"                     },
3706   { "player_3.pushing.up.delay",                "4"                     },
3707   { "player_3.pushing.left",                    "RocksHeroes.png"       },
3708   { "player_3.pushing.left.xpos",               "4"                     },
3709   { "player_3.pushing.left.ypos",               "8"                     },
3710   { "player_3.pushing.left.frames",             "4"                     },
3711   { "player_3.pushing.left.delay",              "4"                     },
3712   { "player_3.pushing.right",                   "RocksHeroes.png"       },
3713   { "player_3.pushing.right.xpos",              "0"                     },
3714   { "player_3.pushing.right.ypos",              "8"                     },
3715   { "player_3.pushing.right.frames",            "4"                     },
3716   { "player_3.pushing.right.delay",             "4"                     },
3717   { "player_3.snapping.down",                   "RocksHeroes.png"       },
3718   { "player_3.snapping.down.xpos",              "0"                     },
3719   { "player_3.snapping.down.ypos",              "6"                     },
3720   { "player_3.snapping.down.frames",            "1"                     },
3721   { "player_3.snapping.up",                     "RocksHeroes.png"       },
3722   { "player_3.snapping.up.xpos",                "4"                     },
3723   { "player_3.snapping.up.ypos",                "6"                     },
3724   { "player_3.snapping.up.frames",              "1"                     },
3725   { "player_3.snapping.left",                   "RocksHeroes.png"       },
3726   { "player_3.snapping.left.xpos",              "0"                     },
3727   { "player_3.snapping.left.ypos",              "7"                     },
3728   { "player_3.snapping.left.frames",            "1"                     },
3729   { "player_3.snapping.right",                  "RocksHeroes.png"       },
3730   { "player_3.snapping.right.xpos",             "4"                     },
3731   { "player_3.snapping.right.ypos",             "7"                     },
3732   { "player_3.snapping.right.frames",           "1"                     },
3733
3734   { "player_4",                                 "RocksHeroes.png"       },
3735   { "player_4.xpos",                            "0"                     },
3736   { "player_4.ypos",                            "9"                     },
3737   { "player_4.frames",                          "1"                     },
3738   { "player_4.down",                            "RocksHeroes.png"       },
3739   { "player_4.down.xpos",                       "0"                     },
3740   { "player_4.down.ypos",                       "9"                     },
3741   { "player_4.down.frames",                     "1"                     },
3742   { "player_4.up",                              "RocksHeroes.png"       },
3743   { "player_4.up.xpos",                         "4"                     },
3744   { "player_4.up.ypos",                         "9"                     },
3745   { "player_4.up.frames",                       "1"                     },
3746   { "player_4.left",                            "RocksHeroes.png"       },
3747   { "player_4.left.xpos",                       "0"                     },
3748   { "player_4.left.ypos",                       "10"                    },
3749   { "player_4.left.frames",                     "1"                     },
3750   { "player_4.right",                           "RocksHeroes.png"       },
3751   { "player_4.right.xpos",                      "4"                     },
3752   { "player_4.right.ypos",                      "10"                    },
3753   { "player_4.right.frames",                    "1"                     },
3754   { "player_4.moving.down",                     "RocksHeroes.png"       },
3755   { "player_4.moving.down.xpos",                "0"                     },
3756   { "player_4.moving.down.ypos",                "9"                     },
3757   { "player_4.moving.down.frames",              "4"                     },
3758   { "player_4.moving.down.start_frame",         "1"                     },
3759   { "player_4.moving.down.delay",               "4"                     },
3760   { "player_4.moving.up",                       "RocksHeroes.png"       },
3761   { "player_4.moving.up.xpos",                  "4"                     },
3762   { "player_4.moving.up.ypos",                  "9"                     },
3763   { "player_4.moving.up.frames",                "4"                     },
3764   { "player_4.moving.up.start_frame",           "1"                     },
3765   { "player_4.moving.up.delay",                 "4"                     },
3766   { "player_4.moving.left",                     "RocksHeroes.png"       },
3767   { "player_4.moving.left.xpos",                "0"                     },
3768   { "player_4.moving.left.ypos",                "10"                    },
3769   { "player_4.moving.left.frames",              "4"                     },
3770   { "player_4.moving.left.start_frame",         "1"                     },
3771   { "player_4.moving.left.delay",               "4"                     },
3772   { "player_4.moving.right",                    "RocksHeroes.png"       },
3773   { "player_4.moving.right.xpos",               "4"                     },
3774   { "player_4.moving.right.ypos",               "10"                    },
3775   { "player_4.moving.right.frames",             "4"                     },
3776   { "player_4.moving.right.start_frame",        "1"                     },
3777   { "player_4.moving.right.delay",              "4"                     },
3778   { "player_4.digging.down",                    "RocksHeroes.png"       },
3779   { "player_4.digging.down.xpos",               "0"                     },
3780   { "player_4.digging.down.ypos",               "9"                     },
3781   { "player_4.digging.down.frames",             "4"                     },
3782   { "player_4.digging.down.start_frame",        "1"                     },
3783   { "player_4.digging.down.delay",              "4"                     },
3784   { "player_4.digging.up",                      "RocksHeroes.png"       },
3785   { "player_4.digging.up.xpos",                 "4"                     },
3786   { "player_4.digging.up.ypos",                 "9"                     },
3787   { "player_4.digging.up.frames",               "4"                     },
3788   { "player_4.digging.up.start_frame",          "1"                     },
3789   { "player_4.digging.up.delay",                "4"                     },
3790   { "player_4.digging.left",                    "RocksHeroes.png"       },
3791   { "player_4.digging.left.xpos",               "0"                     },
3792   { "player_4.digging.left.ypos",               "10"                    },
3793   { "player_4.digging.left.frames",             "4"                     },
3794   { "player_4.digging.left.start_frame",        "1"                     },
3795   { "player_4.digging.left.delay",              "4"                     },
3796   { "player_4.digging.right",                   "RocksHeroes.png"       },
3797   { "player_4.digging.right.xpos",              "4"                     },
3798   { "player_4.digging.right.ypos",              "10"                    },
3799   { "player_4.digging.right.frames",            "4"                     },
3800   { "player_4.digging.right.start_frame",       "1"                     },
3801   { "player_4.digging.right.delay",             "4"                     },
3802   { "player_4.collecting.down",                 "RocksHeroes.png"       },
3803   { "player_4.collecting.down.xpos",            "0"                     },
3804   { "player_4.collecting.down.ypos",            "9"                     },
3805   { "player_4.collecting.down.frames",          "4"                     },
3806   { "player_4.collecting.down.start_frame",     "1"                     },
3807   { "player_4.collecting.down.delay",           "4"                     },
3808   { "player_4.collecting.up",                   "RocksHeroes.png"       },
3809   { "player_4.collecting.up.xpos",              "4"                     },
3810   { "player_4.collecting.up.ypos",              "9"                     },
3811   { "player_4.collecting.up.frames",            "4"                     },
3812   { "player_4.collecting.up.start_frame",       "1"                     },
3813   { "player_4.collecting.up.delay",             "4"                     },
3814   { "player_4.collecting.left",                 "RocksHeroes.png"       },
3815   { "player_4.collecting.left.xpos",            "0"                     },
3816   { "player_4.collecting.left.ypos",            "10"                    },
3817   { "player_4.collecting.left.frames",          "4"                     },
3818   { "player_4.collecting.left.start_frame",     "1"                     },
3819   { "player_4.collecting.left.delay",           "4"                     },
3820   { "player_4.collecting.right",                "RocksHeroes.png"       },
3821   { "player_4.collecting.right.xpos",           "4"                     },
3822   { "player_4.collecting.right.ypos",           "10"                    },
3823   { "player_4.collecting.right.frames",         "4"                     },
3824   { "player_4.collecting.right.start_frame",    "1"                     },
3825   { "player_4.collecting.right.delay",          "4"                     },
3826   { "player_4.pushing.down",                    "RocksHeroes.png"       },
3827   { "player_4.pushing.down.xpos",               "0"                     },
3828   { "player_4.pushing.down.ypos",               "9"                     },
3829   { "player_4.pushing.down.frames",             "4"                     },
3830   { "player_4.pushing.down.delay",              "4"                     },
3831   { "player_4.pushing.up",                      "RocksHeroes.png"       },
3832   { "player_4.pushing.up.xpos",                 "4"                     },
3833   { "player_4.pushing.up.ypos",                 "9"                     },
3834   { "player_4.pushing.up.frames",               "4"                     },
3835   { "player_4.pushing.up.delay",                "4"                     },
3836   { "player_4.pushing.left",                    "RocksHeroes.png"       },
3837   { "player_4.pushing.left.xpos",               "4"                     },
3838   { "player_4.pushing.left.ypos",               "11"                    },
3839   { "player_4.pushing.left.frames",             "4"                     },
3840   { "player_4.pushing.left.delay",              "4"                     },
3841   { "player_4.pushing.right",                   "RocksHeroes.png"       },
3842   { "player_4.pushing.right.xpos",              "0"                     },
3843   { "player_4.pushing.right.ypos",              "11"                    },
3844   { "player_4.pushing.right.frames",            "4"                     },
3845   { "player_4.pushing.right.delay",             "4"                     },
3846   { "player_4.snapping.down",                   "RocksHeroes.png"       },
3847   { "player_4.snapping.down.xpos",              "0"                     },
3848   { "player_4.snapping.down.ypos",              "9"                     },
3849   { "player_4.snapping.down.frames",            "1"                     },
3850   { "player_4.snapping.up",                     "RocksHeroes.png"       },
3851   { "player_4.snapping.up.xpos",                "4"                     },
3852   { "player_4.snapping.up.ypos",                "9"                     },
3853   { "player_4.snapping.up.frames",              "1"                     },
3854   { "player_4.snapping.left",                   "RocksHeroes.png"       },
3855   { "player_4.snapping.left.xpos",              "0"                     },
3856   { "player_4.snapping.left.ypos",              "10"                    },
3857   { "player_4.snapping.left.frames",            "1"                     },
3858   { "player_4.snapping.right",                  "RocksHeroes.png"       },
3859   { "player_4.snapping.right.xpos",             "4"                     },
3860   { "player_4.snapping.right.ypos",             "10"                    },
3861   { "player_4.snapping.right.frames",           "1"                     },
3862
3863   { "[default].exploding",                      "RocksElements.png"     },
3864   { "[default].exploding.xpos",                 "0"                     },
3865   { "[default].exploding.ypos",                 "4"                     },
3866   { "[default].exploding.frames",               "8"                     },
3867   { "[default].exploding.delay",                "2"                     },
3868   { "[default].exploding.anim_mode",            "linear"                },
3869
3870   { "twinkle_blue",                             "RocksHeroes.png"       },
3871   { "twinkle_blue.xpos",                        "9"                     },
3872   { "twinkle_blue.ypos",                        "11"                    },
3873   { "twinkle_blue.frames",                      "3"                     },
3874   { "twinkle_blue.delay",                       "2"                     },
3875   { "twinkle_blue.anim_mode",                   "pingpong"              },
3876   { "twinkle_blue.global_sync",                 "false"                 },
3877   { "twinkle_white",                            "RocksHeroes.png"       },
3878   { "twinkle_white.xpos",                       "13"                    },
3879   { "twinkle_white.ypos",                       "11"                    },
3880   { "twinkle_white.frames",                     "3"                     },
3881   { "twinkle_white.delay",                      "2"                     },
3882   { "twinkle_white.anim_mode",                  "pingpong"              },
3883   { "twinkle_white.global_sync",                "false"                 },
3884
3885   { "steelwall_topleft",                        "RocksElements.png"     },
3886   { "steelwall_topleft.xpos",                   "4"                     },
3887   { "steelwall_topleft.ypos",                   "0"                     },
3888   { "steelwall_topleft.frames",                 "1"                     },
3889   { "steelwall_topright",                       "RocksElements.png"     },
3890   { "steelwall_topright.xpos",                  "4"                     },
3891   { "steelwall_topright.ypos",                  "0"                     },
3892   { "steelwall_topright.frames",                "1"                     },
3893   { "steelwall_bottomleft",                     "RocksElements.png"     },
3894   { "steelwall_bottomleft.xpos",                "4"                     },
3895   { "steelwall_bottomleft.ypos",                "0"                     },
3896   { "steelwall_bottomleft.frames",              "1"                     },
3897   { "steelwall_bottomright",                    "RocksElements.png"     },
3898   { "steelwall_bottomright.xpos",               "4"                     },
3899   { "steelwall_bottomright.ypos",               "0"                     },
3900   { "steelwall_bottomright.frames",             "1"                     },
3901   { "steelwall_horizontal",                     "RocksElements.png"     },
3902   { "steelwall_horizontal.xpos",                "4"                     },
3903   { "steelwall_horizontal.ypos",                "0"                     },
3904   { "steelwall_horizontal.frames",              "1"                     },
3905   { "steelwall_vertical",                       "RocksElements.png"     },
3906   { "steelwall_vertical.xpos",                  "4"                     },
3907   { "steelwall_vertical.ypos",                  "0"                     },
3908   { "steelwall_vertical.frames",                "1"                     },
3909
3910   { "steelwall_topleft.EDITOR",                 "RocksElements.png"     },
3911   { "steelwall_topleft.EDITOR.xpos",            "0"                     },
3912   { "steelwall_topleft.EDITOR.ypos",            "13"                    },
3913   { "steelwall_topright.EDITOR",                "RocksElements.png"     },
3914   { "steelwall_topright.EDITOR.xpos",           "1"                     },
3915   { "steelwall_topright.EDITOR.ypos",           "13"                    },
3916   { "steelwall_bottomleft.EDITOR",              "RocksElements.png"     },
3917   { "steelwall_bottomleft.EDITOR.xpos",         "2"                     },
3918   { "steelwall_bottomleft.EDITOR.ypos",         "13"                    },
3919   { "steelwall_bottomright.EDITOR",             "RocksElements.png"     },
3920   { "steelwall_bottomright.EDITOR.xpos",        "3"                     },
3921   { "steelwall_bottomright.EDITOR.ypos",        "13"                    },
3922   { "steelwall_horizontal.EDITOR",              "RocksElements.png"     },
3923   { "steelwall_horizontal.EDITOR.xpos",         "4"                     },
3924   { "steelwall_horizontal.EDITOR.ypos",         "13"                    },
3925   { "steelwall_vertical.EDITOR",                "RocksElements.png"     },
3926   { "steelwall_vertical.EDITOR.xpos",           "5"                     },
3927   { "steelwall_vertical.EDITOR.ypos",           "13"                    },
3928
3929   { "invisible_steelwall_topleft",              "RocksSP.png"           },
3930   { "invisible_steelwall_topleft.xpos",         "0"                     },
3931   { "invisible_steelwall_topleft.ypos",         "0"                     },
3932   { "invisible_steelwall_topleft.frames",       "1"                     },
3933   { "invisible_steelwall_topright",             "RocksSP.png"           },
3934   { "invisible_steelwall_topright.xpos",        "0"                     },
3935   { "invisible_steelwall_topright.ypos",        "0"                     },
3936   { "invisible_steelwall_topright.frames",      "1"                     },
3937   { "invisible_steelwall_bottomleft",           "RocksSP.png"           },
3938   { "invisible_steelwall_bottomleft.xpos",      "0"                     },
3939   { "invisible_steelwall_bottomleft.ypos",      "0"                     },
3940   { "invisible_steelwall_bottomleft.frames",    "1"                     },
3941   { "invisible_steelwall_bottomright",          "RocksSP.png"           },
3942   { "invisible_steelwall_bottomright.xpos",     "0"                     },
3943   { "invisible_steelwall_bottomright.ypos",     "0"                     },
3944   { "invisible_steelwall_bottomright.frames",   "1"                     },
3945   { "invisible_steelwall_horizontal",           "RocksSP.png"           },
3946   { "invisible_steelwall_horizontal.xpos",      "0"                     },
3947   { "invisible_steelwall_horizontal.ypos",      "0"                     },
3948   { "invisible_steelwall_horizontal.frames",    "1"                     },
3949   { "invisible_steelwall_vertical",             "RocksSP.png"           },
3950   { "invisible_steelwall_vertical.xpos",        "0"                     },
3951   { "invisible_steelwall_vertical.ypos",        "0"                     },
3952   { "invisible_steelwall_vertical.frames",      "1"                     },
3953
3954   { "invisible_steelwall_topleft.EDITOR",       "RocksElements.png"     },
3955   { "invisible_steelwall_topleft.EDITOR.xpos",  "6"                     },
3956   { "invisible_steelwall_topleft.EDITOR.ypos",  "13"                    },
3957   { "invisible_steelwall_topright.EDITOR",      "RocksElements.png"     },
3958   { "invisible_steelwall_topright.EDITOR.xpos", "7"                     },
3959   { "invisible_steelwall_topright.EDITOR.ypos", "13"                    },
3960   { "invisible_steelwall_bottomleft.EDITOR",    "RocksElements.png"     },
3961   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                    },
3962   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                   },
3963   { "invisible_steelwall_bottomright.EDITOR",   "RocksElements.png"     },
3964   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                   },
3965   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                  },
3966   { "invisible_steelwall_horizontal.EDITOR",    "RocksElements.png"     },
3967   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                   },
3968   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                   },
3969   { "invisible_steelwall_vertical.EDITOR",      "RocksElements.png"     },
3970   { "invisible_steelwall_vertical.EDITOR.xpos", "11"                    },
3971   { "invisible_steelwall_vertical.EDITOR.ypos", "13"                    },
3972
3973   { "arrow_left",                               "RocksDC.png"           },
3974   { "arrow_left.xpos",                          "8"                     },
3975   { "arrow_left.ypos",                          "8"                     },
3976   { "arrow_left.frames",                        "1"                     },
3977   { "arrow_right",                              "RocksDC.png"           },
3978   { "arrow_right.xpos",                         "9"                     },
3979   { "arrow_right.ypos",                         "8"                     },
3980   { "arrow_right.frames",                       "1"                     },
3981   { "arrow_up",                                 "RocksDC.png"           },
3982   { "arrow_up.xpos",                            "10"                    },
3983   { "arrow_up.ypos",                            "8"                     },
3984   { "arrow_up.frames",                          "1"                     },
3985   { "arrow_down",                               "RocksDC.png"           },
3986   { "arrow_down.xpos",                          "11"                    },
3987   { "arrow_down.ypos",                          "8"                     },
3988   { "arrow_down.frames",                        "1"                     },
3989
3990   { "unknown",                                  "RocksFontEM.png"       },
3991   { "unknown.xpos",                             "15"                    },
3992   { "unknown.ypos",                             "1"                     },
3993   { "unknown.frames",                           "1"                     },
3994
3995   { "trigger_element",                          "RocksDC.png"           },
3996   { "trigger_element.xpos",                     "15"                    },
3997   { "trigger_element.ypos",                     "14"                    },
3998   { "trigger_element.frames",                   "1"                     },
3999
4000   { "trigger_player",                           "RocksDC.png"           },
4001   { "trigger_player.xpos",                      "15"                    },
4002   { "trigger_player.ypos",                      "13"                    },
4003   { "trigger_player.frames",                    "1"                     },
4004
4005   { "trigger_ce_value",                         "RocksDC.png"           },
4006   { "trigger_ce_value.xpos",                    "15"                    },
4007   { "trigger_ce_value.ypos",                    "11"                    },
4008   { "trigger_ce_value.frames",                  "1"                     },
4009
4010   { "trigger_ce_score",                         "RocksDC.png"           },
4011   { "trigger_ce_score.xpos",                    "15"                    },
4012   { "trigger_ce_score.ypos",                    "12"                    },
4013   { "trigger_ce_score.frames",                  "1"                     },
4014
4015   { "current_ce_value",                         "RocksDC.png"           },
4016   { "current_ce_value.xpos",                    "14"                    },
4017   { "current_ce_value.ypos",                    "11"                    },
4018   { "current_ce_value.frames",                  "1"                     },
4019
4020   { "current_ce_score",                         "RocksDC.png"           },
4021   { "current_ce_score.xpos",                    "14"                    },
4022   { "current_ce_score.ypos",                    "12"                    },
4023   { "current_ce_score.frames",                  "1"                     },
4024
4025   { "prev_ce_1",                                "RocksMore.png"         },
4026   { "prev_ce_1.xpos",                           "0"                     },
4027   { "prev_ce_1.ypos",                           "7"                     },
4028   { "prev_ce_1.frames",                         "1"                     },
4029
4030   { "prev_ce_2",                                "RocksMore.png"         },
4031   { "prev_ce_2.xpos",                           "1"                     },
4032   { "prev_ce_2.ypos",                           "7"                     },
4033   { "prev_ce_2.frames",                         "1"                     },
4034
4035   { "prev_ce_3",                                "RocksMore.png"         },
4036   { "prev_ce_3.xpos",                           "2"                     },
4037   { "prev_ce_3.ypos",                           "7"                     },
4038   { "prev_ce_3.frames",                         "1"                     },
4039
4040   { "prev_ce_4",                                "RocksMore.png"         },
4041   { "prev_ce_4.xpos",                           "3"                     },
4042   { "prev_ce_4.ypos",                           "7"                     },
4043   { "prev_ce_4.frames",                         "1"                     },
4044
4045   { "prev_ce_5",                                "RocksMore.png"         },
4046   { "prev_ce_5.xpos",                           "4"                     },
4047   { "prev_ce_5.ypos",                           "7"                     },
4048   { "prev_ce_5.frames",                         "1"                     },
4049
4050   { "prev_ce_6",                                "RocksMore.png"         },
4051   { "prev_ce_6.xpos",                           "5"                     },
4052   { "prev_ce_6.ypos",                           "7"                     },
4053   { "prev_ce_6.frames",                         "1"                     },
4054
4055   { "prev_ce_7",                                "RocksMore.png"         },
4056   { "prev_ce_7.xpos",                           "6"                     },
4057   { "prev_ce_7.ypos",                           "7"                     },
4058   { "prev_ce_7.frames",                         "1"                     },
4059
4060   { "prev_ce_8",                                "RocksMore.png"         },
4061   { "prev_ce_8.xpos",                           "7"                     },
4062   { "prev_ce_8.ypos",                           "7"                     },
4063   { "prev_ce_8.frames",                         "1"                     },
4064
4065   { "next_ce_1",                                "RocksMore.png"         },
4066   { "next_ce_1.xpos",                           "0"                     },
4067   { "next_ce_1.ypos",                           "8"                     },
4068   { "next_ce_1.frames",                         "1"                     },
4069
4070   { "next_ce_2",                                "RocksMore.png"         },
4071   { "next_ce_2.xpos",                           "1"                     },
4072   { "next_ce_2.ypos",                           "8"                     },
4073   { "next_ce_2.frames",                         "1"                     },
4074
4075   { "next_ce_3",                                "RocksMore.png"         },
4076   { "next_ce_3.xpos",                           "2"                     },
4077   { "next_ce_3.ypos",                           "8"                     },
4078   { "next_ce_3.frames",                         "1"                     },
4079
4080   { "next_ce_4",                                "RocksMore.png"         },
4081   { "next_ce_4.xpos",                           "3"                     },
4082   { "next_ce_4.ypos",                           "8"                     },
4083   { "next_ce_4.frames",                         "1"                     },
4084
4085   { "next_ce_5",                                "RocksMore.png"         },
4086   { "next_ce_5.xpos",                           "4"                     },
4087   { "next_ce_5.ypos",                           "8"                     },
4088   { "next_ce_5.frames",                         "1"                     },
4089
4090   { "next_ce_6",                                "RocksMore.png"         },
4091   { "next_ce_6.xpos",                           "5"                     },
4092   { "next_ce_6.ypos",                           "8"                     },
4093   { "next_ce_6.frames",                         "1"                     },
4094
4095   { "next_ce_7",                                "RocksMore.png"         },
4096   { "next_ce_7.xpos",                           "6"                     },
4097   { "next_ce_7.ypos",                           "8"                     },
4098   { "next_ce_7.frames",                         "1"                     },
4099
4100   { "next_ce_8",                                "RocksMore.png"         },
4101   { "next_ce_8.xpos",                           "7"                     },
4102   { "next_ce_8.ypos",                           "8"                     },
4103   { "next_ce_8.frames",                         "1"                     },
4104
4105   { "self",                                     "RocksMore.png"         },
4106   { "self.xpos",                                "8"                     },
4107   { "self.ypos",                                "7"                     },
4108   { "self.frames",                              "1"                     },
4109
4110   { "any_element",                              "RocksMore.png"         },
4111   { "any_element.xpos",                         "9"                     },
4112   { "any_element.ypos",                         "7"                     },
4113   { "any_element.frames",                       "1"                     },
4114
4115   { "emc_key_5",                                "RocksEMC.png"          },
4116   { "emc_key_5.xpos",                           "0"                     },
4117   { "emc_key_5.ypos",                           "5"                     },
4118   { "emc_key_5.frames",                         "1"                     },
4119   { "emc_key_5.collecting",                     "RocksCollect.png"      },
4120   { "emc_key_5.collecting.xpos",                "7"                     },
4121   { "emc_key_5.collecting.ypos",                "12"                    },
4122   { "emc_key_5.collecting.frames",              "7"                     },
4123   { "emc_key_5.collecting.anim_mode",           "linear"                },
4124   { "emc_key_6",                                "RocksEMC.png"          },
4125   { "emc_key_6.xpos",                           "1"                     },
4126   { "emc_key_6.ypos",                           "5"                     },
4127   { "emc_key_6.frames",                         "1"                     },
4128   { "emc_key_6.collecting",                     "RocksCollect.png"      },
4129   { "emc_key_6.collecting.xpos",                "7"                     },
4130   { "emc_key_6.collecting.ypos",                "13"                    },
4131   { "emc_key_6.collecting.frames",              "7"                     },
4132   { "emc_key_6.collecting.anim_mode",           "linear"                },
4133   { "emc_key_7",                                "RocksEMC.png"          },
4134   { "emc_key_7.xpos",                           "2"                     },
4135   { "emc_key_7.ypos",                           "5"                     },
4136   { "emc_key_7.frames",                         "1"                     },
4137   { "emc_key_7.collecting",                     "RocksCollect.png"      },
4138   { "emc_key_7.collecting.xpos",                "7"                     },
4139   { "emc_key_7.collecting.ypos",                "14"                    },
4140   { "emc_key_7.collecting.frames",              "7"                     },
4141   { "emc_key_7.collecting.anim_mode",           "linear"                },
4142   { "emc_key_8",                                "RocksEMC.png"          },
4143   { "emc_key_8.xpos",                           "3"                     },
4144   { "emc_key_8.ypos",                           "5"                     },
4145   { "emc_key_8.frames",                         "1"                     },
4146   { "emc_key_8.collecting",                     "RocksCollect.png"      },
4147   { "emc_key_8.collecting.xpos",                "7"                     },
4148   { "emc_key_8.collecting.ypos",                "15"                    },
4149   { "emc_key_8.collecting.frames",              "7"                     },
4150   { "emc_key_8.collecting.anim_mode",           "linear"                },
4151
4152   { "emc_gate_5",                               "RocksEMC.png"          },
4153   { "emc_gate_5.xpos",                          "0"                     },
4154   { "emc_gate_5.ypos",                          "6"                     },
4155   { "emc_gate_5.frames",                        "1"                     },
4156   { "emc_gate_6",                               "RocksEMC.png"          },
4157   { "emc_gate_6.xpos",                          "1"                     },
4158   { "emc_gate_6.ypos",                          "6"                     },
4159   { "emc_gate_6.frames",                        "1"                     },
4160   { "emc_gate_7",                               "RocksEMC.png"          },
4161   { "emc_gate_7.xpos",                          "2"                     },
4162   { "emc_gate_7.ypos",                          "6"                     },
4163   { "emc_gate_7.frames",                        "1"                     },
4164   { "emc_gate_8",                               "RocksEMC.png"          },
4165   { "emc_gate_8.xpos",                          "3"                     },
4166   { "emc_gate_8.ypos",                          "6"                     },
4167   { "emc_gate_8.frames",                        "1"                     },
4168   { "emc_gate_5_gray",                          "RocksEMC.png"          },
4169   { "emc_gate_5_gray.xpos",                     "4"                     },
4170   { "emc_gate_5_gray.ypos",                     "7"                     },
4171   { "emc_gate_5_gray.frames",                   "1"                     },
4172   { "emc_gate_5_gray.EDITOR",                   "RocksEMC.png"          },
4173   { "emc_gate_5_gray.EDITOR.xpos",              "0"                     },
4174   { "emc_gate_5_gray.EDITOR.ypos",              "7"                     },
4175   { "emc_gate_5_gray.active",                   "RocksEMC.png"          },
4176   { "emc_gate_5_gray.active.xpos",              "0"                     },
4177   { "emc_gate_5_gray.active.ypos",              "6"                     },
4178   { "emc_gate_5_gray.active.frames",            "1"                     },
4179   { "emc_gate_6_gray",                          "RocksEMC.png"          },
4180   { "emc_gate_6_gray.xpos",                     "4"                     },
4181   { "emc_gate_6_gray.ypos",                     "7"                     },
4182   { "emc_gate_6_gray.frames",                   "1"                     },
4183   { "emc_gate_6_gray.EDITOR",                   "RocksEMC.png"          },
4184   { "emc_gate_6_gray.EDITOR.xpos",              "1"                     },
4185   { "emc_gate_6_gray.EDITOR.ypos",              "7"                     },
4186   { "emc_gate_6_gray.active",                   "RocksEMC.png"          },
4187   { "emc_gate_6_gray.active.xpos",              "1"                     },
4188   { "emc_gate_6_gray.active.ypos",              "6"                     },
4189   { "emc_gate_6_gray.active.frames",            "1"                     },
4190   { "emc_gate_7_gray",                          "RocksEMC.png"          },
4191   { "emc_gate_7_gray.xpos",                     "4"                     },
4192   { "emc_gate_7_gray.ypos",                     "7"                     },
4193   { "emc_gate_7_gray.frames",                   "1"                     },
4194   { "emc_gate_7_gray.EDITOR",                   "RocksEMC.png"          },
4195   { "emc_gate_7_gray.EDITOR.xpos",              "2"                     },
4196   { "emc_gate_7_gray.EDITOR.ypos",              "7"                     },
4197   { "emc_gate_7_gray.active",                   "RocksEMC.png"          },
4198   { "emc_gate_7_gray.active.xpos",              "2"                     },
4199   { "emc_gate_7_gray.active.ypos",              "6"                     },
4200   { "emc_gate_7_gray.active.frames",            "1"                     },
4201   { "emc_gate_8_gray",                          "RocksEMC.png"          },
4202   { "emc_gate_8_gray.xpos",                     "4"                     },
4203   { "emc_gate_8_gray.ypos",                     "7"                     },
4204   { "emc_gate_8_gray.frames",                   "1"                     },
4205   { "emc_gate_8_gray.EDITOR",                   "RocksEMC.png"          },
4206   { "emc_gate_8_gray.EDITOR.xpos",              "3"                     },
4207   { "emc_gate_8_gray.EDITOR.ypos",              "7"                     },
4208   { "emc_gate_8_gray.active",                   "RocksEMC.png"          },
4209   { "emc_gate_8_gray.active.xpos",              "3"                     },
4210   { "emc_gate_8_gray.active.ypos",              "6"                     },
4211   { "emc_gate_8_gray.active.frames",            "1"                     },
4212
4213   { "emc_android",                              "RocksEMC.png"          },
4214   { "emc_android.xpos",                         "0"                     },
4215   { "emc_android.ypos",                         "8"                     },
4216   { "emc_android.frames",                       "8"                     },
4217   { "emc_android.delay",                        "2"                     },
4218
4219   { "emc_android.shrinking.upleft",             "RocksEMC.png"          },
4220   { "emc_android.shrinking.upleft.xpos",        "1"                     },
4221   { "emc_android.shrinking.upleft.ypos",        "11"                    },
4222   { "emc_android.shrinking.upleft.frames",      "8"                     },
4223   { "emc_android.shrinking.upleft.anim_mode",   "linear"                },
4224
4225   { "emc_android.growing.downright",            "RocksEMC.png"          },
4226   { "emc_android.growing.downright.xpos",       "0"                     },
4227   { "emc_android.growing.downright.ypos",       "11"                    },
4228   { "emc_android.growing.downright.frames",     "8"                     },
4229   { "emc_android.growing.downright.anim_mode",  "linear,reverse"        },
4230
4231   { "emc_android.shrinking.downleft",           "RocksEMC.png"          },
4232   { "emc_android.shrinking.downleft.xpos",      "1"                     },
4233   { "emc_android.shrinking.downleft.ypos",      "12"                    },
4234   { "emc_android.shrinking.downleft.frames",    "8"                     },
4235   { "emc_android.shrinking.downleft.anim_mode", "linear"                },
4236
4237   { "emc_android.growing.upright",              "RocksEMC.png"          },
4238   { "emc_android.growing.upright.xpos",         "0"                     },
4239   { "emc_android.growing.upright.ypos",         "12"                    },
4240   { "emc_android.growing.upright.frames",       "8"                     },
4241   { "emc_android.growing.upright.anim_mode",    "linear,reverse"        },
4242
4243   { "emc_android.shrinking.upright",            "RocksEMC.png"          },
4244   { "emc_android.shrinking.upright.xpos",       "1"                     },
4245   { "emc_android.shrinking.upright.ypos",       "13"                    },
4246   { "emc_android.shrinking.upright.frames",     "8"                     },
4247   { "emc_android.shrinking.upright.anim_mode",  "linear"                },
4248
4249   { "emc_android.growing.downleft",             "RocksEMC.png"          },
4250   { "emc_android.growing.downleft.xpos",        "0"                     },
4251   { "emc_android.growing.downleft.ypos",        "13"                    },
4252   { "emc_android.growing.downleft.frames",      "8"                     },
4253   { "emc_android.growing.downleft.anim_mode",   "linear,reverse"        },
4254
4255   { "emc_android.shrinking.downright",          "RocksEMC.png"          },
4256   { "emc_android.shrinking.downright.xpos",     "1"                     },
4257   { "emc_android.shrinking.downright.ypos",     "14"                    },
4258   { "emc_android.shrinking.downright.frames",   "8"                     },
4259   { "emc_android.shrinking.downright.anim_mode","linear"                },
4260
4261   { "emc_android.growing.upleft",               "RocksEMC.png"          },
4262   { "emc_android.growing.upleft.xpos",          "0"                     },
4263   { "emc_android.growing.upleft.ypos",          "14"                    },
4264   { "emc_android.growing.upleft.frames",        "8"                     },
4265   { "emc_android.growing.upleft.anim_mode",     "linear,reverse"        },
4266
4267   { "emc_grass",                                "RocksEMC.png"          },
4268   { "emc_grass.xpos",                           "0"                     },
4269   { "emc_grass.ypos",                           "4"                     },
4270   { "emc_grass.frames",                         "1"                     },
4271   { "emc_grass.CRUMBLED",                       "RocksEMC.png"          },
4272   { "emc_grass.CRUMBLED.xpos",                  "1"                     },
4273   { "emc_grass.CRUMBLED.ypos",                  "4"                     },
4274   { "emc_grass.CRUMBLED.frames",                "1"                     },
4275   { "emc_grass.digging.left",                   "RocksEMC.png"          },
4276   { "emc_grass.digging.left.xpos",              "6"                     },
4277   { "emc_grass.digging.left.ypos",              "0"                     },
4278   { "emc_grass.digging.left.frames",            "3"                     },
4279   { "emc_grass.digging.left.delay",             "2"                     },
4280   { "emc_grass.digging.left.anim_mode",         "linear"                },
4281   { "emc_grass.digging.right",                  "RocksEMC.png"          },
4282   { "emc_grass.digging.right.xpos",             "9"                     },
4283   { "emc_grass.digging.right.ypos",             "0"                     },
4284   { "emc_grass.digging.right.frames",           "3"                     },
4285   { "emc_grass.digging.right.delay",            "2"                     },
4286   { "emc_grass.digging.right.anim_mode",        "linear"                },
4287   { "emc_grass.digging.up",                     "RocksEMC.png"          },
4288   { "emc_grass.digging.up.xpos",                "0"                     },
4289   { "emc_grass.digging.up.ypos",                "0"                     },
4290   { "emc_grass.digging.up.frames",              "3"                     },
4291   { "emc_grass.digging.up.delay",               "2"                     },
4292   { "emc_grass.digging.up.anim_mode",           "linear"                },
4293   { "emc_grass.digging.down",                   "RocksEMC.png"          },
4294   { "emc_grass.digging.down.xpos",              "3"                     },
4295   { "emc_grass.digging.down.ypos",              "0"                     },
4296   { "emc_grass.digging.down.frames",            "3"                     },
4297   { "emc_grass.digging.down.delay",             "2"                     },
4298   { "emc_grass.digging.down.anim_mode",         "linear"                },
4299   { "emc_grass.digging.left.CRUMBLED",          "RocksEMC.png"          },
4300   { "emc_grass.digging.left.CRUMBLED.xpos",     "6"                     },
4301   { "emc_grass.digging.left.CRUMBLED.ypos",     "1"                     },
4302   { "emc_grass.digging.left.CRUMBLED.frames",   "3"                     },
4303   { "emc_grass.digging.left.CRUMBLED.delay",    "2"                     },
4304   { "emc_grass.digging.left.CRUMBLED.anim_mode","linear"                },
4305   { "emc_grass.digging.right.CRUMBLED",         "RocksEMC.png"          },
4306   { "emc_grass.digging.right.CRUMBLED.xpos",    "9"                     },
4307   { "emc_grass.digging.right.CRUMBLED.ypos",    "1"                     },
4308   { "emc_grass.digging.right.CRUMBLED.frames",  "3"                     },
4309   { "emc_grass.digging.right.CRUMBLED.delay",   "2"                     },
4310   { "emc_grass.digging.right.CRUMBLED.anim_mode","linear"               },
4311   { "emc_grass.digging.up.CRUMBLED",            "RocksEMC.png"          },
4312   { "emc_grass.digging.up.CRUMBLED.xpos",       "0"                     },
4313   { "emc_grass.digging.up.CRUMBLED.ypos",       "1"                     },
4314   { "emc_grass.digging.up.CRUMBLED.frames",     "3"                     },
4315   { "emc_grass.digging.up.CRUMBLED.delay",      "2"                     },
4316   { "emc_grass.digging.up.CRUMBLED.anim_mode",  "linear"                },
4317   { "emc_grass.digging.down.CRUMBLED",          "RocksEMC.png"          },
4318   { "emc_grass.digging.down.CRUMBLED.xpos",     "3"                     },
4319   { "emc_grass.digging.down.CRUMBLED.ypos",     "1"                     },
4320   { "emc_grass.digging.down.CRUMBLED.frames",   "3"                     },
4321   { "emc_grass.digging.down.CRUMBLED.delay",    "2"                     },
4322   { "emc_grass.digging.down.CRUMBLED.anim_mode","linear"                },
4323
4324   { "emc_magic_ball",                           "RocksEMC.png"          },
4325   { "emc_magic_ball.xpos",                      "0"                     },
4326   { "emc_magic_ball.ypos",                      "9"                     },
4327   { "emc_magic_ball.frames",                    "1"                     },
4328   { "emc_magic_ball.active",                    "RocksEMC.png"          },
4329   { "emc_magic_ball.active.xpos",               "0"                     },
4330   { "emc_magic_ball.active.ypos",               "9"                     },
4331   { "emc_magic_ball.active.frames",             "16"                    },
4332   { "emc_magic_ball.active.frames_per_line",    "8"                     },
4333   { "emc_magic_ball.dropping",                  "RocksElements.png"     },
4334   { "emc_magic_ball.dropping.xpos",             "0"                     },
4335   { "emc_magic_ball.dropping.ypos",             "4"                     },
4336   { "emc_magic_ball.dropping.frames",           "8"                     },
4337   { "emc_magic_ball.dropping.anim_mode",        "linear"                },
4338
4339   { "emc_magic_ball_switch",                    "RocksEMC.png"          },
4340   { "emc_magic_ball_switch.xpos",               "8"                     },
4341   { "emc_magic_ball_switch.ypos",               "10"                    },
4342   { "emc_magic_ball_switch.frames",             "1"                     },
4343   { "emc_magic_ball_switch.active",             "RocksEMC.png"          },
4344   { "emc_magic_ball_switch.active.xpos",        "8"                     },
4345   { "emc_magic_ball_switch.active.ypos",        "9"                     },
4346   { "emc_magic_ball_switch.active.frames",      "1"                     },
4347
4348   { "emc_spring_bumper",                        "RocksEMC.png"          },
4349   { "emc_spring_bumper.xpos",                   "8"                     },
4350   { "emc_spring_bumper.ypos",                   "4"                     },
4351   { "emc_spring_bumper.frames",                 "1"                     },
4352
4353   { "emc_spring_bumper.active",                 "RocksEMC.png"          },
4354   { "emc_spring_bumper.active.xpos",            "8"                     },
4355   { "emc_spring_bumper.active.ypos",            "4"                     },
4356   { "emc_spring_bumper.active.frames",          "4"                     },
4357   { "emc_spring_bumper.active.anim_mode",       "pingpong2"             },
4358
4359   { "emc_plant",                                "RocksEMC.png"          },
4360   { "emc_plant.xpos",                           "4"                     },
4361   { "emc_plant.ypos",                           "4"                     },
4362   { "emc_plant.frames",                         "1"                     },
4363   { "emc_plant.CRUMBLED",                       "RocksEMC.png"          },
4364   { "emc_plant.CRUMBLED.xpos",                  "5"                     },
4365   { "emc_plant.CRUMBLED.ypos",                  "4"                     },
4366   { "emc_plant.CRUMBLED.frames",                "1"                     },
4367
4368   { "emc_lenses",                               "RocksEMC.png"          },
4369   { "emc_lenses.xpos",                          "6"                     },
4370   { "emc_lenses.ypos",                          "4"                     },
4371   { "emc_lenses.frames",                        "1"                     },
4372   { "emc_lenses.collecting",                    "RocksCollect.png"      },
4373   { "emc_lenses.collecting.xpos",               "7"                     },
4374   { "emc_lenses.collecting.ypos",               "16"                    },
4375   { "emc_lenses.collecting.frames",             "7"                     },
4376   { "emc_lenses.collecting.anim_mode",          "linear"                },
4377
4378   { "emc_magnifier",                            "RocksEMC.png"          },
4379   { "emc_magnifier.xpos",                       "7"                     },
4380   { "emc_magnifier.ypos",                       "4"                     },
4381   { "emc_magnifier.frames",                     "1"                     },
4382   { "emc_magnifier.collecting",                 "RocksCollect.png"      },
4383   { "emc_magnifier.collecting.xpos",            "7"                     },
4384   { "emc_magnifier.collecting.ypos",            "17"                    },
4385   { "emc_magnifier.collecting.frames",          "7"                     },
4386   { "emc_magnifier.collecting.anim_mode",       "linear"                },
4387
4388   { "emc_wall_9",                               "RocksEMC.png"          },
4389   { "emc_wall_9.xpos",                          "10"                    },
4390   { "emc_wall_9.ypos",                          "5"                     },
4391   { "emc_wall_9.frames",                        "1"                     },
4392   { "emc_wall_10",                              "RocksEMC.png"          },
4393   { "emc_wall_10.xpos",                         "10"                    },
4394   { "emc_wall_10.ypos",                         "6"                     },
4395   { "emc_wall_10.frames",                       "1"                     },
4396   { "emc_wall_11",                              "RocksEMC.png"          },
4397   { "emc_wall_11.xpos",                         "11"                    },
4398   { "emc_wall_11.ypos",                         "5"                     },
4399   { "emc_wall_11.frames",                       "1"                     },
4400   { "emc_wall_12",                              "RocksEMC.png"          },
4401   { "emc_wall_12.xpos",                         "11"                    },
4402   { "emc_wall_12.ypos",                         "6"                     },
4403   { "emc_wall_12.frames",                       "1"                     },
4404   { "emc_wall_13",                              "RocksEMC.png"          },
4405   { "emc_wall_13.xpos",                         "10"                    },
4406   { "emc_wall_13.ypos",                         "7"                     },
4407   { "emc_wall_13.frames",                       "1"                     },
4408   { "emc_wall_14",                              "RocksEMC.png"          },
4409   { "emc_wall_14.xpos",                         "10"                    },
4410   { "emc_wall_14.ypos",                         "8"                     },
4411   { "emc_wall_14.frames",                       "1"                     },
4412   { "emc_wall_15",                              "RocksEMC.png"          },
4413   { "emc_wall_15.xpos",                         "10"                    },
4414   { "emc_wall_15.ypos",                         "9"                     },
4415   { "emc_wall_15.frames",                       "1"                     },
4416   { "emc_wall_16",                              "RocksEMC.png"          },
4417   { "emc_wall_16.xpos",                         "10"                    },
4418   { "emc_wall_16.ypos",                         "10"                    },
4419   { "emc_wall_16.frames",                       "1"                     },
4420
4421   { "emc_wall_slippery_1",                      "RocksEMC.png"          },
4422   { "emc_wall_slippery_1.xpos",                 "11"                    },
4423   { "emc_wall_slippery_1.ypos",                 "7"                     },
4424   { "emc_wall_slippery_1.frames",               "1"                     },
4425   { "emc_wall_slippery_2",                      "RocksEMC.png"          },
4426   { "emc_wall_slippery_2.xpos",                 "11"                    },
4427   { "emc_wall_slippery_2.ypos",                 "8"                     },
4428   { "emc_wall_slippery_2.frames",               "1"                     },
4429   { "emc_wall_slippery_3",                      "RocksEMC.png"          },
4430   { "emc_wall_slippery_3.xpos",                 "11"                    },
4431   { "emc_wall_slippery_3.ypos",                 "9"                     },
4432   { "emc_wall_slippery_3.frames",               "1"                     },
4433   { "emc_wall_slippery_4",                      "RocksEMC.png"          },
4434   { "emc_wall_slippery_4.xpos",                 "11"                    },
4435   { "emc_wall_slippery_4.ypos",                 "10"                    },
4436   { "emc_wall_slippery_4.frames",               "1"                     },
4437
4438   { "emc_fake_grass",                           "RocksEMC.png"          },
4439   { "emc_fake_grass.xpos",                      "0"                     },
4440   { "emc_fake_grass.ypos",                      "4"                     },
4441   { "emc_fake_grass.frames",                    "1"                     },
4442   { "emc_fake_grass.CRUMBLED",                  "RocksEMC.png"          },
4443   { "emc_fake_grass.CRUMBLED.xpos",             "1"                     },
4444   { "emc_fake_grass.CRUMBLED.ypos",             "4"                     },
4445   { "emc_fake_grass.CRUMBLED.frames",           "1"                     },
4446   { "emc_fake_grass.active",                    "RocksEMC.png"          },
4447   { "emc_fake_grass.active.xpos",               "2"                     },
4448   { "emc_fake_grass.active.ypos",               "4"                     },
4449   { "emc_fake_grass.active.frames",             "1"                     },
4450   { "emc_fake_grass.active.CRUMBLED",           "RocksEMC.png"          },
4451   { "emc_fake_grass.active.CRUMBLED.xpos",      "3"                     },
4452   { "emc_fake_grass.active.CRUMBLED.ypos",      "4"                     },
4453   { "emc_fake_grass.active.CRUMBLED.frames",    "1"                     },
4454   { "emc_fake_grass.EDITOR",                    "RocksEMC.png"          },
4455   { "emc_fake_grass.EDITOR.xpos",               "2"                     },
4456   { "emc_fake_grass.EDITOR.ypos",               "4"                     },
4457   { "emc_fake_grass.EDITOR.frames",             "1"                     },
4458
4459   { "emc_fake_acid",                            "RocksElements.png"     },
4460   { "emc_fake_acid.xpos",                       "12"                    },
4461   { "emc_fake_acid.ypos",                       "7"                     },
4462   { "emc_fake_acid.frames",                     "4"                     },
4463   { "emc_fake_acid.delay",                      "10"                    },
4464   { "emc_fake_acid.global_sync",                "true"                  },
4465
4466   { "emc_dripper",                              "RocksSP.png"           },
4467   { "emc_dripper.xpos",                         "0"                     },
4468   { "emc_dripper.ypos",                         "0"                     },
4469   { "emc_dripper.frames",                       "1"                     },
4470   { "emc_dripper.EDITOR",                       "RocksEMC.png"          },
4471   { "emc_dripper.EDITOR.xpos",                  "8"                     },
4472   { "emc_dripper.EDITOR.ypos",                  "8"                     },
4473   { "emc_dripper.active",                       "RocksEMC.png"          },
4474   { "emc_dripper.active.xpos",                  "8"                     },
4475   { "emc_dripper.active.ypos",                  "8"                     },
4476   { "emc_dripper.active.frames",                "1"                     },
4477
4478   { "mm_mcduffin",                              "RocksMM.png"           },
4479   { "mm_mcduffin.xpos",                         "4"                     },
4480   { "mm_mcduffin.ypos",                         "1"                     },
4481   { "mm_mcduffin.frames",                       "4"                     },
4482   { "mm_mcduffin.delay",                        "8"                     },
4483   { "mm_mcduffin.right",                        "RocksMM.png"           },
4484   { "mm_mcduffin.right.xpos",                   "4"                     },
4485   { "mm_mcduffin.right.ypos",                   "1"                     },
4486   { "mm_mcduffin.right.frames",                 "1"                     },
4487   { "mm_mcduffin.up",                           "RocksMM.png"           },
4488   { "mm_mcduffin.up.xpos",                      "5"                     },
4489   { "mm_mcduffin.up.ypos",                      "1"                     },
4490   { "mm_mcduffin.up.frames",                    "1"                     },
4491   { "mm_mcduffin.left",                         "RocksMM.png"           },
4492   { "mm_mcduffin.left.xpos",                    "6"                     },
4493   { "mm_mcduffin.left.ypos",                    "1"                     },
4494   { "mm_mcduffin.left.frames",                  "1"                     },
4495   { "mm_mcduffin.down",                         "RocksMM.png"           },
4496   { "mm_mcduffin.down.xpos",                    "7"                     },
4497   { "mm_mcduffin.down.ypos",                    "1"                     },
4498   { "mm_mcduffin.down.frames",                  "1"                     },
4499
4500   { "mm_exit_closed",                           "RocksMM.png"           },
4501   { "mm_exit_closed.xpos",                      "8"                     },
4502   { "mm_exit_closed.ypos",                      "1"                     },
4503   { "mm_exit_closed.frames",                    "1"                     },
4504   { "mm_exit.opening",                          "RocksMM.png"           },
4505   { "mm_exit.opening.xpos",                     "8"                     },
4506   { "mm_exit.opening.ypos",                     "1"                     },
4507   { "mm_exit.opening.frames",                   "4"                     },
4508   { "mm_exit.opening.delay",                    "6"                     },
4509   { "mm_exit.opening.anim_mode",                "linear"                },
4510   { "mm_exit_open",                             "RocksMM.png"           },
4511   { "mm_exit_open.xpos",                        "11"                    },
4512   { "mm_exit_open.ypos",                        "1"                     },
4513   { "mm_exit_open.frames",                      "1"                     },
4514   { "mm_exit.closing",                          "RocksMM.png"           },
4515   { "mm_exit.closing.xpos",                     "8"                     },
4516   { "mm_exit.closing.ypos",                     "1"                     },
4517   { "mm_exit.closing.frames",                   "4"                     },
4518   { "mm_exit.closing.delay",                    "6"                     },
4519   { "mm_exit.closing.anim_mode",                "linear,reverse"        },
4520
4521   { "mm_mirror_1",                              "RocksMM.png"           },
4522   { "mm_mirror_1.xpos",                         "0"                     },
4523   { "mm_mirror_1.ypos",                         "0"                     },
4524   { "mm_mirror_1.frames",                       "1"                     },
4525   { "mm_mirror_2",                              "RocksMM.png"           },
4526   { "mm_mirror_2.xpos",                         "1"                     },
4527   { "mm_mirror_2.ypos",                         "0"                     },
4528   { "mm_mirror_2.frames",                       "1"                     },
4529   { "mm_mirror_3",                              "RocksMM.png"           },
4530   { "mm_mirror_3.xpos",                         "2"                     },
4531   { "mm_mirror_3.ypos",                         "0"                     },
4532   { "mm_mirror_3.frames",                       "1"                     },
4533   { "mm_mirror_4",                              "RocksMM.png"           },
4534   { "mm_mirror_4.xpos",                         "3"                     },
4535   { "mm_mirror_4.ypos",                         "0"                     },
4536   { "mm_mirror_4.frames",                       "1"                     },
4537   { "mm_mirror_5",                              "RocksMM.png"           },
4538   { "mm_mirror_5.xpos",                         "4"                     },
4539   { "mm_mirror_5.ypos",                         "0"                     },
4540   { "mm_mirror_5.frames",                       "1"                     },
4541   { "mm_mirror_6",                              "RocksMM.png"           },
4542   { "mm_mirror_6.xpos",                         "5"                     },
4543   { "mm_mirror_6.ypos",                         "0"                     },
4544   { "mm_mirror_6.frames",                       "1"                     },
4545   { "mm_mirror_7",                              "RocksMM.png"           },
4546   { "mm_mirror_7.xpos",                         "6"                     },
4547   { "mm_mirror_7.ypos",                         "0"                     },
4548   { "mm_mirror_7.frames",                       "1"                     },
4549   { "mm_mirror_8",                              "RocksMM.png"           },
4550   { "mm_mirror_8.xpos",                         "7"                     },
4551   { "mm_mirror_8.ypos",                         "0"                     },
4552   { "mm_mirror_8.frames",                       "1"                     },
4553   { "mm_mirror_9",                              "RocksMM.png"           },
4554   { "mm_mirror_9.xpos",                         "8"                     },
4555   { "mm_mirror_9.ypos",                         "0"                     },
4556   { "mm_mirror_9.frames",                       "1"                     },
4557   { "mm_mirror_10",                             "RocksMM.png"           },
4558   { "mm_mirror_10.xpos",                        "9"                     },
4559   { "mm_mirror_10.ypos",                        "0"                     },
4560   { "mm_mirror_10.frames",                      "1"                     },
4561   { "mm_mirror_11",                             "RocksMM.png"           },
4562   { "mm_mirror_11.xpos",                        "10"                    },
4563   { "mm_mirror_11.ypos",                        "0"                     },
4564   { "mm_mirror_11.frames",                      "1"                     },
4565   { "mm_mirror_12",                             "RocksMM.png"           },
4566   { "mm_mirror_12.xpos",                        "11"                    },
4567   { "mm_mirror_12.ypos",                        "0"                     },
4568   { "mm_mirror_12.frames",                      "1"                     },
4569   { "mm_mirror_13",                             "RocksMM.png"           },
4570   { "mm_mirror_13.xpos",                        "12"                    },
4571   { "mm_mirror_13.ypos",                        "0"                     },
4572   { "mm_mirror_13.frames",                      "1"                     },
4573   { "mm_mirror_14",                             "RocksMM.png"           },
4574   { "mm_mirror_14.xpos",                        "13"                    },
4575   { "mm_mirror_14.ypos",                        "0"                     },
4576   { "mm_mirror_14.frames",                      "1"                     },
4577   { "mm_mirror_15",                             "RocksMM.png"           },
4578   { "mm_mirror_15.xpos",                        "14"                    },
4579   { "mm_mirror_15.ypos",                        "0"                     },
4580   { "mm_mirror_15.frames",                      "1"                     },
4581   { "mm_mirror_16",                             "RocksMM.png"           },
4582   { "mm_mirror_16.xpos",                        "15"                    },
4583   { "mm_mirror_16.ypos",                        "0"                     },
4584   { "mm_mirror_16.frames",                      "1"                     },
4585
4586   { "mm_mirror_fixed_1",                        "RocksMM.png"           },
4587   { "mm_mirror_fixed_1.xpos",                   "4"                     },
4588   { "mm_mirror_fixed_1.ypos",                   "6"                     },
4589   { "mm_mirror_fixed_1.frames",                 "1"                     },
4590   { "mm_mirror_fixed_2",                        "RocksMM.png"           },
4591   { "mm_mirror_fixed_2.xpos",                   "5"                     },
4592   { "mm_mirror_fixed_2.ypos",                   "6"                     },
4593   { "mm_mirror_fixed_2.frames",                 "1"                     },
4594   { "mm_mirror_fixed_3",                        "RocksMM.png"           },
4595   { "mm_mirror_fixed_3.xpos",                   "6"                     },
4596   { "mm_mirror_fixed_3.ypos",                   "6"                     },
4597   { "mm_mirror_fixed_3.frames",                 "1"                     },
4598   { "mm_mirror_fixed_4",                        "RocksMM.png"           },
4599   { "mm_mirror_fixed_4.xpos",                   "7"                     },
4600   { "mm_mirror_fixed_4.ypos",                   "6"                     },
4601   { "mm_mirror_fixed_4.frames",                 "1"                     },
4602
4603   { "mm_steel_grid_fixed_1",                    "RocksMM.png"           },
4604   { "mm_steel_grid_fixed_1.xpos",               "0"                     },
4605   { "mm_steel_grid_fixed_1.ypos",               "1"                     },
4606   { "mm_steel_grid_fixed_1.frames",             "1"                     },
4607   { "mm_steel_grid_fixed_2",                    "RocksMM.png"           },
4608   { "mm_steel_grid_fixed_2.xpos",               "1"                     },
4609   { "mm_steel_grid_fixed_2.ypos",               "1"                     },
4610   { "mm_steel_grid_fixed_2.frames",             "1"                     },
4611   { "mm_steel_grid_fixed_3",                    "RocksMM.png"           },
4612   { "mm_steel_grid_fixed_3.xpos",               "2"                     },
4613   { "mm_steel_grid_fixed_3.ypos",               "1"                     },
4614   { "mm_steel_grid_fixed_3.frames",             "1"                     },
4615   { "mm_steel_grid_fixed_4",                    "RocksMM.png"           },
4616   { "mm_steel_grid_fixed_4.xpos",               "3"                     },
4617   { "mm_steel_grid_fixed_4.ypos",               "1"                     },
4618   { "mm_steel_grid_fixed_4.frames",             "1"                     },
4619
4620   { "mm_wooden_grid_fixed_1",                   "RocksMM.png"           },
4621   { "mm_wooden_grid_fixed_1.xpos",              "12"                    },
4622   { "mm_wooden_grid_fixed_1.ypos",              "6"                     },
4623   { "mm_wooden_grid_fixed_1.frames",            "1"                     },
4624   { "mm_wooden_grid_fixed_2",                   "RocksMM.png"           },
4625   { "mm_wooden_grid_fixed_2.xpos",              "13"                    },
4626   { "mm_wooden_grid_fixed_2.ypos",              "6"                     },
4627   { "mm_wooden_grid_fixed_2.frames",            "1"                     },
4628   { "mm_wooden_grid_fixed_3",                   "RocksMM.png"           },
4629   { "mm_wooden_grid_fixed_3.xpos",              "14"                    },
4630   { "mm_wooden_grid_fixed_3.ypos",              "6"                     },
4631   { "mm_wooden_grid_fixed_3.frames",            "1"                     },
4632   { "mm_wooden_grid_fixed_4",                   "RocksMM.png"           },
4633   { "mm_wooden_grid_fixed_4.xpos",              "15"                    },
4634   { "mm_wooden_grid_fixed_4.ypos",              "6"                     },
4635   { "mm_wooden_grid_fixed_4.frames",            "1"                     },
4636
4637   { "mm_polarizer_1",                           "RocksMM.png"           },
4638   { "mm_polarizer_1.xpos",                      "0"                     },
4639   { "mm_polarizer_1.ypos",                      "5"                     },
4640   { "mm_polarizer_1.frames",                    "1"                     },
4641   { "mm_polarizer_2",                           "RocksMM.png"           },
4642   { "mm_polarizer_2.xpos",                      "1"                     },
4643   { "mm_polarizer_2.ypos",                      "5"                     },
4644   { "mm_polarizer_2.frames",                    "1"                     },
4645   { "mm_polarizer_3",                           "RocksMM.png"           },
4646   { "mm_polarizer_3.xpos",                      "2"                     },
4647   { "mm_polarizer_3.ypos",                      "5"                     },
4648   { "mm_polarizer_3.frames",                    "1"                     },
4649   { "mm_polarizer_4",                           "RocksMM.png"           },
4650   { "mm_polarizer_4.xpos",                      "3"                     },
4651   { "mm_polarizer_4.ypos",                      "5"                     },
4652   { "mm_polarizer_4.frames",                    "1"                     },
4653   { "mm_polarizer_5",                           "RocksMM.png"           },
4654   { "mm_polarizer_5.xpos",                      "4"                     },
4655   { "mm_polarizer_5.ypos",                      "5"                     },
4656   { "mm_polarizer_5.frames",                    "1"                     },
4657   { "mm_polarizer_6",                           "RocksMM.png"           },
4658   { "mm_polarizer_6.xpos",                      "5"                     },
4659   { "mm_polarizer_6.ypos",                      "5"                     },
4660   { "mm_polarizer_6.frames",                    "1"                     },
4661   { "mm_polarizer_7",                           "RocksMM.png"           },
4662   { "mm_polarizer_7.xpos",                      "6"                     },
4663   { "mm_polarizer_7.ypos",                      "5"                     },
4664   { "mm_polarizer_7.frames",                    "1"                     },
4665   { "mm_polarizer_8",                           "RocksMM.png"           },
4666   { "mm_polarizer_8.xpos",                      "7"                     },
4667   { "mm_polarizer_8.ypos",                      "5"                     },
4668   { "mm_polarizer_8.frames",                    "1"                     },
4669   { "mm_polarizer_9",                           "RocksMM.png"           },
4670   { "mm_polarizer_9.xpos",                      "8"                     },
4671   { "mm_polarizer_9.ypos",                      "5"                     },
4672   { "mm_polarizer_9.frames",                    "1"                     },
4673   { "mm_polarizer_10",                          "RocksMM.png"           },
4674   { "mm_polarizer_10.xpos",                     "9"                     },
4675   { "mm_polarizer_10.ypos",                     "5"                     },
4676   { "mm_polarizer_10.frames",                   "1"                     },
4677   { "mm_polarizer_11",                          "RocksMM.png"           },
4678   { "mm_polarizer_11.xpos",                     "10"                    },
4679   { "mm_polarizer_11.ypos",                     "5"                     },
4680   { "mm_polarizer_11.frames",                   "1"                     },
4681   { "mm_polarizer_12",                          "RocksMM.png"           },
4682   { "mm_polarizer_12.xpos",                     "11"                    },
4683   { "mm_polarizer_12.ypos",                     "5"                     },
4684   { "mm_polarizer_12.frames",                   "1"                     },
4685   { "mm_polarizer_13",                          "RocksMM.png"           },
4686   { "mm_polarizer_13.xpos",                     "12"                    },
4687   { "mm_polarizer_13.ypos",                     "5"                     },
4688   { "mm_polarizer_13.frames",                   "1"                     },
4689   { "mm_polarizer_14",                          "RocksMM.png"           },
4690   { "mm_polarizer_14.xpos",                     "13"                    },
4691   { "mm_polarizer_14.ypos",                     "5"                     },
4692   { "mm_polarizer_14.frames",                   "1"                     },
4693   { "mm_polarizer_15",                          "RocksMM.png"           },
4694   { "mm_polarizer_15.xpos",                     "14"                    },
4695   { "mm_polarizer_15.ypos",                     "5"                     },
4696   { "mm_polarizer_15.frames",                   "1"                     },
4697   { "mm_polarizer_16",                          "RocksMM.png"           },
4698   { "mm_polarizer_16.xpos",                     "15"                    },
4699   { "mm_polarizer_16.ypos",                     "5"                     },
4700   { "mm_polarizer_16.frames",                   "1"                     },
4701
4702   { "mm_polarizer_cross_1",                     "RocksMM.png"           },
4703   { "mm_polarizer_cross_1.xpos",                "0"                     },
4704   { "mm_polarizer_cross_1.ypos",                "6"                     },
4705   { "mm_polarizer_cross_1.frames",              "1"                     },
4706   { "mm_polarizer_cross_2",                     "RocksMM.png"           },
4707   { "mm_polarizer_cross_2.xpos",                "1"                     },
4708   { "mm_polarizer_cross_2.ypos",                "6"                     },
4709   { "mm_polarizer_cross_2.frames",              "1"                     },
4710   { "mm_polarizer_cross_3",                     "RocksMM.png"           },
4711   { "mm_polarizer_cross_3.xpos",                "2"                     },
4712   { "mm_polarizer_cross_3.ypos",                "6"                     },
4713   { "mm_polarizer_cross_3.frames",              "1"                     },
4714   { "mm_polarizer_cross_4",                     "RocksMM.png"           },
4715   { "mm_polarizer_cross_4.xpos",                "3"                     },
4716   { "mm_polarizer_cross_4.ypos",                "6"                     },
4717   { "mm_polarizer_cross_4.frames",              "1"                     },
4718
4719   { "mm_teleporter_1",                          "RocksMM.png"           },
4720   { "mm_teleporter_1.xpos",                     "0"                     },
4721   { "mm_teleporter_1.ypos",                     "3"                     },
4722   { "mm_teleporter_1.frames",                   "1"                     },
4723   { "mm_teleporter_2",                          "RocksMM.png"           },
4724   { "mm_teleporter_2.xpos",                     "1"                     },
4725   { "mm_teleporter_2.ypos",                     "3"                     },
4726   { "mm_teleporter_2.frames",                   "1"                     },
4727   { "mm_teleporter_3",                          "RocksMM.png"           },
4728   { "mm_teleporter_3.xpos",                     "2"                     },
4729   { "mm_teleporter_3.ypos",                     "3"                     },
4730   { "mm_teleporter_3.frames",                   "1"                     },
4731   { "mm_teleporter_4",                          "RocksMM.png"           },
4732   { "mm_teleporter_4.xpos",                     "3"                     },
4733   { "mm_teleporter_4.ypos",                     "3"                     },
4734   { "mm_teleporter_4.frames",                   "1"                     },
4735   { "mm_teleporter_5",                          "RocksMM.png"           },
4736   { "mm_teleporter_5.xpos",                     "4"                     },
4737   { "mm_teleporter_5.ypos",                     "3"                     },
4738   { "mm_teleporter_5.frames",                   "1"                     },
4739   { "mm_teleporter_6",                          "RocksMM.png"           },
4740   { "mm_teleporter_6.xpos",                     "5"                     },
4741   { "mm_teleporter_6.ypos",                     "3"                     },
4742   { "mm_teleporter_6.frames",                   "1"                     },
4743   { "mm_teleporter_7",                          "RocksMM.png"           },
4744   { "mm_teleporter_7.xpos",                     "6"                     },
4745   { "mm_teleporter_7.ypos",                     "3"                     },
4746   { "mm_teleporter_7.frames",                   "1"                     },
4747   { "mm_teleporter_8",                          "RocksMM.png"           },
4748   { "mm_teleporter_8.xpos",                     "7"                     },
4749   { "mm_teleporter_8.ypos",                     "3"                     },
4750   { "mm_teleporter_8.frames",                   "1"                     },
4751   { "mm_teleporter_9",                          "RocksMM.png"           },
4752   { "mm_teleporter_9.xpos",                     "8"                     },
4753   { "mm_teleporter_9.ypos",                     "3"                     },
4754   { "mm_teleporter_9.frames",                   "1"                     },
4755   { "mm_teleporter_10",                         "RocksMM.png"           },
4756   { "mm_teleporter_10.xpos",                    "9"                     },
4757   { "mm_teleporter_10.ypos",                    "3"                     },
4758   { "mm_teleporter_10.frames",                  "1"                     },
4759   { "mm_teleporter_11",                         "RocksMM.png"           },
4760   { "mm_teleporter_11.xpos",                    "10"                    },
4761   { "mm_teleporter_11.ypos",                    "3"                     },
4762   { "mm_teleporter_11.frames",                  "1"                     },
4763   { "mm_teleporter_12",                         "RocksMM.png"           },
4764   { "mm_teleporter_12.xpos",                    "11"                    },
4765   { "mm_teleporter_12.ypos",                    "3"                     },
4766   { "mm_teleporter_12.frames",                  "1"                     },
4767   { "mm_teleporter_13",                         "RocksMM.png"           },
4768   { "mm_teleporter_13.xpos",                    "12"                    },
4769   { "mm_teleporter_13.ypos",                    "3"                     },
4770   { "mm_teleporter_13.frames",                  "1"                     },
4771   { "mm_teleporter_14",                         "RocksMM.png"           },
4772   { "mm_teleporter_14.xpos",                    "13"                    },
4773   { "mm_teleporter_14.ypos",                    "3"                     },
4774   { "mm_teleporter_14.frames",                  "1"                     },
4775   { "mm_teleporter_15",                         "RocksMM.png"           },
4776   { "mm_teleporter_15.xpos",                    "14"                    },
4777   { "mm_teleporter_15.ypos",                    "3"                     },
4778   { "mm_teleporter_15.frames",                  "1"                     },
4779   { "mm_teleporter_16",                         "RocksMM.png"           },
4780   { "mm_teleporter_16.xpos",                    "15"                    },
4781   { "mm_teleporter_16.ypos",                    "3"                     },
4782   { "mm_teleporter_16.frames",                  "1"                     },
4783
4784   { "mm_teleporter_red_1",                      "RocksDF.png"           },
4785   { "mm_teleporter_red_1.xpos",                 "0"                     },
4786   { "mm_teleporter_red_1.ypos",                 "4"                     },
4787   { "mm_teleporter_red_1.frames",               "1"                     },
4788   { "mm_teleporter_red_2",                      "RocksDF.png"           },
4789   { "mm_teleporter_red_2.xpos",                 "1"                     },
4790   { "mm_teleporter_red_2.ypos",                 "4"                     },
4791   { "mm_teleporter_red_2.frames",               "1"                     },
4792   { "mm_teleporter_red_3",                      "RocksDF.png"           },
4793   { "mm_teleporter_red_3.xpos",                 "2"                     },
4794   { "mm_teleporter_red_3.ypos",                 "4"                     },
4795   { "mm_teleporter_red_3.frames",               "1"                     },
4796   { "mm_teleporter_red_4",                      "RocksDF.png"           },
4797   { "mm_teleporter_red_4.xpos",                 "3"                     },
4798   { "mm_teleporter_red_4.ypos",                 "4"                     },
4799   { "mm_teleporter_red_4.frames",               "1"                     },
4800   { "mm_teleporter_red_5",                      "RocksDF.png"           },
4801   { "mm_teleporter_red_5.xpos",                 "4"                     },
4802   { "mm_teleporter_red_5.ypos",                 "4"                     },
4803   { "mm_teleporter_red_5.frames",               "1"                     },
4804   { "mm_teleporter_red_6",                      "RocksDF.png"           },
4805   { "mm_teleporter_red_6.xpos",                 "5"                     },
4806   { "mm_teleporter_red_6.ypos",                 "4"                     },
4807   { "mm_teleporter_red_6.frames",               "1"                     },
4808   { "mm_teleporter_red_7",                      "RocksDF.png"           },
4809   { "mm_teleporter_red_7.xpos",                 "6"                     },
4810   { "mm_teleporter_red_7.ypos",                 "4"                     },
4811   { "mm_teleporter_red_7.frames",               "1"                     },
4812   { "mm_teleporter_red_8",                      "RocksDF.png"           },
4813   { "mm_teleporter_red_8.xpos",                 "7"                     },
4814   { "mm_teleporter_red_8.ypos",                 "4"                     },
4815   { "mm_teleporter_red_8.frames",               "1"                     },
4816   { "mm_teleporter_red_9",                      "RocksDF.png"           },
4817   { "mm_teleporter_red_9.xpos",                 "8"                     },
4818   { "mm_teleporter_red_9.ypos",                 "4"                     },
4819   { "mm_teleporter_red_9.frames",               "1"                     },
4820   { "mm_teleporter_red_10",                     "RocksDF.png"           },
4821   { "mm_teleporter_red_10.xpos",                "9"                     },
4822   { "mm_teleporter_red_10.ypos",                "4"                     },
4823   { "mm_teleporter_red_10.frames",              "1"                     },
4824   { "mm_teleporter_red_11",                     "RocksDF.png"           },
4825   { "mm_teleporter_red_11.xpos",                "10"                    },
4826   { "mm_teleporter_red_11.ypos",                "4"                     },
4827   { "mm_teleporter_red_11.frames",              "1"                     },
4828   { "mm_teleporter_red_12",                     "RocksDF.png"           },
4829   { "mm_teleporter_red_12.xpos",                "11"                    },
4830   { "mm_teleporter_red_12.ypos",                "4"                     },
4831   { "mm_teleporter_red_12.frames",              "1"                     },
4832   { "mm_teleporter_red_13",                     "RocksDF.png"           },
4833   { "mm_teleporter_red_13.xpos",                "12"                    },
4834   { "mm_teleporter_red_13.ypos",                "4"                     },
4835   { "mm_teleporter_red_13.frames",              "1"                     },
4836   { "mm_teleporter_red_14",                     "RocksDF.png"           },
4837   { "mm_teleporter_red_14.xpos",                "13"                    },
4838   { "mm_teleporter_red_14.ypos",                "4"                     },
4839   { "mm_teleporter_red_14.frames",              "1"                     },
4840   { "mm_teleporter_red_15",                     "RocksDF.png"           },
4841   { "mm_teleporter_red_15.xpos",                "14"                    },
4842   { "mm_teleporter_red_15.ypos",                "4"                     },
4843   { "mm_teleporter_red_15.frames",              "1"                     },
4844   { "mm_teleporter_red_16",                     "RocksDF.png"           },
4845   { "mm_teleporter_red_16.xpos",                "15"                    },
4846   { "mm_teleporter_red_16.ypos",                "4"                     },
4847   { "mm_teleporter_red_16.frames",              "1"                     },
4848
4849   { "mm_teleporter_yellow_1",                   "RocksDF.png"           },
4850   { "mm_teleporter_yellow_1.xpos",              "0"                     },
4851   { "mm_teleporter_yellow_1.ypos",              "5"                     },
4852   { "mm_teleporter_yellow_1.frames",            "1"                     },
4853   { "mm_teleporter_yellow_2",                   "RocksDF.png"           },
4854   { "mm_teleporter_yellow_2.xpos",              "1"                     },
4855   { "mm_teleporter_yellow_2.ypos",              "5"                     },
4856   { "mm_teleporter_yellow_2.frames",            "1"                     },
4857   { "mm_teleporter_yellow_3",                   "RocksDF.png"           },
4858   { "mm_teleporter_yellow_3.xpos",              "2"                     },
4859   { "mm_teleporter_yellow_3.ypos",              "5"                     },
4860   { "mm_teleporter_yellow_3.frames",            "1"                     },
4861   { "mm_teleporter_yellow_4",                   "RocksDF.png"           },
4862   { "mm_teleporter_yellow_4.xpos",              "3"                     },
4863   { "mm_teleporter_yellow_4.ypos",              "5"                     },
4864   { "mm_teleporter_yellow_4.frames",            "1"                     },
4865   { "mm_teleporter_yellow_5",                   "RocksDF.png"           },
4866   { "mm_teleporter_yellow_5.xpos",              "4"                     },
4867   { "mm_teleporter_yellow_5.ypos",              "5"                     },
4868   { "mm_teleporter_yellow_5.frames",            "1"                     },
4869   { "mm_teleporter_yellow_6",                   "RocksDF.png"           },
4870   { "mm_teleporter_yellow_6.xpos",              "5"                     },
4871   { "mm_teleporter_yellow_6.ypos",              "5"                     },
4872   { "mm_teleporter_yellow_6.frames",            "1"                     },
4873   { "mm_teleporter_yellow_7",                   "RocksDF.png"           },
4874   { "mm_teleporter_yellow_7.xpos",              "6"                     },
4875   { "mm_teleporter_yellow_7.ypos",              "5"                     },
4876   { "mm_teleporter_yellow_7.frames",            "1"                     },
4877   { "mm_teleporter_yellow_8",                   "RocksDF.png"           },
4878   { "mm_teleporter_yellow_8.xpos",              "7"                     },
4879   { "mm_teleporter_yellow_8.ypos",              "5"                     },
4880   { "mm_teleporter_yellow_8.frames",            "1"                     },
4881   { "mm_teleporter_yellow_9",                   "RocksDF.png"           },
4882   { "mm_teleporter_yellow_9.xpos",              "8"                     },
4883   { "mm_teleporter_yellow_9.ypos",              "5"                     },
4884   { "mm_teleporter_yellow_9.frames",            "1"                     },
4885   { "mm_teleporter_yellow_10",                  "RocksDF.png"           },
4886   { "mm_teleporter_yellow_10.xpos",             "9"                     },
4887   { "mm_teleporter_yellow_10.ypos",             "5"                     },
4888   { "mm_teleporter_yellow_10.frames",           "1"                     },
4889   { "mm_teleporter_yellow_11",                  "RocksDF.png"           },
4890   { "mm_teleporter_yellow_11.xpos",             "10"                    },
4891   { "mm_teleporter_yellow_11.ypos",             "5"                     },
4892   { "mm_teleporter_yellow_11.frames",           "1"                     },
4893   { "mm_teleporter_yellow_12",                  "RocksDF.png"           },
4894   { "mm_teleporter_yellow_12.xpos",             "11"                    },
4895   { "mm_teleporter_yellow_12.ypos",             "5"                     },
4896   { "mm_teleporter_yellow_12.frames",           "1"                     },
4897   { "mm_teleporter_yellow_13",                  "RocksDF.png"           },
4898   { "mm_teleporter_yellow_13.xpos",             "12"                    },
4899   { "mm_teleporter_yellow_13.ypos",             "5"                     },
4900   { "mm_teleporter_yellow_13.frames",           "1"                     },
4901   { "mm_teleporter_yellow_14",                  "RocksDF.png"           },
4902   { "mm_teleporter_yellow_14.xpos",             "13"                    },
4903   { "mm_teleporter_yellow_14.ypos",             "5"                     },
4904   { "mm_teleporter_yellow_14.frames",           "1"                     },
4905   { "mm_teleporter_yellow_15",                  "RocksDF.png"           },
4906   { "mm_teleporter_yellow_15.xpos",             "14"                    },
4907   { "mm_teleporter_yellow_15.ypos",             "5"                     },
4908   { "mm_teleporter_yellow_15.frames",           "1"                     },
4909   { "mm_teleporter_yellow_16",                  "RocksDF.png"           },
4910   { "mm_teleporter_yellow_16.xpos",             "15"                    },
4911   { "mm_teleporter_yellow_16.ypos",             "5"                     },
4912   { "mm_teleporter_yellow_16.frames",           "1"                     },
4913
4914   { "mm_teleporter_green_1",                    "RocksDF.png"           },
4915   { "mm_teleporter_green_1.xpos",               "0"                     },
4916   { "mm_teleporter_green_1.ypos",               "6"                     },
4917   { "mm_teleporter_green_1.frames",             "1"                     },
4918   { "mm_teleporter_green_2",                    "RocksDF.png"           },
4919   { "mm_teleporter_green_2.xpos",               "1"                     },
4920   { "mm_teleporter_green_2.ypos",               "6"                     },
4921   { "mm_teleporter_green_2.frames",             "1"                     },
4922   { "mm_teleporter_green_3",                    "RocksDF.png"           },
4923   { "mm_teleporter_green_3.xpos",               "2"                     },
4924   { "mm_teleporter_green_3.ypos",               "6"                     },
4925   { "mm_teleporter_green_3.frames",             "1"                     },
4926   { "mm_teleporter_green_4",                    "RocksDF.png"           },
4927   { "mm_teleporter_green_4.xpos",               "3"                     },
4928   { "mm_teleporter_green_4.ypos",               "6"                     },
4929   { "mm_teleporter_green_4.frames",             "1"                     },
4930   { "mm_teleporter_green_5",                    "RocksDF.png"           },
4931   { "mm_teleporter_green_5.xpos",               "4"                     },
4932   { "mm_teleporter_green_5.ypos",               "6"                     },
4933   { "mm_teleporter_green_5.frames",             "1"                     },
4934   { "mm_teleporter_green_6",                    "RocksDF.png"           },
4935   { "mm_teleporter_green_6.xpos",               "5"                     },
4936   { "mm_teleporter_green_6.ypos",               "6"                     },
4937   { "mm_teleporter_green_6.frames",             "1"                     },
4938   { "mm_teleporter_green_7",                    "RocksDF.png"           },
4939   { "mm_teleporter_green_7.xpos",               "6"                     },
4940   { "mm_teleporter_green_7.ypos",               "6"                     },
4941   { "mm_teleporter_green_7.frames",             "1"                     },
4942   { "mm_teleporter_green_8",                    "RocksDF.png"           },
4943   { "mm_teleporter_green_8.xpos",               "7"                     },
4944   { "mm_teleporter_green_8.ypos",               "6"                     },
4945   { "mm_teleporter_green_8.frames",             "1"                     },
4946   { "mm_teleporter_green_9",                    "RocksDF.png"           },
4947   { "mm_teleporter_green_9.xpos",               "8"                     },
4948   { "mm_teleporter_green_9.ypos",               "6"                     },
4949   { "mm_teleporter_green_9.frames",             "1"                     },
4950   { "mm_teleporter_green_10",                   "RocksDF.png"           },
4951   { "mm_teleporter_green_10.xpos",              "9"                     },
4952   { "mm_teleporter_green_10.ypos",              "6"                     },
4953   { "mm_teleporter_green_10.frames",            "1"                     },
4954   { "mm_teleporter_green_11",                   "RocksDF.png"           },
4955   { "mm_teleporter_green_11.xpos",              "10"                    },
4956   { "mm_teleporter_green_11.ypos",              "6"                     },
4957   { "mm_teleporter_green_11.frames",            "1"                     },
4958   { "mm_teleporter_green_12",                   "RocksDF.png"           },
4959   { "mm_teleporter_green_12.xpos",              "11"                    },
4960   { "mm_teleporter_green_12.ypos",              "6"                     },
4961   { "mm_teleporter_green_12.frames",            "1"                     },
4962   { "mm_teleporter_green_13",                   "RocksDF.png"           },
4963   { "mm_teleporter_green_13.xpos",              "12"                    },
4964   { "mm_teleporter_green_13.ypos",              "6"                     },
4965   { "mm_teleporter_green_13.frames",            "1"                     },
4966   { "mm_teleporter_green_14",                   "RocksDF.png"           },
4967   { "mm_teleporter_green_14.xpos",              "13"                    },
4968   { "mm_teleporter_green_14.ypos",              "6"                     },
4969   { "mm_teleporter_green_14.frames",            "1"                     },
4970   { "mm_teleporter_green_15",                   "RocksDF.png"           },
4971   { "mm_teleporter_green_15.xpos",              "14"                    },
4972   { "mm_teleporter_green_15.ypos",              "6"                     },
4973   { "mm_teleporter_green_15.frames",            "1"                     },
4974   { "mm_teleporter_green_16",                   "RocksDF.png"           },
4975   { "mm_teleporter_green_16.xpos",              "15"                    },
4976   { "mm_teleporter_green_16.ypos",              "6"                     },
4977   { "mm_teleporter_green_16.frames",            "1"                     },
4978
4979   { "mm_teleporter_blue_1",                     "RocksDF.png"           },
4980   { "mm_teleporter_blue_1.xpos",                "0"                     },
4981   { "mm_teleporter_blue_1.ypos",                "7"                     },
4982   { "mm_teleporter_blue_1.frames",              "1"                     },
4983   { "mm_teleporter_blue_2",                     "RocksDF.png"           },
4984   { "mm_teleporter_blue_2.xpos",                "1"                     },
4985   { "mm_teleporter_blue_2.ypos",                "7"                     },
4986   { "mm_teleporter_blue_2.frames",              "1"                     },
4987   { "mm_teleporter_blue_3",                     "RocksDF.png"           },
4988   { "mm_teleporter_blue_3.xpos",                "2"                     },
4989   { "mm_teleporter_blue_3.ypos",                "7"                     },
4990   { "mm_teleporter_blue_3.frames",              "1"                     },
4991   { "mm_teleporter_blue_4",                     "RocksDF.png"           },
4992   { "mm_teleporter_blue_4.xpos",                "3"                     },
4993   { "mm_teleporter_blue_4.ypos",                "7"                     },
4994   { "mm_teleporter_blue_4.frames",              "1"                     },
4995   { "mm_teleporter_blue_5",                     "RocksDF.png"           },
4996   { "mm_teleporter_blue_5.xpos",                "4"                     },
4997   { "mm_teleporter_blue_5.ypos",                "7"                     },
4998   { "mm_teleporter_blue_5.frames",              "1"                     },
4999   { "mm_teleporter_blue_6",                     "RocksDF.png"           },
5000   { "mm_teleporter_blue_6.xpos",                "5"                     },
5001   { "mm_teleporter_blue_6.ypos",                "7"                     },
5002   { "mm_teleporter_blue_6.frames",              "1"                     },
5003   { "mm_teleporter_blue_7",                     "RocksDF.png"           },
5004   { "mm_teleporter_blue_7.xpos",                "6"                     },
5005   { "mm_teleporter_blue_7.ypos",                "7"                     },
5006   { "mm_teleporter_blue_7.frames",              "1"                     },
5007   { "mm_teleporter_blue_8",                     "RocksDF.png"           },
5008   { "mm_teleporter_blue_8.xpos",                "7"                     },
5009   { "mm_teleporter_blue_8.ypos",                "7"                     },
5010   { "mm_teleporter_blue_8.frames",              "1"                     },
5011   { "mm_teleporter_blue_9",                     "RocksDF.png"           },
5012   { "mm_teleporter_blue_9.xpos",                "8"                     },
5013   { "mm_teleporter_blue_9.ypos",                "7"                     },
5014   { "mm_teleporter_blue_9.frames",              "1"                     },
5015   { "mm_teleporter_blue_10",                    "RocksDF.png"           },
5016   { "mm_teleporter_blue_10.xpos",               "9"                     },
5017   { "mm_teleporter_blue_10.ypos",               "7"                     },
5018   { "mm_teleporter_blue_10.frames",             "1"                     },
5019   { "mm_teleporter_blue_11",                    "RocksDF.png"           },
5020   { "mm_teleporter_blue_11.xpos",               "10"                    },
5021   { "mm_teleporter_blue_11.ypos",               "7"                     },
5022   { "mm_teleporter_blue_11.frames",             "1"                     },
5023   { "mm_teleporter_blue_12",                    "RocksDF.png"           },
5024   { "mm_teleporter_blue_12.xpos",               "11"                    },
5025   { "mm_teleporter_blue_12.ypos",               "7"                     },
5026   { "mm_teleporter_blue_12.frames",             "1"                     },
5027   { "mm_teleporter_blue_13",                    "RocksDF.png"           },
5028   { "mm_teleporter_blue_13.xpos",               "12"                    },
5029   { "mm_teleporter_blue_13.ypos",               "7"                     },
5030   { "mm_teleporter_blue_13.frames",             "1"                     },
5031   { "mm_teleporter_blue_14",                    "RocksDF.png"           },
5032   { "mm_teleporter_blue_14.xpos",               "13"                    },
5033   { "mm_teleporter_blue_14.ypos",               "7"                     },
5034   { "mm_teleporter_blue_14.frames",             "1"                     },
5035   { "mm_teleporter_blue_15",                    "RocksDF.png"           },
5036   { "mm_teleporter_blue_15.xpos",               "14"                    },
5037   { "mm_teleporter_blue_15.ypos",               "7"                     },
5038   { "mm_teleporter_blue_15.frames",             "1"                     },
5039   { "mm_teleporter_blue_16",                    "RocksDF.png"           },
5040   { "mm_teleporter_blue_16.xpos",               "15"                    },
5041   { "mm_teleporter_blue_16.ypos",               "7"                     },
5042   { "mm_teleporter_blue_16.frames",             "1"                     },
5043
5044   { "mm_kettle",                                "RocksMM.png"           },
5045   { "mm_kettle.xpos",                           "12"                    },
5046   { "mm_kettle.ypos",                           "1"                     },
5047   { "mm_kettle.frames",                         "1"                     },
5048   { "mm_kettle.exploding",                      "RocksMM.png"           },
5049   { "mm_kettle.exploding.xpos",                 "13"                    },
5050   { "mm_kettle.exploding.ypos",                 "1"                     },
5051   { "mm_kettle.exploding.frames",               "3"                     },
5052   { "mm_kettle.exploding.delay",                "4"                     },
5053   { "mm_kettle.exploding.anim_mode",            "linear"                },
5054
5055   { "mm_bomb",                                  "RocksMM.png"           },
5056   { "mm_bomb.xpos",                             "5"                     },
5057   { "mm_bomb.ypos",                             "2"                     },
5058   { "mm_bomb.frames",                           "1"                     },
5059
5060   { "mm_prism",                                 "RocksMM.png"           },
5061   { "mm_prism.xpos",                            "0"                     },
5062   { "mm_prism.ypos",                            "2"                     },
5063   { "mm_prism.frames",                          "1"                     },
5064
5065   { "mm_fuse",                                  "RocksMM.png"           },
5066   { "mm_fuse.xpos",                             "7"                     },
5067   { "mm_fuse.ypos",                             "2"                     },
5068   { "mm_fuse.frames",                           "1"                     },
5069   { "mm_fuse.active",                           "RocksMM.png"           },
5070   { "mm_fuse.active.xpos",                      "6"                     },
5071   { "mm_fuse.active.ypos",                      "2"                     },
5072   { "mm_fuse.active.frames",                    "1"                     },
5073
5074   { "mm_steel_lock",                            "RocksMM.png"           },
5075   { "mm_steel_lock.xpos",                       "8"                     },
5076   { "mm_steel_lock.ypos",                       "2"                     },
5077   { "mm_steel_lock.frames",                     "1"                     },
5078
5079   { "mm_wooden_lock",                           "RocksMM.png"           },
5080   { "mm_wooden_lock.xpos",                      "9"                     },
5081   { "mm_wooden_lock.ypos",                      "6"                     },
5082   { "mm_wooden_lock.frames",                    "1"                     },
5083
5084   { "mm_steel_block",                           "RocksMM.png"           },
5085   { "mm_steel_block.xpos",                      "8"                     },
5086   { "mm_steel_block.ypos",                      "6"                     },
5087   { "mm_steel_block.frames",                    "1"                     },
5088
5089   { "mm_wooden_block",                          "RocksMM.png"           },
5090   { "mm_wooden_block.xpos",                     "4"                     },
5091   { "mm_wooden_block.ypos",                     "2"                     },
5092   { "mm_wooden_block.frames",                   "1"                     },
5093
5094   { "mm_key",                                   "RocksMM.png"           },
5095   { "mm_key.xpos",                              "9"                     },
5096   { "mm_key.ypos",                              "2"                     },
5097   { "mm_key.frames",                            "1"                     },
5098
5099   { "mm_lightbulb",                             "RocksMM.png"           },
5100   { "mm_lightbulb.xpos",                        "10"                    },
5101   { "mm_lightbulb.ypos",                        "2"                     },
5102   { "mm_lightbulb.frames",                      "1"                     },
5103   { "mm_lightbulb.active",                      "RocksMM.png"           },
5104   { "mm_lightbulb.active.xpos",                 "11"                    },
5105   { "mm_lightbulb.active.ypos",                 "2"                     },
5106   { "mm_lightbulb.active.frames",               "1"                     },
5107
5108   { "mm_lightball",                             "RocksMM.png"           },
5109   { "mm_lightball.xpos",                        "12"                    },
5110   { "mm_lightball.ypos",                        "2"                     },
5111   { "mm_lightball.frames",                      "3"                     },
5112   { "mm_lightball.delay",                       "1000000"               },
5113   { "mm_lightball.anim_mode",                   "random"                },
5114   { "mm_lightball_red",                         "RocksMM.png"           },
5115   { "mm_lightball_red.xpos",                    "12"                    },
5116   { "mm_lightball_red.ypos",                    "2"                     },
5117   { "mm_lightball_red.frames",                  "1"                     },
5118   { "mm_lightball_blue",                        "RocksMM.png"           },
5119   { "mm_lightball_blue.xpos",                   "13"                    },
5120   { "mm_lightball_blue.ypos",                   "2"                     },
5121   { "mm_lightball_blue.frames",                 "1"                     },
5122   { "mm_lightball_yellow",                      "RocksMM.png"           },
5123   { "mm_lightball_yellow.xpos",                 "14"                    },
5124   { "mm_lightball_yellow.ypos",                 "2"                     },
5125   { "mm_lightball_yellow.frames",               "1"                     },
5126
5127   { "mm_gray_ball",                             "RocksMM.png"           },
5128   { "mm_gray_ball.xpos",                        "15"                    },
5129   { "mm_gray_ball.ypos",                        "2"                     },
5130   { "mm_gray_ball.frames",                      "1"                     },
5131
5132   { "mm_fuel_full",                             "RocksMM.png"           },
5133   { "mm_fuel_full.xpos",                        "10"                    },
5134   { "mm_fuel_full.ypos",                        "6"                     },
5135   { "mm_fuel_full.frames",                      "1"                     },
5136   { "mm_fuel_empty",                            "RocksMM.png"           },
5137   { "mm_fuel_empty.xpos",                       "11"                    },
5138   { "mm_fuel_empty.ypos",                       "6"                     },
5139   { "mm_fuel_empty.frames",                     "1"                     },
5140
5141   { "mm_steel_wall",                            "RocksMM.png"           },
5142   { "mm_steel_wall.xpos",                       "0"                     },
5143   { "mm_steel_wall.ypos",                       "7"                     },
5144   { "mm_steel_wall.frames",                     "1"                     },
5145
5146   { "mm_wooden_wall",                           "RocksMM.png"           },
5147   { "mm_wooden_wall.xpos",                      "1"                     },
5148   { "mm_wooden_wall.ypos",                      "7"                     },
5149   { "mm_wooden_wall.frames",                    "1"                     },
5150
5151   { "mm_ice_wall",                              "RocksMM.png"           },
5152   { "mm_ice_wall.xpos",                         "2"                     },
5153   { "mm_ice_wall.ypos",                         "7"                     },
5154   { "mm_ice_wall.frames",                       "1"                     },
5155   { "mm_ice_wall.shrinking",                    "RocksMM.png"           },
5156   { "mm_ice_wall.shrinking.xpos",               "2"                     },
5157   { "mm_ice_wall.shrinking.ypos",               "7"                     },
5158   { "mm_ice_wall.shrinking.frames",             "5"                     },
5159   { "mm_ice_wall.shrinking.delay",              "8"                     },
5160   { "mm_ice_wall.shrinking.anim_mode",          "linear"                },
5161
5162   { "mm_amoeba_wall",                           "RocksMM.png"           },
5163   { "mm_amoeba_wall.xpos",                      "8"                     },
5164   { "mm_amoeba_wall.ypos",                      "7"                     },
5165   { "mm_amoeba_wall.frames",                    "1"                     },
5166   { "mm_amoeba_wall.growing",                   "RocksMM.png"           },
5167   { "mm_amoeba_wall.growing.xpos",              "8"                     },
5168   { "mm_amoeba_wall.growing.ypos",              "7"                     },
5169   { "mm_amoeba_wall.growing.frames",            "5"                     },
5170   { "mm_amoeba_wall.growing.delay",             "8"                     },
5171   { "mm_amoeba_wall.growing.anim_mode",         "linear,reverse"        },
5172
5173   { "mm_pacman",                                "RocksMM.png"           },
5174   { "mm_pacman.xpos",                           "0"                     },
5175   { "mm_pacman.ypos",                           "4"                     },
5176   { "mm_pacman.frames",                         "1"                     },
5177   { "mm_pacman.right",                          "RocksMM.png"           },
5178   { "mm_pacman.right.xpos",                     "0"                     },
5179   { "mm_pacman.right.ypos",                     "4"                     },
5180   { "mm_pacman.right.frames",                   "1"                     },
5181   { "mm_pacman.up",                             "RocksMM.png"           },
5182   { "mm_pacman.up.xpos",                        "1"                     },
5183   { "mm_pacman.up.ypos",                        "4"                     },
5184   { "mm_pacman.up.frames",                      "1"                     },
5185   { "mm_pacman.left",                           "RocksMM.png"           },
5186   { "mm_pacman.left.xpos",                      "2"                     },
5187   { "mm_pacman.left.ypos",                      "4"                     },
5188   { "mm_pacman.left.frames",                    "1"                     },
5189   { "mm_pacman.down",                           "RocksMM.png"           },
5190   { "mm_pacman.down.xpos",                      "3"                     },
5191   { "mm_pacman.down.ypos",                      "4"                     },
5192   { "mm_pacman.down.frames",                    "1"                     },
5193   { "mm_pacman.eating.right",                   "RocksMM.png"           },
5194   { "mm_pacman.eating.right.xpos",              "4"                     },
5195   { "mm_pacman.eating.right.ypos",              "4"                     },
5196   { "mm_pacman.eating.right.frames",            "1"                     },
5197   { "mm_pacman.eating.up",                      "RocksMM.png"           },
5198   { "mm_pacman.eating.up.xpos",                 "5"                     },
5199   { "mm_pacman.eating.up.ypos",                 "4"                     },
5200   { "mm_pacman.eating.up.frames",               "1"                     },
5201   { "mm_pacman.eating.left",                    "RocksMM.png"           },
5202   { "mm_pacman.eating.left.xpos",               "6"                     },
5203   { "mm_pacman.eating.left.ypos",               "4"                     },
5204   { "mm_pacman.eating.left.frames",             "1"                     },
5205   { "mm_pacman.eating.down",                    "RocksMM.png"           },
5206   { "mm_pacman.eating.down.xpos",               "7"                     },
5207   { "mm_pacman.eating.down.ypos",               "4"                     },
5208   { "mm_pacman.eating.down.frames",             "1"                     },
5209
5210   { "mm_mask_mcduffin.right",                   "RocksMM.png"           },
5211   { "mm_mask_mcduffin.right.xpos",              "8"                     },
5212   { "mm_mask_mcduffin.right.ypos",              "8"                     },
5213   { "mm_mask_mcduffin.right.frames",            "1"                     },
5214   { "mm_mask_mcduffin.up",                      "RocksMM.png"           },
5215   { "mm_mask_mcduffin.up.xpos",                 "9"                     },
5216   { "mm_mask_mcduffin.up.ypos",                 "8"                     },
5217   { "mm_mask_mcduffin.up.frames",               "1"                     },
5218   { "mm_mask_mcduffin.left",                    "RocksMM.png"           },
5219   { "mm_mask_mcduffin.left.xpos",               "10"                    },
5220   { "mm_mask_mcduffin.left.ypos",               "8"                     },
5221   { "mm_mask_mcduffin.left.frames",             "1"                     },
5222   { "mm_mask_mcduffin.down",                    "RocksMM.png"           },
5223   { "mm_mask_mcduffin.down.xpos",               "11"                    },
5224   { "mm_mask_mcduffin.down.ypos",               "8"                     },
5225   { "mm_mask_mcduffin.down.frames",             "1"                     },
5226
5227   { "mm_mask_grid_1",                           "RocksMM.png"           },
5228   { "mm_mask_grid_1.xpos",                      "4"                     },
5229   { "mm_mask_grid_1.ypos",                      "8"                     },
5230   { "mm_mask_grid_1.frames",                    "1"                     },
5231   { "mm_mask_grid_2",                           "RocksMM.png"           },
5232   { "mm_mask_grid_2.xpos",                      "5"                     },
5233   { "mm_mask_grid_2.ypos",                      "8"                     },
5234   { "mm_mask_grid_2.frames",                    "1"                     },
5235   { "mm_mask_grid_3",                           "RocksMM.png"           },
5236   { "mm_mask_grid_3.xpos",                      "6"                     },
5237   { "mm_mask_grid_3.ypos",                      "8"                     },
5238   { "mm_mask_grid_3.frames",                    "1"                     },
5239   { "mm_mask_grid_4",                           "RocksMM.png"           },
5240   { "mm_mask_grid_4.xpos",                      "7"                     },
5241   { "mm_mask_grid_4.ypos",                      "8"                     },
5242   { "mm_mask_grid_4.frames",                    "1"                     },
5243
5244   { "mm_mask_rectangle",                        "RocksMM.png"           },
5245   { "mm_mask_rectangle.xpos",                   "1"                     },
5246   { "mm_mask_rectangle.ypos",                   "8"                     },
5247   { "mm_mask_rectangle.frames",                 "1"                     },
5248
5249   { "mm_mask_circle",                           "RocksMM.png"           },
5250   { "mm_mask_circle.xpos",                      "0"                     },
5251   { "mm_mask_circle.ypos",                      "8"                     },
5252   { "mm_mask_circle.frames",                    "1"                     },
5253
5254   { "[mm_default].exploding",                   "RocksMM.png"           },
5255   { "[mm_default].exploding.xpos",              "8"                     },
5256   { "[mm_default].exploding.ypos",              "4"                     },
5257   { "[mm_default].exploding.frames",            "8"                     },
5258   { "[mm_default].exploding.delay",             "2"                     },
5259   { "[mm_default].exploding.anim_mode",         "linear"                },
5260
5261   { "df_laser",                                 "RocksDF.png"           },
5262   { "df_laser.xpos",                            "0"                     },
5263   { "df_laser.ypos",                            "9"                     },
5264   { "df_laser.frames",                          "4"                     },
5265   { "df_laser.delay",                           "8"                     },
5266   { "df_laser.right",                           "RocksDF.png"           },
5267   { "df_laser.right.xpos",                      "0"                     },
5268   { "df_laser.right.ypos",                      "9"                     },
5269   { "df_laser.right.frames",                    "1"                     },
5270   { "df_laser.up",                              "RocksDF.png"           },
5271   { "df_laser.up.xpos",                         "1"                     },
5272   { "df_laser.up.ypos",                         "9"                     },
5273   { "df_laser.up.frames",                       "1"                     },
5274   { "df_laser.left",                            "RocksDF.png"           },
5275   { "df_laser.left.xpos",                       "2"                     },
5276   { "df_laser.left.ypos",                       "9"                     },
5277   { "df_laser.left.frames",                     "1"                     },
5278   { "df_laser.down",                            "RocksDF.png"           },
5279   { "df_laser.down.xpos",                       "3"                     },
5280   { "df_laser.down.ypos",                       "9"                     },
5281   { "df_laser.down.frames",                     "1"                     },
5282
5283   { "df_receiver",                              "RocksDF.png"           },
5284   { "df_receiver.xpos",                         "4"                     },
5285   { "df_receiver.ypos",                         "9"                     },
5286   { "df_receiver.frames",                       "4"                     },
5287   { "df_receiver.delay",                        "8"                     },
5288   { "df_receiver.right",                        "RocksDF.png"           },
5289   { "df_receiver.right.xpos",                   "4"                     },
5290   { "df_receiver.right.ypos",                   "9"                     },
5291   { "df_receiver.right.frames",                 "1"                     },
5292   { "df_receiver.up",                           "RocksDF.png"           },
5293   { "df_receiver.up.xpos",                      "5"                     },
5294   { "df_receiver.up.ypos",                      "9"                     },
5295   { "df_receiver.up.frames",                    "1"                     },
5296   { "df_receiver.left",                         "RocksDF.png"           },
5297   { "df_receiver.left.xpos",                    "6"                     },
5298   { "df_receiver.left.ypos",                    "9"                     },
5299   { "df_receiver.left.frames",                  "1"                     },
5300   { "df_receiver.down",                         "RocksDF.png"           },
5301   { "df_receiver.down.xpos",                    "7"                     },
5302   { "df_receiver.down.ypos",                    "9"                     },
5303   { "df_receiver.down.frames",                  "1"                     },
5304
5305   { "df_mirror_1",                              "RocksDF.png"           },
5306   { "df_mirror_1.xpos",                         "0"                     },
5307   { "df_mirror_1.ypos",                         "0"                     },
5308   { "df_mirror_1.frames",                       "1"                     },
5309   { "df_mirror_2",                              "RocksDF.png"           },
5310   { "df_mirror_2.xpos",                         "1"                     },
5311   { "df_mirror_2.ypos",                         "0"                     },
5312   { "df_mirror_2.frames",                       "1"                     },
5313   { "df_mirror_3",                              "RocksDF.png"           },
5314   { "df_mirror_3.xpos",                         "2"                     },
5315   { "df_mirror_3.ypos",                         "0"                     },
5316   { "df_mirror_3.frames",                       "1"                     },
5317   { "df_mirror_4",                              "RocksDF.png"           },
5318   { "df_mirror_4.xpos",                         "3"                     },
5319   { "df_mirror_4.ypos",                         "0"                     },
5320   { "df_mirror_4.frames",                       "1"                     },
5321   { "df_mirror_5",                              "RocksDF.png"           },
5322   { "df_mirror_5.xpos",                         "4"                     },
5323   { "df_mirror_5.ypos",                         "0"                     },
5324   { "df_mirror_5.frames",                       "1"                     },
5325   { "df_mirror_6",                              "RocksDF.png"           },
5326   { "df_mirror_6.xpos",                         "5"                     },
5327   { "df_mirror_6.ypos",                         "0"                     },
5328   { "df_mirror_6.frames",                       "1"                     },
5329   { "df_mirror_7",                              "RocksDF.png"           },
5330   { "df_mirror_7.xpos",                         "6"                     },
5331   { "df_mirror_7.ypos",                         "0"                     },
5332   { "df_mirror_7.frames",                       "1"                     },
5333   { "df_mirror_8",                              "RocksDF.png"           },
5334   { "df_mirror_8.xpos",                         "7"                     },
5335   { "df_mirror_8.ypos",                         "0"                     },
5336   { "df_mirror_8.frames",                       "1"                     },
5337   { "df_mirror_9",                              "RocksDF.png"           },
5338   { "df_mirror_9.xpos",                         "8"                     },
5339   { "df_mirror_9.ypos",                         "0"                     },
5340   { "df_mirror_9.frames",                       "1"                     },
5341   { "df_mirror_10",                             "RocksDF.png"           },
5342   { "df_mirror_10.xpos",                        "9"                     },
5343   { "df_mirror_10.ypos",                        "0"                     },
5344   { "df_mirror_10.frames",                      "1"                     },
5345   { "df_mirror_11",                             "RocksDF.png"           },
5346   { "df_mirror_11.xpos",                        "10"                    },
5347   { "df_mirror_11.ypos",                        "0"                     },
5348   { "df_mirror_11.frames",                      "1"                     },
5349   { "df_mirror_12",                             "RocksDF.png"           },
5350   { "df_mirror_12.xpos",                        "11"                    },
5351   { "df_mirror_12.ypos",                        "0"                     },
5352   { "df_mirror_12.frames",                      "1"                     },
5353   { "df_mirror_13",                             "RocksDF.png"           },
5354   { "df_mirror_13.xpos",                        "12"                    },
5355   { "df_mirror_13.ypos",                        "0"                     },
5356   { "df_mirror_13.frames",                      "1"                     },
5357   { "df_mirror_14",                             "RocksDF.png"           },
5358   { "df_mirror_14.xpos",                        "13"                    },
5359   { "df_mirror_14.ypos",                        "0"                     },
5360   { "df_mirror_14.frames",                      "1"                     },
5361   { "df_mirror_15",                             "RocksDF.png"           },
5362   { "df_mirror_15.xpos",                        "14"                    },
5363   { "df_mirror_15.ypos",                        "0"                     },
5364   { "df_mirror_15.frames",                      "1"                     },
5365   { "df_mirror_16",                             "RocksDF.png"           },
5366   { "df_mirror_16.xpos",                        "15"                    },
5367   { "df_mirror_16.ypos",                        "0"                     },
5368   { "df_mirror_16.frames",                      "1"                     },
5369
5370   { "df_mirror_rotating_1",                     "RocksDF.png"           },
5371   { "df_mirror_rotating_1.xpos",                "0"                     },
5372   { "df_mirror_rotating_1.ypos",                "0"                     },
5373   { "df_mirror_rotating_1.frames",              "1"                     },
5374   { "df_mirror_rotating_1.EDITOR",              "RocksDF.png"           },
5375   { "df_mirror_rotating_1.EDITOR.xpos",         "0"                     },
5376   { "df_mirror_rotating_1.EDITOR.ypos",         "1"                     },
5377   { "df_mirror_rotating_1.EDITOR.frames",       "1"                     },
5378   { "df_mirror_rotating_2",                     "RocksDF.png"           },
5379   { "df_mirror_rotating_2.xpos",                "1"                     },
5380   { "df_mirror_rotating_2.ypos",                "0"                     },
5381   { "df_mirror_rotating_2.frames",              "1"                     },
5382   { "df_mirror_rotating_2.EDITOR",              "RocksDF.png"           },
5383   { "df_mirror_rotating_2.EDITOR.xpos",         "1"                     },
5384   { "df_mirror_rotating_2.EDITOR.ypos",         "1"                     },
5385   { "df_mirror_rotating_2.EDITOR.frames",       "1"                     },
5386   { "df_mirror_rotating_3",                     "RocksDF.png"           },
5387   { "df_mirror_rotating_3.xpos",                "2"                     },
5388   { "df_mirror_rotating_3.ypos",                "0"                     },
5389   { "df_mirror_rotating_3.frames",              "1"                     },
5390   { "df_mirror_rotating_3.EDITOR",              "RocksDF.png"           },
5391   { "df_mirror_rotating_3.EDITOR.xpos",         "2"                     },
5392   { "df_mirror_rotating_3.EDITOR.ypos",         "1"                     },
5393   { "df_mirror_rotating_3.EDITOR.frames",       "1"                     },
5394   { "df_mirror_rotating_4",                     "RocksDF.png"           },
5395   { "df_mirror_rotating_4.xpos",                "3"                     },
5396   { "df_mirror_rotating_4.ypos",                "0"                     },
5397   { "df_mirror_rotating_4.frames",              "1"                     },
5398   { "df_mirror_rotating_4.EDITOR",              "RocksDF.png"           },
5399   { "df_mirror_rotating_4.EDITOR.xpos",         "3"                     },
5400   { "df_mirror_rotating_4.EDITOR.ypos",         "1"                     },
5401   { "df_mirror_rotating_4.EDITOR.frames",       "1"                     },
5402   { "df_mirror_rotating_5",                     "RocksDF.png"           },
5403   { "df_mirror_rotating_5.xpos",                "4"                     },
5404   { "df_mirror_rotating_5.ypos",                "0"                     },
5405   { "df_mirror_rotating_5.frames",              "1"                     },
5406   { "df_mirror_rotating_5.EDITOR",              "RocksDF.png"           },
5407   { "df_mirror_rotating_5.EDITOR.xpos",         "4"                     },
5408   { "df_mirror_rotating_5.EDITOR.ypos",         "1"                     },
5409   { "df_mirror_rotating_5.EDITOR.frames",       "1"                     },
5410   { "df_mirror_rotating_6",                     "RocksDF.png"           },
5411   { "df_mirror_rotating_6.xpos",                "5"                     },
5412   { "df_mirror_rotating_6.ypos",                "0"                     },
5413   { "df_mirror_rotating_6.frames",              "1"                     },
5414   { "df_mirror_rotating_6.EDITOR",              "RocksDF.png"           },
5415   { "df_mirror_rotating_6.EDITOR.xpos",         "5"                     },
5416   { "df_mirror_rotating_6.EDITOR.ypos",         "1"                     },
5417   { "df_mirror_rotating_6.EDITOR.frames",       "1"                     },
5418   { "df_mirror_rotating_7",                     "RocksDF.png"           },
5419   { "df_mirror_rotating_7.xpos",                "6"                     },
5420   { "df_mirror_rotating_7.ypos",                "0"                     },
5421   { "df_mirror_rotating_7.frames",              "1"                     },
5422   { "df_mirror_rotating_7.EDITOR",              "RocksDF.png"           },
5423   { "df_mirror_rotating_7.EDITOR.xpos",         "6"                     },
5424   { "df_mirror_rotating_7.EDITOR.ypos",         "1"                     },
5425   { "df_mirror_rotating_7.EDITOR.frames",       "1"                     },
5426   { "df_mirror_rotating_8",                     "RocksDF.png"           },
5427   { "df_mirror_rotating_8.xpos",                "7"                     },
5428   { "df_mirror_rotating_8.ypos",                "0"                     },
5429   { "df_mirror_rotating_8.frames",              "1"                     },
5430   { "df_mirror_rotating_8.EDITOR",              "RocksDF.png"           },
5431   { "df_mirror_rotating_8.EDITOR.xpos",         "7"                     },
5432   { "df_mirror_rotating_8.EDITOR.ypos",         "1"                     },
5433   { "df_mirror_rotating_8.EDITOR.frames",       "1"                     },
5434   { "df_mirror_rotating_9",                     "RocksDF.png"           },
5435   { "df_mirror_rotating_9.xpos",                "8"                     },
5436   { "df_mirror_rotating_9.ypos",                "0"                     },
5437   { "df_mirror_rotating_9.frames",              "1"                     },
5438   { "df_mirror_rotating_9.EDITOR",              "RocksDF.png"           },
5439   { "df_mirror_rotating_9.EDITOR.xpos",         "8"                     },
5440   { "df_mirror_rotating_9.EDITOR.ypos",         "1"                     },
5441   { "df_mirror_rotating_9.EDITOR.frames",       "1"                     },
5442   { "df_mirror_rotating_10",                    "RocksDF.png"           },
5443   { "df_mirror_rotating_10.xpos",               "9"                     },
5444   { "df_mirror_rotating_10.ypos",               "0"                     },
5445   { "df_mirror_rotating_10.frames",             "1"                     },
5446   { "df_mirror_rotating_10.EDITOR",             "RocksDF.png"           },
5447   { "df_mirror_rotating_10.EDITOR.xpos",        "9"                     },
5448   { "df_mirror_rotating_10.EDITOR.ypos",        "1"                     },
5449   { "df_mirror_rotating_10.EDITOR.frames",      "1"                     },
5450   { "df_mirror_rotating_11",                    "RocksDF.png"           },
5451   { "df_mirror_rotating_11.xpos",               "10"                    },
5452   { "df_mirror_rotating_11.ypos",               "0"                     },
5453   { "df_mirror_rotating_11.frames",             "1"                     },
5454   { "df_mirror_rotating_11.EDITOR",             "RocksDF.png"           },
5455   { "df_mirror_rotating_11.EDITOR.xpos",        "10"                    },
5456   { "df_mirror_rotating_11.EDITOR.ypos",        "1"                     },
5457   { "df_mirror_rotating_11.EDITOR.frames",      "1"                     },
5458   { "df_mirror_rotating_12",                    "RocksDF.png"           },
5459   { "df_mirror_rotating_12.xpos",               "11"                    },
5460   { "df_mirror_rotating_12.ypos",               "0"                     },
5461   { "df_mirror_rotating_12.frames",             "1"                     },
5462   { "df_mirror_rotating_12.EDITOR",             "RocksDF.png"           },
5463   { "df_mirror_rotating_12.EDITOR.xpos",        "11"                    },
5464   { "df_mirror_rotating_12.EDITOR.ypos",        "1"                     },
5465   { "df_mirror_rotating_12.EDITOR.frames",      "1"                     },
5466   { "df_mirror_rotating_13",                    "RocksDF.png"           },
5467   { "df_mirror_rotating_13.xpos",               "12"                    },
5468   { "df_mirror_rotating_13.ypos",               "0"                     },
5469   { "df_mirror_rotating_13.frames",             "1"                     },
5470   { "df_mirror_rotating_13.EDITOR",             "RocksDF.png"           },
5471   { "df_mirror_rotating_13.EDITOR.xpos",        "12"                    },
5472   { "df_mirror_rotating_13.EDITOR.ypos",        "1"                     },
5473   { "df_mirror_rotating_13.EDITOR.frames",      "1"                     },
5474   { "df_mirror_rotating_14",                    "RocksDF.png"           },
5475   { "df_mirror_rotating_14.xpos",               "13"                    },
5476   { "df_mirror_rotating_14.ypos",               "0"                     },
5477   { "df_mirror_rotating_14.frames",             "1"                     },
5478   { "df_mirror_rotating_14.EDITOR",             "RocksDF.png"           },
5479   { "df_mirror_rotating_14.EDITOR.xpos",        "13"                    },
5480   { "df_mirror_rotating_14.EDITOR.ypos",        "1"                     },
5481   { "df_mirror_rotating_14.EDITOR.frames",      "1"                     },
5482   { "df_mirror_rotating_15",                    "RocksDF.png"           },
5483   { "df_mirror_rotating_15.xpos",               "14"                    },
5484   { "df_mirror_rotating_15.ypos",               "0"                     },
5485   { "df_mirror_rotating_15.frames",             "1"                     },
5486   { "df_mirror_rotating_15.EDITOR",             "RocksDF.png"           },
5487   { "df_mirror_rotating_15.EDITOR.xpos",        "14"                    },
5488   { "df_mirror_rotating_15.EDITOR.ypos",        "1"                     },
5489   { "df_mirror_rotating_15.EDITOR.frames",      "1"                     },
5490   { "df_mirror_rotating_16",                    "RocksDF.png"           },
5491   { "df_mirror_rotating_16.xpos",               "15"                    },
5492   { "df_mirror_rotating_16.ypos",               "0"                     },
5493   { "df_mirror_rotating_16.frames",             "1"                     },
5494   { "df_mirror_rotating_16.EDITOR",             "RocksDF.png"           },
5495   { "df_mirror_rotating_16.EDITOR.xpos",        "15"                    },
5496   { "df_mirror_rotating_16.EDITOR.ypos",        "1"                     },
5497   { "df_mirror_rotating_16.EDITOR.frames",      "1"                     },
5498
5499   { "df_steel_grid_fixed_1",                    "RocksDF.png"           },
5500   { "df_steel_grid_fixed_1.xpos",               "0"                     },
5501   { "df_steel_grid_fixed_1.ypos",               "2"                     },
5502   { "df_steel_grid_fixed_1.frames",             "1"                     },
5503   { "df_steel_grid_fixed_2",                    "RocksDF.png"           },
5504   { "df_steel_grid_fixed_2.xpos",               "1"                     },
5505   { "df_steel_grid_fixed_2.ypos",               "2"                     },
5506   { "df_steel_grid_fixed_2.frames",             "1"                     },
5507   { "df_steel_grid_fixed_3",                    "RocksDF.png"           },
5508   { "df_steel_grid_fixed_3.xpos",               "2"                     },
5509   { "df_steel_grid_fixed_3.ypos",               "2"                     },
5510   { "df_steel_grid_fixed_3.frames",             "1"                     },
5511   { "df_steel_grid_fixed_4",                    "RocksDF.png"           },
5512   { "df_steel_grid_fixed_4.xpos",               "3"                     },
5513   { "df_steel_grid_fixed_4.ypos",               "2"                     },
5514   { "df_steel_grid_fixed_4.frames",             "1"                     },
5515   { "df_steel_grid_fixed_5",                    "RocksDF.png"           },
5516   { "df_steel_grid_fixed_5.xpos",               "4"                     },
5517   { "df_steel_grid_fixed_5.ypos",               "2"                     },
5518   { "df_steel_grid_fixed_5.frames",             "1"                     },
5519   { "df_steel_grid_fixed_6",                    "RocksDF.png"           },
5520   { "df_steel_grid_fixed_6.xpos",               "5"                     },
5521   { "df_steel_grid_fixed_6.ypos",               "2"                     },
5522   { "df_steel_grid_fixed_6.frames",             "1"                     },
5523   { "df_steel_grid_fixed_7",                    "RocksDF.png"           },
5524   { "df_steel_grid_fixed_7.xpos",               "6"                     },
5525   { "df_steel_grid_fixed_7.ypos",               "2"                     },
5526   { "df_steel_grid_fixed_7.frames",             "1"                     },
5527   { "df_steel_grid_fixed_8",                    "RocksDF.png"           },
5528   { "df_steel_grid_fixed_8.xpos",               "7"                     },
5529   { "df_steel_grid_fixed_8.ypos",               "2"                     },
5530   { "df_steel_grid_fixed_8.frames",             "1"                     },
5531
5532   { "df_wooden_grid_fixed_1",                   "RocksDF.png"           },
5533   { "df_wooden_grid_fixed_1.xpos",              "8"                     },
5534   { "df_wooden_grid_fixed_1.ypos",              "2"                     },
5535   { "df_wooden_grid_fixed_1.frames",            "1"                     },
5536   { "df_wooden_grid_fixed_2",                   "RocksDF.png"           },
5537   { "df_wooden_grid_fixed_2.xpos",              "9"                     },
5538   { "df_wooden_grid_fixed_2.ypos",              "2"                     },
5539   { "df_wooden_grid_fixed_2.frames",            "1"                     },
5540   { "df_wooden_grid_fixed_3",                   "RocksDF.png"           },
5541   { "df_wooden_grid_fixed_3.xpos",              "10"                    },
5542   { "df_wooden_grid_fixed_3.ypos",              "2"                     },
5543   { "df_wooden_grid_fixed_3.frames",            "1"                     },
5544   { "df_wooden_grid_fixed_4",                   "RocksDF.png"           },
5545   { "df_wooden_grid_fixed_4.xpos",              "11"                    },
5546   { "df_wooden_grid_fixed_4.ypos",              "2"                     },
5547   { "df_wooden_grid_fixed_4.frames",            "1"                     },
5548   { "df_wooden_grid_fixed_5",                   "RocksDF.png"           },
5549   { "df_wooden_grid_fixed_5.xpos",              "12"                    },
5550   { "df_wooden_grid_fixed_5.ypos",              "2"                     },
5551   { "df_wooden_grid_fixed_5.frames",            "1"                     },
5552   { "df_wooden_grid_fixed_6",                   "RocksDF.png"           },
5553   { "df_wooden_grid_fixed_6.xpos",              "13"                    },
5554   { "df_wooden_grid_fixed_6.ypos",              "2"                     },
5555   { "df_wooden_grid_fixed_6.frames",            "1"                     },
5556   { "df_wooden_grid_fixed_7",                   "RocksDF.png"           },
5557   { "df_wooden_grid_fixed_7.xpos",              "14"                    },
5558   { "df_wooden_grid_fixed_7.ypos",              "2"                     },
5559   { "df_wooden_grid_fixed_7.frames",            "1"                     },
5560   { "df_wooden_grid_fixed_8",                   "RocksDF.png"           },
5561   { "df_wooden_grid_fixed_8.xpos",              "15"                    },
5562   { "df_wooden_grid_fixed_8.ypos",              "2"                     },
5563   { "df_wooden_grid_fixed_8.frames",            "1"                     },
5564
5565   { "df_steel_grid_rotating_1",                 "RocksDF.png"           },
5566   { "df_steel_grid_rotating_1.xpos",            "0"                     },
5567   { "df_steel_grid_rotating_1.ypos",            "2"                     },
5568   { "df_steel_grid_rotating_1.frames",          "1"                     },
5569   { "df_steel_grid_rotating_1.EDITOR",          "RocksDF.png"           },
5570   { "df_steel_grid_rotating_1.EDITOR.xpos",     "0"                     },
5571   { "df_steel_grid_rotating_1.EDITOR.ypos",     "3"                     },
5572   { "df_steel_grid_rotating_1.EDITOR.frames",   "1"                     },
5573   { "df_steel_grid_rotating_2",                 "RocksDF.png"           },
5574   { "df_steel_grid_rotating_2.xpos",            "1"                     },
5575   { "df_steel_grid_rotating_2.ypos",            "2"                     },
5576   { "df_steel_grid_rotating_2.frames",          "1"                     },
5577   { "df_steel_grid_rotating_2.EDITOR",          "RocksDF.png"           },
5578   { "df_steel_grid_rotating_2.EDITOR.xpos",     "1"                     },
5579   { "df_steel_grid_rotating_2.EDITOR.ypos",     "3"                     },
5580   { "df_steel_grid_rotating_2.EDITOR.frames",   "1"                     },
5581   { "df_steel_grid_rotating_3",                 "RocksDF.png"           },
5582   { "df_steel_grid_rotating_3.xpos",            "2"                     },
5583   { "df_steel_grid_rotating_3.ypos",            "2"                     },
5584   { "df_steel_grid_rotating_3.frames",          "1"                     },
5585   { "df_steel_grid_rotating_3.EDITOR",          "RocksDF.png"           },
5586   { "df_steel_grid_rotating_3.EDITOR.xpos",     "2"                     },
5587   { "df_steel_grid_rotating_3.EDITOR.ypos",     "3"                     },
5588   { "df_steel_grid_rotating_3.EDITOR.frames",   "1"                     },
5589   { "df_steel_grid_rotating_4",                 "RocksDF.png"           },
5590   { "df_steel_grid_rotating_4.xpos",            "3"                     },
5591   { "df_steel_grid_rotating_4.ypos",            "2"                     },
5592   { "df_steel_grid_rotating_4.frames",          "1"                     },
5593   { "df_steel_grid_rotating_4.EDITOR",          "RocksDF.png"           },
5594   { "df_steel_grid_rotating_4.EDITOR.xpos",     "3"                     },
5595   { "df_steel_grid_rotating_4.EDITOR.ypos",     "3"                     },
5596   { "df_steel_grid_rotating_4.EDITOR.frames",   "1"                     },
5597   { "df_steel_grid_rotating_5",                 "RocksDF.png"           },
5598   { "df_steel_grid_rotating_5.xpos",            "4"                     },
5599   { "df_steel_grid_rotating_5.ypos",            "2"                     },
5600   { "df_steel_grid_rotating_5.frames",          "1"                     },
5601   { "df_steel_grid_rotating_5.EDITOR",          "RocksDF.png"           },
5602   { "df_steel_grid_rotating_5.EDITOR.xpos",     "4"                     },
5603   { "df_steel_grid_rotating_5.EDITOR.ypos",     "3"                     },
5604   { "df_steel_grid_rotating_5.EDITOR.frames",   "1"                     },
5605   { "df_steel_grid_rotating_6",                 "RocksDF.png"           },
5606   { "df_steel_grid_rotating_6.xpos",            "5"                     },
5607   { "df_steel_grid_rotating_6.ypos",            "2"                     },
5608   { "df_steel_grid_rotating_6.frames",          "1"                     },
5609   { "df_steel_grid_rotating_6.EDITOR",          "RocksDF.png"           },
5610   { "df_steel_grid_rotating_6.EDITOR.xpos",     "5"                     },
5611   { "df_steel_grid_rotating_6.EDITOR.ypos",     "3"                     },
5612   { "df_steel_grid_rotating_6.EDITOR.frames",   "1"                     },
5613   { "df_steel_grid_rotating_7",                 "RocksDF.png"           },
5614   { "df_steel_grid_rotating_7.xpos",            "6"                     },
5615   { "df_steel_grid_rotating_7.ypos",            "2"                     },
5616   { "df_steel_grid_rotating_7.frames",          "1"                     },
5617   { "df_steel_grid_rotating_7.EDITOR",          "RocksDF.png"           },
5618   { "df_steel_grid_rotating_7.EDITOR.xpos",     "6"                     },
5619   { "df_steel_grid_rotating_7.EDITOR.ypos",     "3"                     },
5620   { "df_steel_grid_rotating_7.EDITOR.frames",   "1"                     },
5621   { "df_steel_grid_rotating_8",                 "RocksDF.png"           },
5622   { "df_steel_grid_rotating_8.xpos",            "7"                     },
5623   { "df_steel_grid_rotating_8.ypos",            "2"                     },
5624   { "df_steel_grid_rotating_8.frames",          "1"                     },
5625   { "df_steel_grid_rotating_8.EDITOR",          "RocksDF.png"           },
5626   { "df_steel_grid_rotating_8.EDITOR.xpos",     "7"                     },
5627   { "df_steel_grid_rotating_8.EDITOR.ypos",     "3"                     },
5628   { "df_steel_grid_rotating_8.EDITOR.frames",   "1"                     },
5629
5630   { "df_wooden_grid_rotating_1",                "RocksDF.png"           },
5631   { "df_wooden_grid_rotating_1.xpos",           "8"                     },
5632   { "df_wooden_grid_rotating_1.ypos",           "2"                     },
5633   { "df_wooden_grid_rotating_1.frames",         "1"                     },
5634   { "df_wooden_grid_rotating_1.EDITOR",         "RocksDF.png"           },
5635   { "df_wooden_grid_rotating_1.EDITOR.xpos",    "8"                     },
5636   { "df_wooden_grid_rotating_1.EDITOR.ypos",    "3"                     },
5637   { "df_wooden_grid_rotating_1.EDITOR.frames",  "1"                     },
5638   { "df_wooden_grid_rotating_2",                "RocksDF.png"           },
5639   { "df_wooden_grid_rotating_2.xpos",           "9"                     },
5640   { "df_wooden_grid_rotating_2.ypos",           "2"                     },
5641   { "df_wooden_grid_rotating_2.frames",         "1"                     },
5642   { "df_wooden_grid_rotating_2.EDITOR",         "RocksDF.png"           },
5643   { "df_wooden_grid_rotating_2.EDITOR.xpos",    "9"                     },
5644   { "df_wooden_grid_rotating_2.EDITOR.ypos",    "3"                     },
5645   { "df_wooden_grid_rotating_2.EDITOR.frames",  "1"                     },
5646   { "df_wooden_grid_rotating_3",                "RocksDF.png"           },
5647   { "df_wooden_grid_rotating_3.xpos",           "10"                    },
5648   { "df_wooden_grid_rotating_3.ypos",           "2"                     },
5649   { "df_wooden_grid_rotating_3.frames",         "1"                     },
5650   { "df_wooden_grid_rotating_3.EDITOR",         "RocksDF.png"           },
5651   { "df_wooden_grid_rotating_3.EDITOR.xpos",    "10"                    },
5652   { "df_wooden_grid_rotating_3.EDITOR.ypos",    "3"                     },
5653   { "df_wooden_grid_rotating_3.EDITOR.frames",  "1"                     },
5654   { "df_wooden_grid_rotating_4",                "RocksDF.png"           },
5655   { "df_wooden_grid_rotating_4.xpos",           "11"                    },
5656   { "df_wooden_grid_rotating_4.ypos",           "2"                     },
5657   { "df_wooden_grid_rotating_4.frames",         "1"                     },
5658   { "df_wooden_grid_rotating_4.EDITOR",         "RocksDF.png"           },
5659   { "df_wooden_grid_rotating_4.EDITOR.xpos",    "11"                    },
5660   { "df_wooden_grid_rotating_4.EDITOR.ypos",    "3"                     },
5661   { "df_wooden_grid_rotating_4.EDITOR.frames",  "1"                     },
5662   { "df_wooden_grid_rotating_5",                "RocksDF.png"           },
5663   { "df_wooden_grid_rotating_5.xpos",           "12"                    },
5664   { "df_wooden_grid_rotating_5.ypos",           "2"                     },
5665   { "df_wooden_grid_rotating_5.frames",         "1"                     },
5666   { "df_wooden_grid_rotating_5.EDITOR",         "RocksDF.png"           },
5667   { "df_wooden_grid_rotating_5.EDITOR.xpos",    "12"                    },
5668   { "df_wooden_grid_rotating_5.EDITOR.ypos",    "3"                     },
5669   { "df_wooden_grid_rotating_5.EDITOR.frames",  "1"                     },
5670   { "df_wooden_grid_rotating_6",                "RocksDF.png"           },
5671   { "df_wooden_grid_rotating_6.xpos",           "13"                    },
5672   { "df_wooden_grid_rotating_6.ypos",           "2"                     },
5673   { "df_wooden_grid_rotating_6.frames",         "1"                     },
5674   { "df_wooden_grid_rotating_6.EDITOR",         "RocksDF.png"           },
5675   { "df_wooden_grid_rotating_6.EDITOR.xpos",    "13"                    },
5676   { "df_wooden_grid_rotating_6.EDITOR.ypos",    "3"                     },
5677   { "df_wooden_grid_rotating_6.EDITOR.frames",  "1"                     },
5678   { "df_wooden_grid_rotating_7",                "RocksDF.png"           },
5679   { "df_wooden_grid_rotating_7.xpos",           "14"                    },
5680   { "df_wooden_grid_rotating_7.ypos",           "2"                     },
5681   { "df_wooden_grid_rotating_7.frames",         "1"                     },
5682   { "df_wooden_grid_rotating_7.EDITOR",         "RocksDF.png"           },
5683   { "df_wooden_grid_rotating_7.EDITOR.xpos",    "14"                    },
5684   { "df_wooden_grid_rotating_7.EDITOR.ypos",    "3"                     },
5685   { "df_wooden_grid_rotating_7.EDITOR.frames",  "1"                     },
5686   { "df_wooden_grid_rotating_8",                "RocksDF.png"           },
5687   { "df_wooden_grid_rotating_8.xpos",           "15"                    },
5688   { "df_wooden_grid_rotating_8.ypos",           "2"                     },
5689   { "df_wooden_grid_rotating_8.frames",         "1"                     },
5690   { "df_wooden_grid_rotating_8.EDITOR",         "RocksDF.png"           },
5691   { "df_wooden_grid_rotating_8.EDITOR.xpos",    "15"                    },
5692   { "df_wooden_grid_rotating_8.EDITOR.ypos",    "3"                     },
5693   { "df_wooden_grid_rotating_8.EDITOR.frames",  "1"                     },
5694
5695   { "df_fibre_optic_red_1",                     "RocksDF.png"           },
5696   { "df_fibre_optic_red_1.xpos",                "8"                     },
5697   { "df_fibre_optic_red_1.ypos",                "8"                     },
5698   { "df_fibre_optic_red_1.frames",              "1"                     },
5699   { "df_fibre_optic_red_1.EDITOR",              "RocksDF.png"           },
5700   { "df_fibre_optic_red_1.EDITOR.xpos",         "8"                     },
5701   { "df_fibre_optic_red_1.EDITOR.ypos",         "9"                     },
5702   { "df_fibre_optic_red_1.EDITOR.frames",       "1"                     },
5703   { "df_fibre_optic_red_2",                     "RocksDF.png"           },
5704   { "df_fibre_optic_red_2.xpos",                "9"                     },
5705   { "df_fibre_optic_red_2.ypos",                "8"                     },
5706   { "df_fibre_optic_red_2.frames",              "1"                     },
5707   { "df_fibre_optic_red_2.EDITOR",              "RocksDF.png"           },
5708   { "df_fibre_optic_red_2.EDITOR.xpos",         "9"                     },
5709   { "df_fibre_optic_red_2.EDITOR.ypos",         "9"                     },
5710   { "df_fibre_optic_red_2.EDITOR.frames",       "1"                     },
5711   { "df_fibre_optic_yellow_1",                  "RocksDF.png"           },
5712   { "df_fibre_optic_yellow_1.xpos",             "10"                    },
5713   { "df_fibre_optic_yellow_1.ypos",             "8"                     },
5714   { "df_fibre_optic_yellow_1.frames",           "1"                     },
5715   { "df_fibre_optic_yellow_1.EDITOR",           "RocksDF.png"           },
5716   { "df_fibre_optic_yellow_1.EDITOR.xpos",      "10"                    },
5717   { "df_fibre_optic_yellow_1.EDITOR.ypos",      "9"                     },
5718   { "df_fibre_optic_yellow_1.EDITOR.frames",    "1"                     },
5719   { "df_fibre_optic_yellow_2",                  "RocksDF.png"           },
5720   { "df_fibre_optic_yellow_2.xpos",             "11"                    },
5721   { "df_fibre_optic_yellow_2.ypos",             "8"                     },
5722   { "df_fibre_optic_yellow_2.frames",           "1"                     },
5723   { "df_fibre_optic_yellow_2.EDITOR",           "RocksDF.png"           },
5724   { "df_fibre_optic_yellow_2.EDITOR.xpos",      "11"                    },
5725   { "df_fibre_optic_yellow_2.EDITOR.ypos",      "9"                     },
5726   { "df_fibre_optic_yellow_2.EDITOR.frames",    "1"                     },
5727   { "df_fibre_optic_green_1",                   "RocksDF.png"           },
5728   { "df_fibre_optic_green_1.xpos",              "12"                    },
5729   { "df_fibre_optic_green_1.ypos",              "8"                     },
5730   { "df_fibre_optic_green_1.frames",            "1"                     },
5731   { "df_fibre_optic_green_1.EDITOR",            "RocksDF.png"           },
5732   { "df_fibre_optic_green_1.EDITOR.xpos",       "12"                    },
5733   { "df_fibre_optic_green_1.EDITOR.ypos",       "9"                     },
5734   { "df_fibre_optic_green_1.EDITOR.frames",     "1"                     },
5735   { "df_fibre_optic_green_2",                   "RocksDF.png"           },
5736   { "df_fibre_optic_green_2.xpos",              "13"                    },
5737   { "df_fibre_optic_green_2.ypos",              "8"                     },
5738   { "df_fibre_optic_green_2.frames",            "1"                     },
5739   { "df_fibre_optic_green_2.EDITOR",            "RocksDF.png"           },
5740   { "df_fibre_optic_green_2.EDITOR.xpos",       "13"                    },
5741   { "df_fibre_optic_green_2.EDITOR.ypos",       "9"                     },
5742   { "df_fibre_optic_green_2.EDITOR.frames",     "1"                     },
5743   { "df_fibre_optic_blue_1",                    "RocksDF.png"           },
5744   { "df_fibre_optic_blue_1.xpos",               "14"                    },
5745   { "df_fibre_optic_blue_1.ypos",               "8"                     },
5746   { "df_fibre_optic_blue_1.frames",             "1"                     },
5747   { "df_fibre_optic_blue_1.EDITOR",             "RocksDF.png"           },
5748   { "df_fibre_optic_blue_1.EDITOR.xpos",        "14"                    },
5749   { "df_fibre_optic_blue_1.EDITOR.ypos",        "9"                     },
5750   { "df_fibre_optic_blue_1.EDITOR.frames",      "1"                     },
5751   { "df_fibre_optic_blue_2",                    "RocksDF.png"           },
5752   { "df_fibre_optic_blue_2.xpos",               "15"                    },
5753   { "df_fibre_optic_blue_2.ypos",               "8"                     },
5754   { "df_fibre_optic_blue_2.frames",             "1"                     },
5755   { "df_fibre_optic_blue_2.EDITOR",             "RocksDF.png"           },
5756   { "df_fibre_optic_blue_2.EDITOR.xpos",        "15"                    },
5757   { "df_fibre_optic_blue_2.EDITOR.ypos",        "9"                     },
5758   { "df_fibre_optic_blue_2.EDITOR.frames",      "1"                     },
5759
5760   { "df_steel_wall",                            "RocksDF.png"           },
5761   { "df_steel_wall.xpos",                       "6"                     },
5762   { "df_steel_wall.ypos",                       "8"                     },
5763   { "df_steel_wall.frames",                     "1"                     },
5764
5765   { "df_wooden_wall",                           "RocksDF.png"           },
5766   { "df_wooden_wall.xpos",                      "7"                     },
5767   { "df_wooden_wall.ypos",                      "8"                     },
5768   { "df_wooden_wall.frames",                    "1"                     },
5769
5770   { "df_refractor",                             "RocksDF.png"           },
5771   { "df_refractor.xpos",                        "1"                     },
5772   { "df_refractor.ypos",                        "8"                     },
5773   { "df_refractor.frames",                      "1"                     },
5774
5775   { "df_cell",                                  "RocksDF.png"           },
5776   { "df_cell.xpos",                             "2"                     },
5777   { "df_cell.ypos",                             "8"                     },
5778   { "df_cell.frames",                           "1"                     },
5779
5780   { "df_mine",                                  "RocksDF.png"           },
5781   { "df_mine.xpos",                             "4"                     },
5782   { "df_mine.ypos",                             "8"                     },
5783   { "df_mine.frames",                           "1"                     },
5784
5785   // (these are only defined as elements to support ".PANEL" definitions)
5786   { "graphic_1",                                UNDEFINED_FILENAME      },
5787   { "graphic_2",                                UNDEFINED_FILENAME      },
5788   { "graphic_3",                                UNDEFINED_FILENAME      },
5789   { "graphic_4",                                UNDEFINED_FILENAME      },
5790   { "graphic_5",                                UNDEFINED_FILENAME      },
5791   { "graphic_6",                                UNDEFINED_FILENAME      },
5792   { "graphic_7",                                UNDEFINED_FILENAME      },
5793   { "graphic_8",                                UNDEFINED_FILENAME      },
5794
5795 #include "conf_chr.c"   // include auto-generated data structure definitions
5796 #include "conf_cus.c"   // include auto-generated data structure definitions
5797 #include "conf_grp.c"   // include auto-generated data structure definitions
5798
5799
5800   // ==========================================================================
5801   // image definitions not associated with game elements (menu screens etc.)
5802   // ==========================================================================
5803
5804   // keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change!
5805
5806   { "sp_frame_horizontal",                      "RocksSP.png"           },
5807   { "sp_frame_horizontal.xpos",                 "7"                     },
5808   { "sp_frame_horizontal.ypos",                 "14"                    },
5809   { "sp_frame_vertical",                        "RocksSP.png"           },
5810   { "sp_frame_vertical.xpos",                   "6"                     },
5811   { "sp_frame_vertical.ypos",                   "14"                    },
5812   { "sp_frame_corner",                          "RocksSP.png"           },
5813   { "sp_frame_corner.xpos",                     "5"                     },
5814   { "sp_frame_corner.ypos",                     "14"                    },
5815
5816   { "toon_1",                                   "RocksToons.png"        },
5817   { "toon_1.x",                                 "2"                     },
5818   { "toon_1.y",                                 "72"                    },
5819   { "toon_1.width",                             "40"                    },
5820   { "toon_1.height",                            "48"                    },
5821   { "toon_1.frames",                            "8"                     },
5822   { "toon_1.delay",                             "1"                     },
5823   { "toon_1.step_offset",                       "4"                     },
5824   { "toon_1.step_delay",                        "5"                     },
5825   { "toon_1.direction",                         "right"                 },
5826   { "toon_1.position",                          "bottom"                },
5827
5828   { "toon_2",                                   "RocksToons.png"        },
5829   { "toon_2.x",                                 "2"                     },
5830   { "toon_2.y",                                 "186"                   },
5831   { "toon_2.width",                             "40"                    },
5832   { "toon_2.height",                            "48"                    },
5833   { "toon_2.frames",                            "8"                     },
5834   { "toon_2.delay",                             "1"                     },
5835   { "toon_2.step_offset",                       "4"                     },
5836   { "toon_2.step_delay",                        "5"                     },
5837   { "toon_2.direction",                         "left"                  },
5838   { "toon_2.position",                          "bottom"                },
5839
5840   { "toon_3",                                   "RocksToons.png"        },
5841   { "toon_3.x",                                 "2"                     },
5842   { "toon_3.y",                                 "125"                   },
5843   { "toon_3.width",                             "48"                    },
5844   { "toon_3.height",                            "56"                    },
5845   { "toon_3.frames",                            "8"                     },
5846   { "toon_3.delay",                             "1"                     },
5847   { "toon_3.step_offset",                       "4"                     },
5848   { "toon_3.step_delay",                        "5"                     },
5849   { "toon_3.direction",                         "right"                 },
5850   { "toon_3.position",                          "bottom"                },
5851
5852   { "toon_4",                                   "RocksToons.png"        },
5853   { "toon_4.x",                                 "327"                   },
5854   { "toon_4.y",                                 "10"                    },
5855   { "toon_4.width",                             "80"                    },
5856   { "toon_4.height",                            "110"                   },
5857   { "toon_4.frames",                            "1"                     },
5858   { "toon_4.delay",                             "1"                     },
5859   { "toon_4.step_offset",                       "1"                     },
5860   { "toon_4.step_delay",                        "1"                     },
5861   { "toon_4.direction",                         "up"                    },
5862   { "toon_4.position",                          "any"                   },
5863
5864   { "toon_5",                                   "RocksToons.png"        },
5865   { "toon_5.x",                                 "2"                     },
5866   { "toon_5.y",                                 "2"                     },
5867   { "toon_5.width",                             "32"                    },
5868   { "toon_5.height",                            "30"                    },
5869   { "toon_5.frames",                            "8"                     },
5870   { "toon_5.delay",                             "2"                     },
5871   { "toon_5.anim_mode",                         "pingpong2"             },
5872   { "toon_5.step_offset",                       "2"                     },
5873   { "toon_5.step_delay",                        "1"                     },
5874   { "toon_5.direction",                         "right"                 },
5875   { "toon_5.position",                          "upper"                 },
5876
5877   { "toon_6",                                   "RocksToons.png"        },
5878   { "toon_6.x",                                 "2"                     },
5879   { "toon_6.y",                                 "37"                    },
5880   { "toon_6.width",                             "32"                    },
5881   { "toon_6.height",                            "30"                    },
5882   { "toon_6.frames",                            "8"                     },
5883   { "toon_6.delay",                             "2"                     },
5884   { "toon_6.anim_mode",                         "pingpong2"             },
5885   { "toon_6.step_offset",                       "2"                     },
5886   { "toon_6.step_delay",                        "1"                     },
5887   { "toon_6.direction",                         "left"                  },
5888   { "toon_6.position",                          "upper"                 },
5889
5890   { "toon_7",                                   "RocksMore.png"         },
5891   { "toon_7.xpos",                              "0"                     },
5892   { "toon_7.ypos",                              "6"                     },
5893   { "toon_7.frames",                            "16"                    },
5894   { "toon_7.delay",                             "2"                     },
5895   { "toon_7.direction",                         "down"                  },
5896   { "toon_7.position",                          "any"                   },
5897
5898   { "toon_8",                                   "RocksHeroes.png"       },
5899   { "toon_8.xpos",                              "4"                     },
5900   { "toon_8.ypos",                              "1"                     },
5901   { "toon_8.frames",                            "4"                     },
5902   { "toon_8.delay",                             "4"                     },
5903   { "toon_8.direction",                         "right"                 },
5904   { "toon_8.position",                          "bottom"                },
5905
5906   { "toon_9",                                   "RocksHeroes.png"       },
5907   { "toon_9.xpos",                              "8"                     },
5908   { "toon_9.ypos",                              "7"                     },
5909   { "toon_9.frames",                            "4"                     },
5910   { "toon_9.delay",                             "2"                     },
5911   { "toon_9.direction",                         "left"                  },
5912   { "toon_9.position",                          "bottom"                },
5913
5914   { "toon_10",                                  "RocksHeroes.png"       },
5915   { "toon_10.xpos",                             "12"                    },
5916   { "toon_10.ypos",                             "7"                     },
5917   { "toon_10.frames",                           "4"                     },
5918   { "toon_10.delay",                            "2"                     },
5919   { "toon_10.direction",                        "right"                 },
5920   { "toon_10.position",                         "bottom"                },
5921
5922   { "toon_11",                                  "RocksHeroes.png"       },
5923   { "toon_11.xpos",                             "8"                     },
5924   { "toon_11.ypos",                             "5"                     },
5925   { "toon_11.frames",                           "4"                     },
5926   { "toon_11.delay",                            "2"                     },
5927   { "toon_11.direction",                        "left"                  },
5928   { "toon_11.position",                         "bottom"                },
5929
5930   { "toon_12",                                  "RocksHeroes.png"       },
5931   { "toon_12.xpos",                             "12"                    },
5932   { "toon_12.ypos",                             "5"                     },
5933   { "toon_12.frames",                           "4"                     },
5934   { "toon_12.delay",                            "2"                     },
5935   { "toon_12.direction",                        "right"                 },
5936   { "toon_12.position",                         "bottom"                },
5937
5938   { "toon_13",                                  "RocksHeroes.png"       },
5939   { "toon_13.xpos",                             "8"                     },
5940   { "toon_13.ypos",                             "1"                     },
5941   { "toon_13.frames",                           "4"                     },
5942   { "toon_13.delay",                            "2"                     },
5943   { "toon_13.direction",                        "left"                  },
5944   { "toon_13.position",                         "bottom"                },
5945
5946   { "toon_14",                                  "RocksHeroes.png"       },
5947   { "toon_14.xpos",                             "12"                    },
5948   { "toon_14.ypos",                             "1"                     },
5949   { "toon_14.frames",                           "4"                     },
5950   { "toon_14.delay",                            "2"                     },
5951   { "toon_14.direction",                        "right"                 },
5952   { "toon_14.position",                         "bottom"                },
5953
5954   { "toon_15",                                  "RocksHeroes.png"       },
5955   { "toon_15.xpos",                             "8"                     },
5956   { "toon_15.ypos",                             "3"                     },
5957   { "toon_15.frames",                           "4"                     },
5958   { "toon_15.delay",                            "2"                     },
5959   { "toon_15.direction",                        "left"                  },
5960   { "toon_15.position",                         "bottom"                },
5961
5962   { "toon_16",                                  "RocksHeroes.png"       },
5963   { "toon_16.xpos",                             "12"                    },
5964   { "toon_16.ypos",                             "3"                     },
5965   { "toon_16.frames",                           "4"                     },
5966   { "toon_16.delay",                            "2"                     },
5967   { "toon_16.direction",                        "right"                 },
5968   { "toon_16.position",                         "bottom"                },
5969
5970   { "toon_17",                                  "RocksHeroes.png"       },
5971   { "toon_17.xpos",                             "8"                     },
5972   { "toon_17.ypos",                             "9"                     },
5973   { "toon_17.frames",                           "8"                     },
5974   { "toon_17.delay",                            "2"                     },
5975   { "toon_17.direction",                        "left"                  },
5976   { "toon_17.position",                         "any"                   },
5977
5978   { "toon_18",                                  "RocksHeroes.png"       },
5979   { "toon_18.xpos",                             "8"                     },
5980   { "toon_18.ypos",                             "9"                     },
5981   { "toon_18.frames",                           "8"                     },
5982   { "toon_18.delay",                            "2"                     },
5983   { "toon_18.direction",                        "right"                 },
5984   { "toon_18.position",                         "any"                   },
5985
5986   { "toon_19",                                  "RocksElements.png"     },
5987   { "toon_19.xpos",                             "8"                     },
5988   { "toon_19.ypos",                             "0"                     },
5989   { "toon_19.frames",                           "2"                     },
5990   { "toon_19.delay",                            "4"                     },
5991   { "toon_19.direction",                        "down"                  },
5992   { "toon_19.position",                         "any"                   },
5993
5994   { "toon_20",                                  "RocksElements.png"     },
5995   { "toon_20.xpos",                             "10"                    },
5996   { "toon_20.ypos",                             "0"                     },
5997   { "toon_20.frames",                           "2"                     },
5998   { "toon_20.delay",                            "4"                     },
5999   { "toon_20.direction",                        "down"                  },
6000   { "toon_20.position",                         "any"                   },
6001
6002   { "gfx.global.anim_1",                        UNDEFINED_FILENAME      },
6003   { "gfx.global.anim_2",                        UNDEFINED_FILENAME      },
6004   { "gfx.global.anim_3",                        UNDEFINED_FILENAME      },
6005   { "gfx.global.anim_4",                        UNDEFINED_FILENAME      },
6006   { "gfx.global.anim_5",                        UNDEFINED_FILENAME      },
6007   { "gfx.global.anim_6",                        UNDEFINED_FILENAME      },
6008   { "gfx.global.anim_7",                        UNDEFINED_FILENAME      },
6009   { "gfx.global.anim_8",                        UNDEFINED_FILENAME      },
6010   { "gfx.global.anim_9",                        UNDEFINED_FILENAME      },
6011   { "gfx.global.anim_10",                       UNDEFINED_FILENAME      },
6012   { "gfx.global.anim_11",                       UNDEFINED_FILENAME      },
6013   { "gfx.global.anim_12",                       UNDEFINED_FILENAME      },
6014   { "gfx.global.anim_13",                       UNDEFINED_FILENAME      },
6015   { "gfx.global.anim_14",                       UNDEFINED_FILENAME      },
6016   { "gfx.global.anim_15",                       UNDEFINED_FILENAME      },
6017   { "gfx.global.anim_16",                       UNDEFINED_FILENAME      },
6018   { "gfx.global.anim_17",                       UNDEFINED_FILENAME      },
6019   { "gfx.global.anim_18",                       UNDEFINED_FILENAME      },
6020   { "gfx.global.anim_19",                       UNDEFINED_FILENAME      },
6021   { "gfx.global.anim_20",                       UNDEFINED_FILENAME      },
6022   { "gfx.global.anim_21",                       UNDEFINED_FILENAME      },
6023   { "gfx.global.anim_22",                       UNDEFINED_FILENAME      },
6024   { "gfx.global.anim_23",                       UNDEFINED_FILENAME      },
6025   { "gfx.global.anim_24",                       UNDEFINED_FILENAME      },
6026   { "gfx.global.anim_25",                       UNDEFINED_FILENAME      },
6027   { "gfx.global.anim_26",                       UNDEFINED_FILENAME      },
6028   { "gfx.global.anim_27",                       UNDEFINED_FILENAME      },
6029   { "gfx.global.anim_28",                       UNDEFINED_FILENAME      },
6030   { "gfx.global.anim_29",                       UNDEFINED_FILENAME      },
6031   { "gfx.global.anim_30",                       UNDEFINED_FILENAME      },
6032   { "gfx.global.anim_31",                       UNDEFINED_FILENAME      },
6033   { "gfx.global.anim_32",                       UNDEFINED_FILENAME      },
6034
6035   { "global.anim_1",                            UNDEFINED_FILENAME      },
6036   { "global.anim_2",                            UNDEFINED_FILENAME      },
6037   { "global.anim_3",                            UNDEFINED_FILENAME      },
6038   { "global.anim_4",                            UNDEFINED_FILENAME      },
6039   { "global.anim_5",                            UNDEFINED_FILENAME      },
6040   { "global.anim_6",                            UNDEFINED_FILENAME      },
6041   { "global.anim_7",                            UNDEFINED_FILENAME      },
6042   { "global.anim_8",                            UNDEFINED_FILENAME      },
6043   { "global.anim_9",                            UNDEFINED_FILENAME      },
6044   { "global.anim_10",                           UNDEFINED_FILENAME      },
6045   { "global.anim_11",                           UNDEFINED_FILENAME      },
6046   { "global.anim_12",                           UNDEFINED_FILENAME      },
6047   { "global.anim_13",                           UNDEFINED_FILENAME      },
6048   { "global.anim_14",                           UNDEFINED_FILENAME      },
6049   { "global.anim_15",                           UNDEFINED_FILENAME      },
6050   { "global.anim_16",                           UNDEFINED_FILENAME      },
6051   { "global.anim_17",                           UNDEFINED_FILENAME      },
6052   { "global.anim_18",                           UNDEFINED_FILENAME      },
6053   { "global.anim_19",                           UNDEFINED_FILENAME      },
6054   { "global.anim_20",                           UNDEFINED_FILENAME      },
6055   { "global.anim_21",                           UNDEFINED_FILENAME      },
6056   { "global.anim_22",                           UNDEFINED_FILENAME      },
6057   { "global.anim_23",                           UNDEFINED_FILENAME      },
6058   { "global.anim_24",                           UNDEFINED_FILENAME      },
6059   { "global.anim_25",                           UNDEFINED_FILENAME      },
6060   { "global.anim_26",                           UNDEFINED_FILENAME      },
6061   { "global.anim_27",                           UNDEFINED_FILENAME      },
6062   { "global.anim_28",                           UNDEFINED_FILENAME      },
6063   { "global.anim_29",                           UNDEFINED_FILENAME      },
6064   { "global.anim_30",                           UNDEFINED_FILENAME      },
6065   { "global.anim_31",                           UNDEFINED_FILENAME      },
6066   { "global.anim_32",                           UNDEFINED_FILENAME      },
6067
6068   { "internal.global.toon_default",             UNDEFINED_FILENAME      },
6069   { "internal.global.toon_default.anim_mode",   "random"                },
6070
6071   { "internal.global.anim_default",             UNDEFINED_FILENAME      },
6072
6073   { "menu.calibrate_red",                       "RocksElements.png"     },
6074   { "menu.calibrate_red.xpos",                  "12"                    },
6075   { "menu.calibrate_red.ypos",                  "8"                     },
6076   { "menu.calibrate_red.frames",                "1"                     },
6077   { "menu.calibrate_blue",                      "RocksElements.png"     },
6078   { "menu.calibrate_blue.xpos",                 "13"                    },
6079   { "menu.calibrate_blue.ypos",                 "8"                     },
6080   { "menu.calibrate_blue.frames",               "1"                     },
6081   { "menu.calibrate_yellow",                    "RocksElements.png"     },
6082   { "menu.calibrate_yellow.xpos",               "14"                    },
6083   { "menu.calibrate_yellow.ypos",               "8"                     },
6084   { "menu.calibrate_yellow.frames",             "1"                     },
6085
6086   { "menu.button",                              "RocksElements.png"     },
6087   { "menu.button.xpos",                         "13"                    },
6088   { "menu.button.ypos",                         "8"                     },
6089   { "menu.button.frames",                       "1"                     },
6090   { "menu.button.active",                       "RocksElements.png"     },
6091   { "menu.button.active.xpos",                  "12"                    },
6092   { "menu.button.active.ypos",                  "8"                     },
6093   { "menu.button.active.frames",                "1"                     },
6094
6095   { "menu.button_left",                         "RocksDC.png"           },
6096   { "menu.button_left.xpos",                    "8"                     },
6097   { "menu.button_left.ypos",                    "8"                     },
6098   { "menu.button_left.frames",                  "1"                     },
6099   { "menu.button_left.active",                  "RocksDC.png"           },
6100   { "menu.button_left.active.xpos",             "8"                     },
6101   { "menu.button_left.active.ypos",             "9"                     },
6102   { "menu.button_left.active.frames",           "1"                     },
6103   { "menu.button_right",                        "RocksDC.png"           },
6104   { "menu.button_right.xpos",                   "9"                     },
6105   { "menu.button_right.ypos",                   "8"                     },
6106   { "menu.button_right.frames",                 "1"                     },
6107   { "menu.button_right.active",                 "RocksDC.png"           },
6108   { "menu.button_right.active.xpos",            "9"                     },
6109   { "menu.button_right.active.ypos",            "9"                     },
6110   { "menu.button_right.active.frames",          "1"                     },
6111   { "menu.button_up",                           "RocksDC.png"           },
6112   { "menu.button_up.xpos",                      "10"                    },
6113   { "menu.button_up.ypos",                      "8"                     },
6114   { "menu.button_up.frames",                    "1"                     },
6115   { "menu.button_up.active",                    "RocksDC.png"           },
6116   { "menu.button_up.active.xpos",               "10"                    },
6117   { "menu.button_up.active.ypos",               "9"                     },
6118   { "menu.button_up.active.frames",             "1"                     },
6119   { "menu.button_down",                         "RocksDC.png"           },
6120   { "menu.button_down.xpos",                    "11"                    },
6121   { "menu.button_down.ypos",                    "8"                     },
6122   { "menu.button_down.frames",                  "1"                     },
6123   { "menu.button_down.active",                  "RocksDC.png"           },
6124   { "menu.button_down.active.xpos",             "11"                    },
6125   { "menu.button_down.active.ypos",             "9"                     },
6126   { "menu.button_down.active.frames",           "1"                     },
6127
6128   { "menu.button_enter_menu",                   UNDEFINED_FILENAME      },
6129   { "menu.button_enter_menu.clone_from",        "menu.button_right"     },
6130   { "menu.button_enter_menu.active",            UNDEFINED_FILENAME      },
6131   { "menu.button_enter_menu.active.clone_from", "menu.button_right.active" },
6132   { "menu.button_leave_menu",                   UNDEFINED_FILENAME      },
6133   { "menu.button_leave_menu.clone_from",        "menu.button_left"      },
6134   { "menu.button_leave_menu.active",            UNDEFINED_FILENAME      },
6135   { "menu.button_leave_menu.active.clone_from", "menu.button_left.active" },
6136
6137   { "menu.button_next_level",                   UNDEFINED_FILENAME      },
6138   { "menu.button_next_level.clone_from",        "menu.button_right"     },
6139   { "menu.button_next_level.active",            UNDEFINED_FILENAME      },
6140   { "menu.button_next_level.active.clone_from", "menu.button_right.active" },
6141   { "menu.button_prev_level",                   UNDEFINED_FILENAME      },
6142   { "menu.button_prev_level.clone_from",        "menu.button_left"      },
6143   { "menu.button_prev_level.active",            UNDEFINED_FILENAME      },
6144   { "menu.button_prev_level.active.clone_from", "menu.button_left.active" },
6145
6146   { "menu.button_name",                         UNDEFINED_FILENAME      },
6147   { "menu.button_name.clone_from",              "menu.button"           },
6148   { "menu.button_name.active",                  UNDEFINED_FILENAME      },
6149   { "menu.button_name.active.clone_from",       "menu.button.active"    },
6150   { "menu.button_levels",                       UNDEFINED_FILENAME      },
6151   { "menu.button_levels.clone_from",            "menu.button_right"     },
6152   { "menu.button_levels.active",                UNDEFINED_FILENAME      },
6153   { "menu.button_levels.active.clone_from",     "menu.button_right.active" },
6154   { "menu.button_scores",                       UNDEFINED_FILENAME      },
6155   { "menu.button_scores.clone_from",            "menu.button"           },
6156   { "menu.button_scores.active",                UNDEFINED_FILENAME      },
6157   { "menu.button_scores.active.clone_from",     "menu.button.active"    },
6158   { "menu.button_editor",                       UNDEFINED_FILENAME      },
6159   { "menu.button_editor.clone_from",            "menu.button"           },
6160   { "menu.button_editor.active",                UNDEFINED_FILENAME      },
6161   { "menu.button_editor.active.clone_from",     "menu.button.active"    },
6162   { "menu.button_info",                         UNDEFINED_FILENAME      },
6163   { "menu.button_info.clone_from",              "menu.button_right"     },
6164   { "menu.button_info.active",                  UNDEFINED_FILENAME      },
6165   { "menu.button_info.active.clone_from",       "menu.button_right.active" },
6166   { "menu.button_game",                         UNDEFINED_FILENAME      },
6167   { "menu.button_game.clone_from",              "menu.button"           },
6168   { "menu.button_game.active",                  UNDEFINED_FILENAME      },
6169   { "menu.button_game.active.clone_from",       "menu.button.active"    },
6170   { "menu.button_setup",                        UNDEFINED_FILENAME      },
6171   { "menu.button_setup.clone_from",             "menu.button_right"     },
6172   { "menu.button_setup.active",                 UNDEFINED_FILENAME      },
6173   { "menu.button_setup.active.clone_from",      "menu.button_right.active" },
6174   { "menu.button_quit",                         UNDEFINED_FILENAME      },
6175   { "menu.button_quit.clone_from",              "menu.button"           },
6176   { "menu.button_quit.active",                  UNDEFINED_FILENAME      },
6177   { "menu.button_quit.active.clone_from",       "menu.button.active"    },
6178
6179   { "menu.button_first_level",                  UNDEFINED_FILENAME      },
6180   { "menu.button_first_level.active",           UNDEFINED_FILENAME      },
6181   { "menu.button_last_level",                   UNDEFINED_FILENAME      },
6182   { "menu.button_last_level.active",            UNDEFINED_FILENAME      },
6183   { "menu.button_level_number",                 UNDEFINED_FILENAME      },
6184   { "menu.button_level_number.active",          UNDEFINED_FILENAME      },
6185
6186   { "menu.button_insert_solution",              UNDEFINED_FILENAME      },
6187   { "menu.button_insert_solution.active",       UNDEFINED_FILENAME      },
6188   { "menu.button_play_solution",                UNDEFINED_FILENAME      },
6189   { "menu.button_play_solution.active",         UNDEFINED_FILENAME      },
6190
6191   { "menu.button_switch_ecs_aga",               UNDEFINED_FILENAME      },
6192   { "menu.button_switch_ecs_aga.active",        UNDEFINED_FILENAME      },
6193
6194   { "menu.button_touch_back",                   "RocksTouch.png"        },
6195   { "menu.button_touch_back.x",                 "210"                   },
6196   { "menu.button_touch_back.y",                 "180"                   },
6197   { "menu.button_touch_back.width",             "60"                    },
6198   { "menu.button_touch_back.height",            "60"                    },
6199   { "menu.button_touch_back.pressed_xoffset",   "-200"                  },
6200   { "menu.button_touch_next",                   "RocksTouch.png"        },
6201   { "menu.button_touch_next.x",                 "330"                   },
6202   { "menu.button_touch_next.y",                 "180"                   },
6203   { "menu.button_touch_next.width",             "60"                    },
6204   { "menu.button_touch_next.height",            "60"                    },
6205   { "menu.button_touch_next.pressed_xoffset",   "-200"                  },
6206   { "menu.button_touch_back2",                  "RocksTouch.png"        },
6207   { "menu.button_touch_back2.x",                "210"                   },
6208   { "menu.button_touch_back2.y",                "180"                   },
6209   { "menu.button_touch_back2.width",            "60"                    },
6210   { "menu.button_touch_back2.height",           "60"                    },
6211   { "menu.button_touch_back2.pressed_xoffset",  "-200"                  },
6212   { "menu.button_touch_next2",                  "RocksTouch.png"        },
6213   { "menu.button_touch_next2.x",                "330"                   },
6214   { "menu.button_touch_next2.y",                "180"                   },
6215   { "menu.button_touch_next2.width",            "60"                    },
6216   { "menu.button_touch_next2.height",           "60"                    },
6217   { "menu.button_touch_next2.pressed_xoffset", "-200"                   },
6218
6219   { "menu.scrollbar",                           "RocksDC.png"           },
6220   { "menu.scrollbar.xpos",                      "8"                     },
6221   { "menu.scrollbar.ypos",                      "10"                    },
6222   { "menu.scrollbar.frames",                    "1"                     },
6223   { "menu.scrollbar.active",                    "RocksDC.png"           },
6224   { "menu.scrollbar.active.xpos",               "9"                     },
6225   { "menu.scrollbar.active.ypos",               "10"                    },
6226   { "menu.scrollbar.active.frames",             "1"                     },
6227
6228   { "gfx.game.panel.time_anim",                 "RocksDoorMM.png"       },
6229   { "gfx.game.panel.time_anim.x",               "5"                     },
6230   { "gfx.game.panel.time_anim.y",               "0"                     },
6231   { "gfx.game.panel.time_anim.width",           "90"                    },
6232   { "gfx.game.panel.time_anim.height",          "35"                    },
6233   { "gfx.game.panel.time_anim.frames",          "1"                     },
6234   { "gfx.game.panel.time_anim.active",          "RocksDoorMM.png"       },
6235   { "gfx.game.panel.time_anim.active.x",        "105"                   },
6236   { "gfx.game.panel.time_anim.active.y",        "0"                     },
6237   { "gfx.game.panel.time_anim.active.width",    "90"                    },
6238   { "gfx.game.panel.time_anim.active.height",   "35"                    },
6239   { "gfx.game.panel.time_anim.active.frames",   "1"                     },
6240
6241   { "gfx.game.panel.health_anim",               "RocksDoorMM.png"       },
6242   { "gfx.game.panel.health_anim.x",             "5"                     },
6243   { "gfx.game.panel.health_anim.y",             "35"                    },
6244   { "gfx.game.panel.health_anim.width",         "90"                    },
6245   { "gfx.game.panel.health_anim.height",        "35"                    },
6246   { "gfx.game.panel.health_anim.frames",        "1"                     },
6247   { "gfx.game.panel.health_anim.active",        "RocksDoorMM.png"       },
6248   { "gfx.game.panel.health_anim.active.x",      "105"                   },
6249   { "gfx.game.panel.health_anim.active.y",      "35"                    },
6250   { "gfx.game.panel.health_anim.active.width",  "90"                    },
6251   { "gfx.game.panel.health_anim.active.height", "35"                    },
6252   { "gfx.game.panel.health_anim.active.frames", "1"                     },
6253
6254   { "gfx.game.button.stop",                     "RocksDoor.png"         },
6255   { "gfx.game.button.stop.x",                   "305"                   },
6256   { "gfx.game.button.stop.y",                   "185"                   },
6257   { "gfx.game.button.stop.width",               "30"                    },
6258   { "gfx.game.button.stop.height",              "30"                    },
6259   { "gfx.game.button.stop.pressed_xoffset",     "-100"                  },
6260   { "gfx.game.button.pause",                    "RocksDoor.png"         },
6261   { "gfx.game.button.pause.x",                  "335"                   },
6262   { "gfx.game.button.pause.y",                  "185"                   },
6263   { "gfx.game.button.pause.width",              "30"                    },
6264   { "gfx.game.button.pause.height",             "30"                    },
6265   { "gfx.game.button.pause.pressed_xoffset",    "-100"                  },
6266   { "gfx.game.button.play",                     "RocksDoor.png"         },
6267   { "gfx.game.button.play.x",                   "365"                   },
6268   { "gfx.game.button.play.y",                   "185"                   },
6269   { "gfx.game.button.play.width",               "30"                    },
6270   { "gfx.game.button.play.height",              "30"                    },
6271   { "gfx.game.button.play.pressed_xoffset",     "-100"                  },
6272
6273   { "gfx.game.button.undo",                     "RocksDoor2.png"        },
6274   { "gfx.game.button.undo.x",                   "105"                   },
6275   { "gfx.game.button.undo.y",                   "20"                    },
6276   { "gfx.game.button.undo.width",               "30"                    },
6277   { "gfx.game.button.undo.height",              "30"                    },
6278   { "gfx.game.button.undo.pressed_xoffset",     "-100"                  },
6279   { "gfx.game.button.redo",                     "RocksDoor2.png"        },
6280   { "gfx.game.button.redo.x",                   "165"                   },
6281   { "gfx.game.button.redo.y",                   "20"                    },
6282   { "gfx.game.button.redo.width",               "30"                    },
6283   { "gfx.game.button.redo.height",              "30"                    },
6284   { "gfx.game.button.redo.pressed_xoffset",     "-100"                  },
6285
6286   { "gfx.game.button.save",                     "RocksDoor2.png"        },
6287   { "gfx.game.button.save.x",                   "105"                   },
6288   { "gfx.game.button.save.y",                   "50"                    },
6289   { "gfx.game.button.save.width",               "30"                    },
6290   { "gfx.game.button.save.height",              "30"                    },
6291   { "gfx.game.button.save.pressed_xoffset",     "-100"                  },
6292   { "gfx.game.button.pause2",                   "RocksDoor2.png"        },
6293   { "gfx.game.button.pause2.x",                 "135"                   },
6294   { "gfx.game.button.pause2.y",                 "50"                    },
6295   { "gfx.game.button.pause2.width",             "30"                    },
6296   { "gfx.game.button.pause2.height",            "30"                    },
6297   { "gfx.game.button.pause2.pressed_xoffset",   "-100"                  },
6298   { "gfx.game.button.pause2.active_yoffset",    "-30"                   },
6299   { "gfx.game.button.load",                     "RocksDoor2.png"        },
6300   { "gfx.game.button.load.x",                   "165"                   },
6301   { "gfx.game.button.load.y",                   "50"                    },
6302   { "gfx.game.button.load.width",               "30"                    },
6303   { "gfx.game.button.load.height",              "30"                    },
6304   { "gfx.game.button.load.pressed_xoffset",     "-100"                  },
6305
6306   { "gfx.game.button.sound_music",              "RocksDoor.png"         },
6307   { "gfx.game.button.sound_music.x",            "305"                   },
6308   { "gfx.game.button.sound_music.y",            "245"                   },
6309   { "gfx.game.button.sound_music.width",        "30"                    },
6310   { "gfx.game.button.sound_music.height",       "30"                    },
6311   { "gfx.game.button.sound_music.pressed_xoffset", "-100"               },
6312   { "gfx.game.button.sound_music.active_yoffset", "-30"                 },
6313   { "gfx.game.button.sound_loops",              "RocksDoor.png"         },
6314   { "gfx.game.button.sound_loops.x",            "335"                   },
6315   { "gfx.game.button.sound_loops.y",            "245"                   },
6316   { "gfx.game.button.sound_loops.width",        "30"                    },
6317   { "gfx.game.button.sound_loops.height",       "30"                    },
6318   { "gfx.game.button.sound_loops.pressed_xoffset", "-100"               },
6319   { "gfx.game.button.sound_loops.active_yoffset", "-30"                 },
6320   { "gfx.game.button.sound_simple",             "RocksDoor.png"         },
6321   { "gfx.game.button.sound_simple.x",           "365"                   },
6322   { "gfx.game.button.sound_simple.y",           "245"                   },
6323   { "gfx.game.button.sound_simple.width",       "30"                    },
6324   { "gfx.game.button.sound_simple.height",      "30"                    },
6325   { "gfx.game.button.sound_simple.pressed_xoffset", "-100"              },
6326   { "gfx.game.button.sound_simple.active_yoffset", "-30"                },
6327
6328   { "gfx.game.button.panel_stop",               UNDEFINED_FILENAME      },
6329   { "gfx.game.button.panel_pause",              UNDEFINED_FILENAME      },
6330   { "gfx.game.button.panel_play",               UNDEFINED_FILENAME      },
6331
6332   { "gfx.game.button.panel_sound_music",        UNDEFINED_FILENAME      },
6333   { "gfx.game.button.panel_sound_loops",        UNDEFINED_FILENAME      },
6334   { "gfx.game.button.panel_sound_simple",       UNDEFINED_FILENAME      },
6335
6336   { "gfx.game.button.touch_stop",               "RocksTouch.png"        },
6337   { "gfx.game.button.touch_stop.x",             "210"                   },
6338   { "gfx.game.button.touch_stop.y",             "120"                   },
6339   { "gfx.game.button.touch_stop.width",         "60"                    },
6340   { "gfx.game.button.touch_stop.height",        "60"                    },
6341   { "gfx.game.button.touch_stop.pressed_xoffset", "-200"                },
6342   { "gfx.game.button.touch_pause",              "RocksTouch.png"        },
6343   { "gfx.game.button.touch_pause.x",            "270"                   },
6344   { "gfx.game.button.touch_pause.y",            "120"                   },
6345   { "gfx.game.button.touch_pause.width",        "60"                    },
6346   { "gfx.game.button.touch_pause.height",       "60"                    },
6347   { "gfx.game.button.touch_pause.pressed_xoffset", "-200"               },
6348   { "gfx.game.button.touch_pause.active_yoffset", "60"                  },
6349
6350   { "gfx.tape.button.eject",                    "RocksDoor.png"         },
6351   { "gfx.tape.button.eject.x",                  "305"                   },
6352   { "gfx.tape.button.eject.y",                  "357"                   },
6353   { "gfx.tape.button.eject.width",              "18"                    },
6354   { "gfx.tape.button.eject.height",             "18"                    },
6355   { "gfx.tape.button.eject.pressed_xoffset",    "-100"                  },
6356   { "gfx.tape.button.extra",                    "RocksDoor.png"         },
6357   { "gfx.tape.button.extra.x",                  "505"                   },
6358   { "gfx.tape.button.extra.y",                  "357"                   },
6359   { "gfx.tape.button.extra.width",              "18"                    },
6360   { "gfx.tape.button.extra.height",             "18"                    },
6361   { "gfx.tape.button.extra.pressed_xoffset",    "-100"                  },
6362   { "gfx.tape.button.stop",                     "RocksDoor.png"         },
6363   { "gfx.tape.button.stop.x",                   "323"                   },
6364   { "gfx.tape.button.stop.y",                   "357"                   },
6365   { "gfx.tape.button.stop.width",               "18"                    },
6366   { "gfx.tape.button.stop.height",              "18"                    },
6367   { "gfx.tape.button.stop.pressed_xoffset",     "-100"                  },
6368   { "gfx.tape.button.pause",                    "RocksDoor.png"         },
6369   { "gfx.tape.button.pause.x",                  "341"                   },
6370   { "gfx.tape.button.pause.y",                  "357"                   },
6371   { "gfx.tape.button.pause.width",              "18"                    },
6372   { "gfx.tape.button.pause.height",             "18"                    },
6373   { "gfx.tape.button.pause.pressed_xoffset",    "-100"                  },
6374   { "gfx.tape.button.record",                   "RocksDoor.png"         },
6375   { "gfx.tape.button.record.x",                 "359"                   },
6376   { "gfx.tape.button.record.y",                 "357"                   },
6377   { "gfx.tape.button.record.width",             "18"                    },
6378   { "gfx.tape.button.record.height",            "18"                    },
6379   { "gfx.tape.button.record.pressed_xoffset",   "-100"                  },
6380   { "gfx.tape.button.play",                     "RocksDoor.png"         },
6381   { "gfx.tape.button.play.x",                   "377"                   },
6382   { "gfx.tape.button.play.y",                   "357"                   },
6383   { "gfx.tape.button.play.width",               "18"                    },
6384   { "gfx.tape.button.play.height",              "18"                    },
6385   { "gfx.tape.button.play.pressed_xoffset",     "-100"                  },
6386
6387   { "gfx.tape.button.insert_solution",          UNDEFINED_FILENAME      },
6388   { "gfx.tape.button.play_solution",            UNDEFINED_FILENAME      },
6389
6390   { "gfx.tape.symbol.eject",                    UNDEFINED_FILENAME      },
6391   { "gfx.tape.symbol.stop",                     UNDEFINED_FILENAME      },
6392   { "gfx.tape.symbol.pause",                    "RocksDoor.png"         },
6393   { "gfx.tape.symbol.pause.x",                  "340"                   },
6394   { "gfx.tape.symbol.pause.y",                  "321"                   },
6395   { "gfx.tape.symbol.pause.width",              "17"                    },
6396   { "gfx.tape.symbol.pause.height",             "13"                    },
6397   { "gfx.tape.symbol.record",                   "RocksDoor.png"         },
6398   { "gfx.tape.symbol.record.x",                 "325"                   },
6399   { "gfx.tape.symbol.record.y",                 "321"                   },
6400   { "gfx.tape.symbol.record.width",             "16"                    },
6401   { "gfx.tape.symbol.record.height",            "16"                    },
6402   { "gfx.tape.symbol.play",                     "RocksDoor.png"         },
6403   { "gfx.tape.symbol.play.x",                   "357"                   },
6404   { "gfx.tape.symbol.play.y",                   "321"                   },
6405   { "gfx.tape.symbol.play.width",               "11"                    },
6406   { "gfx.tape.symbol.play.height",              "13"                    },
6407   { "gfx.tape.symbol.fast_forward",             "RocksDoor.png"         },
6408   { "gfx.tape.symbol.fast_forward.x",           "539"                   },
6409   { "gfx.tape.symbol.fast_forward.y",           "193"                   },
6410   { "gfx.tape.symbol.fast_forward.width",       "27"                    },
6411   { "gfx.tape.symbol.fast_forward.height",      "13"                    },
6412   { "gfx.tape.symbol.warp_forward",             "RocksDoor.png"         },
6413   { "gfx.tape.symbol.warp_forward.x",           "539"                   },
6414   { "gfx.tape.symbol.warp_forward.y",           "152"                   },
6415   { "gfx.tape.symbol.warp_forward.width",       "27"                    },
6416   { "gfx.tape.symbol.warp_forward.height",      "13"                    },
6417   { "gfx.tape.symbol.warp_forward_blind",       "RocksDoor.png"         },
6418   { "gfx.tape.symbol.warp_forward_blind.x",     "539"                   },
6419   { "gfx.tape.symbol.warp_forward_blind.y",     "165"                   },
6420   { "gfx.tape.symbol.warp_forward_blind.width", "27"                    },
6421   { "gfx.tape.symbol.warp_forward_blind.height","13"                    },
6422   { "gfx.tape.symbol.pause_before_end",         "RocksDoor.png"         },
6423   { "gfx.tape.symbol.pause_before_end.x",       "539"                   },
6424   { "gfx.tape.symbol.pause_before_end.y",       "221"                   },
6425   { "gfx.tape.symbol.pause_before_end.width",   "27"                    },
6426   { "gfx.tape.symbol.pause_before_end.height",  "13"                    },
6427   { "gfx.tape.symbol.single_step",              UNDEFINED_FILENAME      },
6428
6429   { "gfx.tape.label.eject",                     UNDEFINED_FILENAME      },
6430   { "gfx.tape.label.stop",                      UNDEFINED_FILENAME      },
6431   { "gfx.tape.label.pause",                     "RocksDoor.png"         },
6432   { "gfx.tape.label.pause.x",                   "305"                   },
6433   { "gfx.tape.label.pause.y",                   "341"                   },
6434   { "gfx.tape.label.pause.width",               "35"                    },
6435   { "gfx.tape.label.pause.height",              "8"                     },
6436   { "gfx.tape.label.record",                    "RocksDoor.png"         },
6437   { "gfx.tape.label.record.x",                  "305"                   },
6438   { "gfx.tape.label.record.y",                  "321"                   },
6439   { "gfx.tape.label.record.width",              "20"                    },
6440   { "gfx.tape.label.record.height",             "12"                    },
6441   { "gfx.tape.label.play",                      "RocksDoor.png"         },
6442   { "gfx.tape.label.play.x",                    "370"                   },
6443   { "gfx.tape.label.play.y",                    "321"                   },
6444   { "gfx.tape.label.play.width",                "22"                    },
6445   { "gfx.tape.label.play.height",               "12"                    },
6446   { "gfx.tape.label.fast_forward",              "RocksDoor.png"         },
6447   { "gfx.tape.label.fast_forward.x",            "505"                   },
6448   { "gfx.tape.label.fast_forward.y",            "193"                   },
6449   { "gfx.tape.label.fast_forward.width",        "40"                    },
6450   { "gfx.tape.label.fast_forward.height",       "28"                    },
6451   { "gfx.tape.label.warp_forward",              "RocksDoor.png"         },
6452   { "gfx.tape.label.warp_forward.x",            "505"                   },
6453   { "gfx.tape.label.warp_forward.y",            "165"                   },
6454   { "gfx.tape.label.warp_forward.width",        "40"                    },
6455   { "gfx.tape.label.warp_forward.height",       "28"                    },
6456   { "gfx.tape.label.warp_forward_blind",        "RocksDoor.png"         },
6457   { "gfx.tape.label.warp_forward_blind.x",      "505"                   },
6458   { "gfx.tape.label.warp_forward_blind.y",      "165"                   },
6459   { "gfx.tape.label.warp_forward_blind.width",  "40"                    },
6460   { "gfx.tape.label.warp_forward_blind.height", "28"                    },
6461   { "gfx.tape.label.pause_before_end",          "RocksDoor.png"         },
6462   { "gfx.tape.label.pause_before_end.x",        "505"                   },
6463   { "gfx.tape.label.pause_before_end.y",        "221"                   },
6464   { "gfx.tape.label.pause_before_end.width",    "40"                    },
6465   { "gfx.tape.label.pause_before_end.height",   "28"                    },
6466   { "gfx.tape.label.single_step",               "RocksDoor.png"         },
6467   { "gfx.tape.label.single_step.x",             "557"                   },
6468   { "gfx.tape.label.single_step.y",             "139"                   },
6469   { "gfx.tape.label.single_step.width",         "38"                    },
6470   { "gfx.tape.label.single_step.height",        "13"                    },
6471
6472   { "gfx.tape.label.date",                      "RocksDoor.png"         },
6473   { "gfx.tape.label.date.x",                    "305"                   },
6474   { "gfx.tape.label.date.y",                    "285"                   },
6475   { "gfx.tape.label.date.width",                "90"                    },
6476   { "gfx.tape.label.date.height",               "31"                    },
6477   { "gfx.tape.label.time",                      "RocksDoor.png"         },
6478   { "gfx.tape.label.time.x",                    "346"                   },
6479   { "gfx.tape.label.time.y",                    "335"                   },
6480   { "gfx.tape.label.time.width",                "45"                    },
6481   { "gfx.tape.label.time.height",               "13"                    },
6482
6483   { "gfx.request.button.yes",                   "RocksDoor.png"         },
6484   { "gfx.request.button.yes.x",                 "302"                   },
6485   { "gfx.request.button.yes.y",                 "0"                     },
6486   { "gfx.request.button.yes.width",             "46"                    },
6487   { "gfx.request.button.yes.height",            "28"                    },
6488   { "gfx.request.button.yes.pressed_xoffset",   "-100"                  },
6489   { "gfx.request.button.no",                    "RocksDoor.png"         },
6490   { "gfx.request.button.no.x",                  "352"                   },
6491   { "gfx.request.button.no.y",                  "0"                     },
6492   { "gfx.request.button.no.width",              "46"                    },
6493   { "gfx.request.button.no.height",             "28"                    },
6494   { "gfx.request.button.no.pressed_xoffset",    "-100"                  },
6495   { "gfx.request.button.confirm",               "RocksDoor.png"         },
6496   { "gfx.request.button.confirm.x",             "302"                   },
6497   { "gfx.request.button.confirm.y",             "30"                    },
6498   { "gfx.request.button.confirm.width",         "96"                    },
6499   { "gfx.request.button.confirm.height",        "28"                    },
6500   { "gfx.request.button.confirm.pressed_xoffset", "-100"                },
6501   { "gfx.request.button.player_1",              "RocksDoor.png"         },
6502   { "gfx.request.button.player_1.x",            "305"                   },
6503   { "gfx.request.button.player_1.y",            "185"                   },
6504   { "gfx.request.button.player_1.width",        "30"                    },
6505   { "gfx.request.button.player_1.height",       "30"                    },
6506   { "gfx.request.button.player_1.pressed_xoffset", "-100"               },
6507   { "gfx.request.button.player_2",              UNDEFINED_FILENAME      },
6508   { "gfx.request.button.player_2.clone_from",   "gfx.request.button.player_1" },
6509   { "gfx.request.button.player_3",              UNDEFINED_FILENAME      },
6510   { "gfx.request.button.player_3.clone_from",   "gfx.request.button.player_1" },
6511   { "gfx.request.button.player_4",              UNDEFINED_FILENAME      },
6512   { "gfx.request.button.player_4.clone_from",   "gfx.request.button.player_1" },
6513
6514   { "gfx.request.button.touch_yes",             "RocksTouch.png"        },
6515   { "gfx.request.button.touch_yes.x",           "204"                   },
6516   { "gfx.request.button.touch_yes.y",           "0"                     },
6517   { "gfx.request.button.touch_yes.width",       "92"                    },
6518   { "gfx.request.button.touch_yes.height",      "56"                    },
6519   { "gfx.request.button.touch_yes.pressed_xoffset", "-200"              },
6520   { "gfx.request.button.touch_no",              "RocksTouch.png"        },
6521   { "gfx.request.button.touch_no.x",            "304"                   },
6522   { "gfx.request.button.touch_no.y",            "0"                     },
6523   { "gfx.request.button.touch_no.width",        "92"                    },
6524   { "gfx.request.button.touch_no.height",       "56"                    },
6525   { "gfx.request.button.touch_no.pressed_xoffset", "-200"               },
6526   { "gfx.request.button.touch_confirm",         "RocksTouch.png"        },
6527   { "gfx.request.button.touch_confirm.x",       "204"                   },
6528   { "gfx.request.button.touch_confirm.y",       "60"                    },
6529   { "gfx.request.button.touch_confirm.width",   "192"                   },
6530   { "gfx.request.button.touch_confirm.height",  "56"                    },
6531   { "gfx.request.button.touch_confirm.pressed_xoffset", "-200"          },
6532
6533   { "font.initial_1",                           "RocksFontSmall.png"    },
6534   { "font.initial_1.x",                         "0"                     },
6535   { "font.initial_1.y",                         "0"                     },
6536   { "font.initial_1.width",                     "14"                    },
6537   { "font.initial_1.height",                    "14"                    },
6538   { "font.initial_2",                           "RocksFontSmall.png"    },
6539   { "font.initial_2.x",                         "0"                     },
6540   { "font.initial_2.y",                         "70"                    },
6541   { "font.initial_2.width",                     "14"                    },
6542   { "font.initial_2.height",                    "14"                    },
6543   { "font.initial_3",                           "RocksFontSmall.png"    },
6544   { "font.initial_3.x",                         "0"                     },
6545   { "font.initial_3.y",                         "140"                   },
6546   { "font.initial_3.width",                     "14"                    },
6547   { "font.initial_3.height",                    "14"                    },
6548   { "font.initial_4",                           "RocksFontSmall.png"    },
6549   { "font.initial_4.x",                         "0"                     },
6550   { "font.initial_4.y",                         "210"                   },
6551   { "font.initial_4.width",                     "14"                    },
6552   { "font.initial_4.height",                    "14"                    },
6553
6554   { "font.title_1",                             "RocksFontBig.png"      },
6555   { "font.title_1.x",                           "0"                     },
6556   { "font.title_1.y",                           "480"                   },
6557   { "font.title_1.width",                       "32"                    },
6558   { "font.title_1.height",                      "32"                    },
6559   { "font.title_2",                             "RocksFontSmall.png"    },
6560   { "font.title_2.x",                           "0"                     },
6561   { "font.title_2.y",                           "0"                     },
6562   { "font.title_2.width",                       "14"                    },
6563   { "font.title_2.height",                      "14"                    },
6564   { "font.title_2.SETUP",                       UNDEFINED_FILENAME      },
6565   { "font.title_2.SETUP.clone_from",            "font.text_2"           },
6566
6567   { "font.menu_1",                              "RocksFontBig.png"      },
6568   { "font.menu_1.x",                            "0"                     },
6569   { "font.menu_1.y",                            "320"                   },
6570   { "font.menu_1.width",                        "32"                    },
6571   { "font.menu_1.height",                       "32"                    },
6572   { "font.menu_1.active",                       "RocksFontBig.png"      },
6573   { "font.menu_1.active.x",                     "0"                     },
6574   { "font.menu_1.active.y",                     "480"                   },
6575   { "font.menu_1.active.width",                 "32"                    },
6576   { "font.menu_1.active.height",                "32"                    },
6577   { "font.menu_2",                              "RocksFontMedium.png"   },
6578   { "font.menu_2.x",                            "0"                     },
6579   { "font.menu_2.y",                            "320"                   },
6580   { "font.menu_2.width",                        "16"                    },
6581   { "font.menu_2.height",                       "32"                    },
6582   { "font.menu_2.active",                       "RocksFontMedium.png"   },
6583   { "font.menu_2.active.x",                     "0"                     },
6584   { "font.menu_2.active.y",                     "480"                   },
6585   { "font.menu_2.active.width",                 "16"                    },
6586   { "font.menu_2.active.height",                "32"                    },
6587
6588   { "font.text_1",                              "RocksFontSmall.png"    },
6589   { "font.text_1.x",                            "0"                     },
6590   { "font.text_1.y",                            "140"                   },
6591   { "font.text_1.width",                        "14"                    },
6592   { "font.text_1.height",                       "14"                    },
6593   { "font.text_1.MAIN",                         UNDEFINED_FILENAME      },
6594   { "font.text_1.MAIN.clone_from",              "font.text_1.PREVIEW"   },
6595   { "font.text_1.LEVELS",                       "RocksFontMedium.png"   },
6596   { "font.text_1.LEVELS.x",                     "0"                     },
6597   { "font.text_1.LEVELS.y",                     "0"                     },
6598   { "font.text_1.LEVELS.width",                 "16"                    },
6599   { "font.text_1.LEVELS.height",                "32"                    },
6600   { "font.text_1.LEVELNR",                      UNDEFINED_FILENAME      },
6601   { "font.text_1.LEVELNR.clone_from",           "font.text_1.LEVELS"    },
6602   { "font.text_1.SETUP",                        UNDEFINED_FILENAME      },
6603   { "font.text_1.SETUP.clone_from",             "font.text_1.LEVELS"    },
6604   { "font.text_1.NAMES",                        UNDEFINED_FILENAME      },
6605   { "font.text_1.NAMES.clone_from",             "font.input_1.MAIN"     },
6606   { "font.text_1.PREVIEW",                      "RocksFontEM.png"       },
6607   { "font.text_1.PREVIEW.x",                    "0"                     },
6608   { "font.text_1.PREVIEW.y",                    "160"                   },
6609   { "font.text_1.PREVIEW.width",                "16"                    },
6610   { "font.text_1.PREVIEW.height",               "16"                    },
6611   { "font.text_1.SCORES",                       "RocksFontMedium.png"   },
6612   { "font.text_1.SCORES.x",                     "0"                     },
6613   { "font.text_1.SCORES.y",                     "480"                   },
6614   { "font.text_1.SCORES.width",                 "16"                    },
6615   { "font.text_1.SCORES.height",                "32"                    },
6616   { "font.text_1.active.SCORES",                "RocksFontMedium.png"   },
6617   { "font.text_1.active.SCORES.x",              "0"                     },
6618   { "font.text_1.active.SCORES.y",              "0"                     },
6619   { "font.text_1.active.SCORES.width",          "16"                    },
6620   { "font.text_1.active.SCORES.height",         "32"                    },
6621   { "font.text_1.PANEL",                        UNDEFINED_FILENAME      },
6622   { "font.text_1.PANEL.clone_from",             "font.level_number"     },
6623   { "font.text_1.DOOR",                         UNDEFINED_FILENAME      },
6624   { "font.text_1.DOOR.clone_from",              "font.level_number"     },
6625   { "font.text_2",                              "RocksFontSmall.png"    },
6626   { "font.text_2.x",                            "0"                     },
6627   { "font.text_2.y",                            "210"                   },
6628   { "font.text_2.width",                        "14"                    },
6629   { "font.text_2.height",                       "14"                    },
6630   { "font.text_2.MAIN",                         UNDEFINED_FILENAME      },
6631   { "font.text_2.MAIN.clone_from",              "font.text_2.PREVIEW"   },
6632   { "font.text_2.LEVELS",                       "RocksFontMedium.png"   },
6633   { "font.text_2.LEVELS.x",                     "0"                     },
6634   { "font.text_2.LEVELS.y",                     "160"                   },
6635   { "font.text_2.LEVELS.width",                 "16"                    },
6636   { "font.text_2.LEVELS.height",                "32"                    },
6637   { "font.text_2.LEVELNR",                      UNDEFINED_FILENAME      },
6638   { "font.text_2.LEVELNR.clone_from",           "font.text_2.LEVELS"    },
6639   { "font.text_2.SETUP",                        UNDEFINED_FILENAME      },
6640   { "font.text_2.SETUP.clone_from",             "font.text_2.LEVELS"    },
6641   { "font.text_2.NAMES",                        UNDEFINED_FILENAME      },
6642   { "font.text_2.NAMES.clone_from",             "font.option_off"       },
6643   { "font.text_2.PREVIEW",                      "RocksFontEM.png"       },
6644   { "font.text_2.PREVIEW.x",                    "0"                     },
6645   { "font.text_2.PREVIEW.y",                    "160"                   },
6646   { "font.text_2.PREVIEW.width",                "16"                    },
6647   { "font.text_2.PREVIEW.height",               "16"                    },
6648   { "font.text_2.SCORES",                       "RocksFontBig.png"      },
6649   { "font.text_2.SCORES.x",                     "0"                     },
6650   { "font.text_2.SCORES.y",                     "320"                   },
6651   { "font.text_2.SCORES.width",                 "32"                    },
6652   { "font.text_2.SCORES.height",                "32"                    },
6653   { "font.text_2.active.SCORES",                "RocksFontBig.png"      },
6654   { "font.text_2.active.SCORES.x",              "0"                     },
6655   { "font.text_2.active.SCORES.y",              "0"                     },
6656   { "font.text_2.active.SCORES.width",          "32"                    },
6657   { "font.text_2.active.SCORES.height",         "32"                    },
6658   { "font.text_3",                              "RocksFontSmall.png"    },
6659   { "font.text_3.x",                            "0"                     },
6660   { "font.text_3.y",                            "0"                     },
6661   { "font.text_3.width",                        "14"                    },
6662   { "font.text_3.height",                       "14"                    },
6663   { "font.text_3.LEVELS",                       "RocksFontMedium.png"   },
6664   { "font.text_3.LEVELS.x",                     "0"                     },
6665   { "font.text_3.LEVELS.y",                     "320"                   },
6666   { "font.text_3.LEVELS.width",                 "16"                    },
6667   { "font.text_3.LEVELS.height",                "32"                    },
6668   { "font.text_3.LEVELNR",                      UNDEFINED_FILENAME      },
6669   { "font.text_3.LEVELNR.clone_from",           "font.text_3.LEVELS"    },
6670   { "font.text_3.SETUP",                        UNDEFINED_FILENAME      },
6671   { "font.text_3.SETUP.clone_from",             "font.text_3.LEVELS"    },
6672   { "font.text_3.NAMES",                        UNDEFINED_FILENAME      },
6673   { "font.text_3.NAMES.clone_from",             "font.menu_1"           },
6674   { "font.text_3.PREVIEW",                      "RocksFontEM.png"       },
6675   { "font.text_3.PREVIEW.x",                    "0"                     },
6676   { "font.text_3.PREVIEW.y",                    "160"                   },
6677   { "font.text_3.PREVIEW.width",                "16"                    },
6678   { "font.text_3.PREVIEW.height",               "16"                    },
6679   { "font.text_3.SCORES",                       "RocksFontMedium.png"   },
6680   { "font.text_3.SCORES.x",                     "0"                     },
6681   { "font.text_3.SCORES.y",                     "480"                   },
6682   { "font.text_3.SCORES.width",                 "16"                    },
6683   { "font.text_3.SCORES.height",                "32"                    },
6684   { "font.text_3.active.SCORES",                "RocksFontMedium.png"   },
6685   { "font.text_3.active.SCORES.x",              "0"                     },
6686   { "font.text_3.active.SCORES.y",              "0"                     },
6687   { "font.text_3.active.SCORES.width",          "16"                    },
6688   { "font.text_3.active.SCORES.height",         "32"                    },
6689   { "font.text_4",                              "RocksFontSmall.png"    },
6690   { "font.text_4.x",                            "0"                     },
6691   { "font.text_4.y",                            "70"                    },
6692   { "font.text_4.width",                        "14"                    },
6693   { "font.text_4.height",                       "14"                    },
6694   { "font.text_4.MAIN",                         UNDEFINED_FILENAME      },
6695   { "font.text_4.MAIN.clone_from",              "font.text_3.PREVIEW"   },
6696   { "font.text_4.LEVELS",                       "RocksFontMedium.png"   },
6697   { "font.text_4.LEVELS.x",                     "0"                     },
6698   { "font.text_4.LEVELS.y",                     "480"                   },
6699   { "font.text_4.LEVELS.width",                 "16"                    },
6700   { "font.text_4.LEVELS.height",                "32"                    },
6701   { "font.text_4.LEVELNR",                      UNDEFINED_FILENAME      },
6702   { "font.text_4.LEVELNR.clone_from",           "font.text_4.LEVELS"    },
6703   { "font.text_4.SETUP",                        UNDEFINED_FILENAME      },
6704   { "font.text_4.SETUP.clone_from",             "font.text_4.LEVELS"    },
6705   { "font.text_4.NAMES",                        UNDEFINED_FILENAME      },
6706   { "font.text_4.NAMES.clone_from",             "font.menu_1.active"    },
6707   { "font.text_4.SCORES",                       "RocksFontMedium.png"   },
6708   { "font.text_4.SCORES.x",                     "0"                     },
6709   { "font.text_4.SCORES.y",                     "480"                   },
6710   { "font.text_4.SCORES.width",                 "16"                    },
6711   { "font.text_4.SCORES.height",                "32"                    },
6712   { "font.text_4.active.SCORES",                "RocksFontMedium.png"   },
6713   { "font.text_4.active.SCORES.x",              "0"                     },
6714   { "font.text_4.active.SCORES.y",              "0"                     },
6715   { "font.text_4.active.SCORES.width",          "16"                    },
6716   { "font.text_4.active.SCORES.height",         "32"                    },
6717
6718   { "font.envelope_1",                          "RocksFontEM.png"       },
6719   { "font.envelope_1.x",                        "0"                     },
6720   { "font.envelope_1.y",                        "160"                   },
6721   { "font.envelope_1.width",                    "16"                    },
6722   { "font.envelope_1.height",                   "16"                    },
6723   { "font.envelope_2",                          "RocksFontEM.png"       },
6724   { "font.envelope_2.x",                        "0"                     },
6725   { "font.envelope_2.y",                        "160"                   },
6726   { "font.envelope_2.width",                    "16"                    },
6727   { "font.envelope_2.height",                   "16"                    },
6728   { "font.envelope_3",                          "RocksFontEM.png"       },
6729   { "font.envelope_3.x",                        "0"                     },
6730   { "font.envelope_3.y",                        "160"                   },
6731   { "font.envelope_3.width",                    "16"                    },
6732   { "font.envelope_3.height",                   "16"                    },
6733   { "font.envelope_4",                          "RocksFontEM.png"       },
6734   { "font.envelope_4.x",                        "0"                     },
6735   { "font.envelope_4.y",                        "160"                   },
6736   { "font.envelope_4.width",                    "16"                    },
6737   { "font.envelope_4.height",                   "16"                    },
6738
6739   { "font.request",                             "RocksFontSmall.png"    },
6740   { "font.request.x",                           "0"                     },
6741   { "font.request.y",                           "210"                   },
6742   { "font.request.width",                       "14"                    },
6743   { "font.request.height",                      "14"                    },
6744
6745   { "font.input_1",                             "RocksFontSmall.png"    },
6746   { "font.input_1.x",                           "0"                     },
6747   { "font.input_1.y",                           "210"                   },
6748   { "font.input_1.width",                       "14"                    },
6749   { "font.input_1.height",                      "14"                    },
6750   { "font.input_1.MAIN",                        "RocksFontBig.png"      },
6751   { "font.input_1.MAIN.x",                      "0"                     },
6752   { "font.input_1.MAIN.y",                      "0"                     },
6753   { "font.input_1.MAIN.width",                  "32"                    },
6754   { "font.input_1.MAIN.height",                 "32"                    },
6755   { "font.input_1.NAMES",                       UNDEFINED_FILENAME      },
6756   { "font.input_1.NAMES.clone_from",            "font.input_1.MAIN"     },
6757   { "font.input_1.active",                      "RocksFontSmall.png"    },
6758   { "font.input_1.active.x",                    "0"                     },
6759   { "font.input_1.active.y",                    "210"                   },
6760   { "font.input_1.active.width",                "14"                    },
6761   { "font.input_1.active.height",               "14"                    },
6762   { "font.input_1.active.MAIN",                 "RocksFontBig.png"      },
6763   { "font.input_1.active.MAIN.x",               "0"                     },
6764   { "font.input_1.active.MAIN.y",               "480"                   },
6765   { "font.input_1.active.MAIN.width",           "32"                    },
6766   { "font.input_1.active.MAIN.height",          "32"                    },
6767   { "font.input_1.active.NAMES",                UNDEFINED_FILENAME      },
6768   { "font.input_1.active.NAMES.clone_from",     "font.input_1.active.MAIN" },
6769   { "font.input_1.active.SETUP",                "RocksFontBig.png"      },
6770   { "font.input_1.active.SETUP.x",              "0"                     },
6771   { "font.input_1.active.SETUP.y",              "0"                     },
6772   { "font.input_1.active.SETUP.width",          "32"                    },
6773   { "font.input_1.active.SETUP.height",         "32"                    },
6774   { "font.input_2",                             "RocksFontSmall.png"    },
6775   { "font.input_2.x",                           "0"                     },
6776   { "font.input_2.y",                           "210"                   },
6777   { "font.input_2.width",                       "14"                    },
6778   { "font.input_2.height",                      "14"                    },
6779   { "font.input_2.active",                      "RocksFontSmall.png"    },
6780   { "font.input_2.active.x",                    "0"                     },
6781   { "font.input_2.active.y",                    "210"                   },
6782   { "font.input_2.active.width",                "14"                    },
6783   { "font.input_2.active.height",               "14"                    },
6784
6785   { "font.option_off",                          "RocksFontBig.png"      },
6786   { "font.option_off.x",                        "0"                     },
6787   { "font.option_off.y",                        "160"                   },
6788   { "font.option_off.width",                    "32"                    },
6789   { "font.option_off.height",                   "32"                    },
6790   { "font.option_off_narrow",                   UNDEFINED_FILENAME      },
6791   { "font.option_off_narrow.clone_from",        "font.text_2.LEVELS"    },
6792   { "font.option_on",                           "RocksFontBig.png"      },
6793   { "font.option_on.x",                         "0"                     },
6794   { "font.option_on.y",                         "480"                   },
6795   { "font.option_on.width",                     "32"                    },
6796   { "font.option_on.height",                    "32"                    },
6797   { "font.option_on_narrow",                    UNDEFINED_FILENAME      },
6798   { "font.option_on_narrow.clone_from",         "font.text_4.LEVELS"    },
6799
6800   { "font.value_1",                             "RocksFontBig.png"      },
6801   { "font.value_1.x",                           "0"                     },
6802   { "font.value_1.y",                           "480"                   },
6803   { "font.value_1.width",                       "32"                    },
6804   { "font.value_1.height",                      "32"                    },
6805   { "font.value_2",                             "RocksFontMedium.png"   },
6806   { "font.value_2.x",                           "0"                     },
6807   { "font.value_2.y",                           "480"                   },
6808   { "font.value_2.width",                       "16"                    },
6809   { "font.value_2.height",                      "32"                    },
6810   { "font.value_old",                           "RocksFontBig.png"      },
6811   { "font.value_old.x",                         "0"                     },
6812   { "font.value_old.y",                         "160"                   },
6813   { "font.value_old.width",                     "32"                    },
6814   { "font.value_old.height",                    "32"                    },
6815   { "font.value_old_narrow",                    UNDEFINED_FILENAME      },
6816   { "font.value_old_narrow.clone_from",         "font.text_2.LEVELS"    },
6817   { "font.value_narrow",                        UNDEFINED_FILENAME      },
6818   { "font.value_narrow.clone_from",             "font.text_4.LEVELS"    },
6819
6820   { "font.level_number",                        "RocksFontSmall.png"    },
6821   { "font.level_number.x",                      "0"                     },
6822   { "font.level_number.y",                      "350"                   },
6823   { "font.level_number.width",                  "10"                    },
6824   { "font.level_number.height",                 "14"                    },
6825   { "font.level_number.active",                 UNDEFINED_FILENAME      },
6826   { "font.level_number.active.clone_from",      "font.level_number"     },
6827
6828   { "font.tape_recorder",                       "RocksFontSmall.png"    },
6829   { "font.tape_recorder.x",                     "0"                     },
6830   { "font.tape_recorder.y",                     "280"                   },
6831   { "font.tape_recorder.width",                 "11"                    },
6832   { "font.tape_recorder.height",                "14"                    },
6833
6834   { "font.game_info",                           "RocksFontEM.png"       },
6835   { "font.game_info.xpos",                      "0"                     },
6836   { "font.game_info.ypos",                      "0"                     },
6837   { "font.game_info.delay",                     "10"                    },
6838
6839   { "font.info.elements",                       UNDEFINED_FILENAME      },
6840   { "font.info.elements.clone_from",            "font.level_number"     },
6841
6842   { "font.info.levelset",                       UNDEFINED_FILENAME      },
6843   { "font.info.levelset.clone_from",            "font.level_number"     },
6844
6845   { "font.main.network_players",                UNDEFINED_FILENAME      },
6846   { "font.main.network_players.clone_from",     "font.level_number"     },
6847
6848   { "editor.element_border",                    "RocksMore.png"         },
6849   { "editor.element_border.xpos",               "0"                     },
6850   { "editor.element_border.ypos",               "2"                     },
6851   { "editor.element_border.border_size",        "8"                     },
6852
6853   { "editor.element_border_input",              "RocksMore.png"         },
6854   { "editor.element_border_input.xpos",         "10"                    },
6855   { "editor.element_border_input.ypos",         "7"                     },
6856   { "editor.element_border_input.border_size",  "4"                     },
6857
6858   { "editor.counter.down",                      "RocksDoor.png"         },
6859   { "editor.counter.down.x",                    "302"                   },
6860   { "editor.counter.down.y",                    "60"                    },
6861   { "editor.counter.down.width",                "20"                    },
6862   { "editor.counter.down.height",               "20"                    },
6863   { "editor.counter.down.pressed_xoffset",      "-100"                  },
6864
6865   { "editor.counter.up",                        "RocksDoor.png"         },
6866   { "editor.counter.up.x",                      "378"                   },
6867   { "editor.counter.up.y",                      "60"                    },
6868   { "editor.counter.up.width",                  "20"                    },
6869   { "editor.counter.up.height",                 "20"                    },
6870   { "editor.counter.up.pressed_xoffset",        "-100"                  },
6871
6872   { "editor.counter.input",                     "RocksDoor.png"         },
6873   { "editor.counter.input.x",                   "324"                   },
6874   { "editor.counter.input.y",                   "60"                    },
6875   { "editor.counter.input.width",               "52"                    },
6876   { "editor.counter.input.height",              "20"                    },
6877   { "editor.counter.input.active_xoffset",      "-100"                  },
6878   { "editor.counter.input.border_size",         "3"                     },
6879
6880   { "editor.selectbox.input",                   "RocksDoor.png"         },
6881   { "editor.selectbox.input.x",                 "324"                   },
6882   { "editor.selectbox.input.y",                 "82"                    },
6883   { "editor.selectbox.input.width",             "52"                    },
6884   { "editor.selectbox.input.height",            "20"                    },
6885   { "editor.selectbox.input.active_xoffset",    "-100"                  },
6886   { "editor.selectbox.input.border_size",       "3"                     },
6887
6888   { "editor.selectbox.button",                  UNDEFINED_FILENAME      },
6889   { "editor.selectbox.button.width",            "14"                    },
6890
6891   { "editor.checkbox",                          "RocksDoor.png"         },
6892   { "editor.checkbox.x",                        "302"                   },
6893   { "editor.checkbox.y",                        "82"                    },
6894   { "editor.checkbox.width",                    "20"                    },
6895   { "editor.checkbox.height",                   "20"                    },
6896   { "editor.checkbox.pressed_xoffset",          "-100"                  },
6897   { "editor.checkbox.active_xoffset",           "76"                    },
6898
6899   { "editor.radiobutton",                       "RocksDoor.png"         },
6900   { "editor.radiobutton.x",                     "302"                   },
6901   { "editor.radiobutton.y",                     "104"                   },
6902   { "editor.radiobutton.width",                 "20"                    },
6903   { "editor.radiobutton.height",                "20"                    },
6904   { "editor.radiobutton.pressed_xoffset",       "-100"                  },
6905   { "editor.radiobutton.active_xoffset",        "76"                    },
6906
6907   { "editor.stickybutton",                      "RocksDoor.png"         },
6908   { "editor.stickybutton.x",                    "302"                   },
6909   { "editor.stickybutton.y",                    "126"                   },
6910   { "editor.stickybutton.width",                "20"                    },
6911   { "editor.stickybutton.height",               "20"                    },
6912   { "editor.stickybutton.pressed_xoffset",      "-100"                  },
6913   { "editor.stickybutton.active_xoffset",       "76"                    },
6914
6915   { "editor.tabbutton",                         "RocksDoor.png"         },
6916   { "editor.tabbutton.x",                       "324"                   },
6917   { "editor.tabbutton.y",                       "104"                   },
6918   { "editor.tabbutton.width",                   "52"                    },
6919   { "editor.tabbutton.height",                  "20"                    },
6920   { "editor.tabbutton.pressed_xoffset",         "-100"                  },
6921   { "editor.tabbutton.active_yoffset",          "22"                    },
6922   { "editor.tabbutton.border_size",             "3"                     },
6923   { "editor.tabbutton.draw_xoffset",            "2"                     },
6924
6925   { "editor.textbutton",                        "RocksDoor.png"         },
6926   { "editor.textbutton.x",                      "324"                   },
6927   { "editor.textbutton.y",                      "148"                   },
6928   { "editor.textbutton.width",                  "52"                    },
6929   { "editor.textbutton.height",                 "20"                    },
6930   { "editor.textbutton.pressed_xoffset",        "-100"                  },
6931   { "editor.textbutton.border_size",            "3"                     },
6932   { "editor.textbutton.draw_xoffset",           "2"                     },
6933
6934   { "editor.input.text",                        "RocksDoor.png"         },
6935   { "editor.input.text.x",                      "324"                   },
6936   { "editor.input.text.y",                      "60"                    },
6937   { "editor.input.text.width",                  "52"                    },
6938   { "editor.input.text.height",                 "20"                    },
6939   { "editor.input.text.active_xoffset",         "-100"                  },
6940   { "editor.input.text.border_size",            "3"                     },
6941
6942   { "editor.input.textarea",                    "RocksDoor.png"         },
6943   { "editor.input.textarea.x",                  "324"                   },
6944   { "editor.input.textarea.y",                  "60"                    },
6945   { "editor.input.textarea.width",              "52"                    },
6946   { "editor.input.textarea.height",             "20"                    },
6947   { "editor.input.textarea.active_xoffset",     "-100"                  },
6948   { "editor.input.textarea.border_size",        "3"                     },
6949
6950   { "editor.cascade_list",                      "RocksMore.png"         },
6951   { "editor.cascade_list.xpos",                 "9"                     },
6952   { "editor.cascade_list.ypos",                 "8"                     },
6953   { "editor.cascade_list.frames",               "1"                     },
6954   { "editor.cascade_list.active",               "RocksMore.png"         },
6955   { "editor.cascade_list.active.xpos",          "10"                    },
6956   { "editor.cascade_list.active.ypos",          "8"                     },
6957   { "editor.cascade_list.active.frames",        "1"                     },
6958
6959   { "editor.palette.button",                    "RocksDoor.png"         },
6960   { "editor.palette.button.x",                  "525"                   },
6961   { "editor.palette.button.y",                  "30"                    },
6962   { "editor.palette.button.width",              "20"                    },
6963   { "editor.palette.button.height",             "20"                    },
6964   { "editor.palette.button.pressed_xoffset",    "-20"                   },
6965
6966   { "editor.palette.scroll_up",                 "RocksDoor.png"         },
6967   { "editor.palette.scroll_up.x",               "750"                   },
6968   { "editor.palette.scroll_up.y",               "0"                     },
6969   { "editor.palette.scroll_up.width",           "10"                    },
6970   { "editor.palette.scroll_up.height",          "10"                    },
6971   { "editor.palette.scroll_up.pressed_xoffset", "-10"                   },
6972
6973   { "editor.palette.scroll_down",               "RocksDoor.png"         },
6974   { "editor.palette.scroll_down.x",             "750"                   },
6975   { "editor.palette.scroll_down.y",             "10"                    },
6976   { "editor.palette.scroll_down.width",         "10"                    },
6977   { "editor.palette.scroll_down.height",        "10"                    },
6978   { "editor.palette.scroll_down.pressed_xoffset", "-10"                 },
6979
6980   { "editor.palette.scrollbar",                 "RocksDoor.png"         },
6981   { "editor.palette.scrollbar.x",               "750"                   },
6982   { "editor.palette.scrollbar.y",               "20"                    },
6983   { "editor.palette.scrollbar.width",           "10"                    },
6984   { "editor.palette.scrollbar.height",          "10"                    },
6985   { "editor.palette.scrollbar.pressed_xoffset", "-10"                   },
6986   { "editor.palette.scrollbar.border_size",     "3"                     },
6987
6988   { "editor.playfield.scroll_up",               "RocksDoor.png"         },
6989   { "editor.playfield.scroll_up.x",             "724"                   },
6990   { "editor.playfield.scroll_up.y",             "0"                     },
6991   { "editor.playfield.scroll_up.width",         "16"                    },
6992   { "editor.playfield.scroll_up.height",        "16"                    },
6993   { "editor.playfield.scroll_up.pressed_xoffset", "-16"                 },
6994
6995   { "editor.playfield.scroll_down",             "RocksDoor.png"         },
6996   { "editor.playfield.scroll_down.x",           "724"                   },
6997   { "editor.playfield.scroll_down.y",           "16"                    },
6998   { "editor.playfield.scroll_down.width",       "16"                    },
6999   { "editor.playfield.scroll_down.height",      "16"                    },
7000   { "editor.playfield.scroll_down.pressed_xoffset", "-16"               },
7001
7002   { "editor.playfield.scroll_left",             "RocksDoor.png"         },
7003   { "editor.playfield.scroll_left.x",           "724"                   },
7004   { "editor.playfield.scroll_left.y",           "32"                    },
7005   { "editor.playfield.scroll_left.width",       "16"                    },
7006   { "editor.playfield.scroll_left.height",      "16"                    },
7007   { "editor.playfield.scroll_left.pressed_xoffset", "-16"               },
7008
7009   { "editor.playfield.scroll_right",            "RocksDoor.png"         },
7010   { "editor.playfield.scroll_right.x",          "724"                   },
7011   { "editor.playfield.scroll_right.y",          "48"                    },
7012   { "editor.playfield.scroll_right.width",      "16"                    },
7013   { "editor.playfield.scroll_right.height",     "16"                    },
7014   { "editor.playfield.scroll_right.pressed_xoffset", "-16"              },
7015
7016   { "editor.playfield.scrollbar",               "RocksDoor.png"         },
7017   { "editor.playfield.scrollbar.x",             "724"                   },
7018   { "editor.playfield.scrollbar.y",             "64"                    },
7019   { "editor.playfield.scrollbar.width",         "16"                    },
7020   { "editor.playfield.scrollbar.height",        "16"                    },
7021   { "editor.playfield.scrollbar.pressed_xoffset", "-16"                 },
7022   { "editor.playfield.scrollbar.border_size",   "3"                     },
7023
7024   { "gfx.editor.button.prev_level",             "RocksDoor.png"         },
7025   { "gfx.editor.button.prev_level.x",           "724"                   },
7026   { "gfx.editor.button.prev_level.y",           "32"                    },
7027   { "gfx.editor.button.prev_level.width",       "16"                    },
7028   { "gfx.editor.button.prev_level.height",      "16"                    },
7029   { "gfx.editor.button.prev_level.pressed_xoffset", "-16"               },
7030
7031   { "gfx.editor.button.next_level",             "RocksDoor.png"         },
7032   { "gfx.editor.button.next_level.x",           "724"                   },
7033   { "gfx.editor.button.next_level.y",           "48"                    },
7034   { "gfx.editor.button.next_level.width",       "16"                    },
7035   { "gfx.editor.button.next_level.height",      "16"                    },
7036   { "gfx.editor.button.next_level.pressed_xoffset", "-16"               },
7037
7038   { "gfx.editor.button.properties",             "RocksDoor2.png"        },
7039   { "gfx.editor.button.properties.x",           "105"                   },
7040   { "gfx.editor.button.properties.y",           "0"                     },
7041   { "gfx.editor.button.properties.width",       "90"                    },
7042   { "gfx.editor.button.properties.height",      "20"                    },
7043   { "gfx.editor.button.properties.pressed_xoffset", "-100"              },
7044
7045   { "gfx.editor.button.element_left",           "RocksDoor2.png"        },
7046   { "gfx.editor.button.element_left.x",         "368"                   },
7047   { "gfx.editor.button.element_left.y",         "48"                    },
7048   { "gfx.editor.button.element_left.width",     "16"                    },
7049   { "gfx.editor.button.element_left.height",    "16"                    },
7050   { "gfx.editor.button.element_left.pressed_xoffset", "0"               },
7051
7052   { "gfx.editor.button.element_middle",         "RocksDoor2.png"        },
7053   { "gfx.editor.button.element_middle.x",       "368"                   },
7054   { "gfx.editor.button.element_middle.y",       "48"                    },
7055   { "gfx.editor.button.element_middle.width",   "16"                    },
7056   { "gfx.editor.button.element_middle.height",  "16"                    },
7057   { "gfx.editor.button.element_middle.pressed_xoffset", "0"             },
7058
7059   { "gfx.editor.button.element_right",          "RocksDoor2.png"        },
7060   { "gfx.editor.button.element_right.x",        "368"                   },
7061   { "gfx.editor.button.element_right.y",        "48"                    },
7062   { "gfx.editor.button.element_right.width",    "16"                    },
7063   { "gfx.editor.button.element_right.height",   "16"                    },
7064   { "gfx.editor.button.element_right.pressed_xoffset", "0"              },
7065
7066   { "gfx.editor.button.palette",                UNDEFINED_FILENAME      },
7067
7068   { "editor.no_toolbox_button",                 "RocksDoor.png"         },
7069   { "editor.no_toolbox_button.x",               "506"                   },
7070   { "editor.no_toolbox_button.y",               "286"                   },
7071   { "editor.no_toolbox_button.width",           "22"                    },
7072   { "editor.no_toolbox_button.height",          "22"                    },
7073
7074   { "gfx.editor.button.draw_single",            "RocksDoor.png"         },
7075   { "gfx.editor.button.draw_single.x",          "706"                   },
7076   { "gfx.editor.button.draw_single.y",          "242"                   },
7077   { "gfx.editor.button.draw_single.width",      "22"                    },
7078   { "gfx.editor.button.draw_single.height",     "22"                    },
7079   { "gfx.editor.button.draw_single.pressed_xoffset", "-100"             },
7080   { "gfx.editor.button.draw_single.active_yoffset",  "-94"              },
7081
7082   { "gfx.editor.button.draw_connected",         "RocksDoor.png"         },
7083   { "gfx.editor.button.draw_connected.x",       "728"                   },
7084   { "gfx.editor.button.draw_connected.y",       "242"                   },
7085   { "gfx.editor.button.draw_connected.width",   "22"                    },
7086   { "gfx.editor.button.draw_connected.height",  "22"                    },
7087   { "gfx.editor.button.draw_connected.pressed_xoffset", "-100"          },
7088   { "gfx.editor.button.draw_connected.active_yoffset",  "-94"           },
7089
7090   { "gfx.editor.button.draw_line",              "RocksDoor.png"         },
7091   { "gfx.editor.button.draw_line.x",            "750"                   },
7092   { "gfx.editor.button.draw_line.y",            "242"                   },
7093   { "gfx.editor.button.draw_line.width",        "22"                    },
7094   { "gfx.editor.button.draw_line.height",       "22"                    },
7095   { "gfx.editor.button.draw_line.pressed_xoffset", "-100"               },
7096   { "gfx.editor.button.draw_line.active_yoffset",  "-94"                },
7097
7098   { "gfx.editor.button.draw_arc",               "RocksDoor.png"         },
7099   { "gfx.editor.button.draw_arc.x",             "772"                   },
7100   { "gfx.editor.button.draw_arc.y",             "242"                   },
7101   { "gfx.editor.button.draw_arc.width",         "22"                    },
7102   { "gfx.editor.button.draw_arc.height",        "22"                    },
7103   { "gfx.editor.button.draw_arc.pressed_xoffset", "-100"                },
7104   { "gfx.editor.button.draw_arc.active_yoffset",  "-94"                 },
7105
7106   { "gfx.editor.button.draw_rectangle",         "RocksDoor.png"         },
7107   { "gfx.editor.button.draw_rectangle.x",       "706"                   },
7108   { "gfx.editor.button.draw_rectangle.y",       "264"                   },
7109   { "gfx.editor.button.draw_rectangle.width",   "22"                    },
7110   { "gfx.editor.button.draw_rectangle.height",  "22"                    },
7111   { "gfx.editor.button.draw_rectangle.pressed_xoffset", "-100"          },
7112   { "gfx.editor.button.draw_rectangle.active_yoffset",  "-94"           },
7113
7114   { "gfx.editor.button.draw_filled_box",        "RocksDoor.png"         },
7115   { "gfx.editor.button.draw_filled_box.x",      "728"                   },
7116   { "gfx.editor.button.draw_filled_box.y",      "264"                   },
7117   { "gfx.editor.button.draw_filled_box.width",  "22"                    },
7118   { "gfx.editor.button.draw_filled_box.height", "22"                    },
7119   { "gfx.editor.button.draw_filled_box.pressed_xoffset", "-100"         },
7120   { "gfx.editor.button.draw_filled_box.active_yoffset",  "-94"          },
7121
7122   { "gfx.editor.button.rotate_up",              "RocksDoor.png"         },
7123   { "gfx.editor.button.rotate_up.x",            "750"                   },
7124   { "gfx.editor.button.rotate_up.y",            "264"                   },
7125   { "gfx.editor.button.rotate_up.width",        "22"                    },
7126   { "gfx.editor.button.rotate_up.height",       "22"                    },
7127   { "gfx.editor.button.rotate_up.pressed_xoffset", "-100"               },
7128   { "gfx.editor.button.rotate_up.active_yoffset",  "-94"                },
7129
7130   { "gfx.editor.button.draw_text",              "RocksDoor.png"         },
7131   { "gfx.editor.button.draw_text.x",            "772"                   },
7132   { "gfx.editor.button.draw_text.y",            "264"                   },
7133   { "gfx.editor.button.draw_text.width",        "22"                    },
7134   { "gfx.editor.button.draw_text.height",       "22"                    },
7135   { "gfx.editor.button.draw_text.pressed_xoffset", "-100"               },
7136   { "gfx.editor.button.draw_text.active_yoffset",  "-94"                },
7137
7138   { "gfx.editor.button.flood_fill",             "RocksDoor.png"         },
7139   { "gfx.editor.button.flood_fill.x",           "706"                   },
7140   { "gfx.editor.button.flood_fill.y",           "286"                   },
7141   { "gfx.editor.button.flood_fill.width",       "22"                    },
7142   { "gfx.editor.button.flood_fill.height",      "22"                    },
7143   { "gfx.editor.button.flood_fill.pressed_xoffset", "-100"              },
7144   { "gfx.editor.button.flood_fill.active_yoffset",  "-94"               },
7145
7146   { "gfx.editor.button.rotate_left",            "RocksDoor.png"         },
7147   { "gfx.editor.button.rotate_left.x",          "728"                   },
7148   { "gfx.editor.button.rotate_left.y",          "286"                   },
7149   { "gfx.editor.button.rotate_left.width",      "22"                    },
7150   { "gfx.editor.button.rotate_left.height",     "22"                    },
7151   { "gfx.editor.button.rotate_left.pressed_xoffset", "-100"             },
7152   { "gfx.editor.button.rotate_left.active_yoffset",  "-94"              },
7153
7154   { "gfx.editor.button.zoom_level",             "RocksDoor2.png"        },
7155   { "gfx.editor.button.zoom_level.x",           "350"                   },
7156   { "gfx.editor.button.zoom_level.y",           "22"                    },
7157   { "gfx.editor.button.zoom_level.width",       "22"                    },
7158   { "gfx.editor.button.zoom_level.height",      "22"                    },
7159   { "gfx.editor.button.zoom_level.pressed_xoffset", "-100"              },
7160   { "gfx.editor.button.zoom_level.active_yoffset",  "-22"               },
7161
7162   { "gfx.editor.button.rotate_right",           "RocksDoor.png"         },
7163   { "gfx.editor.button.rotate_right.x",         "772"                   },
7164   { "gfx.editor.button.rotate_right.y",         "286"                   },
7165   { "gfx.editor.button.rotate_right.width",     "22"                    },
7166   { "gfx.editor.button.rotate_right.height",    "22"                    },
7167   { "gfx.editor.button.rotate_right.pressed_xoffset", "-100"            },
7168   { "gfx.editor.button.rotate_right.active_yoffset",  "-94"             },
7169
7170   { "gfx.editor.button.draw_random",            "RocksDoor.png"         },
7171   { "gfx.editor.button.draw_random.x",          "706"                   },
7172   { "gfx.editor.button.draw_random.y",          "308"                   },
7173   { "gfx.editor.button.draw_random.width",      "22"                    },
7174   { "gfx.editor.button.draw_random.height",     "22"                    },
7175   { "gfx.editor.button.draw_random.pressed_xoffset", "-100"             },
7176   { "gfx.editor.button.draw_random.active_yoffset",  "-94"              },
7177
7178   { "gfx.editor.button.grab_brush",             "RocksDoor.png"         },
7179   { "gfx.editor.button.grab_brush.x",           "728"                   },
7180   { "gfx.editor.button.grab_brush.y",           "308"                   },
7181   { "gfx.editor.button.grab_brush.width",       "22"                    },
7182   { "gfx.editor.button.grab_brush.height",      "22"                    },
7183   { "gfx.editor.button.grab_brush.pressed_xoffset", "-100"              },
7184   { "gfx.editor.button.grab_brush.active_yoffset",  "-94"               },
7185
7186   { "gfx.editor.button.rotate_down",            "RocksDoor.png"         },
7187   { "gfx.editor.button.rotate_down.x",          "750"                   },
7188   { "gfx.editor.button.rotate_down.y",          "308"                   },
7189   { "gfx.editor.button.rotate_down.width",      "22"                    },
7190   { "gfx.editor.button.rotate_down.height",     "22"                    },
7191   { "gfx.editor.button.rotate_down.pressed_xoffset", "-100"             },
7192   { "gfx.editor.button.rotate_down.active_yoffset",  "-94"              },
7193
7194   { "gfx.editor.button.pick_element",           "RocksDoor.png"         },
7195   { "gfx.editor.button.pick_element.x",         "772"                   },
7196   { "gfx.editor.button.pick_element.y",         "308"                   },
7197   { "gfx.editor.button.pick_element.width",     "22"                    },
7198   { "gfx.editor.button.pick_element.height",    "22"                    },
7199   { "gfx.editor.button.pick_element.pressed_xoffset", "-100"            },
7200   { "gfx.editor.button.pick_element.active_yoffset",  "-94"             },
7201
7202   { "gfx.editor.button.ce_copy_from",           "RocksDoor.png"         },
7203   { "gfx.editor.button.ce_copy_from.x",         "528"                   },
7204   { "gfx.editor.button.ce_copy_from.y",         "330"                   },
7205   { "gfx.editor.button.ce_copy_from.width",     "22"                    },
7206   { "gfx.editor.button.ce_copy_from.height",    "22"                    },
7207   { "gfx.editor.button.ce_copy_from.pressed_xoffset", "-100"            },
7208   { "gfx.editor.button.ce_copy_from.active_yoffset",  "-22"             },
7209
7210   { "gfx.editor.button.ce_copy_to",             "RocksDoor.png"         },
7211   { "gfx.editor.button.ce_copy_to.x",           "550"                   },
7212   { "gfx.editor.button.ce_copy_to.y",           "330"                   },
7213   { "gfx.editor.button.ce_copy_to.width",       "22"                    },
7214   { "gfx.editor.button.ce_copy_to.height",      "22"                    },
7215   { "gfx.editor.button.ce_copy_to.pressed_xoffset", "-100"              },
7216   { "gfx.editor.button.ce_copy_to.active_yoffset",  "-22"               },
7217
7218   { "gfx.editor.button.ce_swap",                "RocksDoor.png"         },
7219   { "gfx.editor.button.ce_swap.x",              "572"                   },
7220   { "gfx.editor.button.ce_swap.y",              "330"                   },
7221   { "gfx.editor.button.ce_swap.width",          "22"                    },
7222   { "gfx.editor.button.ce_swap.height",         "22"                    },
7223   { "gfx.editor.button.ce_swap.pressed_xoffset", "-100"                 },
7224   { "gfx.editor.button.ce_swap.active_yoffset",  "-22"                  },
7225
7226   { "gfx.editor.button.ce_copy",                "RocksDoor.png"         },
7227   { "gfx.editor.button.ce_copy.x",              "550"                   },
7228   { "gfx.editor.button.ce_copy.y",              "286"                   },
7229   { "gfx.editor.button.ce_copy.width",          "22"                    },
7230   { "gfx.editor.button.ce_copy.height",         "22"                    },
7231   { "gfx.editor.button.ce_copy.pressed_xoffset", "-100"                 },
7232
7233   { "gfx.editor.button.ce_paste",               "RocksDoor.png"         },
7234   { "gfx.editor.button.ce_paste.x",             "572"                   },
7235   { "gfx.editor.button.ce_paste.y",             "286"                   },
7236   { "gfx.editor.button.ce_paste.width",         "22"                    },
7237   { "gfx.editor.button.ce_paste.height",        "22"                    },
7238   { "gfx.editor.button.ce_paste.pressed_xoffset", "-100"                },
7239
7240   { "gfx.editor.button.cp_copy",                "RocksDoor.png"         },
7241   { "gfx.editor.button.cp_copy.x",              "525"                   },
7242   { "gfx.editor.button.cp_copy.y",              "50"                    },
7243   { "gfx.editor.button.cp_copy.width",          "20"                    },
7244   { "gfx.editor.button.cp_copy.height",         "20"                    },
7245   { "gfx.editor.button.cp_copy.pressed_xoffset", "-20"                  },
7246
7247   { "gfx.editor.button.cp_paste",               "RocksDoor.png"         },
7248   { "gfx.editor.button.cp_paste.x",             "525"                   },
7249   { "gfx.editor.button.cp_paste.y",             "70"                    },
7250   { "gfx.editor.button.cp_paste.width",         "20"                    },
7251   { "gfx.editor.button.cp_paste.height",        "20"                    },
7252   { "gfx.editor.button.cp_paste.pressed_xoffset", "-20"                 },
7253
7254   { "gfx.editor.button.undo",                   "RocksDoor.png"         },
7255   { "gfx.editor.button.undo.x",                 "705"                   },
7256   { "gfx.editor.button.undo.y",                 "335"                   },
7257   { "gfx.editor.button.undo.width",             "30"                    },
7258   { "gfx.editor.button.undo.height",            "20"                    },
7259   { "gfx.editor.button.undo.pressed_xoffset",   "-100"                  },
7260
7261   { "gfx.editor.button.conf",                   "RocksDoor.png"         },
7262   { "gfx.editor.button.conf.x",                 "735"                   },
7263   { "gfx.editor.button.conf.y",                 "335"                   },
7264   { "gfx.editor.button.conf.width",             "30"                    },
7265   { "gfx.editor.button.conf.height",            "20"                    },
7266   { "gfx.editor.button.conf.pressed_xoffset",   "-100"                  },
7267
7268   { "gfx.editor.button.save",                   "RocksDoor.png"         },
7269   { "gfx.editor.button.save.x",                 "765"                   },
7270   { "gfx.editor.button.save.y",                 "335"                   },
7271   { "gfx.editor.button.save.width",             "30"                    },
7272   { "gfx.editor.button.save.height",            "20"                    },
7273   { "gfx.editor.button.save.pressed_xoffset",   "-100"                  },
7274
7275   { "gfx.editor.button.clear",                  "RocksDoor.png"         },
7276   { "gfx.editor.button.clear.x",                "705"                   },
7277   { "gfx.editor.button.clear.y",                "355"                   },
7278   { "gfx.editor.button.clear.width",            "30"                    },
7279   { "gfx.editor.button.clear.height",           "20"                    },
7280   { "gfx.editor.button.clear.pressed_xoffset",  "-100"                  },
7281
7282   { "gfx.editor.button.test",                   "RocksDoor.png"         },
7283   { "gfx.editor.button.test.x",                 "735"                   },
7284   { "gfx.editor.button.test.y",                 "355"                   },
7285   { "gfx.editor.button.test.width",             "30"                    },
7286   { "gfx.editor.button.test.height",            "20"                    },
7287   { "gfx.editor.button.test.pressed_xoffset",   "-100"                  },
7288
7289   { "gfx.editor.button.exit",                   "RocksDoor.png"         },
7290   { "gfx.editor.button.exit.x",                 "765"                   },
7291   { "gfx.editor.button.exit.y",                 "355"                   },
7292   { "gfx.editor.button.exit.width",             "30"                    },
7293   { "gfx.editor.button.exit.height",            "20"                    },
7294   { "gfx.editor.button.exit.pressed_xoffset",   "-100"                  },
7295
7296   { "gfx.editor.input.level_number",            "RocksDoor.png"         },
7297   { "gfx.editor.input.level_number.x",          "529"                   },
7298   { "gfx.editor.input.level_number.y",          "5"                     },
7299   { "gfx.editor.input.level_number.width",      "42"                    },
7300   { "gfx.editor.input.level_number.height",     "16"                    },
7301   { "gfx.editor.input.level_number.border_size","1"                     },
7302
7303   { "setup.input.text",                         "RocksSP.png"           },
7304   { "setup.input.text.x",                       "0"                     },
7305   { "setup.input.text.y",                       "0"                     },
7306   { "setup.input.text.width",                   "32"                    },
7307   { "setup.input.text.height",                  "32"                    },
7308   { "setup.input.text.active_xoffset",          "0"                     },
7309   { "setup.input.text.border_size",             "0"                     },
7310
7311   { "global.border",                            "RocksScreen.png"       },
7312   { "global.border.MAIN",                       UNDEFINED_FILENAME      },
7313   { "global.border.SCORES",                     UNDEFINED_FILENAME      },
7314   { "global.border.EDITOR",                     UNDEFINED_FILENAME      },
7315   { "global.border.PLAYING",                    UNDEFINED_FILENAME      },
7316
7317   { "global.door",                              "RocksDoor.png"         },
7318
7319   { "global.busy",                              "RocksBusy.png"         },
7320   { "global.busy.x",                            "0"                     },
7321   { "global.busy.y",                            "0"                     },
7322   { "global.busy.width",                        "32"                    },
7323   { "global.busy.height",                       "32"                    },
7324   { "global.busy.frames",                       "28"                    },
7325   { "global.busy.frames_per_line",              "7"                     },
7326   { "global.busy.delay",                        "2"                     },
7327
7328   { "global.tile_cursor",                       "RocksMore.png"         },
7329   { "global.tile_cursor.xpos",                  "10"                    },
7330   { "global.tile_cursor.ypos",                  "7"                     },
7331   { "global.tile_cursor.frames",                "1"                     },
7332
7333   { "background",                               UNDEFINED_FILENAME      },
7334   { "background.TITLE_INITIAL",                 UNDEFINED_FILENAME      },
7335   { "background.TITLE",                         UNDEFINED_FILENAME      },
7336   { "background.MAIN",                          UNDEFINED_FILENAME      },
7337   { "background.NAMES",                         UNDEFINED_FILENAME      },
7338   { "background.LEVELS",                        UNDEFINED_FILENAME      },
7339   { "background.LEVELNR",                       UNDEFINED_FILENAME      },
7340   { "background.SCORES",                        UNDEFINED_FILENAME      },
7341   { "background.EDITOR",                        UNDEFINED_FILENAME      },
7342   { "background.INFO",                          UNDEFINED_FILENAME      },
7343   { "background.INFO[ELEMENTS]",                UNDEFINED_FILENAME      },
7344   { "background.INFO[MUSIC]",                   UNDEFINED_FILENAME      },
7345   { "background.INFO[CREDITS]",                 UNDEFINED_FILENAME      },
7346   { "background.INFO[PROGRAM]",                 UNDEFINED_FILENAME      },
7347   { "background.INFO[VERSION]",                 UNDEFINED_FILENAME      },
7348   { "background.INFO[LEVELSET]",                UNDEFINED_FILENAME      },
7349   { "background.SETUP",                         UNDEFINED_FILENAME      },
7350   { "background.PLAYING",                       UNDEFINED_FILENAME      },
7351   { "background.DOOR",                          UNDEFINED_FILENAME      },
7352   { "background.TAPE",                          "RocksDoor.png"         },
7353   { "background.TAPE.x",                        "200"                   },
7354   { "background.TAPE.y",                        "280"                   },
7355   { "background.TAPE.width",                    "100"                   },
7356   { "background.TAPE.height",                   "100"                   },
7357   { "background.PANEL",                         "RocksDoor.png"         },
7358   { "background.PANEL.x",                       "400"                   },
7359   { "background.PANEL.y",                       "0"                     },
7360   { "background.PANEL.width",                   "100"                   },
7361   { "background.PANEL.height",                  "280"                   },
7362   { "background.PALETTE",                       "RocksDoor.png"         },
7363   { "background.PALETTE.x",                     "500"                   },
7364   { "background.PALETTE.y",                     "0"                     },
7365   { "background.PALETTE.width",                 "100"                   },
7366   { "background.PALETTE.height",                "280"                   },
7367   { "background.TOOLBOX",                       "RocksDoor.png"         },
7368   { "background.TOOLBOX.x",                     "700"                   },
7369   { "background.TOOLBOX.y",                     "236"                   },
7370   { "background.TOOLBOX.width",                 "100"                   },
7371   { "background.TOOLBOX.height",                "144"                   },
7372
7373   { "background.titlescreen_initial_1",         UNDEFINED_FILENAME      },
7374   { "background.titlescreen_initial_2",         UNDEFINED_FILENAME      },
7375   { "background.titlescreen_initial_3",         UNDEFINED_FILENAME      },
7376   { "background.titlescreen_initial_4",         UNDEFINED_FILENAME      },
7377   { "background.titlescreen_initial_5",         UNDEFINED_FILENAME      },
7378   { "background.titlescreen_1",                 UNDEFINED_FILENAME      },
7379   { "background.titlescreen_2",                 UNDEFINED_FILENAME      },
7380   { "background.titlescreen_3",                 UNDEFINED_FILENAME      },
7381   { "background.titlescreen_4",                 UNDEFINED_FILENAME      },
7382   { "background.titlescreen_5",                 UNDEFINED_FILENAME      },
7383   { "background.titlemessage_initial_1",        UNDEFINED_FILENAME      },
7384   { "background.titlemessage_initial_2",        UNDEFINED_FILENAME      },
7385   { "background.titlemessage_initial_3",        UNDEFINED_FILENAME      },
7386   { "background.titlemessage_initial_4",        UNDEFINED_FILENAME      },
7387   { "background.titlemessage_initial_5",        UNDEFINED_FILENAME      },
7388   { "background.titlemessage_1",                UNDEFINED_FILENAME      },
7389   { "background.titlemessage_2",                UNDEFINED_FILENAME      },
7390   { "background.titlemessage_3",                UNDEFINED_FILENAME      },
7391   { "background.titlemessage_4",                UNDEFINED_FILENAME      },
7392   { "background.titlemessage_5",                UNDEFINED_FILENAME      },
7393
7394   { "background.envelope_1",                    "RocksScreen.png"       },
7395   { "background.envelope_1.x",                  "0"                     },
7396   { "background.envelope_1.y",                  "0"                     },
7397   { "background.envelope_1.width",              "560"                   },
7398   { "background.envelope_1.height",             "560"                   },
7399   { "background.envelope_1.anim_mode",          "default"               },
7400   { "background.envelope_1.draw_masked",        "false"                 },
7401   { "background.envelope_2",                    "RocksScreen.png"       },
7402   { "background.envelope_2.x",                  "0"                     },
7403   { "background.envelope_2.y",                  "0"                     },
7404   { "background.envelope_2.width",              "560"                   },
7405   { "background.envelope_2.height",             "560"                   },
7406   { "background.envelope_2.anim_mode",          "default"               },
7407   { "background.envelope_2.draw_masked",        "false"                 },
7408   { "background.envelope_3",                    "RocksScreen.png"       },
7409   { "background.envelope_3.x",                  "0"                     },
7410   { "background.envelope_3.y",                  "0"                     },
7411   { "background.envelope_3.width",              "560"                   },
7412   { "background.envelope_3.height",             "560"                   },
7413   { "background.envelope_3.anim_mode",          "default"               },
7414   { "background.envelope_3.draw_masked",        "false"                 },
7415   { "background.envelope_4",                    "RocksScreen.png"       },
7416   { "background.envelope_4.x",                  "0"                     },
7417   { "background.envelope_4.y",                  "0"                     },
7418   { "background.envelope_4.width",              "560"                   },
7419   { "background.envelope_4.height",             "560"                   },
7420   { "background.envelope_4.anim_mode",          "default"               },
7421   { "background.envelope_4.draw_masked",        "false"                 },
7422
7423   { "background.request",                       "RocksScreen.png"       },
7424   { "background.request.x",                     "562"                   },
7425   { "background.request.y",                     "56"                    },
7426   { "background.request.width",                 "108"                   },
7427   { "background.request.height",                "288"                   },
7428   { "background.request.anim_mode",             "default"               },
7429   { "background.request.draw_masked",           "false"                 },
7430
7431   { "titlescreen_initial_1",                    UNDEFINED_FILENAME      },
7432   { "titlescreen_initial_2",                    UNDEFINED_FILENAME      },
7433   { "titlescreen_initial_3",                    UNDEFINED_FILENAME      },
7434   { "titlescreen_initial_4",                    UNDEFINED_FILENAME      },
7435   { "titlescreen_initial_5",                    UNDEFINED_FILENAME      },
7436   { "titlescreen_1",                            UNDEFINED_FILENAME      },
7437   { "titlescreen_2",                            UNDEFINED_FILENAME      },
7438   { "titlescreen_3",                            UNDEFINED_FILENAME      },
7439   { "titlescreen_4",                            UNDEFINED_FILENAME      },
7440   { "titlescreen_5",                            UNDEFINED_FILENAME      },
7441
7442   { "gfx.door_1.part_1",                        "RocksDoor.png"         },
7443   { "gfx.door_1.part_1.x",                      "0"                     },
7444   { "gfx.door_1.part_1.y",                      "0"                     },
7445   { "gfx.door_1.part_1.width",                  "100"                   },
7446   { "gfx.door_1.part_1.height",                 "77"                    },
7447   { "gfx.door_1.part_1.frames",                 "1"                     },
7448   { "gfx.door_1.part_2",                        "RocksDoor.png"         },
7449   { "gfx.door_1.part_2.x",                      "0"                     },
7450   { "gfx.door_1.part_2.y",                      "77"                    },
7451   { "gfx.door_1.part_2.width",                  "100"                   },
7452   { "gfx.door_1.part_2.height",                 "63"                    },
7453   { "gfx.door_1.part_2.frames",                 "1"                     },
7454   { "gfx.door_1.part_3",                        "RocksDoor.png"         },
7455   { "gfx.door_1.part_3.x",                      "0"                     },
7456   { "gfx.door_1.part_3.y",                      "140"                   },
7457   { "gfx.door_1.part_3.width",                  "100"                   },
7458   { "gfx.door_1.part_3.height",                 "63"                    },
7459   { "gfx.door_1.part_3.frames",                 "1"                     },
7460   { "gfx.door_1.part_4",                        "RocksDoor.png"         },
7461   { "gfx.door_1.part_4.x",                      "0"                     },
7462   { "gfx.door_1.part_4.y",                      "203"                   },
7463   { "gfx.door_1.part_4.width",                  "100"                   },
7464   { "gfx.door_1.part_4.height",                 "77"                    },
7465   { "gfx.door_1.part_4.frames",                 "1"                     },
7466   { "gfx.door_1.part_5",                        "RocksDoor.png"         },
7467   { "gfx.door_1.part_5.x",                      "100"                   },
7468   { "gfx.door_1.part_5.y",                      "0"                     },
7469   { "gfx.door_1.part_5.width",                  "100"                   },
7470   { "gfx.door_1.part_5.height",                 "77"                    },
7471   { "gfx.door_1.part_5.frames",                 "1"                     },
7472   { "gfx.door_1.part_6",                        "RocksDoor.png"         },
7473   { "gfx.door_1.part_6.x",                      "100"                   },
7474   { "gfx.door_1.part_6.y",                      "77"                    },
7475   { "gfx.door_1.part_6.width",                  "100"                   },
7476   { "gfx.door_1.part_6.height",                 "63"                    },
7477   { "gfx.door_1.part_6.frames",                 "1"                     },
7478   { "gfx.door_1.part_7",                        "RocksDoor.png"         },
7479   { "gfx.door_1.part_7.x",                      "100"                   },
7480   { "gfx.door_1.part_7.y",                      "140"                   },
7481   { "gfx.door_1.part_7.width",                  "100"                   },
7482   { "gfx.door_1.part_7.height",                 "63"                    },
7483   { "gfx.door_1.part_7.frames",                 "1"                     },
7484   { "gfx.door_1.part_8",                        "RocksDoor.png"         },
7485   { "gfx.door_1.part_8.x",                      "100"                   },
7486   { "gfx.door_1.part_8.y",                      "203"                   },
7487   { "gfx.door_1.part_8.width",                  "100"                   },
7488   { "gfx.door_1.part_8.height",                 "77"                    },
7489   { "gfx.door_1.part_8.frames",                 "1"                     },
7490
7491   { "gfx.door_2.part_1",                        "RocksDoor.png"         },
7492   { "gfx.door_2.part_1.x",                      "0"                     },
7493   { "gfx.door_2.part_1.y",                      "280"                   },
7494   { "gfx.door_2.part_1.width",                  "100"                   },
7495   { "gfx.door_2.part_1.height",                 "50"                    },
7496   { "gfx.door_2.part_1.frames",                 "1"                     },
7497   { "gfx.door_2.part_2",                        "RocksDoor.png"         },
7498   { "gfx.door_2.part_2.x",                      "0"                     },
7499   { "gfx.door_2.part_2.y",                      "330"                   },
7500   { "gfx.door_2.part_2.width",                  "100"                   },
7501   { "gfx.door_2.part_2.height",                 "50"                    },
7502   { "gfx.door_2.part_2.frames",                 "1"                     },
7503   { "gfx.door_2.part_3",                        "RocksDoor.png"         },
7504   { "gfx.door_2.part_3.x",                      "100"                   },
7505   { "gfx.door_2.part_3.y",                      "280"                   },
7506   { "gfx.door_2.part_3.width",                  "100"                   },
7507   { "gfx.door_2.part_3.height",                 "50"                    },
7508   { "gfx.door_2.part_3.frames",                 "1"                     },
7509   { "gfx.door_2.part_4",                        "RocksDoor.png"         },
7510   { "gfx.door_2.part_4.x",                      "100"                   },
7511   { "gfx.door_2.part_4.y",                      "330"                   },
7512   { "gfx.door_2.part_4.width",                  "100"                   },
7513   { "gfx.door_2.part_4.height",                 "50"                    },
7514   { "gfx.door_2.part_4.frames",                 "1"                     },
7515   { "gfx.door_2.part_5",                        UNDEFINED_FILENAME      },
7516   { "gfx.door_2.part_6",                        UNDEFINED_FILENAME      },
7517   { "gfx.door_2.part_7",                        UNDEFINED_FILENAME      },
7518   { "gfx.door_2.part_8",                        UNDEFINED_FILENAME      },
7519
7520   { "door_2.top_border_correction",             "RocksDoor.png"         },
7521   { "door_2.top_border_correction.x",           "600"                   },
7522   { "door_2.top_border_correction.y",           "0"                     },
7523   { "door_2.top_border_correction.width",       "108"                   },
7524   { "door_2.top_border_correction.height",      "8"                     },
7525
7526   // the last image entry apparently gets overwritten by very last entry
7527   // of "image_config[]"; so far this bug could not be found and fixed
7528   { "last_image_entry_bug",                     UNDEFINED_FILENAME      },
7529
7530
7531   // ==========================================================================
7532   // non-image definitions
7533   // ==========================================================================
7534
7535   // the following directives are not associated with an image, but
7536   // probably make sense to be defined in "graphicsinfo.conf", too
7537
7538   // keyword to start parser: "CONFIG_VARS_START" <-- do not change!
7539
7540   { "[title_initial].fade_mode",                "fade"                  },
7541   { "[title_initial].fade_delay",               "500"                   },
7542   { "[title_initial].post_delay",               "250"                   },
7543   { "[title_initial].auto_delay",               "-1"                    },
7544   { "[title_initial].auto_delay_unit",          "ms"                    },
7545   { "[title].fade_mode",                        "fade"                  },
7546   { "[title].fade_delay",                       "500"                   },
7547   { "[title].post_delay",                       "250"                   },
7548   { "[title].auto_delay",                       "-1"                    },
7549   { "[title].auto_delay_unit",                  "ms"                    },
7550
7551   { "[titlescreen_initial].sort_priority",      "0"                     },
7552   { "[titlescreen_initial].fade_mode",          ARG_DEFAULT             },
7553   { "[titlescreen_initial].fade_delay",         ARG_DEFAULT             },
7554   { "[titlescreen_initial].post_delay",         ARG_DEFAULT             },
7555   { "[titlescreen_initial].auto_delay",         ARG_DEFAULT             },
7556   { "[titlescreen_initial].auto_delay_unit",    ARG_DEFAULT             },
7557   { "[titlescreen].sort_priority",              "0"                     },
7558   { "[titlescreen].fade_mode",                  ARG_DEFAULT             },
7559   { "[titlescreen].fade_delay",                 ARG_DEFAULT             },
7560   { "[titlescreen].post_delay",                 ARG_DEFAULT             },
7561   { "[titlescreen].auto_delay",                 ARG_DEFAULT             },
7562   { "[titlescreen].auto_delay_unit",            ARG_DEFAULT             },
7563
7564   { "titlescreen_initial_1.sort_priority",      ARG_DEFAULT             },
7565   { "titlescreen_initial_1.fade_mode",          ARG_DEFAULT             },
7566   { "titlescreen_initial_1.fade_delay",         ARG_DEFAULT             },
7567   { "titlescreen_initial_1.post_delay",         ARG_DEFAULT             },
7568   { "titlescreen_initial_1.auto_delay",         ARG_DEFAULT             },
7569   { "titlescreen_initial_1.auto_delay_unit",    ARG_DEFAULT             },
7570   { "titlescreen_initial_2.sort_priority",      ARG_DEFAULT             },
7571   { "titlescreen_initial_2.fade_mode",          ARG_DEFAULT             },
7572   { "titlescreen_initial_2.fade_delay",         ARG_DEFAULT             },
7573   { "titlescreen_initial_2.post_delay",         ARG_DEFAULT             },
7574   { "titlescreen_initial_2.auto_delay",         ARG_DEFAULT             },
7575   { "titlescreen_initial_2.auto_delay_unit",    ARG_DEFAULT             },
7576   { "titlescreen_initial_3.sort_priority",      ARG_DEFAULT             },
7577   { "titlescreen_initial_3.fade_mode",          ARG_DEFAULT             },
7578   { "titlescreen_initial_3.fade_delay",         ARG_DEFAULT             },
7579   { "titlescreen_initial_3.post_delay",         ARG_DEFAULT             },
7580   { "titlescreen_initial_3.auto_delay",         ARG_DEFAULT             },
7581   { "titlescreen_initial_3.auto_delay_unit",    ARG_DEFAULT             },
7582   { "titlescreen_initial_4.sort_priority",      ARG_DEFAULT             },
7583   { "titlescreen_initial_4.fade_mode",          ARG_DEFAULT             },
7584   { "titlescreen_initial_4.fade_delay",         ARG_DEFAULT             },
7585   { "titlescreen_initial_4.post_delay",         ARG_DEFAULT             },
7586   { "titlescreen_initial_4.auto_delay",         ARG_DEFAULT             },
7587   { "titlescreen_initial_4.auto_delay_unit",    ARG_DEFAULT             },
7588   { "titlescreen_initial_5.sort_priority",      ARG_DEFAULT             },
7589   { "titlescreen_initial_5.fade_mode",          ARG_DEFAULT             },
7590   { "titlescreen_initial_5.fade_delay",         ARG_DEFAULT             },
7591   { "titlescreen_initial_5.post_delay",         ARG_DEFAULT             },
7592   { "titlescreen_initial_5.auto_delay",         ARG_DEFAULT             },
7593   { "titlescreen_initial_5.auto_delay_unit",    ARG_DEFAULT             },
7594   { "titlescreen_1.sort_priority",              ARG_DEFAULT             },
7595   { "titlescreen_1.fade_mode",                  ARG_DEFAULT             },
7596   { "titlescreen_1.fade_delay",                 ARG_DEFAULT             },
7597   { "titlescreen_1.post_delay",                 ARG_DEFAULT             },
7598   { "titlescreen_1.auto_delay",                 ARG_DEFAULT             },
7599   { "titlescreen_1.auto_delay_unit",            ARG_DEFAULT             },
7600   { "titlescreen_2.sort_priority",              ARG_DEFAULT             },
7601   { "titlescreen_2.fade_mode",                  ARG_DEFAULT             },
7602   { "titlescreen_2.fade_delay",                 ARG_DEFAULT             },
7603   { "titlescreen_2.post_delay",                 ARG_DEFAULT             },
7604   { "titlescreen_2.auto_delay",                 ARG_DEFAULT             },
7605   { "titlescreen_2.auto_delay_unit",            ARG_DEFAULT             },
7606   { "titlescreen_3.sort_priority",              ARG_DEFAULT             },
7607   { "titlescreen_3.fade_mode",                  ARG_DEFAULT             },
7608   { "titlescreen_3.fade_delay",                 ARG_DEFAULT             },
7609   { "titlescreen_3.post_delay",                 ARG_DEFAULT             },
7610   { "titlescreen_3.auto_delay",                 ARG_DEFAULT             },
7611   { "titlescreen_3.auto_delay_unit",            ARG_DEFAULT             },
7612   { "titlescreen_4.sort_priority",              ARG_DEFAULT             },
7613   { "titlescreen_4.fade_mode",                  ARG_DEFAULT             },
7614   { "titlescreen_4.fade_delay",                 ARG_DEFAULT             },
7615   { "titlescreen_4.post_delay",                 ARG_DEFAULT             },
7616   { "titlescreen_4.auto_delay",                 ARG_DEFAULT             },
7617   { "titlescreen_4.auto_delay_unit",            ARG_DEFAULT             },
7618   { "titlescreen_5.sort_priority",              ARG_DEFAULT             },
7619   { "titlescreen_5.fade_mode",                  ARG_DEFAULT             },
7620   { "titlescreen_5.fade_delay",                 ARG_DEFAULT             },
7621   { "titlescreen_5.post_delay",                 ARG_DEFAULT             },
7622   { "titlescreen_5.auto_delay",                 ARG_DEFAULT             },
7623   { "titlescreen_5.auto_delay_unit",            ARG_DEFAULT             },
7624
7625   { "[titlemessage_initial].x",                 "-1"                    },
7626   { "[titlemessage_initial].y",                 "-1"                    },
7627   { "[titlemessage_initial].width",             "-1"                    },
7628   { "[titlemessage_initial].height",            "-1"                    },
7629   { "[titlemessage_initial].chars",             "-1"                    },
7630   { "[titlemessage_initial].lines",             "-1"                    },
7631   { "[titlemessage_initial].align",             "center"                },
7632   { "[titlemessage_initial].valign",            "middle"                },
7633   { "[titlemessage_initial].font",              "font.text_1"           },
7634   { "[titlemessage_initial].autowrap",          "false"                 },
7635   { "[titlemessage_initial].centered",          "false"                 },
7636   { "[titlemessage_initial].parse_comments",    "false"                 },
7637   { "[titlemessage_initial].sort_priority",     "0"                     },
7638   { "[titlemessage_initial].fade_mode",         ARG_DEFAULT             },
7639   { "[titlemessage_initial].fade_delay",        ARG_DEFAULT             },
7640   { "[titlemessage_initial].post_delay",        ARG_DEFAULT             },
7641   { "[titlemessage_initial].auto_delay",        ARG_DEFAULT             },
7642   { "[titlemessage_initial].auto_delay_unit",   ARG_DEFAULT             },
7643   { "[titlemessage].x",                         "-1"                    },
7644   { "[titlemessage].y",                         "-1"                    },
7645   { "[titlemessage].width",                     "-1"                    },
7646   { "[titlemessage].height",                    "-1"                    },
7647   { "[titlemessage].chars",                     "-1"                    },
7648   { "[titlemessage].lines",                     "-1"                    },
7649   { "[titlemessage].align",                     "center"                },
7650   { "[titlemessage].valign",                    "middle"                },
7651   { "[titlemessage].font",                      "font.text_1"           },
7652   { "[titlemessage].autowrap",                  "false"                 },
7653   { "[titlemessage].centered",                  "false"                 },
7654   { "[titlemessage].parse_comments",            "false"                 },
7655   { "[titlemessage].sort_priority",             "0"                     },
7656   { "[titlemessage].fade_mode",                 ARG_DEFAULT             },
7657   { "[titlemessage].fade_delay",                ARG_DEFAULT             },
7658   { "[titlemessage].post_delay",                ARG_DEFAULT             },
7659   { "[titlemessage].auto_delay",                ARG_DEFAULT             },
7660   { "[titlemessage].auto_delay_unit",           ARG_DEFAULT             },
7661
7662   { "titlemessage_initial_1.x",                 ARG_DEFAULT             },
7663   { "titlemessage_initial_1.y",                 ARG_DEFAULT             },
7664   { "titlemessage_initial_1.width",             ARG_DEFAULT             },
7665   { "titlemessage_initial_1.height",            ARG_DEFAULT             },
7666   { "titlemessage_initial_1.chars",             ARG_DEFAULT             },
7667   { "titlemessage_initial_1.lines",             ARG_DEFAULT             },
7668   { "titlemessage_initial_1.align",             ARG_DEFAULT             },
7669   { "titlemessage_initial_1.valign",            ARG_DEFAULT             },
7670   { "titlemessage_initial_1.font",              ARG_DEFAULT             },
7671   { "titlemessage_initial_1.autowrap",          ARG_DEFAULT             },
7672   { "titlemessage_initial_1.centered",          ARG_DEFAULT             },
7673   { "titlemessage_initial_1.parse_comments",    ARG_DEFAULT             },
7674   { "titlemessage_initial_1.sort_priority",     ARG_DEFAULT             },
7675   { "titlemessage_initial_1.fade_mode",         ARG_DEFAULT             },
7676   { "titlemessage_initial_1.fade_delay",        ARG_DEFAULT             },
7677   { "titlemessage_initial_1.post_delay",        ARG_DEFAULT             },
7678   { "titlemessage_initial_1.auto_delay",        ARG_DEFAULT             },
7679   { "titlemessage_initial_1.auto_delay_unit",   ARG_DEFAULT             },
7680   { "titlemessage_initial_2.x",                 ARG_DEFAULT             },
7681   { "titlemessage_initial_2.y",                 ARG_DEFAULT             },
7682   { "titlemessage_initial_2.width",             ARG_DEFAULT             },
7683   { "titlemessage_initial_2.height",            ARG_DEFAULT             },
7684   { "titlemessage_initial_2.chars",             ARG_DEFAULT             },
7685   { "titlemessage_initial_2.lines",             ARG_DEFAULT             },
7686   { "titlemessage_initial_2.align",             ARG_DEFAULT             },
7687   { "titlemessage_initial_2.valign",            ARG_DEFAULT             },
7688   { "titlemessage_initial_2.font",              ARG_DEFAULT             },
7689   { "titlemessage_initial_2.autowrap",          ARG_DEFAULT             },
7690   { "titlemessage_initial_2.centered",          ARG_DEFAULT             },
7691   { "titlemessage_initial_2.parse_comments",    ARG_DEFAULT             },
7692   { "titlemessage_initial_2.sort_priority",     ARG_DEFAULT             },
7693   { "titlemessage_initial_2.fade_mode",         ARG_DEFAULT             },
7694   { "titlemessage_initial_2.fade_delay",        ARG_DEFAULT             },
7695   { "titlemessage_initial_2.post_delay",        ARG_DEFAULT             },
7696   { "titlemessage_initial_2.auto_delay",        ARG_DEFAULT             },
7697   { "titlemessage_initial_2.auto_delay_unit",   ARG_DEFAULT             },
7698   { "titlemessage_initial_3.x",                 ARG_DEFAULT             },
7699   { "titlemessage_initial_3.y",                 ARG_DEFAULT             },
7700   { "titlemessage_initial_3.width",             ARG_DEFAULT             },
7701   { "titlemessage_initial_3.height",            ARG_DEFAULT             },
7702   { "titlemessage_initial_3.chars",             ARG_DEFAULT             },
7703   { "titlemessage_initial_3.lines",             ARG_DEFAULT             },
7704   { "titlemessage_initial_3.align",             ARG_DEFAULT             },
7705   { "titlemessage_initial_3.valign",            ARG_DEFAULT             },
7706   { "titlemessage_initial_3.font",              ARG_DEFAULT             },
7707   { "titlemessage_initial_3.autowrap",          ARG_DEFAULT             },
7708   { "titlemessage_initial_3.centered",          ARG_DEFAULT             },
7709   { "titlemessage_initial_3.parse_comments",    ARG_DEFAULT             },
7710   { "titlemessage_initial_3.sort_priority",     ARG_DEFAULT             },
7711   { "titlemessage_initial_3.fade_mode",         ARG_DEFAULT             },
7712   { "titlemessage_initial_3.fade_delay",        ARG_DEFAULT             },
7713   { "titlemessage_initial_3.post_delay",        ARG_DEFAULT             },
7714   { "titlemessage_initial_3.auto_delay",        ARG_DEFAULT             },
7715   { "titlemessage_initial_3.auto_delay_unit",   ARG_DEFAULT             },
7716   { "titlemessage_initial_4.x",                 ARG_DEFAULT             },
7717   { "titlemessage_initial_4.y",                 ARG_DEFAULT             },
7718   { "titlemessage_initial_4.width",             ARG_DEFAULT             },
7719   { "titlemessage_initial_4.height",            ARG_DEFAULT             },
7720   { "titlemessage_initial_4.chars",             ARG_DEFAULT             },
7721   { "titlemessage_initial_4.lines",             ARG_DEFAULT             },
7722   { "titlemessage_initial_4.align",             ARG_DEFAULT             },
7723   { "titlemessage_initial_4.valign",            ARG_DEFAULT             },
7724   { "titlemessage_initial_4.font",              ARG_DEFAULT             },
7725   { "titlemessage_initial_4.autowrap",          ARG_DEFAULT             },
7726   { "titlemessage_initial_4.centered",          ARG_DEFAULT             },
7727   { "titlemessage_initial_4.parse_comments",    ARG_DEFAULT             },
7728   { "titlemessage_initial_4.sort_priority",     ARG_DEFAULT             },
7729   { "titlemessage_initial_4.fade_mode",         ARG_DEFAULT             },
7730   { "titlemessage_initial_4.fade_delay",        ARG_DEFAULT             },
7731   { "titlemessage_initial_4.post_delay",        ARG_DEFAULT             },
7732   { "titlemessage_initial_4.auto_delay",        ARG_DEFAULT             },
7733   { "titlemessage_initial_4.auto_delay_unit",   ARG_DEFAULT             },
7734   { "titlemessage_initial_5.x",                 ARG_DEFAULT             },
7735   { "titlemessage_initial_5.y",                 ARG_DEFAULT             },
7736   { "titlemessage_initial_5.width",             ARG_DEFAULT             },
7737   { "titlemessage_initial_5.height",            ARG_DEFAULT             },
7738   { "titlemessage_initial_5.chars",             ARG_DEFAULT             },
7739   { "titlemessage_initial_5.lines",             ARG_DEFAULT             },
7740   { "titlemessage_initial_5.align",             ARG_DEFAULT             },
7741   { "titlemessage_initial_5.valign",            ARG_DEFAULT             },
7742   { "titlemessage_initial_5.font",              ARG_DEFAULT             },
7743   { "titlemessage_initial_5.autowrap",          ARG_DEFAULT             },
7744   { "titlemessage_initial_5.centered",          ARG_DEFAULT             },
7745   { "titlemessage_initial_5.parse_comments",    ARG_DEFAULT             },
7746   { "titlemessage_initial_5.sort_priority",     ARG_DEFAULT             },
7747   { "titlemessage_initial_5.fade_mode",         ARG_DEFAULT             },
7748   { "titlemessage_initial_5.fade_delay",        ARG_DEFAULT             },
7749   { "titlemessage_initial_5.post_delay",        ARG_DEFAULT             },
7750   { "titlemessage_initial_5.auto_delay",        ARG_DEFAULT             },
7751   { "titlemessage_initial_5.auto_delay_unit",   ARG_DEFAULT             },
7752   { "titlemessage_1.x",                         ARG_DEFAULT             },
7753   { "titlemessage_1.y",                         ARG_DEFAULT             },
7754   { "titlemessage_1.width",                     ARG_DEFAULT             },
7755   { "titlemessage_1.height",                    ARG_DEFAULT             },
7756   { "titlemessage_1.chars",                     ARG_DEFAULT             },
7757   { "titlemessage_1.lines",                     ARG_DEFAULT             },
7758   { "titlemessage_1.align",                     ARG_DEFAULT             },
7759   { "titlemessage_1.valign",                    ARG_DEFAULT             },
7760   { "titlemessage_1.font",                      ARG_DEFAULT             },
7761   { "titlemessage_1.autowrap",                  ARG_DEFAULT             },
7762   { "titlemessage_1.centered",                  ARG_DEFAULT             },
7763   { "titlemessage_1.parse_comments",            ARG_DEFAULT             },
7764   { "titlemessage_1.sort_priority",             ARG_DEFAULT             },
7765   { "titlemessage_1.fade_mode",                 ARG_DEFAULT             },
7766   { "titlemessage_1.fade_delay",                ARG_DEFAULT             },
7767   { "titlemessage_1.post_delay",                ARG_DEFAULT             },
7768   { "titlemessage_1.auto_delay",                ARG_DEFAULT             },
7769   { "titlemessage_1.auto_delay_unit",           ARG_DEFAULT             },
7770   { "titlemessage_2.x",                         ARG_DEFAULT             },
7771   { "titlemessage_2.y",                         ARG_DEFAULT             },
7772   { "titlemessage_2.width",                     ARG_DEFAULT             },
7773   { "titlemessage_2.height",                    ARG_DEFAULT             },
7774   { "titlemessage_2.chars",                     ARG_DEFAULT             },
7775   { "titlemessage_2.lines",                     ARG_DEFAULT             },
7776   { "titlemessage_2.align",                     ARG_DEFAULT             },
7777   { "titlemessage_2.valign",                    ARG_DEFAULT             },
7778   { "titlemessage_2.font",                      ARG_DEFAULT             },
7779   { "titlemessage_2.autowrap",                  ARG_DEFAULT             },
7780   { "titlemessage_2.centered",                  ARG_DEFAULT             },
7781   { "titlemessage_2.parse_comments",            ARG_DEFAULT             },
7782   { "titlemessage_2.sort_priority",             ARG_DEFAULT             },
7783   { "titlemessage_2.fade_mode",                 ARG_DEFAULT             },
7784   { "titlemessage_2.fade_delay",                ARG_DEFAULT             },
7785   { "titlemessage_2.post_delay",                ARG_DEFAULT             },
7786   { "titlemessage_2.auto_delay",                ARG_DEFAULT             },
7787   { "titlemessage_2.auto_delay_unit",           ARG_DEFAULT             },
7788   { "titlemessage_3.x",                         ARG_DEFAULT             },
7789   { "titlemessage_3.y",                         ARG_DEFAULT             },
7790   { "titlemessage_3.width",                     ARG_DEFAULT             },
7791   { "titlemessage_3.height",                    ARG_DEFAULT             },
7792   { "titlemessage_3.chars",                     ARG_DEFAULT             },
7793   { "titlemessage_3.lines",                     ARG_DEFAULT             },
7794   { "titlemessage_3.align",                     ARG_DEFAULT             },
7795   { "titlemessage_3.valign",                    ARG_DEFAULT             },
7796   { "titlemessage_3.font",                      ARG_DEFAULT             },
7797   { "titlemessage_3.autowrap",                  ARG_DEFAULT             },
7798   { "titlemessage_3.centered",                  ARG_DEFAULT             },
7799   { "titlemessage_3.parse_comments",            ARG_DEFAULT             },
7800   { "titlemessage_3.sort_priority",             ARG_DEFAULT             },
7801   { "titlemessage_3.fade_mode",                 ARG_DEFAULT             },
7802   { "titlemessage_3.fade_delay",                ARG_DEFAULT             },
7803   { "titlemessage_3.post_delay",                ARG_DEFAULT             },
7804   { "titlemessage_3.auto_delay",                ARG_DEFAULT             },
7805   { "titlemessage_3.auto_delay_unit",           ARG_DEFAULT             },
7806   { "titlemessage_4.x",                         ARG_DEFAULT             },
7807   { "titlemessage_4.y",                         ARG_DEFAULT             },
7808   { "titlemessage_4.width",                     ARG_DEFAULT             },
7809   { "titlemessage_4.height",                    ARG_DEFAULT             },
7810   { "titlemessage_4.chars",                     ARG_DEFAULT             },
7811   { "titlemessage_4.lines",                     ARG_DEFAULT             },
7812   { "titlemessage_4.align",                     ARG_DEFAULT             },
7813   { "titlemessage_4.valign",                    ARG_DEFAULT             },
7814   { "titlemessage_4.font",                      ARG_DEFAULT             },
7815   { "titlemessage_4.autowrap",                  ARG_DEFAULT             },
7816   { "titlemessage_4.centered",                  ARG_DEFAULT             },
7817   { "titlemessage_4.parse_comments",            ARG_DEFAULT             },
7818   { "titlemessage_4.sort_priority",             ARG_DEFAULT             },
7819   { "titlemessage_4.fade_mode",                 ARG_DEFAULT             },
7820   { "titlemessage_4.fade_delay",                ARG_DEFAULT             },
7821   { "titlemessage_4.post_delay",                ARG_DEFAULT             },
7822   { "titlemessage_4.auto_delay",                ARG_DEFAULT             },
7823   { "titlemessage_4.auto_delay_unit",           ARG_DEFAULT             },
7824   { "titlemessage_5.x",                         ARG_DEFAULT             },
7825   { "titlemessage_5.y",                         ARG_DEFAULT             },
7826   { "titlemessage_5.width",                     ARG_DEFAULT             },
7827   { "titlemessage_5.height",                    ARG_DEFAULT             },
7828   { "titlemessage_5.chars",                     ARG_DEFAULT             },
7829   { "titlemessage_5.lines",                     ARG_DEFAULT             },
7830   { "titlemessage_5.align",                     ARG_DEFAULT             },
7831   { "titlemessage_5.valign",                    ARG_DEFAULT             },
7832   { "titlemessage_5.font",                      ARG_DEFAULT             },
7833   { "titlemessage_5.autowrap",                  ARG_DEFAULT             },
7834   { "titlemessage_5.centered",                  ARG_DEFAULT             },
7835   { "titlemessage_5.parse_comments",            ARG_DEFAULT             },
7836   { "titlemessage_5.sort_priority",             ARG_DEFAULT             },
7837   { "titlemessage_5.fade_mode",                 ARG_DEFAULT             },
7838   { "titlemessage_5.fade_delay",                ARG_DEFAULT             },
7839   { "titlemessage_5.post_delay",                ARG_DEFAULT             },
7840   { "titlemessage_5.auto_delay",                ARG_DEFAULT             },
7841   { "titlemessage_5.auto_delay_unit",           ARG_DEFAULT             },
7842
7843   { "readme.x",                                 "-1"                    },
7844   { "readme.y",                                 "-1"                    },
7845   { "readme.width",                             "-1"                    },
7846   { "readme.height",                            "-1"                    },
7847   { "readme.chars",                             "-1"                    },
7848   { "readme.lines",                             "-1"                    },
7849   { "readme.align",                             "center"                },
7850   { "readme.valign",                            "top"                   },
7851   { "readme.font",                              "font.info.levelset"    },
7852   { "readme.autowrap",                          "true"                  },
7853   { "readme.centered",                          "false"                 },
7854   { "readme.parse_comments",                    "true"                  },
7855   { "readme.sort_priority",                     "0"                     },
7856
7857   { "global.num_toons",                         "20"                    },
7858
7859   { "border.draw_masked.TITLE",                 "false"                 },
7860   { "border.draw_masked.MAIN",                  "false"                 },
7861   { "border.draw_masked.NAMES",                 "false"                 },
7862   { "border.draw_masked.LEVELS",                "false"                 },
7863   { "border.draw_masked.LEVELNR",               "false"                 },
7864   { "border.draw_masked.SCORES",                "false"                 },
7865   { "border.draw_masked.EDITOR",                "false"                 },
7866   { "border.draw_masked.INFO",                  "false"                 },
7867   { "border.draw_masked.SETUP",                 "false"                 },
7868   { "border.draw_masked.PLAYING",               "false"                 },
7869   { "border.draw_masked.DOOR",                  "false"                 },
7870
7871   { "border.draw_masked_when_fading",           "true"                  },
7872
7873   { "init.busy.x",                              "-1"                    },
7874   { "init.busy.y",                              "-1"                    },
7875   { "init.busy.align",                          "center"                },
7876   { "init.busy.valign",                         "middle"                },
7877
7878   { "menu.enter_menu.fade_mode",                "none"                  },
7879   { "menu.enter_menu.fade_delay",               "250"                   },
7880   { "menu.enter_menu.post_delay",               "125"                   },
7881   { "menu.leave_menu.fade_mode",                "none"                  },
7882   { "menu.leave_menu.fade_delay",               "250"                   },
7883   { "menu.leave_menu.post_delay",               "125"                   },
7884   { "menu.enter_screen.fade_mode",              "fade"                  },
7885   { "menu.enter_screen.fade_delay",             "250"                   },
7886   { "menu.enter_screen.post_delay",             "125"                   },
7887   { "menu.leave_screen.fade_mode",              "fade"                  },
7888   { "menu.leave_screen.fade_delay",             "250"                   },
7889   { "menu.leave_screen.post_delay",             "125"                   },
7890   { "menu.next_screen.fade_mode",               "crossfade"             },
7891   { "menu.next_screen.fade_delay",              "250"                   },
7892   { "menu.next_screen.post_delay",              "125"                   },
7893   { "menu.enter_screen.TITLE.fade_mode",        "fade"                  },
7894   { "menu.enter_screen.TITLE.fade_delay",       "500"                   },
7895   { "menu.enter_screen.TITLE.post_delay",       "250"                   },
7896   { "menu.enter_screen.TITLE.auto_delay",       "-1"                    },
7897   { "menu.enter_screen.TITLE.auto_delay_unit",  "-1"                    },
7898   { "menu.enter_screen.SCORES.fade_mode",       ARG_DEFAULT             },
7899   { "menu.enter_screen.SCORES.fade_delay",      ARG_DEFAULT             },
7900   { "menu.enter_screen.SCORES.post_delay",      ARG_DEFAULT             },
7901   { "menu.enter_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
7902   { "menu.enter_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
7903   { "menu.enter_screen.EDITOR.post_delay",      ARG_DEFAULT             },
7904   { "menu.enter_screen.INFO.fade_mode",         ARG_DEFAULT             },
7905   { "menu.enter_screen.INFO.fade_delay",        ARG_DEFAULT             },
7906   { "menu.enter_screen.INFO.post_delay",        ARG_DEFAULT             },
7907   { "menu.enter_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
7908   { "menu.enter_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
7909   { "menu.enter_screen.PLAYING.post_delay",     ARG_DEFAULT             },
7910   { "menu.leave_screen.TITLE.fade_mode",        "fade"                  },
7911   { "menu.leave_screen.TITLE.fade_delay",       "500"                   },
7912   { "menu.leave_screen.TITLE.post_delay",       "250"                   },
7913   { "menu.leave_screen.TITLE.auto_delay",       "-1"                    },
7914   { "menu.leave_screen.TITLE.auto_delay_unit",  "-1"                    },
7915   { "menu.leave_screen.SCORES.fade_mode",       ARG_DEFAULT             },
7916   { "menu.leave_screen.SCORES.fade_delay",      ARG_DEFAULT             },
7917   { "menu.leave_screen.SCORES.post_delay",      ARG_DEFAULT             },
7918   { "menu.leave_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
7919   { "menu.leave_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
7920   { "menu.leave_screen.EDITOR.post_delay",      ARG_DEFAULT             },
7921   { "menu.leave_screen.INFO.fade_mode",         ARG_DEFAULT             },
7922   { "menu.leave_screen.INFO.fade_delay",        ARG_DEFAULT             },
7923   { "menu.leave_screen.INFO.post_delay",        ARG_DEFAULT             },
7924   { "menu.leave_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
7925   { "menu.leave_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
7926   { "menu.leave_screen.PLAYING.post_delay",     ARG_DEFAULT             },
7927   { "menu.next_screen.TITLE.fade_mode",         "fade"                  },
7928   { "menu.next_screen.TITLE.fade_delay",        "500"                   },
7929   { "menu.next_screen.TITLE.post_delay",        "250"                   },
7930   { "menu.next_screen.TITLE.auto_delay",        "-1"                    },
7931   { "menu.next_screen.TITLE.auto_delay_unit",   "-1"                    },
7932   { "menu.next_screen.INFO.fade_mode",          ARG_DEFAULT             },
7933   { "menu.next_screen.INFO.fade_delay",         ARG_DEFAULT             },
7934   { "menu.next_screen.INFO.post_delay",         ARG_DEFAULT             },
7935
7936   { "menu.draw_xoffset",                        "0"                     },
7937   { "menu.draw_yoffset",                        "0"                     },
7938   { "menu.draw_xoffset.MAIN",                   "0"                     },
7939   { "menu.draw_yoffset.MAIN",                   "0"                     },
7940   { "menu.draw_xoffset.NAMES",                  "0"                     },
7941   { "menu.draw_yoffset.NAMES",                  "0"                     },
7942   { "menu.draw_xoffset.LEVELS",                 "0"                     },
7943   { "menu.draw_yoffset.LEVELS",                 "0"                     },
7944   { "menu.draw_xoffset.LEVELNR",                "0"                     },
7945   { "menu.draw_yoffset.LEVELNR",                "0"                     },
7946   { "menu.draw_xoffset.SCORES",                 "0"                     },
7947   { "menu.draw_yoffset.SCORES",                 "0"                     },
7948   { "menu.draw_xoffset.EDITOR",                 "0"                     },
7949   { "menu.draw_yoffset.EDITOR",                 "0"                     },
7950   { "menu.draw_xoffset.INFO",                   "0"                     },
7951   { "menu.draw_yoffset.INFO",                   "0"                     },
7952   { "menu.draw_xoffset.INFO[TITLE]",            "0"                     },
7953   { "menu.draw_yoffset.INFO[TITLE]",            "0"                     },
7954   { "menu.draw_xoffset.INFO[ELEMENTS]",         "0"                     },
7955   { "menu.draw_yoffset.INFO[ELEMENTS]",         "0"                     },
7956   { "menu.draw_xoffset.INFO[MUSIC]",            "0"                     },
7957   { "menu.draw_yoffset.INFO[MUSIC]",            "0"                     },
7958   { "menu.draw_xoffset.INFO[CREDITS]",          "0"                     },
7959   { "menu.draw_yoffset.INFO[CREDITS]",          "0"                     },
7960   { "menu.draw_xoffset.INFO[PROGRAM]",          "0"                     },
7961   { "menu.draw_yoffset.INFO[PROGRAM]",          "0"                     },
7962   { "menu.draw_xoffset.INFO[VERSION]",          "0"                     },
7963   { "menu.draw_yoffset.INFO[VERSION]",          "0"                     },
7964   { "menu.draw_xoffset.INFO[LEVELSET]",         "0"                     },
7965   { "menu.draw_yoffset.INFO[LEVELSET]",         "0"                     },
7966   { "menu.draw_xoffset.SETUP",                  "0"                     },
7967   { "menu.draw_yoffset.SETUP",                  "0"                     },
7968   { "menu.draw_xoffset.SETUP[GAME]",            "0"                     },
7969   { "menu.draw_yoffset.SETUP[GAME]",            "0"                     },
7970   { "menu.draw_xoffset.SETUP[ENGINES]",         "0"                     },
7971   { "menu.draw_yoffset.SETUP[ENGINES]",         "0"                     },
7972   { "menu.draw_xoffset.SETUP[EDITOR]",          "0"                     },
7973   { "menu.draw_yoffset.SETUP[EDITOR]",          "0"                     },
7974   { "menu.draw_xoffset.SETUP[GRAPHICS]",        "0"                     },
7975   { "menu.draw_yoffset.SETUP[GRAPHICS]",        "0"                     },
7976   { "menu.draw_xoffset.SETUP[SOUND]",           "0"                     },
7977   { "menu.draw_yoffset.SETUP[SOUND]",           "0"                     },
7978   { "menu.draw_xoffset.SETUP[ARTWORK]",         "0"                     },
7979   { "menu.draw_yoffset.SETUP[ARTWORK]",         "0"                     },
7980   { "menu.draw_xoffset.SETUP[INPUT]",           "0"                     },
7981   { "menu.draw_yoffset.SETUP[INPUT]",           "0"                     },
7982   { "menu.draw_xoffset.SETUP[TOUCH]",           "0"                     },
7983   { "menu.draw_yoffset.SETUP[TOUCH]",           "0"                     },
7984   { "menu.draw_xoffset.SETUP[SHORTCUTS]",       "0"                     },
7985   { "menu.draw_yoffset.SETUP[SHORTCUTS]",       "0"                     },
7986   { "menu.draw_xoffset.SETUP[SHORTCUTS_1]",     "0"                     },
7987   { "menu.draw_yoffset.SETUP[SHORTCUTS_1]",     "0"                     },
7988   { "menu.draw_xoffset.SETUP[SHORTCUTS_2]",     "0"                     },
7989   { "menu.draw_yoffset.SETUP[SHORTCUTS_2]",     "0"                     },
7990   { "menu.draw_xoffset.SETUP[SHORTCUTS_3]",     "0"                     },
7991   { "menu.draw_yoffset.SETUP[SHORTCUTS_3]",     "0"                     },
7992   { "menu.draw_xoffset.SETUP[SHORTCUTS_4]",     "0"                     },
7993   { "menu.draw_yoffset.SETUP[SHORTCUTS_4]",     "0"                     },
7994   { "menu.draw_xoffset.SETUP[SHORTCUTS_5]",     "0"                     },
7995   { "menu.draw_yoffset.SETUP[SHORTCUTS_5]",     "0"                     },
7996   { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
7997   { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
7998   { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
7999   { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
8000
8001   { "menu.scrollbar_xoffset",                   "0"                     },
8002
8003   { "menu.list.SETUP[CHOOSE_OTHER].align",      "left"                  },
8004   { "menu.list.SETUP[CHOOSE_OTHER].valign",     "top"                   },
8005
8006   { "menu.list_size",                           "-1"                    },
8007   { "menu.list_size.NAMES",                     "-1"                    },
8008   { "menu.list_size.LEVELS",                    "-1"                    },
8009   { "menu.list_size.LEVELNR",                   "-1"                    },
8010   { "menu.list_size.SCORES",                    "-1"                    },
8011   { "menu.list_size.INFO",                      "-1"                    },
8012   { "menu.list_size.INFO[ELEMENTS]",            "-1"                    },
8013   { "menu.list_size.SETUP",                     "-1"                    },
8014
8015   { "menu.left_spacing.INFO",                   "16"                    },
8016   { "menu.left_spacing.INFO[TITLE]",            "16"                    },
8017   { "menu.left_spacing.INFO[ELEMENTS]",         "16"                    },
8018   { "menu.left_spacing.INFO[MUSIC]",            "16"                    },
8019   { "menu.left_spacing.INFO[CREDITS]",          "16"                    },
8020   { "menu.left_spacing.INFO[PROGRAM]",          "16"                    },
8021   { "menu.left_spacing.INFO[VERSION]",          "16"                    },
8022   { "menu.left_spacing.INFO[LEVELSET]",         "16"                    },
8023   { "menu.left_spacing.SETUP[INPUT]",           "16"                    },
8024
8025   { "menu.right_spacing.INFO",                  "16"                    },
8026   { "menu.right_spacing.INFO[TITLE]",           "16"                    },
8027   { "menu.right_spacing.INFO[ELEMENTS]",        "16"                    },
8028   { "menu.right_spacing.INFO[MUSIC]",           "16"                    },
8029   { "menu.right_spacing.INFO[CREDITS]",         "16"                    },
8030   { "menu.right_spacing.INFO[PROGRAM]",         "16"                    },
8031   { "menu.right_spacing.INFO[VERSION]",         "16"                    },
8032   { "menu.right_spacing.INFO[LEVELSET]",        "16"                    },
8033   { "menu.right_spacing.SETUP[INPUT]",          "16"                    },
8034
8035   { "menu.top_spacing.INFO",                    "100"                   },
8036   { "menu.top_spacing.INFO[TITLE]",             "100"                   },
8037   { "menu.top_spacing.INFO[ELEMENTS]",          "100"                   },
8038   { "menu.top_spacing.INFO[MUSIC]",             "100"                   },
8039   { "menu.top_spacing.INFO[CREDITS]",           "100"                   },
8040   { "menu.top_spacing.INFO[PROGRAM]",           "100"                   },
8041   { "menu.top_spacing.INFO[VERSION]",           "100"                   },
8042   { "menu.top_spacing.INFO[LEVELSET]",          "100"                   },
8043   { "menu.top_spacing.SETUP[INPUT]",            "100"                   },
8044
8045   { "menu.bottom_spacing.INFO",                 "20"                    },
8046   { "menu.bottom_spacing.INFO[TITLE]",          "20"                    },
8047   { "menu.bottom_spacing.INFO[ELEMENTS]",       "20"                    },
8048   { "menu.bottom_spacing.INFO[MUSIC]",          "20"                    },
8049   { "menu.bottom_spacing.INFO[CREDITS]",        "20"                    },
8050   { "menu.bottom_spacing.INFO[PROGRAM]",        "20"                    },
8051   { "menu.bottom_spacing.INFO[VERSION]",        "20"                    },
8052   { "menu.bottom_spacing.INFO[LEVELSET]",       "20"                    },
8053   { "menu.bottom_spacing.SETUP[INPUT]",         "20"                    },
8054
8055   { "menu.paragraph_spacing.INFO",              "-3"                    },
8056   { "menu.paragraph_spacing.INFO[TITLE]",       "-3"                    },
8057   { "menu.paragraph_spacing.INFO[ELEMENTS]",    "-3"                    },
8058   { "menu.paragraph_spacing.INFO[MUSIC]",       "-3"                    },
8059   { "menu.paragraph_spacing.INFO[CREDITS]",     "-3"                    },
8060   { "menu.paragraph_spacing.INFO[PROGRAM]",     "-3"                    },
8061   { "menu.paragraph_spacing.INFO[VERSION]",     "-2"                    },
8062   { "menu.paragraph_spacing.INFO[LEVELSET]",    "-3"                    },
8063   { "menu.paragraph_spacing.SETUP[INPUT]",      "-1"                    },
8064
8065   { "menu.headline1_spacing.INFO",              "-2"                    },
8066   { "menu.headline1_spacing.INFO[TITLE]",       "-2"                    },
8067   { "menu.headline1_spacing.INFO[ELEMENTS]",    "-2"                    },
8068   { "menu.headline1_spacing.INFO[MUSIC]",       "-2"                    },
8069   { "menu.headline1_spacing.INFO[CREDITS]",     "-2"                    },
8070   { "menu.headline1_spacing.INFO[PROGRAM]",     "-2"                    },
8071   { "menu.headline1_spacing.INFO[VERSION]",     "-2"                    },
8072   { "menu.headline1_spacing.INFO[LEVELSET]",    "-2"                    },
8073   { "menu.headline1_spacing.SETUP[INPUT]",      "-2"                    },
8074
8075   { "menu.headline2_spacing.INFO",              "-1"                    },
8076   { "menu.headline2_spacing.INFO[TITLE]",       "-1"                    },
8077   { "menu.headline2_spacing.INFO[ELEMENTS]",    "-1"                    },
8078   { "menu.headline2_spacing.INFO[MUSIC]",       "-1"                    },
8079   { "menu.headline2_spacing.INFO[CREDITS]",     "-1"                    },
8080   { "menu.headline2_spacing.INFO[PROGRAM]",     "-1"                    },
8081   { "menu.headline2_spacing.INFO[VERSION]",     "-1"                    },
8082   { "menu.headline2_spacing.INFO[LEVELSET]",    "-1"                    },
8083   { "menu.headline2_spacing.SETUP[INPUT]",      "-1"                    },
8084
8085   { "menu.line_spacing.INFO",                   "0"                     },
8086   { "menu.line_spacing.INFO[TITLE]",            "0"                     },
8087   { "menu.line_spacing.INFO[ELEMENTS]",         "0"                     },
8088   { "menu.line_spacing.INFO[MUSIC]",            "0"                     },
8089   { "menu.line_spacing.INFO[CREDITS]",          "0"                     },
8090   { "menu.line_spacing.INFO[PROGRAM]",          "0"                     },
8091   { "menu.line_spacing.INFO[VERSION]",          "0"                     },
8092   { "menu.line_spacing.INFO[LEVELSET]",         "0"                     },
8093   { "menu.line_spacing.SETUP[INPUT]",           "0"                     },
8094
8095   { "menu.extra_spacing.INFO",                  "2"                     },
8096   { "menu.extra_spacing.INFO[TITLE]",           "2"                     },
8097   { "menu.extra_spacing.INFO[ELEMENTS]",        "2"                     },
8098   { "menu.extra_spacing.INFO[MUSIC]",           "2"                     },
8099   { "menu.extra_spacing.INFO[CREDITS]",         "2"                     },
8100   { "menu.extra_spacing.INFO[PROGRAM]",         "2"                     },
8101   { "menu.extra_spacing.INFO[VERSION]",         "2"                     },
8102   { "menu.extra_spacing.INFO[LEVELSET]",        "2"                     },
8103   { "menu.extra_spacing.SETUP[INPUT]",          "2"                     },
8104
8105   { "main.button.name.x",                       "0"                     },
8106   { "main.button.name.y",                       "64"                    },
8107   { "main.button.levels.x",                     "0"                     },
8108   { "main.button.levels.y",                     "96"                    },
8109   { "main.button.scores.x",                     "0"                     },
8110   { "main.button.scores.y",                     "128"                   },
8111   { "main.button.editor.x",                     "0"                     },
8112   { "main.button.editor.y",                     "160"                   },
8113   { "main.button.info.x",                       "0"                     },
8114   { "main.button.info.y",                       "192"                   },
8115   { "main.button.game.x",                       "0"                     },
8116   { "main.button.game.y",                       "224"                   },
8117   { "main.button.setup.x",                      "0"                     },
8118   { "main.button.setup.y",                      "256"                   },
8119   { "main.button.quit.x",                       "0"                     },
8120   { "main.button.quit.y",                       "288"                   },
8121
8122   { "main.button.first_level.x",                "-1"                    },
8123   { "main.button.first_level.y",                "-1"                    },
8124   { "main.button.last_level.x",                 "-1"                    },
8125   { "main.button.last_level.y",                 "-1"                    },
8126   { "main.button.level_number.x",               "-1"                    },
8127   { "main.button.level_number.y",               "-1"                    },
8128
8129   { "main.button.prev_level.x",                 "320"                   },
8130   { "main.button.prev_level.y",                 "96"                    },
8131   { "main.button.next_level.x",                 "448"                   },
8132   { "main.button.next_level.y",                 "96"                    },
8133
8134   { "main.button.insert_solution.x",            "-1"                    },
8135   { "main.button.insert_solution.y",            "-1"                    },
8136   { "main.button.play_solution.x",              "-1"                    },
8137   { "main.button.play_solution.y",              "-1"                    },
8138
8139   { "main.button.switch_ecs_aga.x",             "-1"                    },
8140   { "main.button.switch_ecs_aga.y",             "-1"                    },
8141
8142   { "main.text.name.x",                         "-1"                    },
8143   { "main.text.name.y",                         "-1"                    },
8144   { "main.text.name.width",                     "-1"                    },
8145   { "main.text.name.height",                    "-1"                    },
8146   { "main.text.name.align",                     "left"                  },
8147   { "main.text.name.valign",                    "top"                   },
8148   { "main.text.name.font",                      "font.menu_1"           },
8149   { "main.text.levels.x",                       "-1"                    },
8150   { "main.text.levels.y",                       "-1"                    },
8151   { "main.text.levels.width",                   "-1"                    },
8152   { "main.text.levels.height",                  "-1"                    },
8153   { "main.text.levels.align",                   "left"                  },
8154   { "main.text.levels.valign",                  "top"                   },
8155   { "main.text.levels.font",                    "font.menu_1"           },
8156   { "main.text.scores.x",                       "-1"                    },
8157   { "main.text.scores.y",                       "-1"                    },
8158   { "main.text.scores.width",                   "-1"                    },
8159   { "main.text.scores.height",                  "-1"                    },
8160   { "main.text.scores.align",                   "left"                  },
8161   { "main.text.scores.valign",                  "top"                   },
8162   { "main.text.scores.font",                    "font.menu_1"           },
8163   { "main.text.editor.x",                       "-1"                    },
8164   { "main.text.editor.y",                       "-1"                    },
8165   { "main.text.editor.width",                   "-1"                    },
8166   { "main.text.editor.height",                  "-1"                    },
8167   { "main.text.editor.align",                   "left"                  },
8168   { "main.text.editor.valign",                  "top"                   },
8169   { "main.text.editor.font",                    "font.menu_1"           },
8170   { "main.text.info.x",                         "-1"                    },
8171   { "main.text.info.y",                         "-1"                    },
8172   { "main.text.info.width",                     "-1"                    },
8173   { "main.text.info.height",                    "-1"                    },
8174   { "main.text.info.align",                     "left"                  },
8175   { "main.text.info.valign",                    "top"                   },
8176   { "main.text.info.font",                      "font.menu_1"           },
8177   { "main.text.game.x",                         "-1"                    },
8178   { "main.text.game.y",                         "-1"                    },
8179   { "main.text.game.width",                     "-1"                    },
8180   { "main.text.game.height",                    "-1"                    },
8181   { "main.text.game.align",                     "left"                  },
8182   { "main.text.game.valign",                    "top"                   },
8183   { "main.text.game.font",                      "font.menu_1"           },
8184   { "main.text.setup.x",                        "-1"                    },
8185   { "main.text.setup.y",                        "-1"                    },
8186   { "main.text.setup.width",                    "-1"                    },
8187   { "main.text.setup.height",                   "-1"                    },
8188   { "main.text.setup.align",                    "left"                  },
8189   { "main.text.setup.valign",                   "top"                   },
8190   { "main.text.setup.font",                     "font.menu_1"           },
8191   { "main.text.quit.x",                         "-1"                    },
8192   { "main.text.quit.y",                         "-1"                    },
8193   { "main.text.quit.width",                     "-1"                    },
8194   { "main.text.quit.height",                    "-1"                    },
8195   { "main.text.quit.align",                     "left"                  },
8196   { "main.text.quit.valign",                    "top"                   },
8197   { "main.text.quit.font",                      "font.menu_1"           },
8198
8199   { "main.text.first_level.x",                  "488"                   },
8200   { "main.text.first_level.y",                  "98"                    },
8201   { "main.text.first_level.align",              "left"                  },
8202   { "main.text.first_level.valign",             "top"                   },
8203   { "main.text.first_level.digits",             "3"                     },
8204   { "main.text.first_level.font",               "font.text_3"           },
8205   { "main.text.last_level.x",                   "488"                   },
8206   { "main.text.last_level.y",                   "112"                   },
8207   { "main.text.last_level.align",               "left"                  },
8208   { "main.text.last_level.valign",              "top"                   },
8209   { "main.text.last_level.digits",              "3"                     },
8210   { "main.text.last_level.font",                "font.text_3"           },
8211   { "main.text.level_number.x",                 "352"                   },
8212   { "main.text.level_number.y",                 "96"                    },
8213   { "main.text.level_number.align",             "left"                  },
8214   { "main.text.level_number.valign",            "top"                   },
8215   { "main.text.level_number.digits",            "3"                     },
8216   { "main.text.level_number.font",              "font.value_1"          },
8217   { "main.text.level_info_1.x",                 "272"                   },
8218   { "main.text.level_info_1.y",                 "352"                   },
8219   { "main.text.level_info_1.align",             "center"                },
8220   { "main.text.level_info_1.valign",            "top"                   },
8221   { "main.text.level_info_1.chars",             "-1"                    },
8222   { "main.text.level_info_1.font",              "font.text_1"           },
8223   { "main.text.level_info_2.x",                 "272"                   },
8224   { "main.text.level_info_2.y",                 "523"                   },
8225   { "main.text.level_info_2.align",             "center"                },
8226   { "main.text.level_info_2.valign",            "top"                   },
8227   { "main.text.level_info_2.chars",             "-1"                    },
8228   { "main.text.level_info_2.font",              "font.text_2"           },
8229   { "main.text.level_info_2.font_header",       "font.text_4"           },
8230   { "main.text.level_name.x",                   "-1"                    },
8231   { "main.text.level_name.y",                   "-1"                    },
8232   { "main.text.level_name.align",               "left"                  },
8233   { "main.text.level_name.valign",              "top"                   },
8234   { "main.text.level_name.chars",               "-1"                    },
8235   { "main.text.level_name.font",                "font.text_2"           },
8236   { "main.text.level_author.x",                 "-1"                    },
8237   { "main.text.level_author.y",                 "-1"                    },
8238   { "main.text.level_author.align",             "left"                  },
8239   { "main.text.level_author.valign",            "top"                   },
8240   { "main.text.level_author.chars",             "-1"                    },
8241   { "main.text.level_author.font",              "font.text_2"           },
8242   { "main.text.level_year.x",                   "-1"                    },
8243   { "main.text.level_year.y",                   "-1"                    },
8244   { "main.text.level_year.align",               "left"                  },
8245   { "main.text.level_year.valign",              "top"                   },
8246   { "main.text.level_year.digits",              "-1"                    },
8247   { "main.text.level_year.font",                "font.text_2"           },
8248   { "main.text.level_imported_from.x",          "-1"                    },
8249   { "main.text.level_imported_from.y",          "-1"                    },
8250   { "main.text.level_imported_from.align",      "left"                  },
8251   { "main.text.level_imported_from.valign",     "top"                   },
8252   { "main.text.level_imported_from.chars",      "-1"                    },
8253   { "main.text.level_imported_from.font",       "font.text_2"           },
8254   { "main.text.level_imported_by.x",            "-1"                    },
8255   { "main.text.level_imported_by.y",            "-1"                    },
8256   { "main.text.level_imported_by.align",        "left"                  },
8257   { "main.text.level_imported_by.valign",       "top"                   },
8258   { "main.text.level_imported_by.chars",        "-1"                    },
8259   { "main.text.level_imported_by.font",         "font.text_2"           },
8260   { "main.text.level_tested_by.x",              "-1"                    },
8261   { "main.text.level_tested_by.y",              "-1"                    },
8262   { "main.text.level_tested_by.align",          "left"                  },
8263   { "main.text.level_tested_by.valign",         "top"                   },
8264   { "main.text.level_tested_by.chars",          "-1"                    },
8265   { "main.text.level_tested_by.font",           "font.text_2"           },
8266   { "main.text.title_1.x",                      "272"                   },
8267   { "main.text.title_1.y",                      "8"                     },
8268   { "main.text.title_1.align",                  "center"                },
8269   { "main.text.title_1.valign",                 "top"                   },
8270   { "main.text.title_1.font",                   "font.title_1"          },
8271   { "main.text.title_2.x",                      "272"                   },
8272   { "main.text.title_2.y",                      "46"                    },
8273   { "main.text.title_2.align",                  "center"                },
8274   { "main.text.title_2.valign",                 "top"                   },
8275   { "main.text.title_2.font",                   "font.title_2"          },
8276   { "main.text.title_3.x",                      "272"                   },
8277   { "main.text.title_3.y",                      "326"                   },
8278   { "main.text.title_3.align",                  "center"                },
8279   { "main.text.title_3.valign",                 "top"                   },
8280   { "main.text.title_3.font",                   "font.title_2"          },
8281
8282   { "main.input.name.x",                        "-1"                    },
8283   { "main.input.name.y",                        "-1"                    },
8284   { "main.input.name.align",                    "left"                  },
8285   { "main.input.name.valign",                   "top"                   },
8286   { "main.input.name.font",                     "font.input_1"          },
8287
8288   { "main.network_players.x",                   "68"                    },
8289   { "main.network_players.y",                   "448"                   },
8290   { "main.network_players.align",               "center"                },
8291   { "main.network_players.valign",              "middle"                },
8292   { "main.network_players.font",                "font.main.network_players" },
8293   { "main.network_players.tile_size",           "16"                    },
8294   { "main.network_players.border_size",         "2"                     },
8295
8296   { "main.preview_players.x",                   "474"                   },
8297   { "main.preview_players.y",                   "448"                   },
8298   { "main.preview_players.align",               "center"                },
8299   { "main.preview_players.valign",              "middle"                },
8300   { "main.preview_players.tile_size",           "32"                    },
8301   { "main.preview_players.border_size",         "2"                     },
8302   { "main.preview_players.vertical",            "false"                 },
8303   { "main.preview_players.xoffset",             "-1"                    },
8304   { "main.preview_players.yoffset",             "-1"                    },
8305
8306   { "setup.button.prev_player.x",               "320"                   },
8307   { "setup.button.prev_player.y",               "64"                    },
8308   { "setup.button.next_player.x",               "384"                   },
8309   { "setup.button.next_player.y",               "64"                    },
8310
8311   { "setup.button.touch_back.x",                "0"                     },
8312   { "setup.button.touch_back.y",                "0"                     },
8313   { "setup.button.touch_next.x",                "-60"                   },
8314   { "setup.button.touch_next.y",                "0"                     },
8315   { "setup.button.touch_back2.x",               "0"                     },
8316   { "setup.button.touch_back2.y",               "-60"                   },
8317   { "setup.button.touch_next2.x",               "-60"                   },
8318   { "setup.button.touch_next2.y",               "-60"                   },
8319
8320   { "preview.x",                                "272"                   },
8321   { "preview.y",                                "380"                   },
8322   { "preview.align",                            "center"                },
8323   { "preview.valign",                           "top"                   },
8324   { "preview.xsize",                            "66"                    },
8325   { "preview.ysize",                            "34"                    },
8326   { "preview.xoffset",                          "0"                     },
8327   { "preview.yoffset",                          "0"                     },
8328   { "preview.tile_size",                        "4"                     },
8329   { "preview.step_offset",                      "1"                     },
8330   { "preview.step_delay",                       "50"                    },
8331   { "preview.anim_mode",                        "default"               },
8332
8333   { "door_1.part_1.x",                          "0"                     },
8334   { "door_1.part_1.y",                          "0"                     },
8335   { "door_1.part_1.step_xoffset",               "3"                     },
8336   { "door_1.part_1.step_yoffset",               "1"                     },
8337   { "door_1.part_1.step_delay",                 "10"                    },
8338   { "door_1.part_1.start_step",                 "0"                     },
8339   { "door_1.part_1.start_step_opening",         "0"                     },
8340   { "door_1.part_1.start_step_closing",         "0"                     },
8341   { "door_1.part_1.draw_masked",                "true"                  },
8342   { "door_1.part_1.draw_order",                 "3"                     },
8343   { "door_1.part_2.x",                          "0"                     },
8344   { "door_1.part_2.y",                          "77"                    },
8345   { "door_1.part_2.step_xoffset",               "3"                     },
8346   { "door_1.part_2.step_yoffset",               "1"                     },
8347   { "door_1.part_2.step_delay",                 "10"                    },
8348   { "door_1.part_2.start_step",                 "0"                     },
8349   { "door_1.part_2.start_step_opening",         "0"                     },
8350   { "door_1.part_2.start_step_closing",         "0"                     },
8351   { "door_1.part_2.draw_masked",                "true"                  },
8352   { "door_1.part_2.draw_order",                 "5"                     },
8353   { "door_1.part_3.x",                          "0"                     },
8354   { "door_1.part_3.y",                          "140"                   },
8355   { "door_1.part_3.step_xoffset",               "3"                     },
8356   { "door_1.part_3.step_yoffset",               "1"                     },
8357   { "door_1.part_3.step_delay",                 "10"                    },
8358   { "door_1.part_3.start_step",                 "0"                     },
8359   { "door_1.part_3.start_step_opening",         "0"                     },
8360   { "door_1.part_3.start_step_closing",         "0"                     },
8361   { "door_1.part_3.draw_masked",                "true"                  },
8362   { "door_1.part_3.draw_order",                 "4"                     },
8363   { "door_1.part_4.x",                          "0"                     },
8364   { "door_1.part_4.y",                          "203"                   },
8365   { "door_1.part_4.step_xoffset",               "3"                     },
8366   { "door_1.part_4.step_yoffset",               "1"                     },
8367   { "door_1.part_4.step_delay",                 "10"                    },
8368   { "door_1.part_4.start_step",                 "0"                     },
8369   { "door_1.part_4.start_step_opening",         "0"                     },
8370   { "door_1.part_4.start_step_closing",         "0"                     },
8371   { "door_1.part_4.draw_masked",                "true"                  },
8372   { "door_1.part_4.draw_order",                 "6"                     },
8373   { "door_1.part_5.x",                          "0"                     },
8374   { "door_1.part_5.y",                          "0"                     },
8375   { "door_1.part_5.step_xoffset",               "-3"                    },
8376   { "door_1.part_5.step_yoffset",               "-1"                    },
8377   { "door_1.part_5.step_delay",                 "10"                    },
8378   { "door_1.part_5.start_step",                 "0"                     },
8379   { "door_1.part_5.start_step_opening",         "0"                     },
8380   { "door_1.part_5.start_step_closing",         "0"                     },
8381   { "door_1.part_5.draw_masked",                "true"                  },
8382   { "door_1.part_5.draw_order",                 "1"                     },
8383   { "door_1.part_6.x",                          "0"                     },
8384   { "door_1.part_6.y",                          "77"                    },
8385   { "door_1.part_6.step_xoffset",               "-3"                    },
8386   { "door_1.part_6.step_yoffset",               "-1"                    },
8387   { "door_1.part_6.step_delay",                 "10"                    },
8388   { "door_1.part_6.start_step",                 "0"                     },
8389   { "door_1.part_6.start_step_opening",         "0"                     },
8390   { "door_1.part_6.start_step_closing",         "0"                     },
8391   { "door_1.part_6.draw_masked",                "true"                  },
8392   { "door_1.part_6.draw_order",                 "7"                     },
8393   { "door_1.part_7.x",                          "0"                     },
8394   { "door_1.part_7.y",                          "140"                   },
8395   { "door_1.part_7.step_xoffset",               "-3"                    },
8396   { "door_1.part_7.step_yoffset",               "-1"                    },
8397   { "door_1.part_7.step_delay",                 "10"                    },
8398   { "door_1.part_7.start_step",                 "0"                     },
8399   { "door_1.part_7.start_step_opening",         "0"                     },
8400   { "door_1.part_7.start_step_closing",         "0"                     },
8401   { "door_1.part_7.draw_masked",                "true"                  },
8402   { "door_1.part_7.draw_order",                 "2"                     },
8403   { "door_1.part_8.x",                          "0"                     },
8404   { "door_1.part_8.y",                          "203"                   },
8405   { "door_1.part_8.step_xoffset",               "-3"                    },
8406   { "door_1.part_8.step_yoffset",               "-1"                    },
8407   { "door_1.part_8.step_delay",                 "10"                    },
8408   { "door_1.part_8.start_step",                 "0"                     },
8409   { "door_1.part_8.start_step_opening",         "0"                     },
8410   { "door_1.part_8.start_step_closing",         "0"                     },
8411   { "door_1.part_8.draw_masked",                "true"                  },
8412   { "door_1.part_8.draw_order",                 "8"                     },
8413
8414   { "door_2.part_1.x",                          "0"                     },
8415   { "door_2.part_1.y",                          "0"                     },
8416   { "door_2.part_1.step_xoffset",               "3"                     },
8417   { "door_2.part_1.step_yoffset",               "1"                     },
8418   { "door_2.part_1.step_delay",                 "10"                    },
8419   { "door_2.part_1.start_step",                 "0"                     },
8420   { "door_2.part_1.start_step_opening",         "0"                     },
8421   { "door_2.part_1.start_step_closing",         "0"                     },
8422   { "door_2.part_1.draw_masked",                "true"                  },
8423   { "door_2.part_1.draw_order",                 "2"                     },
8424   { "door_2.part_2.x",                          "0"                     },
8425   { "door_2.part_2.y",                          "50"                    },
8426   { "door_2.part_2.step_xoffset",               "3"                     },
8427   { "door_2.part_2.step_yoffset",               "1"                     },
8428   { "door_2.part_2.step_delay",                 "10"                    },
8429   { "door_2.part_2.start_step",                 "0"                     },
8430   { "door_2.part_2.start_step_opening",         "0"                     },
8431   { "door_2.part_2.start_step_closing",         "0"                     },
8432   { "door_2.part_2.draw_masked",                "true"                  },
8433   { "door_2.part_2.draw_order",                 "3"                     },
8434   { "door_2.part_3.x",                          "0"                     },
8435   { "door_2.part_3.y",                          "0"                     },
8436   { "door_2.part_3.step_xoffset",               "-3"                    },
8437   { "door_2.part_3.step_yoffset",               "-1"                    },
8438   { "door_2.part_3.step_delay",                 "10"                    },
8439   { "door_2.part_3.start_step",                 "0"                     },
8440   { "door_2.part_3.start_step_opening",         "0"                     },
8441   { "door_2.part_3.start_step_closing",         "0"                     },
8442   { "door_2.part_3.draw_masked",                "true"                  },
8443   { "door_2.part_3.draw_order",                 "1"                     },
8444   { "door_2.part_4.x",                          "0"                     },
8445   { "door_2.part_4.y",                          "50"                    },
8446   { "door_2.part_4.step_xoffset",               "-3"                    },
8447   { "door_2.part_4.step_yoffset",               "-1"                    },
8448   { "door_2.part_4.step_delay",                 "10"                    },
8449   { "door_2.part_4.start_step",                 "0"                     },
8450   { "door_2.part_4.start_step_opening",         "0"                     },
8451   { "door_2.part_4.start_step_closing",         "0"                     },
8452   { "door_2.part_4.draw_masked",                "true"                  },
8453   { "door_2.part_4.draw_order",                 "4"                     },
8454   { "door_2.part_5.x",                          "-1"                    },
8455   { "door_2.part_5.y",                          "-1"                    },
8456   { "door_2.part_5.step_xoffset",               "0"                     },
8457   { "door_2.part_5.step_yoffset",               "0"                     },
8458   { "door_2.part_5.step_delay",                 "0"                     },
8459   { "door_2.part_5.start_step",                 "0"                     },
8460   { "door_2.part_5.start_step_opening",         "0"                     },
8461   { "door_2.part_5.start_step_closing",         "0"                     },
8462   { "door_2.part_5.draw_masked",                "true"                  },
8463   { "door_2.part_5.draw_order",                 "0"                     },
8464   { "door_2.part_6.x",                          "-1"                    },
8465   { "door_2.part_6.y",                          "-1"                    },
8466   { "door_2.part_6.step_xoffset",               "0"                     },
8467   { "door_2.part_6.step_yoffset",               "0"                     },
8468   { "door_2.part_6.step_delay",                 "0"                     },
8469   { "door_2.part_6.start_step",                 "0"                     },
8470   { "door_2.part_6.start_step_opening",         "0"                     },
8471   { "door_2.part_6.start_step_closing",         "0"                     },
8472   { "door_2.part_6.draw_masked",                "true"                  },
8473   { "door_2.part_6.draw_order",                 "0"                     },
8474   { "door_2.part_7.x",                          "-1"                    },
8475   { "door_2.part_7.y",                          "-1"                    },
8476   { "door_2.part_7.step_xoffset",               "0"                     },
8477   { "door_2.part_7.step_yoffset",               "0"                     },
8478   { "door_2.part_7.step_delay",                 "0"                     },
8479   { "door_2.part_7.start_step",                 "0"                     },
8480   { "door_2.part_7.start_step_opening",         "0"                     },
8481   { "door_2.part_7.start_step_closing",         "0"                     },
8482   { "door_2.part_7.draw_masked",                "true"                  },
8483   { "door_2.part_7.draw_order",                 "0"                     },
8484   { "door_2.part_8.x",                          "-1"                    },
8485   { "door_2.part_8.y",                          "-1"                    },
8486   { "door_2.part_8.step_xoffset",               "0"                     },
8487   { "door_2.part_8.step_yoffset",               "0"                     },
8488   { "door_2.part_8.step_delay",                 "0"                     },
8489   { "door_2.part_8.start_step",                 "0"                     },
8490   { "door_2.part_8.start_step_opening",         "0"                     },
8491   { "door_2.part_8.start_step_closing",         "0"                     },
8492   { "door_2.part_8.draw_masked",                "true"                  },
8493   { "door_2.part_8.draw_order",                 "0"                     },
8494
8495   { "door_1.panel.x",                           "0"                     },
8496   { "door_1.panel.y",                           "0"                     },
8497   { "door_1.panel.step_xoffset",                "0"                     },
8498   { "door_1.panel.step_yoffset",                "1"                     },
8499   { "door_1.panel.step_delay",                  "10"                    },
8500   { "door_1.panel.start_step",                  "246"                   },
8501   { "door_1.panel.start_step_opening",          "0"                     },
8502   { "door_1.panel.start_step_closing",          "0"                     },
8503   { "door_1.panel.draw_masked",                 "false"                 },
8504   { "door_1.panel.draw_order",                  "0"                     },
8505
8506   { "door_2.panel.x",                           "0"                     },
8507   { "door_2.panel.y",                           "0"                     },
8508   { "door_2.panel.step_xoffset",                "0"                     },
8509   { "door_2.panel.step_yoffset",                "1"                     },
8510   { "door_2.panel.step_delay",                  "10"                    },
8511   { "door_2.panel.start_step",                  "66"                    },
8512   { "door_2.panel.start_step_opening",          "0"                     },
8513   { "door_2.panel.start_step_closing",          "0"                     },
8514   { "door_2.panel.draw_masked",                 "false"                 },
8515   { "door_2.panel.draw_order",                  "0"                     },
8516
8517   { "door_1.width",                             "-1"                    },
8518   { "door_1.height",                            "-1"                    },
8519   { "door_1.step_offset",                       "2"                     },
8520   { "door_1.step_delay",                        "10"                    },
8521   { "door_1.post_delay",                        "100"                   },
8522   { "door_1.anim_mode",                         "default"               },
8523
8524   { "door_2.width",                             "-1"                    },
8525   { "door_2.height",                            "-1"                    },
8526   { "door_2.step_offset",                       "2"                     },
8527   { "door_2.step_delay",                        "10"                    },
8528   { "door_2.post_delay",                        "100"                   },
8529   { "door_2.anim_mode",                         "default"               },
8530
8531   { "game.panel.level_number.x",                "51"                    },
8532   { "game.panel.level_number.y",                "20"                    },
8533   { "game.panel.level_number.align",            "center"                },
8534   { "game.panel.level_number.valign",           "top"                   },
8535   { "game.panel.level_number.digits",           "-1"                    },
8536   { "game.panel.level_number.font",             "font.text_2"           },
8537   { "game.panel.level_number.font_narrow",      "font.text_1"           },
8538   { "game.panel.level_number.draw_masked",      "true"                  },
8539   { "game.panel.level_number.draw_order",       "0"                     },
8540   { "game.panel.level_number.class",            "none"                  },
8541   { "game.panel.level_number.style",            "none"                  },
8542
8543   { "game.panel.gems.x",                        "50"                    },
8544   { "game.panel.gems.y",                        "54"                    },
8545   { "game.panel.gems.align",                    "center"                },
8546   { "game.panel.gems.valign",                   "top"                   },
8547   { "game.panel.gems.digits",                   "3"                     },
8548   { "game.panel.gems.font",                     "font.text_2"           },
8549   { "game.panel.gems.draw_masked",              "true"                  },
8550   { "game.panel.gems.draw_order",               "0"                     },
8551   { "game.panel.gems.class",                    "none"                  },
8552   { "game.panel.gems.style",                    "none"                  },
8553
8554   { "game.panel.inventory_count.x",             "50"                    },
8555   { "game.panel.inventory_count.y",             "89"                    },
8556   { "game.panel.inventory_count.align",         "center"                },
8557   { "game.panel.inventory_count.valign",        "top"                   },
8558   { "game.panel.inventory_count.digits",        "3"                     },
8559   { "game.panel.inventory_count.font",          "font.text_2"           },
8560   { "game.panel.inventory_count.draw_masked",   "true"                  },
8561   { "game.panel.inventory_count.draw_order",    "0"                     },
8562   { "game.panel.inventory_count.class",         "none"                  },
8563   { "game.panel.inventory_count.style",         "none"                  },
8564
8565   { "game.panel.inventory_first_1.x",           "-1"                    },
8566   { "game.panel.inventory_first_1.y",           "-1"                    },
8567   { "game.panel.inventory_first_1.tile_size",   "16"                    },
8568   { "game.panel.inventory_first_1.draw_masked", "false"                 },
8569   { "game.panel.inventory_first_1.draw_order",  "0"                     },
8570   { "game.panel.inventory_first_1.class",       "none"                  },
8571   { "game.panel.inventory_first_1.style",       "none"                  },
8572   { "game.panel.inventory_first_2.x",           "-1"                    },
8573   { "game.panel.inventory_first_2.y",           "-1"                    },
8574   { "game.panel.inventory_first_2.tile_size",   "16"                    },
8575   { "game.panel.inventory_first_2.draw_masked", "false"                 },
8576   { "game.panel.inventory_first_2.draw_order",  "0"                     },
8577   { "game.panel.inventory_first_2.class",       "none"                  },
8578   { "game.panel.inventory_first_2.style",       "none"                  },
8579   { "game.panel.inventory_first_3.x",           "-1"                    },
8580   { "game.panel.inventory_first_3.y",           "-1"                    },
8581   { "game.panel.inventory_first_3.tile_size",   "16"                    },
8582   { "game.panel.inventory_first_3.draw_masked", "false"                 },
8583   { "game.panel.inventory_first_3.draw_order",  "0"                     },
8584   { "game.panel.inventory_first_3.class",       "none"                  },
8585   { "game.panel.inventory_first_3.style",       "none"                  },
8586   { "game.panel.inventory_first_4.x",           "-1"                    },
8587   { "game.panel.inventory_first_4.y",           "-1"                    },
8588   { "game.panel.inventory_first_4.tile_size",   "16"                    },
8589   { "game.panel.inventory_first_4.draw_masked", "false"                 },
8590   { "game.panel.inventory_first_4.draw_order",  "0"                     },
8591   { "game.panel.inventory_first_4.class",       "none"                  },
8592   { "game.panel.inventory_first_4.style",       "none"                  },
8593   { "game.panel.inventory_first_5.x",           "-1"                    },
8594   { "game.panel.inventory_first_5.y",           "-1"                    },
8595   { "game.panel.inventory_first_5.tile_size",   "16"                    },
8596   { "game.panel.inventory_first_5.draw_masked", "false"                 },
8597   { "game.panel.inventory_first_5.draw_order",  "0"                     },
8598   { "game.panel.inventory_first_5.class",       "none"                  },
8599   { "game.panel.inventory_first_5.style",       "none"                  },
8600   { "game.panel.inventory_first_6.x",           "-1"                    },
8601   { "game.panel.inventory_first_6.y",           "-1"                    },
8602   { "game.panel.inventory_first_6.tile_size",   "16"                    },
8603   { "game.panel.inventory_first_6.draw_masked", "false"                 },
8604   { "game.panel.inventory_first_6.draw_order",  "0"                     },
8605   { "game.panel.inventory_first_6.class",       "none"                  },
8606   { "game.panel.inventory_first_6.style",       "none"                  },
8607   { "game.panel.inventory_first_7.x",           "-1"                    },
8608   { "game.panel.inventory_first_7.y",           "-1"                    },
8609   { "game.panel.inventory_first_7.tile_size",   "16"                    },
8610   { "game.panel.inventory_first_7.draw_masked", "false"                 },
8611   { "game.panel.inventory_first_7.draw_order",  "0"                     },
8612   { "game.panel.inventory_first_7.class",       "none"                  },
8613   { "game.panel.inventory_first_7.style",       "none"                  },
8614   { "game.panel.inventory_first_8.x",           "-1"                    },
8615   { "game.panel.inventory_first_8.y",           "-1"                    },
8616   { "game.panel.inventory_first_8.tile_size",   "16"                    },
8617   { "game.panel.inventory_first_8.draw_masked", "false"                 },
8618   { "game.panel.inventory_first_8.draw_order",  "0"                     },
8619   { "game.panel.inventory_first_8.class",       "none"                  },
8620   { "game.panel.inventory_first_8.style",       "none"                  },
8621
8622   { "game.panel.inventory_last_1.x",            "-1"                    },
8623   { "game.panel.inventory_last_1.y",            "-1"                    },
8624   { "game.panel.inventory_last_1.tile_size",    "16"                    },
8625   { "game.panel.inventory_last_1.draw_masked",  "false"                 },
8626   { "game.panel.inventory_last_1.draw_order",   "0"                     },
8627   { "game.panel.inventory_last_1.class",        "none"                  },
8628   { "game.panel.inventory_last_1.style",        "none"                  },
8629   { "game.panel.inventory_last_2.x",            "-1"                    },
8630   { "game.panel.inventory_last_2.y",            "-1"                    },
8631   { "game.panel.inventory_last_2.tile_size",    "16"                    },
8632   { "game.panel.inventory_last_2.draw_masked",  "false"                 },
8633   { "game.panel.inventory_last_2.draw_order",   "0"                     },
8634   { "game.panel.inventory_last_2.class",        "none"                  },
8635   { "game.panel.inventory_last_2.style",        "none"                  },
8636   { "game.panel.inventory_last_3.x",            "-1"                    },
8637   { "game.panel.inventory_last_3.y",            "-1"                    },
8638   { "game.panel.inventory_last_3.tile_size",    "16"                    },
8639   { "game.panel.inventory_last_3.draw_masked",  "false"                 },
8640   { "game.panel.inventory_last_3.draw_order",   "0"                     },
8641   { "game.panel.inventory_last_3.class",        "none"                  },
8642   { "game.panel.inventory_last_3.style",        "none"                  },
8643   { "game.panel.inventory_last_4.x",            "-1"                    },
8644   { "game.panel.inventory_last_4.y",            "-1"                    },
8645   { "game.panel.inventory_last_4.tile_size",    "16"                    },
8646   { "game.panel.inventory_last_4.draw_masked",  "false"                 },
8647   { "game.panel.inventory_last_4.draw_order",   "0"                     },
8648   { "game.panel.inventory_last_4.class",        "none"                  },
8649   { "game.panel.inventory_last_4.style",        "none"                  },
8650   { "game.panel.inventory_last_5.x",            "-1"                    },
8651   { "game.panel.inventory_last_5.y",            "-1"                    },
8652   { "game.panel.inventory_last_5.tile_size",    "16"                    },
8653   { "game.panel.inventory_last_5.draw_masked",  "false"                 },
8654   { "game.panel.inventory_last_5.draw_order",   "0"                     },
8655   { "game.panel.inventory_last_5.class",        "none"                  },
8656   { "game.panel.inventory_last_5.style",        "none"                  },
8657   { "game.panel.inventory_last_6.x",            "-1"                    },
8658   { "game.panel.inventory_last_6.y",            "-1"                    },
8659   { "game.panel.inventory_last_6.tile_size",    "16"                    },
8660   { "game.panel.inventory_last_6.draw_masked",  "false"                 },
8661   { "game.panel.inventory_last_6.draw_order",   "0"                     },
8662   { "game.panel.inventory_last_6.class",        "none"                  },
8663   { "game.panel.inventory_last_6.style",        "none"                  },
8664   { "game.panel.inventory_last_7.x",            "-1"                    },
8665   { "game.panel.inventory_last_7.y",            "-1"                    },
8666   { "game.panel.inventory_last_7.tile_size",    "16"                    },
8667   { "game.panel.inventory_last_7.draw_masked",  "false"                 },
8668   { "game.panel.inventory_last_7.draw_order",   "0"                     },
8669   { "game.panel.inventory_last_7.class",        "none"                  },
8670   { "game.panel.inventory_last_7.style",        "none"                  },
8671   { "game.panel.inventory_last_8.x",            "-1"                    },
8672   { "game.panel.inventory_last_8.y",            "-1"                    },
8673   { "game.panel.inventory_last_8.tile_size",    "16"                    },
8674   { "game.panel.inventory_last_8.draw_masked",  "false"                 },
8675   { "game.panel.inventory_last_8.draw_order",   "0"                     },
8676   { "game.panel.inventory_last_8.class",        "none"                  },
8677   { "game.panel.inventory_last_8.style",        "none"                  },
8678
8679   { "game.panel.key_1.x",                       "18"                    },
8680   { "game.panel.key_1.y",                       "123"                   },
8681   { "game.panel.key_1.tile_size",               "16"                    },
8682   { "game.panel.key_1.draw_masked",             "false"                 },
8683   { "game.panel.key_1.draw_order",              "0"                     },
8684   { "game.panel.key_1.class",                   "none"                  },
8685   { "game.panel.key_1.style",                   "none"                  },
8686   { "game.panel.key_2.x",                       "34"                    },
8687   { "game.panel.key_2.y",                       "123"                   },
8688   { "game.panel.key_2.tile_size",               "16"                    },
8689   { "game.panel.key_2.draw_masked",             "false"                 },
8690   { "game.panel.key_2.draw_order",              "0"                     },
8691   { "game.panel.key_2.class",                   "none"                  },
8692   { "game.panel.key_2.style",                   "none"                  },
8693   { "game.panel.key_3.x",                       "50"                    },
8694   { "game.panel.key_3.y",                       "123"                   },
8695   { "game.panel.key_3.tile_size",               "16"                    },
8696   { "game.panel.key_3.draw_masked",             "false"                 },
8697   { "game.panel.key_3.draw_order",              "0"                     },
8698   { "game.panel.key_3.class",                   "none"                  },
8699   { "game.panel.key_3.style",                   "none"                  },
8700   { "game.panel.key_4.x",                       "66"                    },
8701   { "game.panel.key_4.y",                       "123"                   },
8702   { "game.panel.key_4.tile_size",               "16"                    },
8703   { "game.panel.key_4.draw_masked",             "false"                 },
8704   { "game.panel.key_4.draw_order",              "0"                     },
8705   { "game.panel.key_4.class",                   "none"                  },
8706   { "game.panel.key_4.style",                   "none"                  },
8707   { "game.panel.key_5.x",                       "-1"                    },
8708   { "game.panel.key_5.y",                       "-1"                    },
8709   { "game.panel.key_5.tile_size",               "16"                    },
8710   { "game.panel.key_5.draw_masked",             "false"                 },
8711   { "game.panel.key_5.draw_order",              "0"                     },
8712   { "game.panel.key_5.class",                   "none"                  },
8713   { "game.panel.key_5.style",                   "none"                  },
8714   { "game.panel.key_6.x",                       "-1"                    },
8715   { "game.panel.key_6.y",                       "-1"                    },
8716   { "game.panel.key_6.tile_size",               "16"                    },
8717   { "game.panel.key_6.draw_masked",             "false"                 },
8718   { "game.panel.key_6.draw_order",              "0"                     },
8719   { "game.panel.key_6.class",                   "none"                  },
8720   { "game.panel.key_6.style",                   "none"                  },
8721   { "game.panel.key_7.x",                       "-1"                    },
8722   { "game.panel.key_7.y",                       "-1"                    },
8723   { "game.panel.key_7.tile_size",               "16"                    },
8724   { "game.panel.key_7.draw_masked",             "false"                 },
8725   { "game.panel.key_7.draw_order",              "0"                     },
8726   { "game.panel.key_7.class",                   "none"                  },
8727   { "game.panel.key_7.style",                   "none"                  },
8728   { "game.panel.key_8.x",                       "-1"                    },
8729   { "game.panel.key_8.y",                       "-1"                    },
8730   { "game.panel.key_8.tile_size",               "16"                    },
8731   { "game.panel.key_8.draw_masked",             "false"                 },
8732   { "game.panel.key_8.draw_order",              "0"                     },
8733   { "game.panel.key_8.class",                   "none"                  },
8734   { "game.panel.key_8.style",                   "none"                  },
8735   { "game.panel.key_white.x",                   "-1"                    },
8736   { "game.panel.key_white.y",                   "-1"                    },
8737   { "game.panel.key_white.tile_size",           "16"                    },
8738   { "game.panel.key_white.draw_masked",         "false"                 },
8739   { "game.panel.key_white.draw_order",          "0"                     },
8740   { "game.panel.key_white.class",               "none"                  },
8741   { "game.panel.key_white.style",               "none"                  },
8742   { "game.panel.key_white_count.x",             "-1"                    },
8743   { "game.panel.key_white_count.y",             "-1"                    },
8744   { "game.panel.key_white_count.align",         "left"                  },
8745   { "game.panel.key_white_count.valign",        "top"                   },
8746   { "game.panel.key_white_count.digits",        "-1"                    },
8747   { "game.panel.key_white_count.font",          "font.text_2"           },
8748   { "game.panel.key_white_count.draw_masked",   "true"                  },
8749   { "game.panel.key_white_count.draw_order",    "0"                     },
8750   { "game.panel.key_white_count.class",         "none"                  },
8751   { "game.panel.key_white_count.style",         "none"                  },
8752
8753   { "game.panel.score.x",                       "50"                    },
8754   { "game.panel.score.y",                       "159"                   },
8755   { "game.panel.score.align",                   "center"                },
8756   { "game.panel.score.valign",                  "top"                   },
8757   { "game.panel.score.digits",                  "5"                     },
8758   { "game.panel.score.font",                    "font.text_2"           },
8759   { "game.panel.score.draw_masked",             "true"                  },
8760   { "game.panel.score.draw_order",              "0"                     },
8761   { "game.panel.score.class",                   "none"                  },
8762   { "game.panel.score.style",                   "none"                  },
8763
8764   { "game.panel.highscore.x",                   "-1"                    },
8765   { "game.panel.highscore.y",                   "-1"                    },
8766   { "game.panel.highscore.align",               "left"                  },
8767   { "game.panel.highscore.valign",              "top"                   },
8768   { "game.panel.highscore.digits",              "5"                     },
8769   { "game.panel.highscore.font",                "font.text_2"           },
8770   { "game.panel.highscore.draw_masked",         "true"                  },
8771   { "game.panel.highscore.draw_order",          "0"                     },
8772   { "game.panel.highscore.class",               "none"                  },
8773   { "game.panel.highscore.style",               "none"                  },
8774
8775   { "game.panel.time.x",                        "50"                    },
8776   { "game.panel.time.y",                        "194"                   },
8777   { "game.panel.time.align",                    "center"                },
8778   { "game.panel.time.valign",                   "top"                   },
8779   { "game.panel.time.digits",                   "-1"                    },
8780   { "game.panel.time.font",                     "font.text_2"           },
8781   { "game.panel.time.font_narrow",              "font.text_1"           },
8782   { "game.panel.time.draw_masked",              "true"                  },
8783   { "game.panel.time.draw_order",               "0"                     },
8784   { "game.panel.time.class",                    "none"                  },
8785   { "game.panel.time.style",                    "none"                  },
8786
8787   { "game.panel.time_hh.x",                     "-1"                    },
8788   { "game.panel.time_hh.y",                     "-1"                    },
8789   { "game.panel.time_hh.align",                 "left"                  },
8790   { "game.panel.time_hh.valign",                "top"                   },
8791   { "game.panel.time_hh.digits",                "2"                     },
8792   { "game.panel.time_hh.font",                  "font.text_2"           },
8793   { "game.panel.time_hh.draw_masked",           "true"                  },
8794   { "game.panel.time_hh.draw_order",            "0"                     },
8795   { "game.panel.time_hh.class",                 "none"                  },
8796   { "game.panel.time_hh.style",                 "none"                  },
8797   { "game.panel.time_mm.x",                     "-1"                    },
8798   { "game.panel.time_mm.y",                     "-1"                    },
8799   { "game.panel.time_mm.align",                 "left"                  },
8800   { "game.panel.time_mm.valign",                "top"                   },
8801   { "game.panel.time_mm.digits",                "2"                     },
8802   { "game.panel.time_mm.font",                  "font.text_2"           },
8803   { "game.panel.time_mm.draw_masked",           "true"                  },
8804   { "game.panel.time_mm.draw_order",            "0"                     },
8805   { "game.panel.time_mm.class",                 "none"                  },
8806   { "game.panel.time_mm.style",                 "none"                  },
8807   { "game.panel.time_ss.x",                     "-1"                    },
8808   { "game.panel.time_ss.y",                     "-1"                    },
8809   { "game.panel.time_ss.align",                 "left"                  },
8810   { "game.panel.time_ss.valign",                "top"                   },
8811   { "game.panel.time_ss.digits",                "2"                     },
8812   { "game.panel.time_ss.font",                  "font.text_2"           },
8813   { "game.panel.time_ss.draw_masked",           "true"                  },
8814   { "game.panel.time_ss.draw_order",            "0"                     },
8815   { "game.panel.time_ss.class",                 "none"                  },
8816   { "game.panel.time_ss.style",                 "none"                  },
8817
8818   { "game.panel.time_anim.x",                   "5"                     },
8819   { "game.panel.time_anim.y",                   "72"                    },
8820   { "game.panel.time_anim.direction",           "right"                 },
8821   { "game.panel.time_anim.class",               "mm_engine_only"        },
8822   { "game.panel.time_anim.style",               "none"                  },
8823
8824   { "game.panel.health.x",                      "-1"                    },
8825   { "game.panel.health.y",                      "-1"                    },
8826   { "game.panel.health.align",                  "center"                },
8827   { "game.panel.health.valign",                 "top"                   },
8828   { "game.panel.health.digits",                 "-1"                    },
8829   { "game.panel.health.font",                   "font.text_2"           },
8830   { "game.panel.health.font_narrow",            "font.text_1"           },
8831   { "game.panel.health.draw_masked",            "true"                  },
8832   { "game.panel.health.draw_order",             "0"                     },
8833   { "game.panel.health.class",                  "none"                  },
8834   { "game.panel.health.style",                  "none"                  },
8835
8836   { "game.panel.health_anim.x",                 "5"                     },
8837   { "game.panel.health_anim.y",                 "107"                   },
8838   { "game.panel.health_anim.direction",         "right"                 },
8839   { "game.panel.health_anim.class",             "mm_engine_only"        },
8840   { "game.panel.health_anim.style",             "reverse"               },
8841
8842   { "game.panel.frame.x",                       "-1"                    },
8843   { "game.panel.frame.y",                       "-1"                    },
8844   { "game.panel.frame.align",                   "left"                  },
8845   { "game.panel.frame.valign",                  "top"                   },
8846   { "game.panel.frame.digits",                  "-1"                    },
8847   { "game.panel.frame.font",                    "font.text_2"           },
8848   { "game.panel.frame.draw_masked",             "true"                  },
8849   { "game.panel.frame.draw_order",              "0"                     },
8850   { "game.panel.frame.class",                   "none"                  },
8851   { "game.panel.frame.style",                   "none"                  },
8852
8853   { "game.panel.shield_normal.x",               "-1"                    },
8854   { "game.panel.shield_normal.y",               "-1"                    },
8855   { "game.panel.shield_normal.tile_size",       "16"                    },
8856   { "game.panel.shield_normal.draw_masked",     "false"                 },
8857   { "game.panel.shield_normal.draw_order",      "0"                     },
8858   { "game.panel.shield_normal_time.x",          "-1"                    },
8859   { "game.panel.shield_normal_time.y",          "-1"                    },
8860   { "game.panel.shield_normal_time.align",      "left"                  },
8861   { "game.panel.shield_normal_time.valign",     "top"                   },
8862   { "game.panel.shield_normal_time.digits",     "-1"                    },
8863   { "game.panel.shield_normal_time.font",       "font.text_2"           },
8864   { "game.panel.shield_normal_time.draw_masked", "true"                 },
8865   { "game.panel.shield_normal_time.draw_order", "0"                     },
8866   { "game.panel.shield_normal_time.class",      "none"                  },
8867   { "game.panel.shield_normal_time.style",      "none"                  },
8868   { "game.panel.shield_deadly.x",               "-1"                    },
8869   { "game.panel.shield_deadly.y",               "-1"                    },
8870   { "game.panel.shield_deadly.tile_size",       "16"                    },
8871   { "game.panel.shield_deadly.draw_masked",     "false"                 },
8872   { "game.panel.shield_deadly.draw_order",      "0"                     },
8873   { "game.panel.shield_deadly_time.x",          "-1"                    },
8874   { "game.panel.shield_deadly_time.y",          "-1"                    },
8875   { "game.panel.shield_deadly_time.align",      "left"                  },
8876   { "game.panel.shield_deadly_time.valign",     "top"                   },
8877   { "game.panel.shield_deadly_time.digits",     "-1"                    },
8878   { "game.panel.shield_deadly_time.font",       "font.text_2"           },
8879   { "game.panel.shield_deadly_time.draw_masked","true"                  },
8880   { "game.panel.shield_deadly_time.draw_order", "0"                     },
8881   { "game.panel.shield_deadly_time.class",      "none"                  },
8882   { "game.panel.shield_deadly_time.style",      "none"                  },
8883
8884   { "game.panel.exit.x",                        "-1"                    },
8885   { "game.panel.exit.y",                        "-1"                    },
8886   { "game.panel.exit.tile_size",                "16"                    },
8887   { "game.panel.exit.draw_masked",              "false"                 },
8888   { "game.panel.exit.draw_order",               "0"                     },
8889   { "game.panel.exit.class",                    "none"                  },
8890   { "game.panel.exit.style",                    "none"                  },
8891
8892   { "game.panel.emc_magic_ball.x",              "-1"                    },
8893   { "game.panel.emc_magic_ball.y",              "-1"                    },
8894   { "game.panel.emc_magic_ball.tile_size",      "16"                    },
8895   { "game.panel.emc_magic_ball.draw_masked",    "false"                 },
8896   { "game.panel.emc_magic_ball.draw_order",     "0"                     },
8897   { "game.panel.emc_magic_ball_switch.x",       "-1"                    },
8898   { "game.panel.emc_magic_ball_switch.y",       "-1"                    },
8899   { "game.panel.emc_magic_ball_switch.tile_size", "16"                  },
8900   { "game.panel.emc_magic_ball_switch.draw_masked", "true"              },
8901   { "game.panel.emc_magic_ball_switch.draw_order", "0"                  },
8902   { "game.panel.emc_magic_ball_switch.class",   "none"                  },
8903   { "game.panel.emc_magic_ball_switch.style",   "none"                  },
8904
8905   { "game.panel.light_switch.x",                "-1"                    },
8906   { "game.panel.light_switch.y",                "-1"                    },
8907   { "game.panel.light_switch.tile_size",        "16"                    },
8908   { "game.panel.light_switch.draw_masked",      "false"                 },
8909   { "game.panel.light_switch.draw_order",       "0"                     },
8910   { "game.panel.light_switch_time.x",           "-1"                    },
8911   { "game.panel.light_switch_time.y",           "-1"                    },
8912   { "game.panel.light_switch_time.align",       "left"                  },
8913   { "game.panel.light_switch_time.valign",      "top"                   },
8914   { "game.panel.light_switch_time.digits",      "-1"                    },
8915   { "game.panel.light_switch_time.font",        "font.text_2"           },
8916   { "game.panel.light_switch_time.draw_masked", "true"                  },
8917   { "game.panel.light_switch_time.draw_order",  "0"                     },
8918   { "game.panel.light_switch_time.class",       "none"                  },
8919   { "game.panel.light_switch_time.style",       "none"                  },
8920
8921   { "game.panel.timegate_switch.x",             "-1"                    },
8922   { "game.panel.timegate_switch.y",             "-1"                    },
8923   { "game.panel.timegate_switch.tile_size",     "16"                    },
8924   { "game.panel.timegate_switch.draw_masked",   "false"                 },
8925   { "game.panel.timegate_switch.draw_order",    "0"                     },
8926   { "game.panel.timegate_switch_time.x",        "-1"                    },
8927   { "game.panel.timegate_switch_time.y",        "-1"                    },
8928   { "game.panel.timegate_switch_time.align",    "left"                  },
8929   { "game.panel.timegate_switch_time.valign",   "top"                   },
8930   { "game.panel.timegate_switch_time.digits",   "-1"                    },
8931   { "game.panel.timegate_switch_time.font",     "font.text_2"           },
8932   { "game.panel.timegate_switch_time.draw_masked", "true"               },
8933   { "game.panel.timegate_switch_time.draw_order", "0"                   },
8934   { "game.panel.timegate_switch_time.class",    "none"                  },
8935   { "game.panel.timegate_switch_time.style",    "none"                  },
8936
8937   { "game.panel.switchgate_switch.x",           "-1"                    },
8938   { "game.panel.switchgate_switch.y",           "-1"                    },
8939   { "game.panel.switchgate_switch.tile_size",   "16"                    },
8940   { "game.panel.switchgate_switch.draw_masked", "false"                 },
8941   { "game.panel.switchgate_switch.draw_order",  "0"                     },
8942   { "game.panel.switchgate_switch.class",       "none"                  },
8943   { "game.panel.switchgate_switch.style",       "none"                  },
8944
8945   { "game.panel.emc_lenses.x",                  "-1"                    },
8946   { "game.panel.emc_lenses.y",                  "-1"                    },
8947   { "game.panel.emc_lenses.tile_size",          "16"                    },
8948   { "game.panel.emc_lenses.draw_masked",        "false"                 },
8949   { "game.panel.emc_lenses.draw_order",         "0"                     },
8950   { "game.panel.emc_lenses.class",              "none"                  },
8951   { "game.panel.emc_lenses.style",              "none"                  },
8952   { "game.panel.emc_lenses_time.x",             "-1"                    },
8953   { "game.panel.emc_lenses_time.y",             "-1"                    },
8954   { "game.panel.emc_lenses_time.align",         "left"                  },
8955   { "game.panel.emc_lenses_time.valign",        "top"                   },
8956   { "game.panel.emc_lenses_time.digits",        "-1"                    },
8957   { "game.panel.emc_lenses_time.font",          "font.text_2"           },
8958   { "game.panel.emc_lenses_time.draw_masked",   "true"                  },
8959   { "game.panel.emc_lenses_time.draw_order",    "0"                     },
8960   { "game.panel.emc_lenses_time.class",         "none"                  },
8961   { "game.panel.emc_lenses_time.style",         "none"                  },
8962
8963   { "game.panel.emc_magnifier.x",               "-1"                    },
8964   { "game.panel.emc_magnifier.y",               "-1"                    },
8965   { "game.panel.emc_magnifier.tile_size",       "16"                    },
8966   { "game.panel.emc_magnifier.draw_masked",     "false"                 },
8967   { "game.panel.emc_magnifier.draw_order",      "0"                     },
8968   { "game.panel.emc_magnifier.class",           "none"                  },
8969   { "game.panel.emc_magnifier.style",           "none"                  },
8970   { "game.panel.emc_magnifier_time.x",          "-1"                    },
8971   { "game.panel.emc_magnifier_time.y",          "-1"                    },
8972   { "game.panel.emc_magnifier_time.align",      "left"                  },
8973   { "game.panel.emc_magnifier_time.valign",     "top"                   },
8974   { "game.panel.emc_magnifier_time.digits",     "-1"                    },
8975   { "game.panel.emc_magnifier_time.font",       "font.text_2"           },
8976   { "game.panel.emc_magnifier_time.draw_masked","true"                  },
8977   { "game.panel.emc_magnifier_time.draw_order", "0"                     },
8978   { "game.panel.emc_magnifier_time.class",      "none"                  },
8979   { "game.panel.emc_magnifier_time.style",      "none"                  },
8980
8981   { "game.panel.balloon_switch.x",              "-1"                    },
8982   { "game.panel.balloon_switch.y",              "-1"                    },
8983   { "game.panel.balloon_switch.tile_size",      "16"                    },
8984   { "game.panel.balloon_switch.draw_masked",    "false"                 },
8985   { "game.panel.balloon_switch.draw_order",     "0"                     },
8986   { "game.panel.balloon_switch.class",          "none"                  },
8987   { "game.panel.balloon_switch.style",          "none"                  },
8988
8989   { "game.panel.dynabomb_number.x",             "-1"                    },
8990   { "game.panel.dynabomb_number.y",             "-1"                    },
8991   { "game.panel.dynabomb_number.align",         "left"                  },
8992   { "game.panel.dynabomb_number.valign",        "top"                   },
8993   { "game.panel.dynabomb_number.digits",        "-1"                    },
8994   { "game.panel.dynabomb_number.font",          "font.text_2"           },
8995   { "game.panel.dynabomb_number.draw_masked",   "true"                  },
8996   { "game.panel.dynabomb_number.draw_order",    "0"                     },
8997   { "game.panel.dynabomb_number.class",         "none"                  },
8998   { "game.panel.dynabomb_number.style",         "none"                  },
8999   { "game.panel.dynabomb_size.x",               "-1"                    },
9000   { "game.panel.dynabomb_size.y",               "-1"                    },
9001   { "game.panel.dynabomb_size.align",           "left"                  },
9002   { "game.panel.dynabomb_size.valign",          "top"                   },
9003   { "game.panel.dynabomb_size.digits",          "-1"                    },
9004   { "game.panel.dynabomb_size.font",            "font.text_2"           },
9005   { "game.panel.dynabomb_size.draw_masked",     "true"                  },
9006   { "game.panel.dynabomb_size.draw_order",      "0"                     },
9007   { "game.panel.dynabomb_size.class",           "none"                  },
9008   { "game.panel.dynabomb_size.style",           "none"                  },
9009   { "game.panel.dynabomb_power.x",              "-1"                    },
9010   { "game.panel.dynabomb_power.y",              "-1"                    },
9011   { "game.panel.dynabomb_power.tile_size",      "16"                    },
9012   { "game.panel.dynabomb_power.draw_masked",    "false"                 },
9013   { "game.panel.dynabomb_power.draw_order",     "0"                     },
9014   { "game.panel.dynabomb_power.class",          "none"                  },
9015   { "game.panel.dynabomb_power.style",          "none"                  },
9016
9017   { "game.panel.penguins.x",                    "-1"                    },
9018   { "game.panel.penguins.y",                    "-1"                    },
9019   { "game.panel.penguins.align",                "left"                  },
9020   { "game.panel.penguins.valign",               "top"                   },
9021   { "game.panel.penguins.digits",               "-1"                    },
9022   { "game.panel.penguins.font",                 "font.text_2"           },
9023   { "game.panel.penguins.draw_masked",          "true"                  },
9024   { "game.panel.penguins.draw_order",           "0"                     },
9025   { "game.panel.penguins.class",                "none"                  },
9026   { "game.panel.penguins.style",                "none"                  },
9027
9028   { "game.panel.sokoban_objects.x",             "-1"                    },
9029   { "game.panel.sokoban_objects.y",             "-1"                    },
9030   { "game.panel.sokoban_objects.align",         "left"                  },
9031   { "game.panel.sokoban_objects.valign",        "top"                   },
9032   { "game.panel.sokoban_objects.digits",        "-1"                    },
9033   { "game.panel.sokoban_objects.font",          "font.text_2"           },
9034   { "game.panel.sokoban_objects.draw_masked",   "true"                  },
9035   { "game.panel.sokoban_objects.draw_order",    "0"                     },
9036   { "game.panel.sokoban_objects.class",         "none"                  },
9037   { "game.panel.sokoban_objects.style",         "none"                  },
9038   { "game.panel.sokoban_fields.x",              "-1"                    },
9039   { "game.panel.sokoban_fields.y",              "-1"                    },
9040   { "game.panel.sokoban_fields.align",          "left"                  },
9041   { "game.panel.sokoban_fields.valign",         "top"                   },
9042   { "game.panel.sokoban_fields.digits",         "-1"                    },
9043   { "game.panel.sokoban_fields.font",           "font.text_2"           },
9044   { "game.panel.sokoban_fields.draw_masked",    "true"                  },
9045   { "game.panel.sokoban_fields.draw_order",     "0"                     },
9046   { "game.panel.sokoban_fields.class",          "none"                  },
9047   { "game.panel.sokoban_fields.style",          "none"                  },
9048
9049   { "game.panel.robot_wheel.x",                 "-1"                    },
9050   { "game.panel.robot_wheel.y",                 "-1"                    },
9051   { "game.panel.robot_wheel.tile_size",         "16"                    },
9052   { "game.panel.robot_wheel.draw_masked",       "false"                 },
9053   { "game.panel.robot_wheel.draw_order",        "0"                     },
9054   { "game.panel.robot_wheel.class",             "none"                  },
9055   { "game.panel.robot_wheel.style",             "none"                  },
9056
9057   { "game.panel.conveyor_belt_1.x",             "-1"                    },
9058   { "game.panel.conveyor_belt_1.y",             "-1"                    },
9059   { "game.panel.conveyor_belt_1.tile_size",     "16"                    },
9060   { "game.panel.conveyor_belt_1.draw_masked",   "false"                 },
9061   { "game.panel.conveyor_belt_1.draw_order",    "0"                     },
9062   { "game.panel.conveyor_belt_1.class",         "none"                  },
9063   { "game.panel.conveyor_belt_1.style",         "none"                  },
9064   { "game.panel.conveyor_belt_1_switch.x",      "-1"                    },
9065   { "game.panel.conveyor_belt_1_switch.y",      "-1"                    },
9066   { "game.panel.conveyor_belt_1_switch.tile_size", "16"                 },
9067   { "game.panel.conveyor_belt_1_switch.draw_masked", "false"            },
9068   { "game.panel.conveyor_belt_1_switch.draw_order", "0"                 },
9069   { "game.panel.conveyor_belt_1_switch.class",  "none"                  },
9070   { "game.panel.conveyor_belt_1_switch.style",  "none"                  },
9071   { "game.panel.conveyor_belt_2.x",             "-1"                    },
9072   { "game.panel.conveyor_belt_2.y",             "-1"                    },
9073   { "game.panel.conveyor_belt_2.tile_size",     "16"                    },
9074   { "game.panel.conveyor_belt_2.draw_masked",   "false"                 },
9075   { "game.panel.conveyor_belt_2.draw_order",    "0"                     },
9076   { "game.panel.conveyor_belt_2.class",         "none"                  },
9077   { "game.panel.conveyor_belt_2.style",         "none"                  },
9078   { "game.panel.conveyor_belt_2_switch.x",      "-1"                    },
9079   { "game.panel.conveyor_belt_2_switch.y",      "-1"                    },
9080   { "game.panel.conveyor_belt_2_switch.tile_size", "16"                 },
9081   { "game.panel.conveyor_belt_2_switch.draw_masked", "false"            },
9082   { "game.panel.conveyor_belt_2_switch.draw_order", "0"                 },
9083   { "game.panel.conveyor_belt_2_switch.class",  "none"                  },
9084   { "game.panel.conveyor_belt_2_switch.style",  "none"                  },
9085   { "game.panel.conveyor_belt_3.x",             "-1"                    },
9086   { "game.panel.conveyor_belt_3.y",             "-1"                    },
9087   { "game.panel.conveyor_belt_3.tile_size",     "16"                    },
9088   { "game.panel.conveyor_belt_3.draw_masked",   "false"                 },
9089   { "game.panel.conveyor_belt_3.draw_order",    "0"                     },
9090   { "game.panel.conveyor_belt_3.class",         "none"                  },
9091   { "game.panel.conveyor_belt_3.style",         "none"                  },
9092   { "game.panel.conveyor_belt_3_switch.x",      "-1"                    },
9093   { "game.panel.conveyor_belt_3_switch.y",      "-1"                    },
9094   { "game.panel.conveyor_belt_3_switch.tile_size", "16"                 },
9095   { "game.panel.conveyor_belt_3_switch.draw_masked", "false"            },
9096   { "game.panel.conveyor_belt_3_switch.draw_order", "0"                 },
9097   { "game.panel.conveyor_belt_3_switch.class",  "none"                  },
9098   { "game.panel.conveyor_belt_3_switch.style",  "none"                  },
9099   { "game.panel.conveyor_belt_4.x",             "-1"                    },
9100   { "game.panel.conveyor_belt_4.y",             "-1"                    },
9101   { "game.panel.conveyor_belt_4.tile_size",     "16"                    },
9102   { "game.panel.conveyor_belt_4.draw_masked",   "false"                 },
9103   { "game.panel.conveyor_belt_4.draw_order",    "0"                     },
9104   { "game.panel.conveyor_belt_4.class",         "none"                  },
9105   { "game.panel.conveyor_belt_4.style",         "none"                  },
9106   { "game.panel.conveyor_belt_4_switch.x",      "-1"                    },
9107   { "game.panel.conveyor_belt_4_switch.y",      "-1"                    },
9108   { "game.panel.conveyor_belt_4_switch.tile_size", "16"                 },
9109   { "game.panel.conveyor_belt_4_switch.draw_masked", "false"            },
9110   { "game.panel.conveyor_belt_4_switch.draw_order", "0"                 },
9111   { "game.panel.conveyor_belt_4_switch.class",  "none"                  },
9112   { "game.panel.conveyor_belt_4_switch.style",  "none"                  },
9113
9114   { "game.panel.magic_wall.x",                  "-1"                    },
9115   { "game.panel.magic_wall.y",                  "-1"                    },
9116   { "game.panel.magic_wall.tile_size",          "16"                    },
9117   { "game.panel.magic_wall.draw_masked",        "false"                 },
9118   { "game.panel.magic_wall.draw_order",         "0"                     },
9119   { "game.panel.magic_wall.class",              "none"                  },
9120   { "game.panel.magic_wall.style",              "none"                  },
9121   { "game.panel.magic_wall_time.x",             "-1"                    },
9122   { "game.panel.magic_wall_time.y",             "-1"                    },
9123   { "game.panel.magic_wall_time.align",         "left"                  },
9124   { "game.panel.magic_wall_time.valign",        "top"                   },
9125   { "game.panel.magic_wall_time.digits",        "-1"                    },
9126   { "game.panel.magic_wall_time.font",          "font.text_2"           },
9127   { "game.panel.magic_wall_time.draw_masked",   "true"                  },
9128   { "game.panel.magic_wall_time.draw_order",    "0"                     },
9129   { "game.panel.magic_wall_time.class",         "none"                  },
9130   { "game.panel.magic_wall_time.style",         "none"                  },
9131
9132   { "game.panel.gravity_state.x",               "-1"                    },
9133   { "game.panel.gravity_state.y",               "-1"                    },
9134   { "game.panel.gravity_state.align",           "left"                  },
9135   { "game.panel.gravity_state.valign",          "top"                   },
9136   { "game.panel.gravity_state.chars",           "-1"                    },
9137   { "game.panel.gravity_state.font",            "font.text_1"           },
9138   { "game.panel.gravity_state.font_active",     "font.text_2"           },
9139   { "game.panel.gravity_state.draw_masked",     "true"                  },
9140   { "game.panel.gravity_state.draw_order",      "0"                     },
9141   { "game.panel.gravity_state.class",           "none"                  },
9142   { "game.panel.gravity_state.style",           "none"                  },
9143
9144   { "game.panel.graphic_1.x",                   "-1"                    },
9145   { "game.panel.graphic_1.y",                   "-1"                    },
9146   { "game.panel.graphic_1.draw_masked",         "true"                  },
9147   { "game.panel.graphic_1.draw_order",          "0"                     },
9148   { "game.panel.graphic_1.class",               "none"                  },
9149   { "game.panel.graphic_1.style",               "none"                  },
9150   { "game.panel.graphic_2.x",                   "-1"                    },
9151   { "game.panel.graphic_2.y",                   "-1"                    },
9152   { "game.panel.graphic_2.draw_masked",         "true"                  },
9153   { "game.panel.graphic_2.draw_order",          "0"                     },
9154   { "game.panel.graphic_2.class",               "none"                  },
9155   { "game.panel.graphic_2.style",               "none"                  },
9156   { "game.panel.graphic_3.x",                   "-1"                    },
9157   { "game.panel.graphic_3.y",                   "-1"                    },
9158   { "game.panel.graphic_3.draw_masked",         "true"                  },
9159   { "game.panel.graphic_3.draw_order",          "0"                     },
9160   { "game.panel.graphic_3.class",               "none"                  },
9161   { "game.panel.graphic_3.style",               "none"                  },
9162   { "game.panel.graphic_4.x",                   "-1"                    },
9163   { "game.panel.graphic_4.y",                   "-1"                    },
9164   { "game.panel.graphic_4.draw_masked",         "true"                  },
9165   { "game.panel.graphic_4.draw_order",          "0"                     },
9166   { "game.panel.graphic_4.class",               "none"                  },
9167   { "game.panel.graphic_4.style",               "none"                  },
9168   { "game.panel.graphic_5.x",                   "-1"                    },
9169   { "game.panel.graphic_5.y",                   "-1"                    },
9170   { "game.panel.graphic_5.draw_masked",         "true"                  },
9171   { "game.panel.graphic_5.draw_order",          "0"                     },
9172   { "game.panel.graphic_5.class",               "none"                  },
9173   { "game.panel.graphic_5.style",               "none"                  },
9174   { "game.panel.graphic_6.x",                   "-1"                    },
9175   { "game.panel.graphic_6.y",                   "-1"                    },
9176   { "game.panel.graphic_6.draw_masked",         "true"                  },
9177   { "game.panel.graphic_6.draw_order",          "0"                     },
9178   { "game.panel.graphic_6.class",               "none"                  },
9179   { "game.panel.graphic_6.style",               "none"                  },
9180   { "game.panel.graphic_7.x",                   "-1"                    },
9181   { "game.panel.graphic_7.y",                   "-1"                    },
9182   { "game.panel.graphic_7.draw_masked",         "true"                  },
9183   { "game.panel.graphic_7.draw_order",          "0"                     },
9184   { "game.panel.graphic_7.class",               "none"                  },
9185   { "game.panel.graphic_7.style",               "none"                  },
9186   { "game.panel.graphic_8.x",                   "-1"                    },
9187   { "game.panel.graphic_8.y",                   "-1"                    },
9188   { "game.panel.graphic_8.draw_masked",         "true"                  },
9189   { "game.panel.graphic_8.draw_order",          "0"                     },
9190   { "game.panel.graphic_8.class",               "none"                  },
9191   { "game.panel.graphic_8.style",               "none"                  },
9192
9193   { "game.panel.element_1.x",                   "-1"                    },
9194   { "game.panel.element_1.y",                   "-1"                    },
9195   { "game.panel.element_1.tile_size",           "16"                    },
9196   { "game.panel.element_1.element",             "empty_space"           },
9197   { "game.panel.element_1.draw_masked",         "false"                 },
9198   { "game.panel.element_1.draw_order",          "0"                     },
9199   { "game.panel.element_1.class",               "none"                  },
9200   { "game.panel.element_1.style",               "none"                  },
9201   { "game.panel.element_1_count.x",             "-1"                    },
9202   { "game.panel.element_1_count.y",             "-1"                    },
9203   { "game.panel.element_1_count.align",         "left"                  },
9204   { "game.panel.element_1_count.valign",        "top"                   },
9205   { "game.panel.element_1_count.digits",        "-1"                    },
9206   { "game.panel.element_1_count.font",          "font.text_2"           },
9207   { "game.panel.element_1_count.element",       "empty_space"           },
9208   { "game.panel.element_1_count.draw_masked",   "true"                  },
9209   { "game.panel.element_1_count.draw_order",    "0"                     },
9210   { "game.panel.element_1_count.class",         "none"                  },
9211   { "game.panel.element_1_count.style",         "none"                  },
9212   { "game.panel.element_2.x",                   "-1"                    },
9213   { "game.panel.element_2.y",                   "-1"                    },
9214   { "game.panel.element_2.tile_size",           "16"                    },
9215   { "game.panel.element_2.element",             "empty_space"           },
9216   { "game.panel.element_2.draw_masked",         "false"                 },
9217   { "game.panel.element_2.draw_order",          "0"                     },
9218   { "game.panel.element_2.class",               "none"                  },
9219   { "game.panel.element_2.style",               "none"                  },
9220   { "game.panel.element_2_count.x",             "-1"                    },
9221   { "game.panel.element_2_count.y",             "-1"                    },
9222   { "game.panel.element_2_count.align",         "left"                  },
9223   { "game.panel.element_2_count.valign",        "top"                   },
9224   { "game.panel.element_2_count.digits",        "-1"                    },
9225   { "game.panel.element_2_count.font",          "font.text_2"           },
9226   { "game.panel.element_2_count.element",       "empty_space"           },
9227   { "game.panel.element_2_count.draw_masked",   "true"                  },
9228   { "game.panel.element_2_count.draw_order",    "0"                     },
9229   { "game.panel.element_2_count.class",         "none"                  },
9230   { "game.panel.element_2_count.style",         "none"                  },
9231   { "game.panel.element_3.x",                   "-1"                    },
9232   { "game.panel.element_3.y",                   "-1"                    },
9233   { "game.panel.element_3.tile_size",           "16"                    },
9234   { "game.panel.element_3.element",             "empty_space"           },
9235   { "game.panel.element_3.draw_masked",         "false"                 },
9236   { "game.panel.element_3.draw_order",          "0"                     },
9237   { "game.panel.element_3.class",               "none"                  },
9238   { "game.panel.element_3.style",               "none"                  },
9239   { "game.panel.element_3_count.x",             "-1"                    },
9240   { "game.panel.element_3_count.y",             "-1"                    },
9241   { "game.panel.element_3_count.align",         "left"                  },
9242   { "game.panel.element_3_count.valign",        "top"                   },
9243   { "game.panel.element_3_count.digits",        "-1"                    },
9244   { "game.panel.element_3_count.font",          "font.text_2"           },
9245   { "game.panel.element_3_count.element",       "empty_space"           },
9246   { "game.panel.element_3_count.draw_masked",   "true"                  },
9247   { "game.panel.element_3_count.draw_order",    "0"                     },
9248   { "game.panel.element_3_count.class",         "none"                  },
9249   { "game.panel.element_3_count.style",         "none"                  },
9250   { "game.panel.element_4.x",                   "-1"                    },
9251   { "game.panel.element_4.y",                   "-1"                    },
9252   { "game.panel.element_4.tile_size",           "16"                    },
9253   { "game.panel.element_4.element",             "empty_space"           },
9254   { "game.panel.element_4.draw_masked",         "false"                 },
9255   { "game.panel.element_4.draw_order",          "0"                     },
9256   { "game.panel.element_4.class",               "none"                  },
9257   { "game.panel.element_4.style",               "none"                  },
9258   { "game.panel.element_4_count.x",             "-1"                    },
9259   { "game.panel.element_4_count.y",             "-1"                    },
9260   { "game.panel.element_4_count.align",         "left"                  },
9261   { "game.panel.element_4_count.valign",        "top"                   },
9262   { "game.panel.element_4_count.digits",        "-1"                    },
9263   { "game.panel.element_4_count.font",          "font.text_2"           },
9264   { "game.panel.element_4_count.element",       "empty_space"           },
9265   { "game.panel.element_4_count.draw_masked",   "true"                  },
9266   { "game.panel.element_4_count.draw_order",    "0"                     },
9267   { "game.panel.element_4_count.class",         "none"                  },
9268   { "game.panel.element_4_count.style",         "none"                  },
9269   { "game.panel.element_5.x",                   "-1"                    },
9270   { "game.panel.element_5.y",                   "-1"                    },
9271   { "game.panel.element_5.tile_size",           "16"                    },
9272   { "game.panel.element_5.element",             "empty_space"           },
9273   { "game.panel.element_5.draw_masked",         "false"                 },
9274   { "game.panel.element_5.draw_order",          "0"                     },
9275   { "game.panel.element_5.class",               "none"                  },
9276   { "game.panel.element_5.style",               "none"                  },
9277   { "game.panel.element_5_count.x",             "-1"                    },
9278   { "game.panel.element_5_count.y",             "-1"                    },
9279   { "game.panel.element_5_count.align",         "left"                  },
9280   { "game.panel.element_5_count.valign",        "top"                   },
9281   { "game.panel.element_5_count.digits",        "-1"                    },
9282   { "game.panel.element_5_count.font",          "font.text_2"           },
9283   { "game.panel.element_5_count.element",       "empty_space"           },
9284   { "game.panel.element_5_count.draw_masked",   "true"                  },
9285   { "game.panel.element_5_count.draw_order",    "0"                     },
9286   { "game.panel.element_5_count.class",         "none"                  },
9287   { "game.panel.element_5_count.style",         "none"                  },
9288   { "game.panel.element_6.x",                   "-1"                    },
9289   { "game.panel.element_6.y",                   "-1"                    },
9290   { "game.panel.element_6.tile_size",           "16"                    },
9291   { "game.panel.element_6.element",             "empty_space"           },
9292   { "game.panel.element_6.draw_masked",         "false"                 },
9293   { "game.panel.element_6.draw_order",          "0"                     },
9294   { "game.panel.element_6.class",               "none"                  },
9295   { "game.panel.element_6.style",               "none"                  },
9296   { "game.panel.element_6_count.x",             "-1"                    },
9297   { "game.panel.element_6_count.y",             "-1"                    },
9298   { "game.panel.element_6_count.align",         "left"                  },
9299   { "game.panel.element_6_count.valign",        "top"                   },
9300   { "game.panel.element_6_count.digits",        "-1"                    },
9301   { "game.panel.element_6_count.font",          "font.text_2"           },
9302   { "game.panel.element_6_count.element",       "empty_space"           },
9303   { "game.panel.element_6_count.draw_masked",   "true"                  },
9304   { "game.panel.element_6_count.draw_order",    "0"                     },
9305   { "game.panel.element_6_count.class",         "none"                  },
9306   { "game.panel.element_6_count.style",         "none"                  },
9307   { "game.panel.element_7.x",                   "-1"                    },
9308   { "game.panel.element_7.y",                   "-1"                    },
9309   { "game.panel.element_7.tile_size",           "16"                    },
9310   { "game.panel.element_7.element",             "empty_space"           },
9311   { "game.panel.element_7.draw_masked",         "false"                 },
9312   { "game.panel.element_7.draw_order",          "0"                     },
9313   { "game.panel.element_7.class",               "none"                  },
9314   { "game.panel.element_7.style",               "none"                  },
9315   { "game.panel.element_7_count.x",             "-1"                    },
9316   { "game.panel.element_7_count.y",             "-1"                    },
9317   { "game.panel.element_7_count.align",         "left"                  },
9318   { "game.panel.element_7_count.valign",        "top"                   },
9319   { "game.panel.element_7_count.digits",        "-1"                    },
9320   { "game.panel.element_7_count.font",          "font.text_2"           },
9321   { "game.panel.element_7_count.element",       "empty_space"           },
9322   { "game.panel.element_7_count.draw_masked",   "true"                  },
9323   { "game.panel.element_7_count.draw_order",    "0"                     },
9324   { "game.panel.element_7_count.class",         "none"                  },
9325   { "game.panel.element_7_count.style",         "none"                  },
9326   { "game.panel.element_8.x",                   "-1"                    },
9327   { "game.panel.element_8.y",                   "-1"                    },
9328   { "game.panel.element_8.tile_size",           "16"                    },
9329   { "game.panel.element_8.element",             "empty_space"           },
9330   { "game.panel.element_8.draw_masked",         "false"                 },
9331   { "game.panel.element_8.draw_order",          "0"                     },
9332   { "game.panel.element_8.class",               "none"                  },
9333   { "game.panel.element_8.style",               "none"                  },
9334   { "game.panel.element_8_count.x",             "-1"                    },
9335   { "game.panel.element_8_count.y",             "-1"                    },
9336   { "game.panel.element_8_count.align",         "left"                  },
9337   { "game.panel.element_8_count.valign",        "top"                   },
9338   { "game.panel.element_8_count.digits",        "-1"                    },
9339   { "game.panel.element_8_count.font",          "font.text_2"           },
9340   { "game.panel.element_8_count.element",       "empty_space"           },
9341   { "game.panel.element_8_count.draw_masked",   "true"                  },
9342   { "game.panel.element_8_count.draw_order",    "0"                     },
9343   { "game.panel.element_8_count.class",         "none"                  },
9344   { "game.panel.element_8_count.style",         "none"                  },
9345
9346   { "game.panel.ce_score_1.x",                  "-1"                    },
9347   { "game.panel.ce_score_1.y",                  "-1"                    },
9348   { "game.panel.ce_score_1.align",              "left"                  },
9349   { "game.panel.ce_score_1.valign",             "top"                   },
9350   { "game.panel.ce_score_1.digits",             "-1"                    },
9351   { "game.panel.ce_score_1.font",               "font.text_2"           },
9352   { "game.panel.ce_score_1.element",            "empty_space"           },
9353   { "game.panel.ce_score_1.draw_masked",        "true"                  },
9354   { "game.panel.ce_score_1.draw_order",         "0"                     },
9355   { "game.panel.ce_score_1.class",              "none"                  },
9356   { "game.panel.ce_score_1.style",              "none"                  },
9357   { "game.panel.ce_score_1_element.x",          "-1"                    },
9358   { "game.panel.ce_score_1_element.y",          "-1"                    },
9359   { "game.panel.ce_score_1_element.tile_size",  "16"                    },
9360   { "game.panel.ce_score_1_element.element",    "empty_space"           },
9361   { "game.panel.ce_score_1_element.draw_masked","false"                 },
9362   { "game.panel.ce_score_1_element.draw_order", "0"                     },
9363   { "game.panel.ce_score_1_element.class",      "none"                  },
9364   { "game.panel.ce_score_1_element.style",      "none"                  },
9365   { "game.panel.ce_score_2.x",                  "-1"                    },
9366   { "game.panel.ce_score_2.y",                  "-1"                    },
9367   { "game.panel.ce_score_2.align",              "left"                  },
9368   { "game.panel.ce_score_2.valign",             "top"                   },
9369   { "game.panel.ce_score_2.digits",             "-1"                    },
9370   { "game.panel.ce_score_2.font",               "font.text_2"           },
9371   { "game.panel.ce_score_2.element",            "empty_space"           },
9372   { "game.panel.ce_score_2.draw_masked",        "true"                  },
9373   { "game.panel.ce_score_2.draw_order",         "0"                     },
9374   { "game.panel.ce_score_2.class",              "none"                  },
9375   { "game.panel.ce_score_2.style",              "none"                  },
9376   { "game.panel.ce_score_2_element.x",          "-1"                    },
9377   { "game.panel.ce_score_2_element.y",          "-1"                    },
9378   { "game.panel.ce_score_2_element.tile_size",  "16"                    },
9379   { "game.panel.ce_score_2_element.element",    "empty_space"           },
9380   { "game.panel.ce_score_2_element.draw_masked","false"                 },
9381   { "game.panel.ce_score_2_element.draw_order", "0"                     },
9382   { "game.panel.ce_score_2_element.class",      "none"                  },
9383   { "game.panel.ce_score_2_element.style",      "none"                  },
9384   { "game.panel.ce_score_3.x",                  "-1"                    },
9385   { "game.panel.ce_score_3.y",                  "-1"                    },
9386   { "game.panel.ce_score_3.align",              "left"                  },
9387   { "game.panel.ce_score_3.valign",             "top"                   },
9388   { "game.panel.ce_score_3.digits",             "-1"                    },
9389   { "game.panel.ce_score_3.font",               "font.text_2"           },
9390   { "game.panel.ce_score_3.element",            "empty_space"           },
9391   { "game.panel.ce_score_3.draw_masked",        "true"                  },
9392   { "game.panel.ce_score_3.draw_order",         "0"                     },
9393   { "game.panel.ce_score_3.class",              "none"                  },
9394   { "game.panel.ce_score_3.style",              "none"                  },
9395   { "game.panel.ce_score_3_element.x",          "-1"                    },
9396   { "game.panel.ce_score_3_element.y",          "-1"                    },
9397   { "game.panel.ce_score_3_element.tile_size",  "16"                    },
9398   { "game.panel.ce_score_3_element.element",    "empty_space"           },
9399   { "game.panel.ce_score_3_element.draw_masked","false"                 },
9400   { "game.panel.ce_score_3_element.draw_order", "0"                     },
9401   { "game.panel.ce_score_3_element.class",      "none"                  },
9402   { "game.panel.ce_score_3_element.style",      "none"                  },
9403   { "game.panel.ce_score_4.x",                  "-1"                    },
9404   { "game.panel.ce_score_4.y",                  "-1"                    },
9405   { "game.panel.ce_score_4.align",              "left"                  },
9406   { "game.panel.ce_score_4.valign",             "top"                   },
9407   { "game.panel.ce_score_4.digits",             "-1"                    },
9408   { "game.panel.ce_score_4.font",               "font.text_2"           },
9409   { "game.panel.ce_score_4.element",            "empty_space"           },
9410   { "game.panel.ce_score_4.draw_masked",        "true"                  },
9411   { "game.panel.ce_score_4.draw_order",         "0"                     },
9412   { "game.panel.ce_score_4.class",              "none"                  },
9413   { "game.panel.ce_score_4.style",              "none"                  },
9414   { "game.panel.ce_score_4_element.x",          "-1"                    },
9415   { "game.panel.ce_score_4_element.y",          "-1"                    },
9416   { "game.panel.ce_score_4_element.tile_size",  "16"                    },
9417   { "game.panel.ce_score_4_element.element",    "empty_space"           },
9418   { "game.panel.ce_score_4_element.draw_masked","false"                 },
9419   { "game.panel.ce_score_4_element.draw_order", "0"                     },
9420   { "game.panel.ce_score_4_element.class",      "none"                  },
9421   { "game.panel.ce_score_4_element.style",      "none"                  },
9422   { "game.panel.ce_score_5.x",                  "-1"                    },
9423   { "game.panel.ce_score_5.y",                  "-1"                    },
9424   { "game.panel.ce_score_5.align",              "left"                  },
9425   { "game.panel.ce_score_5.valign",             "top"                   },
9426   { "game.panel.ce_score_5.digits",             "-1"                    },
9427   { "game.panel.ce_score_5.font",               "font.text_2"           },
9428   { "game.panel.ce_score_5.element",            "empty_space"           },
9429   { "game.panel.ce_score_5.draw_masked",        "true"                  },
9430   { "game.panel.ce_score_5.draw_order",         "0"                     },
9431   { "game.panel.ce_score_5.class",              "none"                  },
9432   { "game.panel.ce_score_5.style",              "none"                  },
9433   { "game.panel.ce_score_5_element.x",          "-1"                    },
9434   { "game.panel.ce_score_5_element.y",          "-1"                    },
9435   { "game.panel.ce_score_5_element.tile_size",  "16"                    },
9436   { "game.panel.ce_score_5_element.element",    "empty_space"           },
9437   { "game.panel.ce_score_5_element.draw_masked","false"                 },
9438   { "game.panel.ce_score_5_element.draw_order", "0"                     },
9439   { "game.panel.ce_score_5_element.class",      "none"                  },
9440   { "game.panel.ce_score_5_element.style",      "none"                  },
9441   { "game.panel.ce_score_6.x",                  "-1"                    },
9442   { "game.panel.ce_score_6.y",                  "-1"                    },
9443   { "game.panel.ce_score_6.align",              "left"                  },
9444   { "game.panel.ce_score_6.valign",             "top"                   },
9445   { "game.panel.ce_score_6.digits",             "-1"                    },
9446   { "game.panel.ce_score_6.font",               "font.text_2"           },
9447   { "game.panel.ce_score_6.element",            "empty_space"           },
9448   { "game.panel.ce_score_6.draw_masked",        "true"                  },
9449   { "game.panel.ce_score_6.draw_order",         "0"                     },
9450   { "game.panel.ce_score_6.class",              "none"                  },
9451   { "game.panel.ce_score_6.style",              "none"                  },
9452   { "game.panel.ce_score_6_element.x",          "-1"                    },
9453   { "game.panel.ce_score_6_element.y",          "-1"                    },
9454   { "game.panel.ce_score_6_element.tile_size",  "16"                    },
9455   { "game.panel.ce_score_6_element.element",    "empty_space"           },
9456   { "game.panel.ce_score_6_element.draw_masked","false"                 },
9457   { "game.panel.ce_score_6_element.draw_order", "0"                     },
9458   { "game.panel.ce_score_6_element.class",      "none"                  },
9459   { "game.panel.ce_score_6_element.style",      "none"                  },
9460   { "game.panel.ce_score_7.x",                  "-1"                    },
9461   { "game.panel.ce_score_7.y",                  "-1"                    },
9462   { "game.panel.ce_score_7.align",              "left"                  },
9463   { "game.panel.ce_score_7.valign",             "top"                   },
9464   { "game.panel.ce_score_7.digits",             "-1"                    },
9465   { "game.panel.ce_score_7.font",               "font.text_2"           },
9466   { "game.panel.ce_score_7.element",            "empty_space"           },
9467   { "game.panel.ce_score_7.draw_masked",        "true"                  },
9468   { "game.panel.ce_score_7.draw_order",         "0"                     },
9469   { "game.panel.ce_score_7.class",              "none"                  },
9470   { "game.panel.ce_score_7.style",              "none"                  },
9471   { "game.panel.ce_score_7_element.x",          "-1"                    },
9472   { "game.panel.ce_score_7_element.y",          "-1"                    },
9473   { "game.panel.ce_score_7_element.tile_size",  "16"                    },
9474   { "game.panel.ce_score_7_element.element",    "empty_space"           },
9475   { "game.panel.ce_score_7_element.draw_masked","false"                 },
9476   { "game.panel.ce_score_7_element.draw_order", "0"                     },
9477   { "game.panel.ce_score_7_element.class",      "none"                  },
9478   { "game.panel.ce_score_7_element.style",      "none"                  },
9479   { "game.panel.ce_score_8.x",                  "-1"                    },
9480   { "game.panel.ce_score_8.y",                  "-1"                    },
9481   { "game.panel.ce_score_8.align",              "left"                  },
9482   { "game.panel.ce_score_8.valign",             "top"                   },
9483   { "game.panel.ce_score_8.digits",             "-1"                    },
9484   { "game.panel.ce_score_8.font",               "font.text_2"           },
9485   { "game.panel.ce_score_8.element",            "empty_space"           },
9486   { "game.panel.ce_score_8.draw_masked",        "true"                  },
9487   { "game.panel.ce_score_8.draw_order",         "0"                     },
9488   { "game.panel.ce_score_8.class",              "none"                  },
9489   { "game.panel.ce_score_8.style",              "none"                  },
9490   { "game.panel.ce_score_8_element.x",          "-1"                    },
9491   { "game.panel.ce_score_8_element.y",          "-1"                    },
9492   { "game.panel.ce_score_8_element.tile_size",  "16"                    },
9493   { "game.panel.ce_score_8_element.element",    "empty_space"           },
9494   { "game.panel.ce_score_8_element.draw_masked","false"                 },
9495   { "game.panel.ce_score_8_element.draw_order", "0"                     },
9496   { "game.panel.ce_score_8_element.class",      "none"                  },
9497   { "game.panel.ce_score_8_element.style",      "none"                  },
9498
9499   { "game.panel.player_name.x",                 "-1"                    },
9500   { "game.panel.player_name.y",                 "-1"                    },
9501   { "game.panel.player_name.align",             "left"                  },
9502   { "game.panel.player_name.valign",            "top"                   },
9503   { "game.panel.player_name.chars",             "-1"                    },
9504   { "game.panel.player_name.font",              "font.text_2"           },
9505   { "game.panel.player_name.draw_masked",       "true"                  },
9506   { "game.panel.player_name.draw_order",        "0"                     },
9507   { "game.panel.player_name.class",             "none"                  },
9508   { "game.panel.player_name.style",             "none"                  },
9509
9510   { "game.panel.level_name.x",                  "-1"                    },
9511   { "game.panel.level_name.y",                  "-1"                    },
9512   { "game.panel.level_name.align",              "left"                  },
9513   { "game.panel.level_name.valign",             "top"                   },
9514   { "game.panel.level_name.chars",              "-1"                    },
9515   { "game.panel.level_name.font",               "font.text_2"           },
9516   { "game.panel.level_name.draw_masked",        "true"                  },
9517   { "game.panel.level_name.draw_order",         "0"                     },
9518   { "game.panel.level_name.class",              "none"                  },
9519   { "game.panel.level_name.style",              "none"                  },
9520   { "game.panel.level_author.x",                "-1"                    },
9521   { "game.panel.level_author.y",                "-1"                    },
9522   { "game.panel.level_author.align",            "left"                  },
9523   { "game.panel.level_author.valign",           "top"                   },
9524   { "game.panel.level_author.chars",            "-1"                    },
9525   { "game.panel.level_author.font",             "font.text_2"           },
9526   { "game.panel.level_author.draw_masked",      "true"                  },
9527   { "game.panel.level_author.draw_order",       "0"                     },
9528   { "game.panel.level_author.class",            "none"                  },
9529   { "game.panel.level_author.style",            "none"                  },
9530
9531   { "game.button.stop.x",                       "5"                     },
9532   { "game.button.stop.y",                       "215"                   },
9533   { "game.button.pause.x",                      "35"                    },
9534   { "game.button.pause.y",                      "215"                   },
9535   { "game.button.play.x",                       "65"                    },
9536   { "game.button.play.y",                       "215"                   },
9537   { "game.button.undo.x",                       "-1"                    },
9538   { "game.button.undo.y",                       "-1"                    },
9539   { "game.button.redo.x",                       "-1"                    },
9540   { "game.button.redo.y",                       "-1"                    },
9541   { "game.button.save.x",                       "-1"                    },
9542   { "game.button.save.y",                       "-1"                    },
9543   { "game.button.pause2.x",                     "-1"                    },
9544   { "game.button.pause2.y",                     "-1"                    },
9545   { "game.button.load.x",                       "-1"                    },
9546   { "game.button.load.y",                       "-1"                    },
9547   { "game.button.sound_music.x",                "5"                     },
9548   { "game.button.sound_music.y",                "245"                   },
9549   { "game.button.sound_loops.x",                "35"                    },
9550   { "game.button.sound_loops.y",                "245"                   },
9551   { "game.button.sound_simple.x",               "65"                    },
9552   { "game.button.sound_simple.y",               "245"                   },
9553
9554   { "game.button.panel_stop.x",                 "-1"                    },
9555   { "game.button.panel_stop.y",                 "-1"                    },
9556   { "game.button.panel_pause.x",                "-1"                    },
9557   { "game.button.panel_pause.y",                "-1"                    },
9558   { "game.button.panel_play.x",                 "-1"                    },
9559   { "game.button.panel_play.y",                 "-1"                    },
9560   { "game.button.panel_sound_music.x",          "-1"                    },
9561   { "game.button.panel_sound_music.y",          "-1"                    },
9562   { "game.button.panel_sound_loops.x",          "-1"                    },
9563   { "game.button.panel_sound_loops.y",          "-1"                    },
9564   { "game.button.panel_sound_simple.x",         "-1"                    },
9565   { "game.button.panel_sound_simple.y",         "-1"                    },
9566
9567   { "game.button.touch_stop.x",                 "0"                     },
9568   { "game.button.touch_stop.y",                 "0"                     },
9569   { "game.button.touch_pause.x",                "-60"                   },
9570   { "game.button.touch_pause.y",                "0"                     },
9571
9572   { "tape.button.eject.x",                      "5"                     },
9573   { "tape.button.eject.y",                      "77"                    },
9574   { "tape.button.stop.x",                       "23"                    },
9575   { "tape.button.stop.y",                       "77"                    },
9576   { "tape.button.pause.x",                      "41"                    },
9577   { "tape.button.pause.y",                      "77"                    },
9578   { "tape.button.record.x",                     "59"                    },
9579   { "tape.button.record.y",                     "77"                    },
9580   { "tape.button.play.x",                       "77"                    },
9581   { "tape.button.play.y",                       "77"                    },
9582
9583   { "tape.button.insert_solution.x",            "-1"                    },
9584   { "tape.button.insert_solution.y",            "-1"                    },
9585   { "tape.button.play_solution.x",              "-1"                    },
9586   { "tape.button.play_solution.y",              "-1"                    },
9587
9588   { "tape.symbol.eject.x",                      "-1"                    },
9589   { "tape.symbol.eject.y",                      "-1"                    },
9590   { "tape.symbol.stop.x",                       "-1"                    },
9591   { "tape.symbol.stop.y",                       "-1"                    },
9592   { "tape.symbol.pause.x",                      "40"                    },
9593   { "tape.symbol.pause.y",                      "41"                    },
9594   { "tape.symbol.record.x",                     "25"                    },
9595   { "tape.symbol.record.y",                     "41"                    },
9596   { "tape.symbol.play.x",                       "57"                    },
9597   { "tape.symbol.play.y",                       "41"                    },
9598   { "tape.symbol.fast_forward.x",               "39"                    },
9599   { "tape.symbol.fast_forward.y",               "42"                    },
9600   { "tape.symbol.warp_forward.x",               "39"                    },
9601   { "tape.symbol.warp_forward.y",               "42"                    },
9602   { "tape.symbol.warp_forward_blind.x",         "39"                    },
9603   { "tape.symbol.warp_forward_blind.y",         "42"                    },
9604   { "tape.symbol.pause_before_end.x",           "-1"                    },
9605   { "tape.symbol.pause_before_end.y",           "-1"                    },
9606   { "tape.symbol.single_step.x",                "-1"                    },
9607   { "tape.symbol.single_step.y",                "-1"                    },
9608
9609   { "tape.label.eject.x",                       "-1"                    },
9610   { "tape.label.eject.y",                       "-1"                    },
9611   { "tape.label.stop.x",                        "-1"                    },
9612   { "tape.label.stop.y",                        "-1"                    },
9613   { "tape.label.pause.x",                       "5"                     },
9614   { "tape.label.pause.y",                       "61"                    },
9615   { "tape.label.record.x",                      "5"                     },
9616   { "tape.label.record.y",                      "41"                    },
9617   { "tape.label.play.x",                        "70"                    },
9618   { "tape.label.play.y",                        "41"                    },
9619   { "tape.label.fast_forward.x",                "5"                     },
9620   { "tape.label.fast_forward.y",                "42"                    },
9621   { "tape.label.warp_forward.x",                "5"                     },
9622   { "tape.label.warp_forward.y",                "42"                    },
9623   { "tape.label.warp_forward_blind.x",          "5"                     },
9624   { "tape.label.warp_forward_blind.y",          "42"                    },
9625   { "tape.label.pause_before_end.x",            "5"                     },
9626   { "tape.label.pause_before_end.y",            "42"                    },
9627   { "tape.label.single_step.x",                 "57"                    },
9628   { "tape.label.single_step.y",                 "42"                    },
9629
9630   { "tape.label.date.x",                        "5"                     },
9631   { "tape.label.date.y",                        "5"                     },
9632   { "tape.label.time.x",                        "46"                    },
9633   { "tape.label.time.y",                        "55"                    },
9634
9635   { "tape.text.date.x",                         "7"                     },
9636   { "tape.text.date.y",                         "19"                    },
9637   { "tape.text.date.align",                     "left"                  },
9638   { "tape.text.date.valign",                    "top"                   },
9639   { "tape.text.date.digits",                    "-1"                    },
9640   { "tape.text.date.xoffset",                   "27"                    },
9641   { "tape.text.date.2nd_xoffset",               "64"                    },
9642   { "tape.text.date.font",                      "font.tape_recorder"    },
9643   { "tape.text.date.draw_masked",               "false"                 },
9644
9645   { "tape.text.date_yyyy.x",                    "-1"                    },
9646   { "tape.text.date_yyyy.y",                    "-1"                    },
9647   { "tape.text.date_yyyy.align",                "left"                  },
9648   { "tape.text.date_yyyy.valign",               "top"                   },
9649   { "tape.text.date_yyyy.digits",               "4"                     },
9650   { "tape.text.date_yyyy.font",                 "font.tape_recorder"    },
9651   { "tape.text.date_yyyy.draw_masked",          "false"                 },
9652   { "tape.text.date_yy.x",                      "-1"                    },
9653   { "tape.text.date_yy.y",                      "-1"                    },
9654   { "tape.text.date_yy.align",                  "left"                  },
9655   { "tape.text.date_yy.valign",                 "top"                   },
9656   { "tape.text.date_yy.digits",                 "2"                     },
9657   { "tape.text.date_yy.font",                   "font.tape_recorder"    },
9658   { "tape.text.date_yy.draw_masked",            "false"                 },
9659   { "tape.text.date_mon.x",                     "-1"                    },
9660   { "tape.text.date_mon.y",                     "-1"                    },
9661   { "tape.text.date_mon.align",                 "left"                  },
9662   { "tape.text.date_mon.valign",                "top"                   },
9663   { "tape.text.date_mon.chars",                 "3"                     },
9664   { "tape.text.date_mon.font",                  "font.tape_recorder"    },
9665   { "tape.text.date_mon.draw_masked",           "false"                 },
9666   { "tape.text.date_mm.x",                      "-1"                    },
9667   { "tape.text.date_mm.y",                      "-1"                    },
9668   { "tape.text.date_mm.align",                  "left"                  },
9669   { "tape.text.date_mm.valign",                 "top"                   },
9670   { "tape.text.date_mm.digits",                 "2"                     },
9671   { "tape.text.date_mm.font",                   "font.tape_recorder"    },
9672   { "tape.text.date_mm.draw_masked",            "false"                 },
9673   { "tape.text.date_dd.x",                      "-1"                    },
9674   { "tape.text.date_dd.y",                      "-1"                    },
9675   { "tape.text.date_dd.align",                  "left"                  },
9676   { "tape.text.date_dd.valign",                 "top"                   },
9677   { "tape.text.date_dd.digits",                 "2"                     },
9678   { "tape.text.date_dd.font",                   "font.tape_recorder"    },
9679   { "tape.text.date_dd.draw_masked",            "false"                 },
9680
9681   { "tape.text.time.x",                         "44"                    },
9682   { "tape.text.time.y",                         "55"                    },
9683   { "tape.text.time.align",                     "left"                  },
9684   { "tape.text.time.valign",                    "top"                   },
9685   { "tape.text.time.digits",                    "-1"                    },
9686   { "tape.text.time.xoffset",                   "27"                    },
9687   { "tape.text.time.font",                      "font.tape_recorder"    },
9688   { "tape.text.time.draw_masked",               "false"                 },
9689
9690   { "tape.text.time_hh.x",                      "-1"                    },
9691   { "tape.text.time_hh.y",                      "-1"                    },
9692   { "tape.text.time_hh.align",                  "left"                  },
9693   { "tape.text.time_hh.valign",                 "top"                   },
9694   { "tape.text.time_hh.digits",                 "2"                     },
9695   { "tape.text.time_hh.font",                   "font.tape_recorder"    },
9696   { "tape.text.time_hh.draw_masked",            "false"                 },
9697   { "tape.text.time_mm.x",                      "-1"                    },
9698   { "tape.text.time_mm.y",                      "-1"                    },
9699   { "tape.text.time_mm.align",                  "left"                  },
9700   { "tape.text.time_mm.valign",                 "top"                   },
9701   { "tape.text.time_mm.digits",                 "2"                     },
9702   { "tape.text.time_mm.font",                   "font.tape_recorder"    },
9703   { "tape.text.time_mm.draw_masked",            "false"                 },
9704   { "tape.text.time_ss.x",                      "-1"                    },
9705   { "tape.text.time_ss.y",                      "-1"                    },
9706   { "tape.text.time_ss.align",                  "left"                  },
9707   { "tape.text.time_ss.valign",                 "top"                   },
9708   { "tape.text.time_ss.digits",                 "2"                     },
9709   { "tape.text.time_ss.font",                   "font.tape_recorder"    },
9710   { "tape.text.time_ss.draw_masked",            "false"                 },
9711
9712   { "tape.text.frame.x",                        "-1"                    },
9713   { "tape.text.frame.y",                        "-1"                    },
9714   { "tape.text.frame.align",                    "left"                  },
9715   { "tape.text.frame.valign",                   "top"                   },
9716   { "tape.text.frame.digits",                   "-1"                    },
9717   { "tape.text.frame.font",                     "font.tape_recorder"    },
9718   { "tape.text.frame.draw_masked",              "false"                 },
9719
9720   { "tape.show_game_buttons",                   "false"                 },
9721
9722   { "editor.button.prev_level.x",               "5"                     },
9723   { "editor.button.prev_level.y",               "5"                     },
9724   { "editor.button.next_level.x",               "79"                    },
9725   { "editor.button.next_level.y",               "5"                     },
9726
9727   { "editor.button.properties.x",               "5"                     },
9728   { "editor.button.properties.y",               "230"                   },
9729
9730   { "editor.button.element_left.x",             "-1"                    },
9731   { "editor.button.element_left.y",             "-1"                    },
9732   { "editor.button.element_left.tile_size",     "-1"                    },
9733   { "editor.button.element_middle.x",           "-1"                    },
9734   { "editor.button.element_middle.y",           "-1"                    },
9735   { "editor.button.element_middle.tile_size",   "-1"                    },
9736   { "editor.button.element_right.x",            "-1"                    },
9737   { "editor.button.element_right.y",            "-1"                    },
9738   { "editor.button.element_right.tile_size",    "-1"                    },
9739
9740   { "editor.button.palette.x",                  "-1"                    },
9741   { "editor.button.palette.y",                  "-1"                    },
9742
9743   { "editor.button.draw_single.x",              "6"                     },
9744   { "editor.button.draw_single.y",              "6"                     },
9745   { "editor.button.draw_connected.x",           "28"                    },
9746   { "editor.button.draw_connected.y",           "6"                     },
9747   { "editor.button.draw_line.x",                "50"                    },
9748   { "editor.button.draw_line.y",                "6"                     },
9749   { "editor.button.draw_arc.x",                 "72"                    },
9750   { "editor.button.draw_arc.y",                 "6"                     },
9751   { "editor.button.draw_rectangle.x",           "6"                     },
9752   { "editor.button.draw_rectangle.y",           "28"                    },
9753   { "editor.button.draw_filled_box.x",          "28"                    },
9754   { "editor.button.draw_filled_box.y",          "28"                    },
9755   { "editor.button.rotate_up.x",                "50"                    },
9756   { "editor.button.rotate_up.y",                "28"                    },
9757   { "editor.button.draw_text.x",                "72"                    },
9758   { "editor.button.draw_text.y",                "28"                    },
9759   { "editor.button.flood_fill.x",               "6"                     },
9760   { "editor.button.flood_fill.y",               "50"                    },
9761   { "editor.button.rotate_left.x",              "28"                    },
9762   { "editor.button.rotate_left.y",              "50"                    },
9763   { "editor.button.zoom_level.x",               "50"                    },
9764   { "editor.button.zoom_level.y",               "50"                    },
9765   { "editor.button.rotate_right.x",             "72"                    },
9766   { "editor.button.rotate_right.y",             "50"                    },
9767   { "editor.button.draw_random.x",              "6"                     },
9768   { "editor.button.draw_random.y",              "72"                    },
9769   { "editor.button.grab_brush.x",               "28"                    },
9770   { "editor.button.grab_brush.y",               "72"                    },
9771   { "editor.button.rotate_down.x",              "50"                    },
9772   { "editor.button.rotate_down.y",              "72"                    },
9773   { "editor.button.pick_element.x",             "72"                    },
9774   { "editor.button.pick_element.y",             "72"                    },
9775
9776   { "editor.button.ce_copy_from.x",             "28"                    },
9777   { "editor.button.ce_copy_from.y",             "6"                     },
9778   { "editor.button.ce_copy_to.x",               "50"                    },
9779   { "editor.button.ce_copy_to.y",               "6"                     },
9780   { "editor.button.ce_swap.x",                  "72"                    },
9781   { "editor.button.ce_swap.y",                  "6"                     },
9782   { "editor.button.ce_copy.x",                  "6"                     },
9783   { "editor.button.ce_copy.y",                  "72"                    },
9784   { "editor.button.ce_paste.x",                 "28"                    },
9785   { "editor.button.ce_paste.y",                 "72"                    },
9786
9787   { "editor.button.undo.x",                     "5"                     },
9788   { "editor.button.undo.y",                     "99"                    },
9789   { "editor.button.conf.x",                     "35"                    },
9790   { "editor.button.conf.y",                     "99"                    },
9791   { "editor.button.save.x",                     "65"                    },
9792   { "editor.button.save.y",                     "99"                    },
9793   { "editor.button.clear.x",                    "5"                     },
9794   { "editor.button.clear.y",                    "119"                   },
9795   { "editor.button.test.x",                     "35"                    },
9796   { "editor.button.test.y",                     "119"                   },
9797   { "editor.button.exit.x",                     "65"                    },
9798   { "editor.button.exit.y",                     "119"                   },
9799
9800   { "editor.input.level_number.x",              "29"                    },
9801   { "editor.input.level_number.y",              "5"                     },
9802
9803   { "editor.palette.x",                         "5"                     },
9804   { "editor.palette.y",                         "30"                    },
9805   { "editor.palette.cols",                      "4"                     },
9806   { "editor.palette.rows",                      "10"                    },
9807   { "editor.palette.tile_size",                 "16"                    },
9808   { "editor.palette.show_as_separate_screen",   "false"                 },
9809   { "editor.palette.show_on_element_buttons",   "false"                 },
9810
9811   { "editor.palette.element_left.x",            "6"                     },
9812   { "editor.palette.element_left.y",            "258"                   },
9813   { "editor.palette.element_left.tile_size",    "16"                    },
9814   { "editor.palette.element_middle.x",          "42"                    },
9815   { "editor.palette.element_middle.y",          "258"                   },
9816   { "editor.palette.element_middle.tile_size",  "16"                    },
9817   { "editor.palette.element_right.x",           "78"                    },
9818   { "editor.palette.element_right.y",           "258"                   },
9819   { "editor.palette.element_right.tile_size",   "16"                    },
9820
9821   { "editor.drawingarea.tile_size",             "16"                    },
9822
9823   { "editor.settings.headline.x",               "272"                   },
9824   { "editor.settings.headline.y",               "16"                    },
9825   { "editor.settings.headline.align",           "center"                },
9826   { "editor.settings.element_graphic.x",        "24"                    },
9827   { "editor.settings.element_graphic.y",        "64"                    },
9828   { "editor.settings.element_name.x",           "-1"                    },
9829   { "editor.settings.element_name.y",           "-1"                    },
9830   { "editor.settings.tabs.x",                   "24"                    },
9831   { "editor.settings.tabs.y",                   "64"                    },
9832   { "editor.settings.tabs.2nd_yoffset",         "64"                    },
9833   { "editor.settings.tabs.draw_xoffset",        "0"                     },
9834   { "editor.settings.tabs.draw_yoffset",        "8"                     },
9835   { "editor.settings.tooltip.x",                "-1"                    },
9836   { "editor.settings.tooltip.y",                "-1"                    },
9837
9838   { "editor.gadget.normal_spacing",             "4"                     },
9839   { "editor.gadget.small_spacing",              "2"                     },
9840   { "editor.gadget.tiny_spacing",               "1"                     },
9841   { "editor.gadget.line_spacing",               "4"                     },
9842   { "editor.gadget.text_spacing",               "4"                     },
9843   { "editor.gadget.separator_line.height",      "2"                     },
9844
9845   { "request.button.yes.x",                     "2"                     },
9846   { "request.button.yes.y",                     "250"                   },
9847   { "request.button.no.x",                      "52"                    },
9848   { "request.button.no.y",                      "250"                   },
9849   { "request.button.confirm.x",                 "2"                     },
9850   { "request.button.confirm.y",                 "250"                   },
9851   { "request.button.player_1.x",                "35"                    },
9852   { "request.button.player_1.y",                "185"                   },
9853   { "request.button.player_1.draw_player",      "true"                  },
9854   { "request.button.player_1.tile_size",        "16"                    },
9855   { "request.button.player_2.x",                "65"                    },
9856   { "request.button.player_2.y",                "215"                   },
9857   { "request.button.player_2.draw_player",      "true"                  },
9858   { "request.button.player_2.tile_size",        "16"                    },
9859   { "request.button.player_3.x",                "35"                    },
9860   { "request.button.player_3.y",                "245"                   },
9861   { "request.button.player_3.draw_player",      "true"                  },
9862   { "request.button.player_3.tile_size",        "16"                    },
9863   { "request.button.player_4.x",                "5"                     },
9864   { "request.button.player_4.y",                "215"                   },
9865   { "request.button.player_4.draw_player",      "true"                  },
9866   { "request.button.player_4.tile_size",        "16"                    },
9867
9868   { "request.button.touch_yes.x",               "0"                     },
9869   { "request.button.touch_yes.y",               "-56"                   },
9870   { "request.button.touch_no.x",                "-92"                   },
9871   { "request.button.touch_no.y",                "-56"                   },
9872   { "request.button.touch_confirm.x",           "0"                     },
9873   { "request.button.touch_confirm.y",           "-56"                   },
9874
9875   { "request.x",                                "-1"                    },
9876   { "request.y",                                "-1"                    },
9877   { "request.width",                            "120"                   },
9878   { "request.height",                           "300"                   },
9879   { "request.border_size",                      "10"                    },
9880   { "request.line_spacing",                     "2"                     },
9881   { "request.step_offset",                      "10"                    },
9882   { "request.step_delay",                       "20"                    },
9883   { "request.anim_mode",                        "default"               },
9884   { "request.align",                            "center"                },
9885   { "request.valign",                           "middle"                },
9886   { "request.draw_order",                       "0"                     },
9887   { "request.autowrap",                         "false"                 },
9888   { "request.centered",                         "true"                  },
9889   { "request.wrap_single_words",                "true"                  },
9890
9891   { "global.use_envelope_request",              "false"                 },
9892
9893   { "game.graphics_engine_version",             "-1"                    },
9894   { "game.forced_scroll_delay_value",           "-1"                    },
9895   { "game.use_native_emc_graphics_engine",      "false"                 },
9896   { "game.use_native_sp_graphics_engine",       "true"                  },
9897   { "game.use_masked_pushing",                  "false"                 },
9898   { "game.use_masked_elements",                 "false"                 },
9899   { "game.tile_size",                           "32"                    },
9900
9901   { "[player].boring_delay_fixed",              "1000"                  },
9902   { "[player].boring_delay_random",             "1000"                  },
9903   { "[player].sleeping_delay_fixed",            "2000"                  },
9904   { "[player].sleeping_delay_random",           "2000"                  },
9905
9906   { "viewport.window.width",                    "672"                   },
9907   { "viewport.window.height",                   "560"                   },
9908   { "viewport.window.min_width",                "-1"                    },
9909   { "viewport.window.min_height",               "-1"                    },
9910   { "viewport.window.max_width",                "-1"                    },
9911   { "viewport.window.max_height",               "-1"                    },
9912   { "viewport.window.TITLE.width",              ARG_DEFAULT             },
9913   { "viewport.window.TITLE.height",             ARG_DEFAULT             },
9914
9915   { "viewport.playfield.x",                     "6"                     },
9916   { "viewport.playfield.y",                     "6"                     },
9917   { "viewport.playfield.width",                 "548"                   },
9918   { "viewport.playfield.height",                "548"                   },
9919   { "viewport.playfield.min_width",             "-1"                    },
9920   { "viewport.playfield.min_height",            "-1"                    },
9921   { "viewport.playfield.max_width",             "-1"                    },
9922   { "viewport.playfield.max_height",            "-1"                    },
9923   { "viewport.playfield.margin_left",           "0"                     },
9924   { "viewport.playfield.margin_right",          "0"                     },
9925   { "viewport.playfield.margin_top",            "0"                     },
9926   { "viewport.playfield.margin_bottom",         "0"                     },
9927   { "viewport.playfield.border_left",           "-1"                    },
9928   { "viewport.playfield.border_right",          "-1"                    },
9929   { "viewport.playfield.border_top",            "-1"                    },
9930   { "viewport.playfield.border_bottom",         "-1"                    },
9931   { "viewport.playfield.border_size",           "2"                     },
9932   { "viewport.playfield.align_size",            "16"                    },
9933   { "viewport.playfield.align",                 "left"                  },
9934   { "viewport.playfield.valign",                "top"                   },
9935   { "viewport.playfield.MAIN.x",                ARG_DEFAULT             },
9936   { "viewport.playfield.MAIN.y",                ARG_DEFAULT             },
9937   { "viewport.playfield.MAIN.width",            ARG_DEFAULT             },
9938   { "viewport.playfield.MAIN.height",           ARG_DEFAULT             },
9939   { "viewport.playfield.MAIN.min_width",        ARG_DEFAULT             },
9940   { "viewport.playfield.MAIN.min_height",       ARG_DEFAULT             },
9941   { "viewport.playfield.MAIN.max_width",        ARG_DEFAULT             },
9942   { "viewport.playfield.MAIN.max_height",       ARG_DEFAULT             },
9943   { "viewport.playfield.MAIN.margin_left",      ARG_DEFAULT             },
9944   { "viewport.playfield.MAIN.margin_right",     ARG_DEFAULT             },
9945   { "viewport.playfield.MAIN.margin_top",       ARG_DEFAULT             },
9946   { "viewport.playfield.MAIN.margin_bottom",    ARG_DEFAULT             },
9947   { "viewport.playfield.MAIN.border_left",      ARG_DEFAULT             },
9948   { "viewport.playfield.MAIN.border_right",     ARG_DEFAULT             },
9949   { "viewport.playfield.MAIN.border_top",       ARG_DEFAULT             },
9950   { "viewport.playfield.MAIN.border_bottom",    ARG_DEFAULT             },
9951   { "viewport.playfield.MAIN.border_size",      ARG_DEFAULT             },
9952   { "viewport.playfield.MAIN.align_size",       ARG_DEFAULT             },
9953   { "viewport.playfield.MAIN.align",            ARG_DEFAULT             },
9954   { "viewport.playfield.MAIN.valign",           ARG_DEFAULT             },
9955   { "viewport.playfield.SCORES.x",              ARG_DEFAULT             },
9956   { "viewport.playfield.SCORES.y",              ARG_DEFAULT             },
9957   { "viewport.playfield.SCORES.width",          ARG_DEFAULT             },
9958   { "viewport.playfield.SCORES.height",         ARG_DEFAULT             },
9959   { "viewport.playfield.SCORES.min_width",      ARG_DEFAULT             },
9960   { "viewport.playfield.SCORES.min_height",     ARG_DEFAULT             },
9961   { "viewport.playfield.SCORES.max_width",      ARG_DEFAULT             },
9962   { "viewport.playfield.SCORES.max_height",     ARG_DEFAULT             },
9963   { "viewport.playfield.SCORES.margin_left",    ARG_DEFAULT             },
9964   { "viewport.playfield.SCORES.margin_right",   ARG_DEFAULT             },
9965   { "viewport.playfield.SCORES.margin_top",     ARG_DEFAULT             },
9966   { "viewport.playfield.SCORES.margin_bottom",  ARG_DEFAULT             },
9967   { "viewport.playfield.SCORES.border_left",    ARG_DEFAULT             },
9968   { "viewport.playfield.SCORES.border_right",   ARG_DEFAULT             },
9969   { "viewport.playfield.SCORES.border_top",     ARG_DEFAULT             },
9970   { "viewport.playfield.SCORES.border_bottom",  ARG_DEFAULT             },
9971   { "viewport.playfield.SCORES.border_size",    ARG_DEFAULT             },
9972   { "viewport.playfield.SCORES.align_size",     ARG_DEFAULT             },
9973   { "viewport.playfield.SCORES.align",          ARG_DEFAULT             },
9974   { "viewport.playfield.SCORES.valign",         ARG_DEFAULT             },
9975   { "viewport.playfield.EDITOR.x",              ARG_DEFAULT             },
9976   { "viewport.playfield.EDITOR.y",              ARG_DEFAULT             },
9977   { "viewport.playfield.EDITOR.width",          ARG_DEFAULT             },
9978   { "viewport.playfield.EDITOR.height",         ARG_DEFAULT             },
9979   { "viewport.playfield.EDITOR.min_width",      ARG_DEFAULT             },
9980   { "viewport.playfield.EDITOR.min_height",     ARG_DEFAULT             },
9981   { "viewport.playfield.EDITOR.max_width",      ARG_DEFAULT             },
9982   { "viewport.playfield.EDITOR.max_height",     ARG_DEFAULT             },
9983   { "viewport.playfield.EDITOR.margin_left",    ARG_DEFAULT             },
9984   { "viewport.playfield.EDITOR.margin_right",   ARG_DEFAULT             },
9985   { "viewport.playfield.EDITOR.margin_top",     ARG_DEFAULT             },
9986   { "viewport.playfield.EDITOR.margin_bottom",  ARG_DEFAULT             },
9987   { "viewport.playfield.EDITOR.border_left",    ARG_DEFAULT             },
9988   { "viewport.playfield.EDITOR.border_right",   ARG_DEFAULT             },
9989   { "viewport.playfield.EDITOR.border_top",     ARG_DEFAULT             },
9990   { "viewport.playfield.EDITOR.border_bottom",  ARG_DEFAULT             },
9991   { "viewport.playfield.EDITOR.border_size",    ARG_DEFAULT             },
9992   { "viewport.playfield.EDITOR.align_size",     ARG_DEFAULT             },
9993   { "viewport.playfield.EDITOR.align",          ARG_DEFAULT             },
9994   { "viewport.playfield.EDITOR.valign",         ARG_DEFAULT             },
9995   { "viewport.playfield.PLAYING.x",             ARG_DEFAULT             },
9996   { "viewport.playfield.PLAYING.y",             ARG_DEFAULT             },
9997   { "viewport.playfield.PLAYING.width",         ARG_DEFAULT             },
9998   { "viewport.playfield.PLAYING.height",        ARG_DEFAULT             },
9999   { "viewport.playfield.PLAYING.min_width",     ARG_DEFAULT             },
10000   { "viewport.playfield.PLAYING.min_height",    ARG_DEFAULT             },
10001   { "viewport.playfield.PLAYING.max_width",     ARG_DEFAULT             },
10002   { "viewport.playfield.PLAYING.max_height",    ARG_DEFAULT             },
10003   { "viewport.playfield.PLAYING.margin_left",   ARG_DEFAULT             },
10004   { "viewport.playfield.PLAYING.margin_right",  ARG_DEFAULT             },
10005   { "viewport.playfield.PLAYING.margin_top",    ARG_DEFAULT             },
10006   { "viewport.playfield.PLAYING.margin_bottom", ARG_DEFAULT             },
10007   { "viewport.playfield.PLAYING.border_left",   ARG_DEFAULT             },
10008   { "viewport.playfield.PLAYING.border_right",  ARG_DEFAULT             },
10009   { "viewport.playfield.PLAYING.border_top",    ARG_DEFAULT             },
10010   { "viewport.playfield.PLAYING.border_bottom", ARG_DEFAULT             },
10011   { "viewport.playfield.PLAYING.border_size",   ARG_DEFAULT             },
10012   { "viewport.playfield.PLAYING.align_size",    ARG_DEFAULT             },
10013   { "viewport.playfield.PLAYING.align",         ARG_DEFAULT             },
10014   { "viewport.playfield.PLAYING.valign",        ARG_DEFAULT             },
10015
10016   { "viewport.door_1.x",                        "566"                   },
10017   { "viewport.door_1.y",                        "60"                    },
10018   { "viewport.door_1.width",                    "100"                   },
10019   { "viewport.door_1.height",                   "280"                   },
10020   { "viewport.door_1.border_size",              "4"                     },
10021   { "viewport.door_1.align",                    "left"                  },
10022   { "viewport.door_1.valign",                   "top"                   },
10023   { "viewport.door_1.MAIN.x",                   ARG_DEFAULT             },
10024   { "viewport.door_1.MAIN.y",                   ARG_DEFAULT             },
10025   { "viewport.door_1.MAIN.width",               ARG_DEFAULT             },
10026   { "viewport.door_1.MAIN.height",              ARG_DEFAULT             },
10027   { "viewport.door_1.MAIN.border_size",         ARG_DEFAULT             },
10028   { "viewport.door_1.MAIN.align",               ARG_DEFAULT             },
10029   { "viewport.door_1.MAIN.valign",              ARG_DEFAULT             },
10030   { "viewport.door_1.SCORES.x",                 ARG_DEFAULT             },
10031   { "viewport.door_1.SCORES.y",                 ARG_DEFAULT             },
10032   { "viewport.door_1.SCORES.width",             ARG_DEFAULT             },
10033   { "viewport.door_1.SCORES.height",            ARG_DEFAULT             },
10034   { "viewport.door_1.SCORES.border_size",       ARG_DEFAULT             },
10035   { "viewport.door_1.SCORES.align",             ARG_DEFAULT             },
10036   { "viewport.door_1.SCORES.valign",            ARG_DEFAULT             },
10037   { "viewport.door_1.EDITOR.x",                 ARG_DEFAULT             },
10038   { "viewport.door_1.EDITOR.y",                 ARG_DEFAULT             },
10039   { "viewport.door_1.EDITOR.width",             ARG_DEFAULT             },
10040   { "viewport.door_1.EDITOR.height",            ARG_DEFAULT             },
10041   { "viewport.door_1.EDITOR.border_size",       ARG_DEFAULT             },
10042   { "viewport.door_1.EDITOR.align",             ARG_DEFAULT             },
10043   { "viewport.door_1.EDITOR.valign",            ARG_DEFAULT             },
10044   { "viewport.door_1.PLAYING.x",                ARG_DEFAULT             },
10045   { "viewport.door_1.PLAYING.y",                ARG_DEFAULT             },
10046   { "viewport.door_1.PLAYING.width",            ARG_DEFAULT             },
10047   { "viewport.door_1.PLAYING.height",           ARG_DEFAULT             },
10048   { "viewport.door_1.PLAYING.border_size",      ARG_DEFAULT             },
10049   { "viewport.door_1.PLAYING.align",            ARG_DEFAULT             },
10050   { "viewport.door_1.PLAYING.valign",           ARG_DEFAULT             },
10051
10052   { "viewport.door_2.x",                        "566"                   },
10053   { "viewport.door_2.y",                        "400"                   },
10054   { "viewport.door_2.width",                    "100"                   },
10055   { "viewport.door_2.height",                   "100"                   },
10056   { "viewport.door_2.border_size",              "4"                     },
10057   { "viewport.door_2.align",                    "left"                  },
10058   { "viewport.door_2.valign",                   "top"                   },
10059   { "viewport.door_2.MAIN.x",                   ARG_DEFAULT             },
10060   { "viewport.door_2.MAIN.y",                   ARG_DEFAULT             },
10061   { "viewport.door_2.MAIN.width",               ARG_DEFAULT             },
10062   { "viewport.door_2.MAIN.height",              ARG_DEFAULT             },
10063   { "viewport.door_2.MAIN.border_size",         ARG_DEFAULT             },
10064   { "viewport.door_2.MAIN.align",               ARG_DEFAULT             },
10065   { "viewport.door_2.MAIN.valign",              ARG_DEFAULT             },
10066   { "viewport.door_2.SCORES.x",                 ARG_DEFAULT             },
10067   { "viewport.door_2.SCORES.y",                 ARG_DEFAULT             },
10068   { "viewport.door_2.SCORES.width",             ARG_DEFAULT             },
10069   { "viewport.door_2.SCORES.height",            ARG_DEFAULT             },
10070   { "viewport.door_2.SCORES.border_size",       ARG_DEFAULT             },
10071   { "viewport.door_2.SCORES.align",             ARG_DEFAULT             },
10072   { "viewport.door_2.SCORES.valign",            ARG_DEFAULT             },
10073   { "viewport.door_2.EDITOR.x",                 "566"                   },
10074   { "viewport.door_2.EDITOR.y",                 "356"                   },
10075   { "viewport.door_2.EDITOR.width",             "100"                   },
10076   { "viewport.door_2.EDITOR.height",            "144"                   },
10077   { "viewport.door_2.EDITOR.border_size",       "4"                     },
10078   { "viewport.door_2.EDITOR.align",             "left"                  },
10079   { "viewport.door_2.EDITOR.valign",            "top"                   },
10080   { "viewport.door_2.PLAYING.x",                ARG_DEFAULT             },
10081   { "viewport.door_2.PLAYING.y",                ARG_DEFAULT             },
10082   { "viewport.door_2.PLAYING.width",            ARG_DEFAULT             },
10083   { "viewport.door_2.PLAYING.height",           ARG_DEFAULT             },
10084   { "viewport.door_2.PLAYING.border_size",      ARG_DEFAULT             },
10085   { "viewport.door_2.PLAYING.align",            ARG_DEFAULT             },
10086   { "viewport.door_2.PLAYING.valign",           ARG_DEFAULT             },
10087
10088   { NULL,                                       NULL                    }
10089 };