added setup options to skip (un)covering and hatching for BD engine
[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   { ".global_anim_sync",                "false",        TYPE_BOOLEAN    },
45   { ".crumbled_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
46   { ".diggable_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
47   { ".border_size",                     ARG_UNDEFINED,  TYPE_INTEGER    },
48   { ".step_offset",                     "4",            TYPE_INTEGER    },
49   { ".step_xoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
50   { ".step_yoffset",                    ARG_UNDEFINED,  TYPE_INTEGER    },
51   { ".step_delay",                      "1",            TYPE_INTEGER    },
52   { ".direction",                       ARG_UNDEFINED,  TYPE_STRING     },
53   { ".position",                        ARG_UNDEFINED,  TYPE_STRING     },
54   { ".draw_xoffset",                    "0",            TYPE_INTEGER    },
55   { ".draw_yoffset",                    "0",            TYPE_INTEGER    },
56   { ".draw_masked",                     ARG_UNDEFINED,  TYPE_BOOLEAN    },
57   { ".draw_order",                      ARG_UNDEFINED,  TYPE_INTEGER    },
58   { ".init_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
59   { ".init_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
60   { ".init_delay_action",               ARG_UNDEFINED,  TYPE_STRING     },
61   { ".anim_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
62   { ".anim_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
63   { ".anim_delay_action",               ARG_UNDEFINED,  TYPE_STRING     },
64   { ".post_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
65   { ".post_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
66   { ".post_delay_action",               ARG_UNDEFINED,  TYPE_STRING     },
67   { ".init_event",                      ARG_UNDEFINED,  TYPE_STRING     },
68   { ".init_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
69   { ".anim_event",                      ARG_UNDEFINED,  TYPE_STRING     },
70   { ".anim_event_action",               ARG_UNDEFINED,  TYPE_STRING     },
71   { ".name",                            ARG_UNDEFINED,  TYPE_STRING     },
72   { ".scale_up_factor",                 ARG_UNDEFINED,  TYPE_INTEGER    },
73   { ".tile_size",                       ARG_UNDEFINED,  TYPE_INTEGER    },
74   { ".clone_from",                      ARG_UNDEFINED,  TYPE_GRAPHIC    },
75   { ".fade_mode",                       ARG_UNDEFINED,  TYPE_INTEGER    },
76   { ".fade_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
77   { ".post_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
78   { ".auto_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
79   { ".auto_delay_unit",                 ARG_UNDEFINED,  TYPE_INTEGER    },
80   { ".align",                           ARG_UNDEFINED,  TYPE_INTEGER    },
81   { ".valign",                          ARG_UNDEFINED,  TYPE_INTEGER    },
82   { ".sort_priority",                   ARG_UNDEFINED,  TYPE_INTEGER    },
83   { ".class",                           ARG_UNDEFINED,  TYPE_STRING     },
84   { ".style",                           ARG_UNDEFINED,  TYPE_STRING     },
85   { ".alpha",                           ARG_UNDEFINED,  TYPE_INTEGER    },
86   { ".active_xoffset",                  "0",            TYPE_INTEGER    },
87   { ".active_yoffset",                  "0",            TYPE_INTEGER    },
88   { ".pressed_xoffset",                 "0",            TYPE_INTEGER    },
89   { ".pressed_yoffset",                 "0",            TYPE_INTEGER    },
90   { ".stacked_xfactor",                 "1",            TYPE_INTEGER    },
91   { ".stacked_yfactor",                 "1",            TYPE_INTEGER    },
92   { ".stacked_xoffset",                 "0",            TYPE_INTEGER    },
93   { ".stacked_yoffset",                 "0",            TYPE_INTEGER    },
94
95   { NULL,                               NULL,           0               }
96 };
97
98 struct ConfigInfo image_config[] =
99 {
100   // ==========================================================================
101   // image definitions for game elements (for in-game and editor graphics)
102   // ==========================================================================
103
104   // images for Boulder Dash style elements and actions
105
106   { "bd_player",                                UNDEFINED_FILENAME      },
107   { "bd_player.clone_from",                     "player_1"              },
108
109   { "bd_wall",                                  "RocksDC.png"           },
110   { "bd_wall.xpos",                             "12"                    },
111   { "bd_wall.ypos",                             "9"                     },
112   { "bd_wall.frames",                           "1"                     },
113   { "bd_wall.EDITOR",                           "RocksDC.png"           },
114   { "bd_wall.EDITOR.xpos",                      "14"                    },
115   { "bd_wall.EDITOR.ypos",                      "13"                    },
116
117   { "bd_rock",                                  "RocksDC.png"           },
118   { "bd_rock.xpos",                             "12"                    },
119   { "bd_rock.ypos",                             "10"                    },
120   { "bd_rock.frames",                           "1"                     },
121   { "bd_rock.EDITOR",                           "RocksDC.png"           },
122   { "bd_rock.EDITOR.xpos",                      "14"                    },
123   { "bd_rock.EDITOR.ypos",                      "14"                    },
124   { "bd_rock.moving.left",                      "RocksDC.png"           },
125   { "bd_rock.moving.left.xpos",                 "12"                    },
126   { "bd_rock.moving.left.ypos",                 "10"                    },
127   { "bd_rock.moving.left.frames",               "4"                     },
128   { "bd_rock.moving.left.delay",                "2"                     },
129   { "bd_rock.moving.left.anim_mode",            "reverse"               },
130   { "bd_rock.moving.right",                     "RocksDC.png"           },
131   { "bd_rock.moving.right.xpos",                "12"                    },
132   { "bd_rock.moving.right.ypos",                "10"                    },
133   { "bd_rock.moving.right.frames",              "4"                     },
134   { "bd_rock.moving.right.start_frame",         "1"                     },
135   { "bd_rock.moving.right.delay",               "2"                     },
136   { "bd_rock.pushing.left",                     "RocksDC.png"           },
137   { "bd_rock.pushing.left.xpos",                "12"                    },
138   { "bd_rock.pushing.left.ypos",                "10"                    },
139   { "bd_rock.pushing.left.frames",              "4"                     },
140   { "bd_rock.pushing.left.delay",               "2"                     },
141   { "bd_rock.pushing.left.anim_mode",           "reverse"               },
142   { "bd_rock.pushing.right",                    "RocksDC.png"           },
143   { "bd_rock.pushing.right.xpos",               "12"                    },
144   { "bd_rock.pushing.right.ypos",               "10"                    },
145   { "bd_rock.pushing.right.frames",             "4"                     },
146   { "bd_rock.pushing.right.start_frame",        "1"                     },
147   { "bd_rock.pushing.right.delay",              "2"                     },
148
149   { "bd_diamond",                               "RocksElements.png"     },
150   { "bd_diamond.xpos",                          "0"                     },
151   { "bd_diamond.ypos",                          "10"                    },
152   { "bd_diamond.frames",                        "4"                     },
153   { "bd_diamond.delay",                         "4"                     },
154   { "bd_diamond.anim_mode",                     "reverse"               },
155   { "bd_diamond.moving",                        "RocksElements.png"     },
156   { "bd_diamond.moving.xpos",                   "3"                     },
157   { "bd_diamond.moving.ypos",                   "10"                    },
158   { "bd_diamond.moving.frames",                 "2"                     },
159   { "bd_diamond.moving.delay",                  "4"                     },
160   { "bd_diamond.falling",                       "RocksElements.png"     },
161   { "bd_diamond.falling.xpos",                  "3"                     },
162   { "bd_diamond.falling.ypos",                  "10"                    },
163   { "bd_diamond.falling.frames",                "2"                     },
164   { "bd_diamond.falling.delay",                 "4"                     },
165   { "bd_diamond.collecting",                    "RocksCollect.png"      },
166   { "bd_diamond.collecting.xpos",               "0"                     },
167   { "bd_diamond.collecting.ypos",               "8"                     },
168   { "bd_diamond.collecting.frames",             "7"                     },
169   { "bd_diamond.collecting.anim_mode",          "linear"                },
170
171   { "bd_magic_wall",                            "RocksElements.png"     },
172   { "bd_magic_wall.xpos",                       "12"                    },
173   { "bd_magic_wall.ypos",                       "10"                    },
174   { "bd_magic_wall.frames",                     "1"                     },
175   { "bd_magic_wall.active",                     "RocksElements.png"     },
176   { "bd_magic_wall.active.xpos",                "12"                    },
177   { "bd_magic_wall.active.ypos",                "10"                    },
178   { "bd_magic_wall.active.frames",              "4"                     },
179   { "bd_magic_wall.active.anim_mode",           "reverse"               },
180   { "bd_magic_wall.active.delay",               "4"                     },
181   { "bd_magic_wall.active.global_sync",         "true"                  },
182   { "bd_magic_wall.filling",                    "RocksElements.png"     },
183   { "bd_magic_wall.filling.xpos",               "12"                    },
184   { "bd_magic_wall.filling.ypos",               "10"                    },
185   { "bd_magic_wall.filling.frames",             "4"                     },
186   { "bd_magic_wall.filling.anim_mode",          "reverse"               },
187   { "bd_magic_wall.filling.delay",              "4"                     },
188   { "bd_magic_wall.filling.global_sync",        "true"                  },
189   { "bd_magic_wall_full",                       "RocksElements.png"     },
190   { "bd_magic_wall_full.xpos",                  "12"                    },
191   { "bd_magic_wall_full.ypos",                  "10"                    },
192   { "bd_magic_wall_full.frames",                "4"                     },
193   { "bd_magic_wall_full.anim_mode",             "reverse"               },
194   { "bd_magic_wall_full.delay",                 "4"                     },
195   { "bd_magic_wall_full.global_sync",           "true"                  },
196   { "bd_magic_wall.emptying",                   "RocksElements.png"     },
197   { "bd_magic_wall.emptying.xpos",              "12"                    },
198   { "bd_magic_wall.emptying.ypos",              "10"                    },
199   { "bd_magic_wall.emptying.frames",            "4"                     },
200   { "bd_magic_wall.emptying.anim_mode",         "reverse"               },
201   { "bd_magic_wall.emptying.delay",             "4"                     },
202   { "bd_magic_wall.emptying.global_sync",       "true"                  },
203   { "bd_magic_wall_dead",                       "RocksElements.png"     },
204   { "bd_magic_wall_dead.xpos",                  "12"                    },
205   { "bd_magic_wall_dead.ypos",                  "10"                    },
206   { "bd_magic_wall_dead.frames",                "1"                     },
207
208   { "bd_amoeba",                                "RocksElements.png"     },
209   { "bd_amoeba.xpos",                           "8"                     },
210   { "bd_amoeba.ypos",                           "6"                     },
211   { "bd_amoeba.frames",                         "4"                     },
212   { "bd_amoeba.anim_mode",                      "random_static"         },
213   { "bd_amoeba.EDITOR",                         "RocksElements.png"     },
214   { "bd_amoeba.EDITOR.xpos",                    "8"                     },
215   { "bd_amoeba.EDITOR.ypos",                    "7"                     },
216
217   { "bd_amoeba_2",                              UNDEFINED_FILENAME      },
218   { "bd_amoeba_2.clone_from",                   "bd_amoeba"             },
219   { "bd_amoeba_2.EDITOR",                       UNDEFINED_FILENAME      },
220   { "bd_amoeba_2.EDITOR.clone_from",            "bd_amoeba.EDITOR"      },
221
222   { "bd_butterfly",                             "RocksElements.png"     },
223   { "bd_butterfly.xpos",                        "4"                     },
224   { "bd_butterfly.ypos",                        "12"                    },
225   { "bd_butterfly.frames",                      "2"                     },
226   { "bd_butterfly.anim_mode",                   "pingpong"              },
227   { "bd_butterfly.delay",                       "4"                     },
228   { "bd_butterfly.global_sync",                 "true"                  },
229   { "bd_butterfly.right",                       "RocksElements.png"     },
230   { "bd_butterfly.right.xpos",                  "4"                     },
231   { "bd_butterfly.right.ypos",                  "12"                    },
232   { "bd_butterfly.right.frames",                "2"                     },
233   { "bd_butterfly.right.anim_mode",             "pingpong"              },
234   { "bd_butterfly.right.delay",                 "4"                     },
235   { "bd_butterfly.right.global_sync",           "true"                  },
236   { "bd_butterfly.right.EDITOR",                "RocksElements.png"     },
237   { "bd_butterfly.right.EDITOR.xpos",           "8"                     },
238   { "bd_butterfly.right.EDITOR.ypos",           "12"                    },
239   { "bd_butterfly.up",                          "RocksElements.png"     },
240   { "bd_butterfly.up.xpos",                     "4"                     },
241   { "bd_butterfly.up.ypos",                     "12"                    },
242   { "bd_butterfly.up.frames",                   "2"                     },
243   { "bd_butterfly.up.anim_mode",                "pingpong"              },
244   { "bd_butterfly.up.delay",                    "4"                     },
245   { "bd_butterfly.up.global_sync",              "true"                  },
246   { "bd_butterfly.up.EDITOR",                   "RocksElements.png"     },
247   { "bd_butterfly.up.EDITOR.xpos",              "9"                     },
248   { "bd_butterfly.up.EDITOR.ypos",              "12"                    },
249   { "bd_butterfly.left",                        "RocksElements.png"     },
250   { "bd_butterfly.left.xpos",                   "4"                     },
251   { "bd_butterfly.left.ypos",                   "12"                    },
252   { "bd_butterfly.left.frames",                 "2"                     },
253   { "bd_butterfly.left.anim_mode",              "pingpong"              },
254   { "bd_butterfly.left.delay",                  "4"                     },
255   { "bd_butterfly.left.global_sync",            "true"                  },
256   { "bd_butterfly.left.EDITOR",                 "RocksElements.png"     },
257   { "bd_butterfly.left.EDITOR.xpos",            "10"                    },
258   { "bd_butterfly.left.EDITOR.ypos",            "12"                    },
259   { "bd_butterfly.down",                        "RocksElements.png"     },
260   { "bd_butterfly.down.xpos",                   "4"                     },
261   { "bd_butterfly.down.ypos",                   "12"                    },
262   { "bd_butterfly.down.frames",                 "2"                     },
263   { "bd_butterfly.down.anim_mode",              "pingpong"              },
264   { "bd_butterfly.down.delay",                  "4"                     },
265   { "bd_butterfly.down.global_sync",            "true"                  },
266   { "bd_butterfly.down.EDITOR",                 "RocksElements.png"     },
267   { "bd_butterfly.down.EDITOR.xpos",            "11"                    },
268   { "bd_butterfly.down.EDITOR.ypos",            "12"                    },
269
270   { "bd_butterfly_2",                           UNDEFINED_FILENAME      },
271   { "bd_butterfly_2.clone_from",                "bd_butterfly.up"       },
272   { "bd_butterfly_2.EDITOR",                    UNDEFINED_FILENAME      },
273   { "bd_butterfly_2.EDITOR.clone_from",         "bd_butterfly.up.EDITOR" },
274   { "bd_butterfly_2.right",                     UNDEFINED_FILENAME      },
275   { "bd_butterfly_2.right.clone_from",          "bd_butterfly.right"    },
276   { "bd_butterfly_2.right.EDITOR",              UNDEFINED_FILENAME      },
277   { "bd_butterfly_2.right.EDITOR.clone_from",   "bd_butterfly.right.EDITOR" },
278   { "bd_butterfly_2.up",                        UNDEFINED_FILENAME      },
279   { "bd_butterfly_2.up.clone_from",             "bd_butterfly.up"       },
280   { "bd_butterfly_2.up.EDITOR",                 UNDEFINED_FILENAME      },
281   { "bd_butterfly_2.up.EDITOR.clone_from",      "bd_butterfly.up.EDITOR" },
282   { "bd_butterfly_2.left",                      UNDEFINED_FILENAME      },
283   { "bd_butterfly_2.left.clone_from",           "bd_butterfly.left"     },
284   { "bd_butterfly_2.left.EDITOR",               UNDEFINED_FILENAME      },
285   { "bd_butterfly_2.left.EDITOR.clone_from",    "bd_butterfly.left.EDITOR" },
286   { "bd_butterfly_2.down",                      UNDEFINED_FILENAME      },
287   { "bd_butterfly_2.down.clone_from",           "bd_butterfly.down"     },
288   { "bd_butterfly_2.down.EDITOR",               UNDEFINED_FILENAME      },
289   { "bd_butterfly_2.down.EDITOR.clone_from",    "bd_butterfly.down.EDITOR" },
290
291   { "bd_firefly",                               "RocksElements.png"     },
292   { "bd_firefly.xpos",                          "6"                     },
293   { "bd_firefly.ypos",                          "12"                    },
294   { "bd_firefly.frames",                        "2"                     },
295   { "bd_firefly.anim_mode",                     "pingpong"              },
296   { "bd_firefly.delay",                         "4"                     },
297   { "bd_firefly.global_sync",                   "true"                  },
298   { "bd_firefly.right",                         "RocksElements.png"     },
299   { "bd_firefly.right.xpos",                    "6"                     },
300   { "bd_firefly.right.ypos",                    "12"                    },
301   { "bd_firefly.right.frames",                  "2"                     },
302   { "bd_firefly.right.anim_mode",               "pingpong"              },
303   { "bd_firefly.right.delay",                   "4"                     },
304   { "bd_firefly.right.global_sync",             "true"                  },
305   { "bd_firefly.right.EDITOR",                  "RocksElements.png"     },
306   { "bd_firefly.right.EDITOR.xpos",             "12"                    },
307   { "bd_firefly.right.EDITOR.ypos",             "12"                    },
308   { "bd_firefly.up",                            "RocksElements.png"     },
309   { "bd_firefly.up.xpos",                       "6"                     },
310   { "bd_firefly.up.ypos",                       "12"                    },
311   { "bd_firefly.up.frames",                     "2"                     },
312   { "bd_firefly.up.anim_mode",                  "pingpong"              },
313   { "bd_firefly.up.delay",                      "4"                     },
314   { "bd_firefly.up.global_sync",                "true"                  },
315   { "bd_firefly.up.EDITOR",                     "RocksElements.png"     },
316   { "bd_firefly.up.EDITOR.xpos",                "13"                    },
317   { "bd_firefly.up.EDITOR.ypos",                "12"                    },
318   { "bd_firefly.left",                          "RocksElements.png"     },
319   { "bd_firefly.left.xpos",                     "6"                     },
320   { "bd_firefly.left.ypos",                     "12"                    },
321   { "bd_firefly.left.frames",                   "2"                     },
322   { "bd_firefly.left.anim_mode",                "pingpong"              },
323   { "bd_firefly.left.delay",                    "4"                     },
324   { "bd_firefly.left.global_sync",              "true"                  },
325   { "bd_firefly.left.EDITOR",                   "RocksElements.png"     },
326   { "bd_firefly.left.EDITOR.xpos",              "14"                    },
327   { "bd_firefly.left.EDITOR.ypos",              "12"                    },
328   { "bd_firefly.down",                          "RocksElements.png"     },
329   { "bd_firefly.down.xpos",                     "6"                     },
330   { "bd_firefly.down.ypos",                     "12"                    },
331   { "bd_firefly.down.frames",                   "2"                     },
332   { "bd_firefly.down.anim_mode",                "pingpong"              },
333   { "bd_firefly.down.delay",                    "4"                     },
334   { "bd_firefly.down.global_sync",              "true"                  },
335   { "bd_firefly.down.EDITOR",                   "RocksElements.png"     },
336   { "bd_firefly.down.EDITOR.xpos",              "15"                    },
337   { "bd_firefly.down.EDITOR.ypos",              "12"                    },
338
339   { "bd_firefly_2",                             UNDEFINED_FILENAME      },
340   { "bd_firefly_2.clone_from",                  "bd_firefly.up" },
341   { "bd_firefly_2.EDITOR",                      UNDEFINED_FILENAME      },
342   { "bd_firefly_2.EDITOR.clone_from",           "bd_firefly.up.EDITOR" },
343   { "bd_firefly_2.right",                       UNDEFINED_FILENAME      },
344   { "bd_firefly_2.right.clone_from",            "bd_firefly.right"      },
345   { "bd_firefly_2.right.EDITOR",                UNDEFINED_FILENAME      },
346   { "bd_firefly_2.right.EDITOR.clone_from",     "bd_firefly.right.EDITOR" },
347   { "bd_firefly_2.up",                          UNDEFINED_FILENAME      },
348   { "bd_firefly_2.up.clone_from",               "bd_firefly.up" },
349   { "bd_firefly_2.up.EDITOR",                   UNDEFINED_FILENAME      },
350   { "bd_firefly_2.up.EDITOR.clone_from",        "bd_firefly.up.EDITOR" },
351   { "bd_firefly_2.left",                        UNDEFINED_FILENAME      },
352   { "bd_firefly_2.left.clone_from",             "bd_firefly.left"       },
353   { "bd_firefly_2.left.EDITOR",                 UNDEFINED_FILENAME      },
354   { "bd_firefly_2.left.EDITOR.clone_from",      "bd_firefly.left.EDITOR" },
355   { "bd_firefly_2.down",                        UNDEFINED_FILENAME      },
356   { "bd_firefly_2.down.clone_from",             "bd_firefly.down"       },
357   { "bd_firefly_2.down.EDITOR",                 UNDEFINED_FILENAME      },
358   { "bd_firefly_2.down.EDITOR.clone_from",      "bd_firefly.down.EDITOR" },
359
360   { "bd_sand",                                  UNDEFINED_FILENAME      },
361   { "bd_sand.clone_from",                       "sand"                  },
362
363   { "bd_sand_2",                                UNDEFINED_FILENAME      },
364   { "bd_sand_2.clone_from",                     "emc_grass"             },
365
366   { "bd_sand_ball",                             "RocksBD.png"           },
367   { "bd_sand_ball.xpos",                        "1"                     },
368   { "bd_sand_ball.ypos",                        "36"                    },
369   { "bd_sand_ball.frames",                      "1"                     },
370   { "bd_sand_ball.scale_up_factor",             "2"                     },
371
372   { "bd_sand_loose",                            "RocksBD.png"           },
373   { "bd_sand_loose.xpos",                       "0"                     },
374   { "bd_sand_loose.ypos",                       "44"                    },
375   { "bd_sand_loose.frames",                     "1"                     },
376   { "bd_sand_loose.scale_up_factor",            "2"                     },
377
378   { "bd_sand_sloped_up_right",                  "RocksBD.png"           },
379   { "bd_sand_sloped_up_right.xpos",             "0"                     },
380   { "bd_sand_sloped_up_right.ypos",             "35"                    },
381   { "bd_sand_sloped_up_right.frames",           "1"                     },
382   { "bd_sand_sloped_up_right.scale_up_factor",  "2"                     },
383   { "bd_sand_sloped_up_left",                   "RocksBD.png"           },
384   { "bd_sand_sloped_up_left.xpos",              "1"                     },
385   { "bd_sand_sloped_up_left.ypos",              "35"                    },
386   { "bd_sand_sloped_up_left.frames",            "1"                     },
387   { "bd_sand_sloped_up_left.scale_up_factor",   "2"                     },
388   { "bd_sand_sloped_down_left",                 "RocksBD.png"           },
389   { "bd_sand_sloped_down_left.xpos",            "2"                     },
390   { "bd_sand_sloped_down_left.ypos",            "35"                    },
391   { "bd_sand_sloped_down_left.frames",          "1"                     },
392   { "bd_sand_sloped_down_left.scale_up_factor","2"                      },
393   { "bd_sand_sloped_down_right",                "RocksBD.png"           },
394   { "bd_sand_sloped_down_right.xpos",           "3"                     },
395   { "bd_sand_sloped_down_right.ypos",           "35"                    },
396   { "bd_sand_sloped_down_right.frames",         "1"                     },
397   { "bd_sand_sloped_down_right.scale_up_factor","2"                     },
398
399   { "bd_sand_glued",                            UNDEFINED_FILENAME      },
400   { "bd_sand_glued.clone_from",                 "sand"                  },
401
402   { "bd_wall_sloped_up_right",                  "RocksBD.png"           },
403   { "bd_wall_sloped_up_right.xpos",             "4"                     },
404   { "bd_wall_sloped_up_right.ypos",             "34"                    },
405   { "bd_wall_sloped_up_right.frames",           "1"                     },
406   { "bd_wall_sloped_up_right.scale_up_factor",  "2"                     },
407   { "bd_wall_sloped_up_left",                   "RocksBD.png"           },
408   { "bd_wall_sloped_up_left.xpos",              "5"                     },
409   { "bd_wall_sloped_up_left.ypos",              "34"                    },
410   { "bd_wall_sloped_up_left.frames",            "1"                     },
411   { "bd_wall_sloped_up_left.scale_up_factor",   "2"                     },
412   { "bd_wall_sloped_down_left",                 "RocksBD.png"           },
413   { "bd_wall_sloped_down_left.xpos",            "6"                     },
414   { "bd_wall_sloped_down_left.ypos",            "34"                    },
415   { "bd_wall_sloped_down_left.frames",          "1"                     },
416   { "bd_wall_sloped_down_left.scale_up_factor","2"                      },
417   { "bd_wall_sloped_down_right",                "RocksBD.png"           },
418   { "bd_wall_sloped_down_right.xpos",           "7"                     },
419   { "bd_wall_sloped_down_right.ypos",           "34"                    },
420   { "bd_wall_sloped_down_right.frames",         "1"                     },
421   { "bd_wall_sloped_down_right.scale_up_factor","2"                     },
422
423   { "bd_wall_non_sloped",                       UNDEFINED_FILENAME      },
424   { "bd_wall_non_sloped.clone_from",            "wall"                  },
425
426   { "bd_wall_diggable",                         UNDEFINED_FILENAME      },
427   { "bd_wall_diggable.clone_from",              "bd_wall"               },
428
429   { "bd_wall_diamond",                          UNDEFINED_FILENAME      },
430   { "bd_wall_diamond.clone_from",               "wall_bd_diamond"       },
431
432   { "bd_wall_key_1",                            UNDEFINED_FILENAME      },
433   { "bd_wall_key_1.clone_from",                 "bd_wall"               },
434
435   { "bd_wall_key_2",                            UNDEFINED_FILENAME      },
436   { "bd_wall_key_2.clone_from",                 "bd_wall"               },
437
438   { "bd_wall_key_3",                            UNDEFINED_FILENAME      },
439   { "bd_wall_key_4.clone_from",                 "bd_wall"               },
440
441   { "bd_falling_wall",                          UNDEFINED_FILENAME      },
442   { "bd_falling_wall.clone_from",               "bd_wall"               },
443
444   { "bd_steelwall",                             UNDEFINED_FILENAME      },
445   { "bd_steelwall.clone_from",                  "steelwall"             },
446
447   { "bd_steelwall_sloped_up_right",             "RocksBD.png"           },
448   { "bd_steelwall_sloped_up_right.xpos",        "4"                     },
449   { "bd_steelwall_sloped_up_right.ypos",        "35"                    },
450   { "bd_steelwall_sloped_up_right.frames",      "1"                     },
451   { "bd_steelwall_sloped_up_right.scale_up_factor", "2"                 },
452   { "bd_steelwall_sloped_up_left",              "RocksBD.png"           },
453   { "bd_steelwall_sloped_up_left.xpos",         "5"                     },
454   { "bd_steelwall_sloped_up_left.ypos",         "35"                    },
455   { "bd_steelwall_sloped_up_left.frames",       "1"                     },
456   { "bd_steelwall_sloped_up_left.scale_up_factor", "2"                  },
457   { "bd_steelwall_sloped_down_left",            "RocksBD.png"           },
458   { "bd_steelwall_sloped_down_left.xpos",       "6"                     },
459   { "bd_steelwall_sloped_down_left.ypos",       "35"                    },
460   { "bd_steelwall_sloped_down_left.frames",     "1"                     },
461   { "bd_steelwall_sloped_down_left.scale_up_factor", "2"                },
462   { "bd_steelwall_sloped_down_right",           "RocksBD.png"           },
463   { "bd_steelwall_sloped_down_right.xpos",      "7"                     },
464   { "bd_steelwall_sloped_down_right.ypos",      "35"                    },
465   { "bd_steelwall_sloped_down_right.frames",    "1"                     },
466   { "bd_steelwall_sloped_down_right.scale_up_factor", "2"               },
467
468   { "bd_steelwall_explodable",                  UNDEFINED_FILENAME      },
469   { "bd_steelwall_explodable.clone_from",       "bd_steelwall"          },
470
471   { "bd_steelwall_diggable",                    UNDEFINED_FILENAME      },
472   { "bd_steelwall_diggable.clone_from",         "bd_steelwall"          },
473
474   { "bd_expandable_wall_horizontal",            UNDEFINED_FILENAME      },
475   { "bd_expandable_wall_horizontal.clone_from", "expandable_wall_horizontal" },
476   { "bd_expandable_wall_horizontal.EDITOR",     UNDEFINED_FILENAME      },
477   { "bd_expandable_wall_horizontal.EDITOR.clone_from", "expandable_wall_horizontal.EDITOR" },
478
479   { "bd_expandable_wall_vertical",              UNDEFINED_FILENAME      },
480   { "bd_expandable_wall_vertical.clone_from", "expandable_wall_vertical" },
481   { "bd_expandable_wall_vertical.EDITOR",       UNDEFINED_FILENAME      },
482   { "bd_expandable_wall_vertical.EDITOR.clone_from", "expandable_wall_vertical.EDITOR" },
483
484   { "bd_expandable_wall_any",                   UNDEFINED_FILENAME      },
485   { "bd_expandable_wall_any.clone_from",        "expandable_wall_any"   },
486   { "bd_expandable_wall_any.EDITOR",            UNDEFINED_FILENAME      },
487   { "bd_expandable_wall_any.EDITOR.clone_from", "expandable_wall_any.EDITOR"    },
488
489   { "bd_expandable_steelwall_horizontal",       UNDEFINED_FILENAME      },
490   { "bd_expandable_steelwall_horizontal.clone_from", "expandable_steelwall_horizontal" },
491   { "bd_expandable_steelwall_horizontal.EDITOR", UNDEFINED_FILENAME     },
492   { "bd_expandable_steelwall_horizontal.EDITOR.clone_from", "expandable_steelwall_horizontal.EDITOR" },
493
494   { "bd_expandable_steelwall_vertical",         UNDEFINED_FILENAME      },
495   { "bd_expandable_steelwall_vertical.clone_from", "expandable_steelwall_vertical" },
496   { "bd_expandable_steelwall_vertical.EDITOR",  UNDEFINED_FILENAME      },
497   { "bd_expandable_steelwall_vertical.EDITOR.clone_from", "expandable_steelwall_vertical.EDITOR" },
498
499   { "bd_expandable_steelwall_any",              UNDEFINED_FILENAME      },
500   { "bd_expandable_steelwall_any.clone_from",   "expandable_steelwall_any" },
501   { "bd_expandable_steelwall_any.EDITOR",       UNDEFINED_FILENAME      },
502   { "bd_expandable_steelwall_any.EDITOR.clone_from", "expandable_steelwall_any.EDITOR" },
503
504   { "bd_expandable_wall_switch_horizontal",     "RocksBD.png"           },
505   { "bd_expandable_wall_switch_horizontal.xpos", "0"                    },
506   { "bd_expandable_wall_switch_horizontal.ypos", "5"                    },
507   { "bd_expandable_wall_switch_horizontal.frames", "1"                  },
508   { "bd_expandable_wall_switch_horizontal.scale_up_factor", "2"         },
509
510   { "bd_expandable_wall_switch_vertical",       "RocksBD.png"           },
511   { "bd_expandable_wall_switch_vertical.xpos",  "1"                     },
512   { "bd_expandable_wall_switch_vertical.ypos",  "5"                     },
513   { "bd_expandable_wall_switch_vertical.frames", "1"                    },
514   { "bd_expandable_wall_switch_vertical.scale_up_factor", "2"           },
515
516   { "bd_inbox",                                 "RocksBD.png"           },
517   { "bd_inbox.xpos",                            "6"                     },
518   { "bd_inbox.ypos",                            "2"                     },
519   { "bd_inbox.frames",                          "1"                     },
520   { "bd_inbox.scale_up_factor",                 "2"                     },
521   { "bd_inbox.opening",                         "RocksBD.png"           },
522   { "bd_inbox.opening.xpos",                    "6"                     },
523   { "bd_inbox.opening.ypos",                    "2"                     },
524   { "bd_inbox.opening.frames",                  "2"                     },
525   { "bd_inbox.opening.delay",                   "8"                     },
526   { "bd_inbox.opening.scale_up_factor",         "2"                     },
527   { "bd_inbox.EDITOR",                          "RocksBD.png"           },
528   { "bd_inbox.EDITOR.xpos",                     "3"                     },
529   { "bd_inbox.EDITOR.ypos",                     "4"                     },
530   { "bd_inbox.EDITOR.scale_up_factor",          "2"                     },
531
532   { "bd_exit_closed",                           UNDEFINED_FILENAME      },
533   { "bd_exit_closed.clone_from",                "exit_closed"           },
534
535   { "bd_exit_open",                             UNDEFINED_FILENAME      },
536   { "bd_exit_openm.clone_from",                 "exit_open"             },
537
538   { "bd_invisible_exit_closed",                 UNDEFINED_FILENAME      },
539   { "bd_invisible_exit_closed.clone_from",      "invisible_wall"        },
540   { "bd_invisible_exit_closed.EDITOR",          UNDEFINED_FILENAME      },
541   { "bd_invisible_exit_closed.EDITOR.clone_from", "bd_exit_closed"      },
542
543   { "bd_invisible_exit_open",                   UNDEFINED_FILENAME      },
544   { "bd_invisible_exit_open.clone_from",        "invisible_wall"        },
545   { "bd_invisible_exit_open.EDITOR",            UNDEFINED_FILENAME      },
546   { "bd_invisible_exit_open.EDITOR.clone_from", "bd_exit_open"          },
547
548   { "bd_flying_rock",                           UNDEFINED_FILENAME      },
549   { "bd_flying_rock.clone_from",                "bd_rock"               },
550
551   { "bd_mega_rock",                             UNDEFINED_FILENAME      },
552   { "bd_mega_rock.clone_from",                  "bd_rock"               },
553
554   { "bd_rock_glued",                            UNDEFINED_FILENAME      },
555   { "bd_rock_glued.clone_from",                 "bd_rock"               },
556
557   { "bd_flying_diamond",                        UNDEFINED_FILENAME      },
558   { "bd_flying_diamond.clone_from",             "bd_diamond"            },
559
560   { "bd_diamond_glued",                         UNDEFINED_FILENAME      },
561   { "bd_diamond_glued.clone_from",              "bd_diamond"            },
562
563   { "bd_diamond_key",                           "RocksBD.png"           },
564   { "bd_diamond_key.xpos",                      "3"                     },
565   { "bd_diamond_key.ypos",                      "1"                     },
566   { "bd_diamond_key.frames",                    "1"                     },
567   { "bd_diamond_key.scale_up_factor",           "2"                     },
568
569   { "bd_trapped_diamond",                       "RocksBD.png"           },
570   { "bd_trapped_diamond.xpos",                  "2"                     },
571   { "bd_trapped_diamond.ypos",                  "1"                     },
572   { "bd_trapped_diamond.frames",                "1"                     },
573   { "bd_trapped_diamond.scale_up_factor",       "2"                     },
574
575   { "bd_nut",                                   UNDEFINED_FILENAME      },
576   { "bd_nut.clone_from",                        "nut"                   },
577
578   { "bd_bladder",                               "RocksBD.png"           },
579   { "bd_bladder.xpos",                          "0"                     },
580   { "bd_bladder.ypos",                          "22"                    },
581   { "bd_bladder.frames",                        "1"                     },
582   { "bd_bladder.scale_up_factor",               "2"                     },
583
584   { "bd_bladder_spender",                       "RocksBD.png"           },
585   { "bd_bladder_spender.xpos",                  "6"                     },
586   { "bd_bladder_spender.ypos",                  "0"                     },
587   { "bd_bladder_spender.frames",                "1"                     },
588   { "bd_bladder_spender.scale_up_factor",       "2"                     },
589
590   { "bd_creature_switch",                       "RocksBD.png"           },
591   { "bd_creature_switch.xpos",                  "2"                     },
592   { "bd_creature_switch.ypos",                  "2"                     },
593   { "bd_creature_switch.frames",                "1"                     },
594   { "bd_creature_switch.scale_up_factor",       "2"                     },
595   { "bd_creature_switch.active",                "RocksBD.png"           },
596   { "bd_creature_switch.active.xpos",           "3"                     },
597   { "bd_creature_switch.active.ypos",           "2"                     },
598   { "bd_creature_switch.active.frames",         "1"                     },
599   { "bd_creature_switch.active.scale_up_factor", "2"                    },
600
601   { "bd_biter_switch_1",                        "RocksBD.png"           },
602   { "bd_biter_switch_1.xpos",                   "4"                     },
603   { "bd_biter_switch_1.ypos",                   "1"                     },
604   { "bd_biter_switch_1.frames",                 "1"                     },
605   { "bd_biter_switch_1.scale_up_factor",        "2"                     },
606
607   { "bd_biter_switch_2",                        "RocksBD.png"           },
608   { "bd_biter_switch_2.xpos",                   "4"                     },
609   { "bd_biter_switch_2.ypos",                   "1"                     },
610   { "bd_biter_switch_2.frames",                 "1"                     },
611   { "bd_biter_switch_2.scale_up_factor",        "2"                     },
612
613   { "bd_biter_switch_3",                        "RocksBD.png"           },
614   { "bd_biter_switch_3.xpos",                   "4"                     },
615   { "bd_biter_switch_3.ypos",                   "1"                     },
616   { "bd_biter_switch_3.frames",                 "1"                     },
617   { "bd_biter_switch_3.scale_up_factor",        "2"                     },
618
619   { "bd_biter_switch_4",                        "RocksBD.png"           },
620   { "bd_biter_switch_4.xpos",                   "4"                     },
621   { "bd_biter_switch_4.ypos",                   "1"                     },
622   { "bd_biter_switch_4.frames",                 "1"                     },
623   { "bd_biter_switch_4.scale_up_factor",        "2"                     },
624
625   { "bd_replicator",                            "RocksBD.png"           },
626   { "bd_replicator.xpos",                       "0"                     },
627   { "bd_replicator.ypos",                       "38"                    },
628   { "bd_replicator.frames",                     "1"                     },
629   { "bd_replicator.scale_up_factor",            "2"                     },
630   { "bd_replicator.active",                     "RocksBD.png"           },
631   { "bd_replicator.active.xpos",                "0"                     },
632   { "bd_replicator.active.ypos",                "38"                    },
633   { "bd_replicator.active.frames",              "8"                     },
634   { "bd_replicator.active.delay",               "2"                     },
635   { "bd_replicator.active.scale_up_factor",     "2"                     },
636
637   { "bd_replicator_switch",                     "RocksBD.png"           },
638   { "bd_replicator_switch.xpos",                "3"                     },
639   { "bd_replicator_switch.ypos",                "36"                    },
640   { "bd_replicator_switch.frames",              "1"                     },
641   { "bd_replicator_switch.scale_up_factor",     "2"                     },
642   { "bd_replicator_switch.active",              "RocksBD.png"           },
643   { "bd_replicator_switch.active.xpos",         "2"                     },
644   { "bd_replicator_switch.active.ypos",         "36"                    },
645   { "bd_replicator_switch.active.frames",       "1"                     },
646   { "bd_replicator_switch.active.scale_up_factor", "2"                  },
647
648   { "bd_conveyor_left",                         "RocksBD.png"           },
649   { "bd_conveyor_left.xpos",                    "0"                     },
650   { "bd_conveyor_left.ypos",                    "41"                    },
651   { "bd_conveyor_left.frames",                  "1"                     },
652   { "bd_conveyor_left.scale_up_factor",         "2"                     },
653   { "bd_conveyor_left.active",                  "RocksBD.png"           },
654   { "bd_conveyor_left.active.xpos",             "0"                     },
655   { "bd_conveyor_left.active.ypos",             "41"                    },
656   { "bd_conveyor_left.active.frames",           "8"                     },
657   { "bd_conveyor_left.active.delay",            "2"                     },
658   { "bd_conveyor_left.active.scale_up_factor",  "2"                     },
659
660   { "bd_conveyor_right",                        "RocksBD.png"           },
661   { "bd_conveyor_right.xpos",                   "0"                     },
662   { "bd_conveyor_right.ypos",                   "40"                    },
663   { "bd_conveyor_right.frames",                 "1"                     },
664   { "bd_conveyor_right.scale_up_factor",        "2"                     },
665   { "bd_conveyor_right.active",                 "RocksBD.png"           },
666   { "bd_conveyor_right.active.xpos",            "0"                     },
667   { "bd_conveyor_right.active.ypos",            "40"                    },
668   { "bd_conveyor_right.active.frames",          "8"                     },
669   { "bd_conveyor_right.active.delay",           "2"                     },
670   { "bd_conveyor_right.active.scale_up_factor", "2"                     },
671
672   { "bd_conveyor_switch",                       "RocksBD.png"           },
673   { "bd_conveyor_switch.xpos",                  "3"                     },
674   { "bd_conveyor_switch.ypos",                  "44"                    },
675   { "bd_conveyor_switch.frames",                "1"                     },
676   { "bd_conveyor_switch.scale_up_factor",       "2"                     },
677   { "bd_conveyor_switch.active",                "RocksBD.png"           },
678   { "bd_conveyor_switch.active.xpos",           "4"                     },
679   { "bd_conveyor_switch.active.ypos",           "44"                    },
680   { "bd_conveyor_switch.active.frames",         "1"                     },
681   { "bd_conveyor_switch.active.scale_up_factor", "2"                    },
682
683   { "bd_conveyor_dir_switch_left",              "RocksBD.png"           },
684   { "bd_conveyor_dir_switch_left.xpos",         "2"                     },
685   { "bd_conveyor_dir_switch_left.ypos",         "44"                    },
686   { "bd_conveyor_dir_switch_left.frames",       "1"                     },
687   { "bd_conveyor_dir_switch_left.scale_up_factor", "2"                  },
688
689   { "bd_conveyor_dir_switch_right",             "RocksBD.png"           },
690   { "bd_conveyor_dir_switch_right.xpos",        "1"                     },
691   { "bd_conveyor_dir_switch_right.ypos",        "44"                    },
692   { "bd_conveyor_dir_switch_right.frames",      "1"                     },
693   { "bd_conveyor_dir_switch_right.scale_up_factor", "2"                 },
694
695   { "bd_gravity_switch",                        "RocksBD.png"           },
696   { "bd_gravity_switch.xpos",                   "2"                     },
697   { "bd_gravity_switch.ypos",                   "34"                    },
698   { "bd_gravity_switch.frames",                 "1"                     },
699   { "bd_gravity_switch.scale_up_factor",        "2"                     },
700   { "bd_gravity_switch.active",                 "RocksBD.png"           },
701   { "bd_gravity_switch.active.xpos",            "3"                     },
702   { "bd_gravity_switch.active.ypos",            "34"                    },
703   { "bd_gravity_switch.active.frames",          "1"                     },
704   { "bd_gravity_switch.active.scale_up_factor","2"                      },
705
706   { "bd_acid",                                  "RocksBD.png"           },
707   { "bd_acid.xpos",                             "4"                     },
708   { "bd_acid.ypos",                             "2"                     },
709   { "bd_acid.frames",                           "1"                     },
710   { "bd_acid.scale_up_factor",                  "2"                     },
711
712   { "bd_box",                                   "RocksBD.png"           },
713   { "bd_box.xpos",                              "5"                     },
714   { "bd_box.ypos",                              "2"                     },
715   { "bd_box.frames",                            "1"                     },
716   { "bd_box.scale_up_factor",                   "2"                     },
717
718   { "bd_time_penalty",                          "RocksBD.png"           },
719   { "bd_time_penalty.xpos",                     "1"                     },
720   { "bd_time_penalty.ypos",                     "1"                     },
721   { "bd_time_penalty.frames",                   "1"                     },
722   { "bd_time_penalty.scale_up_factor",          "2"                     },
723
724   { "bd_gravestone",                            "RocksBD.png"           },
725   { "bd_gravestone.xpos",                       "1"                     },
726   { "bd_gravestone.ypos",                       "1"                     },
727   { "bd_gravestone.frames",                     "1"                     },
728   { "bd_gravestone.scale_up_factor",            "2"                     },
729
730   { "bd_clock",                                 "RocksBD.png"           },
731   { "bd_clock.xpos",                            "0"                     },
732   { "bd_clock.ypos",                            "2"                     },
733   { "bd_clock.frames",                          "1"                     },
734   { "bd_clock.scale_up_factor",                 "2"                     },
735
736   { "bd_pot",                                   "RocksBD.png"           },
737   { "bd_pot.xpos",                              "7"                     },
738   { "bd_pot.ypos",                              "7"                     },
739   { "bd_pot.frames",                            "1"                     },
740   { "bd_pot.scale_up_factor",                   "2"                     },
741
742   { "bd_pneumatic_hammer",                      "RocksBD.png"           },
743   { "bd_pneumatic_hammer.xpos",                 "6"                     },
744   { "bd_pneumatic_hammer.ypos",                 "7"                     },
745   { "bd_pneumatic_hammer.frames",               "1"                     },
746   { "bd_pneumatic_hammer.scale_up_factor",      "2"                     },
747
748   { "bd_teleporter",                            "RocksBD.png"           },
749   { "bd_teleporter.xpos",                       "5"                     },
750   { "bd_teleporter.ypos",                       "7"                     },
751   { "bd_teleporter.frames",                     "1"                     },
752   { "bd_teleporter.scale_up_factor",            "2"                     },
753
754   { "bd_skeleton",                              "RocksBD.png"           },
755   { "bd_skeleton.xpos",                         "1"                     },
756   { "bd_skeleton.ypos",                         "34"                    },
757   { "bd_skeleton.frames",                       "1"                     },
758   { "bd_skeleton.scale_up_factor",              "2"                     },
759
760   { "bd_water",                                 "RocksBD.png"           },
761   { "bd_water.xpos",                            "0"                     },
762   { "bd_water.ypos",                            "12"                    },
763   { "bd_water.frames",                          "1"                     },
764   { "bd_water.scale_up_factor",                 "2"                     },
765
766   { "bd_key_1",                                 "RocksBD.png"           },
767   { "bd_key_1.xpos",                            "3"                     },
768   { "bd_key_1.ypos",                            "8"                     },
769   { "bd_key_1.frames",                          "1"                     },
770   { "bd_key_1.scale_up_factor",                 "2"                     },
771
772   { "bd_key_2",                                 "RocksBD.png"           },
773   { "bd_key_2.xpos",                            "4"                     },
774   { "bd_key_2.ypos",                            "8"                     },
775   { "bd_key_2.frames",                          "1"                     },
776   { "bd_key_2.scale_up_factor",                 "2"                     },
777
778   { "bd_key_3",                                 "RocksBD.png"           },
779   { "bd_key_3.xpos",                            "5"                     },
780   { "bd_key_3.ypos",                            "8"                     },
781   { "bd_key_3.frames",                          "1"                     },
782   { "bd_key_3.scale_up_factor",                 "2"                     },
783
784   { "bd_gate_1",                                "RocksBD.png"           },
785   { "bd_gate_1.xpos",                           "0"                     },
786   { "bd_gate_1.ypos",                           "8"                     },
787   { "bd_gate_1.frames",                         "1"                     },
788   { "bd_gate_1.scale_up_factor",                "2"                     },
789
790   { "bd_gate_2",                                "RocksBD.png"           },
791   { "bd_gate_2.xpos",                           "1"                     },
792   { "bd_gate_2.ypos",                           "8"                     },
793   { "bd_gate_2.frames",                         "1"                     },
794   { "bd_gate_2.scale_up_factor",                "2"                     },
795
796   { "bd_gate_3",                                "RocksBD.png"           },
797   { "bd_gate_3.xpos",                           "2"                     },
798   { "bd_gate_3.ypos",                           "8"                     },
799   { "bd_gate_3.frames",                         "1"                     },
800   { "bd_gate_3.scale_up_factor",                "2"                     },
801
802   { "bd_lava",                                  "RocksBD.png"           },
803   { "bd_lava.xpos",                             "0"                     },
804   { "bd_lava.ypos",                             "39"                    },
805   { "bd_lava.frames",                           "1"                     },
806   { "bd_lava.scale_up_factor",                  "2"                     },
807
808   { "bd_sweet",                                 "RocksBD.png"           },
809   { "bd_sweet.xpos",                            "0"                     },
810   { "bd_sweet.ypos",                            "1"                     },
811   { "bd_sweet.frames",                          "1"                     },
812   { "bd_sweet.scale_up_factor",                 "2"                     },
813
814   { "bd_voodoo_doll",                           "RocksBD.png"           },
815   { "bd_voodoo_doll.xpos",                      "7"                     },
816   { "bd_voodoo_doll.ypos",                      "0"                     },
817   { "bd_voodoo_doll.frames",                    "1"                     },
818   { "bd_voodoo_doll.scale_up_factor",           "2"                     },
819
820   { "bd_slime",                                 "RocksBD.png"           },
821   { "bd_slime.xpos",                            "0"                     },
822   { "bd_slime.ypos",                            "25"                    },
823   { "bd_slime.frames",                          "1"                     },
824   { "bd_slime.scale_up_factor",                 "2"                     },
825
826   { "bd_waiting_rock",                          UNDEFINED_FILENAME      },
827   { "bd_waiting_rock.clone_from",               "bd_rock"               },
828
829   { "bd_chasing_rock",                          UNDEFINED_FILENAME      },
830   { "bd_chasing_rock.clone_from",               "bd_rock"               },
831
832   { "bd_ghost",                                 "RocksBD.png"           },
833   { "bd_ghost.xpos",                            "0"                     },
834   { "bd_ghost.ypos",                            "20"                    },
835   { "bd_ghost.frames",                          "1"                     },
836   { "bd_ghost.scale_up_factor",                 "2"                     },
837
838   { "bd_cow",                                   "RocksBD.png"           },
839   { "bd_cow.xpos",                              "0"                     },
840   { "bd_cow.ypos",                              "11"                    },
841   { "bd_cow.frames",                            "1"                     },
842   { "bd_cow.scale_up_factor",                   "2"                     },
843   { "bd_cow.left",                              "RocksBD.png"           },
844   { "bd_cow.left.xpos",                         "0"                     },
845   { "bd_cow.left.ypos",                         "11"                    },
846   { "bd_cow.left.frames",                       "1"                     },
847   { "bd_cow.left.scale_up_factor",              "2"                     },
848   { "bd_cow.up",                                "RocksBD.png"           },
849   { "bd_cow.up.xpos",                           "0"                     },
850   { "bd_cow.up.ypos",                           "11"                    },
851   { "bd_cow.up.frames",                         "1"                     },
852   { "bd_cow.up.scale_up_factor",                "2"                     },
853   { "bd_cow.right",                             "RocksBD.png"           },
854   { "bd_cow.right.xpos",                        "0"                     },
855   { "bd_cow.right.ypos",                        "11"                    },
856   { "bd_cow.right.frames",                      "1"                     },
857   { "bd_cow.right.scale_up_factor",             "2"                     },
858   { "bd_cow.down",                              "RocksBD.png"           },
859   { "bd_cow.down.xpos",                         "0"                     },
860   { "bd_cow.down.ypos",                         "11"                    },
861   { "bd_cow.down.frames",                       "1"                     },
862   { "bd_cow.down.scale_up_factor",              "2"                     },
863
864   { "bd_stonefly",                              "RocksBD.png"           },
865   { "bd_stonefly.xpos",                         "0"                     },
866   { "bd_stonefly.ypos",                         "19"                    },
867   { "bd_stonefly.frames",                       "1"                     },
868   { "bd_stonefly.scale_up_factor",              "2"                     },
869   { "bd_stonefly.right",                        "RocksBD.png"           },
870   { "bd_stonefly.right.xpos",                   "0"                     },
871   { "bd_stonefly.right.ypos",                   "19"                    },
872   { "bd_stonefly.right.frames",                 "1"                     },
873   { "bd_stonefly.right.scale_up_factor",        "2"                     },
874   { "bd_stonefly.up",                           "RocksBD.png"           },
875   { "bd_stonefly.up.xpos",                      "0"                     },
876   { "bd_stonefly.up.ypos",                      "19"                    },
877   { "bd_stonefly.up.frames",                    "1"                     },
878   { "bd_stonefly.up.scale_up_factor",           "2"                     },
879   { "bd_stonefly.left",                         "RocksBD.png"           },
880   { "bd_stonefly.left.xpos",                    "0"                     },
881   { "bd_stonefly.left.ypos",                    "19"                    },
882   { "bd_stonefly.left.frames",                  "1"                     },
883   { "bd_stonefly.left.scale_up_factor",         "2"                     },
884   { "bd_stonefly.down",                         "RocksBD.png"           },
885   { "bd_stonefly.down.xpos",                    "0"                     },
886   { "bd_stonefly.down.ypos",                    "19"                    },
887   { "bd_stonefly.down.frames",                  "1"                     },
888   { "bd_stonefly.down.scale_up_factor",         "2"                     },
889
890   { "bd_biter",                                 "RocksBD.png"           },
891   { "bd_biter.xpos",                            "0"                     },
892   { "bd_biter.ypos",                            "21"                    },
893   { "bd_biter.frames",                          "1"                     },
894   { "bd_biter.scale_up_factor",                 "2"                     },
895   { "bd_biter.right",                           "RocksBD.png"           },
896   { "bd_biter.right.xpos",                      "0"                     },
897   { "bd_biter.right.ypos",                      "21"                    },
898   { "bd_biter.right.frames",                    "1"                     },
899   { "bd_biter.right.scale_up_factor",           "2"                     },
900   { "bd_biter.up",                              "RocksBD.png"           },
901   { "bd_biter.up.xpos",                         "0"                     },
902   { "bd_biter.up.ypos",                         "21"                    },
903   { "bd_biter.up.frames",                       "1"                     },
904   { "bd_biter.up.scale_up_factor",              "2"                     },
905   { "bd_biter.left",                            "RocksBD.png"           },
906   { "bd_biter.left.xpos",                       "0"                     },
907   { "bd_biter.left.ypos",                       "21"                    },
908   { "bd_biter.left.frames",                     "1"                     },
909   { "bd_biter.left.scale_up_factor",            "2"                     },
910   { "bd_biter.down",                            "RocksBD.png"           },
911   { "bd_biter.down.xpos",                       "0"                     },
912   { "bd_biter.down.ypos",                       "21"                    },
913   { "bd_biter.down.frames",                     "1"                     },
914   { "bd_biter.down.scale_up_factor",            "2"                     },
915
916   { "bd_dragonfly",                             "RocksBD.png"           },
917   { "bd_dragonfly.xpos",                        "0"                     },
918   { "bd_dragonfly.ypos",                        "42"                    },
919   { "bd_dragonfly.frames",                      "1"                     },
920   { "bd_dragonfly.scale_up_factor",             "2"                     },
921   { "bd_dragonfly.right",                       "RocksBD.png"           },
922   { "bd_dragonfly.right.xpos",                  "0"                     },
923   { "bd_dragonfly.right.ypos",                  "42"                    },
924   { "bd_dragonfly.right.frames",                "1"                     },
925   { "bd_dragonfly.right.scale_up_factor",       "2"                     },
926   { "bd_dragonfly.up",                          "RocksBD.png"           },
927   { "bd_dragonfly.up.xpos",                     "0"                     },
928   { "bd_dragonfly.up.ypos",                     "42"                    },
929   { "bd_dragonfly.up.frames",                   "1"                     },
930   { "bd_dragonfly.up.scale_up_factor",          "2"                     },
931   { "bd_dragonfly.left",                        "RocksBD.png"           },
932   { "bd_dragonfly.left.xpos",                   "0"                     },
933   { "bd_dragonfly.left.ypos",                   "42"                    },
934   { "bd_dragonfly.left.frames",                 "1"                     },
935   { "bd_dragonfly.left.scale_up_factor",        "2"                     },
936   { "bd_dragonfly.down",                        "RocksBD.png"           },
937   { "bd_dragonfly.down.xpos",                   "0"                     },
938   { "bd_dragonfly.down.ypos",                   "42"                    },
939   { "bd_dragonfly.down.frames",                 "1"                     },
940   { "bd_dragonfly.down.scale_up_factor",        "2"                     },
941
942   { "bd_bomb",                                  "RocksBD.png"           },
943   { "bd_bomb.xpos",                             "0"                     },
944   { "bd_bomb.ypos",                             "6"                     },
945   { "bd_bomb.frames",                           "1"                     },
946   { "bd_bomb.scale_up_factor",                  "2"                     },
947
948   { "bd_nitro_pack",                            "RocksBD.png"           },
949   { "bd_nitro_pack.xpos",                       "0"                     },
950   { "bd_nitro_pack.ypos",                       "36"                    },
951   { "bd_nitro_pack.frames",                     "1"                     },
952   { "bd_nitro_pack.scale_up_factor",            "2"                     },
953
954   { "bd_player_with_bomb",                      "RocksBD.png"           },
955   { "bd_player_with_bomb.xpos",                 "3"                     },
956   { "bd_player_with_bomb.ypos",                 "4"                     },
957   { "bd_player_with_bomb.frames",               "1"                     },
958   { "bd_player_with_bomb.scale_up_factor",      "2"                     },
959
960   { "bd_player_glued",                          UNDEFINED_FILENAME      },
961   { "bd_player_glued.clone_from",               "bd_player"             },
962
963   { "bd_player_stirring",                       "RocksBD.png"           },
964   { "bd_player_stirring.xpos",                  "3"                     },
965   { "bd_player_stirring.ypos",                  "4"                     },
966   { "bd_player_stirring.frames",                "1"                     },
967   { "bd_player_stirring.scale_up_factor",       "2"                     },
968
969   { "bd_fake_bonus",                            "RocksBD.png"           },
970   { "bd_fake_bonus.xpos",                       "0"                     },
971   { "bd_fake_bonus.ypos",                       "15"                    },
972   { "bd_fake_bonus.frames",                     "1"                     },
973   { "bd_fake_bonus.scale_up_factor",            "2"                     },
974
975   { "bd_covered",                               "RocksBD.png"           },
976   { "bd_covered.xpos",                          "4"                     },
977   { "bd_covered.ypos",                          "0"                     },
978   { "bd_covered.frames",                        "1"                     },
979   { "bd_covered.scale_up_factor",               "2"                     },
980
981   // images for Supaplex style elements and actions
982
983   { "[sp_default].exploding",                   "RocksSP.png"           },
984   { "[sp_default].exploding.xpos",              "8"                     },
985   { "[sp_default].exploding.ypos",              "3"                     },
986   { "[sp_default].exploding.frames",            "8"                     },
987   { "[sp_default].exploding.delay",             "4"                     },
988   { "[sp_default].exploding.anim_mode",         "linear"                },
989
990   { "sp_zonk",                                  "RocksSP.png"           },
991   { "sp_zonk.xpos",                             "1"                     },
992   { "sp_zonk.ypos",                             "0"                     },
993   { "sp_zonk.frames",                           "1"                     },
994   { "sp_zonk.moving.left",                      "RocksSP.png"           },
995   { "sp_zonk.moving.left.xpos",                 "0"                     },
996   { "sp_zonk.moving.left.ypos",                 "6"                     },
997   { "sp_zonk.moving.left.frames",               "4"                     },
998   { "sp_zonk.moving.left.delay",                "1"                     },
999   { "sp_zonk.moving.left.anim_mode",            "reverse"               },
1000   { "sp_zonk.moving.right",                     "RocksSP.png"           },
1001   { "sp_zonk.moving.right.xpos",                "0"                     },
1002   { "sp_zonk.moving.right.ypos",                "6"                     },
1003   { "sp_zonk.moving.right.frames",              "4"                     },
1004   { "sp_zonk.moving.right.start_frame",         "1"                     },
1005   { "sp_zonk.moving.right.delay",               "1"                     },
1006   { "sp_zonk.pushing.left",                     "RocksSP.png"           },
1007   { "sp_zonk.pushing.left.xpos",                "0"                     },
1008   { "sp_zonk.pushing.left.ypos",                "6"                     },
1009   { "sp_zonk.pushing.left.frames",              "4"                     },
1010   { "sp_zonk.pushing.left.delay",               "1"                     },
1011   { "sp_zonk.pushing.left.anim_mode",           "reverse"               },
1012   { "sp_zonk.pushing.right",                    "RocksSP.png"           },
1013   { "sp_zonk.pushing.right.xpos",               "0"                     },
1014   { "sp_zonk.pushing.right.ypos",               "6"                     },
1015   { "sp_zonk.pushing.right.frames",             "4"                     },
1016   { "sp_zonk.pushing.right.start_frame",        "1"                     },
1017   { "sp_zonk.pushing.right.delay",              "1"                     },
1018
1019   { "sp_base",                                  "RocksSP.png"           },
1020   { "sp_base.xpos",                             "2"                     },
1021   { "sp_base.ypos",                             "0"                     },
1022   { "sp_base.frames",                           "1"                     },
1023   { "sp_base.digging",                          "RocksSP.png"           },
1024   { "sp_base.digging.xpos",                     "2"                     },
1025   { "sp_base.digging.ypos",                     "0"                     },
1026   { "sp_base.digging.frames",                   "1"                     },
1027   { "sp_base.digging.anim_mode",                "opaque_player"         },
1028   { "sp_base.snapping",                         "RocksSP.png"           },
1029   { "sp_base.snapping.xpos",                    "8"                     },
1030   { "sp_base.snapping.ypos",                    "2"                     },
1031   { "sp_base.snapping.frames",                  "7"                     },
1032   { "sp_base.snapping.anim_mode",               "linear"                },
1033
1034   { "sp_murphy",                                "RocksSP.png"           },
1035   { "sp_murphy.xpos",                           "3"                     },
1036   { "sp_murphy.ypos",                           "0"                     },
1037   { "sp_murphy.frames",                         "1"                     },
1038   { "sp_murphy.moving.left",                    "RocksSP.png"           },
1039   { "sp_murphy.moving.left.xpos",               "8"                     },
1040   { "sp_murphy.moving.left.ypos",               "0"                     },
1041   { "sp_murphy.moving.left.frames",             "3"                     },
1042   { "sp_murphy.moving.left.anim_mode",          "pingpong"              },
1043   { "sp_murphy.moving.left.delay",              "2"                     },
1044   { "sp_murphy.moving.left.start_frame",        "1"                     },
1045   { "sp_murphy.moving.right",                   "RocksSP.png"           },
1046   { "sp_murphy.moving.right.xpos",              "11"                    },
1047   { "sp_murphy.moving.right.ypos",              "0"                     },
1048   { "sp_murphy.moving.right.frames",            "3"                     },
1049   { "sp_murphy.moving.right.anim_mode",         "pingpong"              },
1050   { "sp_murphy.moving.right.delay",             "2"                     },
1051   { "sp_murphy.moving.right.start_frame",       "1"                     },
1052   { "sp_murphy.digging.left",                   "RocksSP.png"           },
1053   { "sp_murphy.digging.left.xpos",              "8"                     },
1054   { "sp_murphy.digging.left.ypos",              "0"                     },
1055   { "sp_murphy.digging.left.frames",            "3"                     },
1056   { "sp_murphy.digging.left.anim_mode",         "pingpong"              },
1057   { "sp_murphy.digging.left.delay",             "2"                     },
1058   { "sp_murphy.digging.left.start_frame",       "1"                     },
1059   { "sp_murphy.digging.right",                  "RocksSP.png"           },
1060   { "sp_murphy.digging.right.xpos",             "11"                    },
1061   { "sp_murphy.digging.right.ypos",             "0"                     },
1062   { "sp_murphy.digging.right.frames",           "3"                     },
1063   { "sp_murphy.digging.right.anim_mode",        "pingpong"              },
1064   { "sp_murphy.digging.right.delay",            "2"                     },
1065   { "sp_murphy.digging.right.start_frame",      "1"                     },
1066   { "sp_murphy.collecting.left",                "RocksSP.png"           },
1067   { "sp_murphy.collecting.left.xpos",           "8"                     },
1068   { "sp_murphy.collecting.left.ypos",           "0"                     },
1069   { "sp_murphy.collecting.left.frames",         "3"                     },
1070   { "sp_murphy.collecting.left.anim_mode",      "pingpong"              },
1071   { "sp_murphy.collecting.left.delay",          "2"                     },
1072   { "sp_murphy.collecting.left.start_frame",    "1"                     },
1073   { "sp_murphy.collecting.right",               "RocksSP.png"           },
1074   { "sp_murphy.collecting.right.xpos",          "11"                    },
1075   { "sp_murphy.collecting.right.ypos",          "0"                     },
1076   { "sp_murphy.collecting.right.frames",        "3"                     },
1077   { "sp_murphy.collecting.right.anim_mode",     "pingpong"              },
1078   { "sp_murphy.collecting.right.delay",         "2"                     },
1079   { "sp_murphy.collecting.right.start_frame",   "1"                     },
1080   { "sp_murphy.pushing.left",                   "RocksSP.png"           },
1081   { "sp_murphy.pushing.left.xpos",              "11"                    },
1082   { "sp_murphy.pushing.left.ypos",              "1"                     },
1083   { "sp_murphy.pushing.left.frames",            "1"                     },
1084   { "sp_murphy.pushing.right",                  "RocksSP.png"           },
1085   { "sp_murphy.pushing.right.xpos",             "10"                    },
1086   { "sp_murphy.pushing.right.ypos",             "1"                     },
1087   { "sp_murphy.pushing.right.frames",           "1"                     },
1088   { "sp_murphy.snapping.left",                  "RocksSP.png"           },
1089   { "sp_murphy.snapping.left.xpos",             "9"                     },
1090   { "sp_murphy.snapping.left.ypos",             "1"                     },
1091   { "sp_murphy.snapping.left.frames",           "1"                     },
1092   { "sp_murphy.snapping.right",                 "RocksSP.png"           },
1093   { "sp_murphy.snapping.right.xpos",            "8"                     },
1094   { "sp_murphy.snapping.right.ypos",            "1"                     },
1095   { "sp_murphy.snapping.right.frames",          "1"                     },
1096   { "sp_murphy.snapping.up",                    "RocksSP.png"           },
1097   { "sp_murphy.snapping.up.xpos",               "14"                    },
1098   { "sp_murphy.snapping.up.ypos",               "0"                     },
1099   { "sp_murphy.snapping.up.frames",             "1"                     },
1100   { "sp_murphy.snapping.down",                  "RocksSP.png"           },
1101   { "sp_murphy.snapping.down.xpos",             "15"                    },
1102   { "sp_murphy.snapping.down.ypos",             "0"                     },
1103   { "sp_murphy.snapping.down.frames",           "1"                     },
1104   { "sp_murphy.boring",                         "RocksSP.png"           },
1105   { "sp_murphy.boring.xpos",                    "11"                    },
1106   { "sp_murphy.boring.ypos",                    "12"                    },
1107   { "sp_murphy.boring.frames",                  "1"                     },
1108   { "sp_murphy.boring[1]",                      "RocksSP.png"           },
1109   { "sp_murphy.boring[1].xpos",                 "0"                     },
1110   { "sp_murphy.boring[1].ypos",                 "12"                    },
1111   { "sp_murphy.boring[1].frames",               "12"                    },
1112   { "sp_murphy.boring[1].delay",                "10"                    },
1113   { "sp_murphy.boring[1].anim_mode",            "linear"                },
1114   { "sp_murphy.boring[1].anim_delay_fixed",     "120"                   },
1115   { "sp_murphy.boring[1].anim_delay_random",    "0"                     },
1116   { "sp_murphy.boring[1].post_delay_fixed",     "500"                   },
1117   { "sp_murphy.boring[1].post_delay_random",    "500"                   },
1118   { "sp_murphy.sleeping.left",                  "RocksSP.png"           },
1119   { "sp_murphy.sleeping.left.xpos",             "4"                     },
1120   { "sp_murphy.sleeping.left.ypos",             "9"                     },
1121   { "sp_murphy.sleeping.left.frames",           "3"                     },
1122   { "sp_murphy.sleeping.left.delay",            "100"                   },
1123   { "sp_murphy.sleeping.left.anim_mode",        "linear,reverse"        },
1124   { "sp_murphy.sleeping.right",                 "RocksSP.png"           },
1125   { "sp_murphy.sleeping.right.xpos",            "13"                    },
1126   { "sp_murphy.sleeping.right.ypos",            "12"                    },
1127   { "sp_murphy.sleeping.right.frames",          "3"                     },
1128   { "sp_murphy.sleeping.right.delay",           "100"                   },
1129   { "sp_murphy.sleeping.right.anim_mode",       "linear"                },
1130   { "sp_murphy.dropping",                       "RocksSP.png"           },
1131   { "sp_murphy.dropping.xpos",                  "11"                    },
1132   { "sp_murphy.dropping.ypos",                  "12"                    },
1133   { "sp_murphy.dropping.frames",                "1"                     },
1134   { "sp_murphy.shrinking",                      "RocksSP.png"           },
1135   { "sp_murphy.shrinking.xpos",                 "8"                     },
1136   { "sp_murphy.shrinking.ypos",                 "14"                    },
1137   { "sp_murphy.shrinking.frames",               "8"                     },
1138   { "sp_murphy.shrinking.delay",                "4"                     },
1139   { "sp_murphy.shrinking.anim_mode",            "linear"                },
1140
1141   { "sp_murphy_clone",                          "RocksSP.png"           },
1142   { "sp_murphy_clone.xpos",                     "3"                     },
1143   { "sp_murphy_clone.ypos",                     "0"                     },
1144   { "sp_murphy_clone.frames",                   "1"                     },
1145
1146   { "sp_infotron",                              "RocksSP.png"           },
1147   { "sp_infotron.xpos",                         "4"                     },
1148   { "sp_infotron.ypos",                         "0"                     },
1149   { "sp_infotron.frames",                       "1"                     },
1150   { "sp_infotron.EDITOR",                       "RocksSP.png"           },
1151   { "sp_infotron.EDITOR.xpos",                  "8"                     },
1152   { "sp_infotron.EDITOR.ypos",                  "11"                    },
1153   { "sp_infotron.moving.left",                  "RocksSP.png"           },
1154   { "sp_infotron.moving.left.xpos",             "8"                     },
1155   { "sp_infotron.moving.left.ypos",             "13"                    },
1156   { "sp_infotron.moving.left.frames",           "8"                     },
1157   { "sp_infotron.moving.right",                 "RocksSP.png"           },
1158   { "sp_infotron.moving.right.xpos",            "8"                     },
1159   { "sp_infotron.moving.right.ypos",            "13"                    },
1160   { "sp_infotron.moving.right.frames",          "8"                     },
1161   { "sp_infotron.moving.right.start_frame",     "6"                     },
1162   { "sp_infotron.moving.right.anim_mode",       "reverse"               },
1163   { "sp_infotron.collecting",                   "RocksSP.png"           },
1164   { "sp_infotron.collecting.xpos",              "8"                     },
1165   { "sp_infotron.collecting.ypos",              "7"                     },
1166   { "sp_infotron.collecting.frames",            "8"                     },
1167   { "sp_infotron.collecting.anim_mode",         "linear"                },
1168
1169   { "sp_chip_single",                           "RocksSP.png"           },
1170   { "sp_chip_single.xpos",                      "5"                     },
1171   { "sp_chip_single.ypos",                      "0"                     },
1172   { "sp_chip_single.frames",                    "1"                     },
1173   { "sp_chip_left",                             "RocksSP.png"           },
1174   { "sp_chip_left.xpos",                        "2"                     },
1175   { "sp_chip_left.ypos",                        "3"                     },
1176   { "sp_chip_left.frames",                      "1"                     },
1177   { "sp_chip_right",                            "RocksSP.png"           },
1178   { "sp_chip_right.xpos",                       "3"                     },
1179   { "sp_chip_right.ypos",                       "3"                     },
1180   { "sp_chip_right.frames",                     "1"                     },
1181   { "sp_chip_top",                              "RocksSP.png"           },
1182   { "sp_chip_top.xpos",                         "6"                     },
1183   { "sp_chip_top.ypos",                         "4"                     },
1184   { "sp_chip_top.frames",                       "1"                     },
1185   { "sp_chip_bottom",                           "RocksSP.png"           },
1186   { "sp_chip_bottom.xpos",                      "7"                     },
1187   { "sp_chip_bottom.ypos",                      "4"                     },
1188   { "sp_chip_bottom.frames",                    "1"                     },
1189
1190   { "sp_hardware_gray",                         "RocksSP.png"           },
1191   { "sp_hardware_gray.xpos",                    "6"                     },
1192   { "sp_hardware_gray.ypos",                    "0"                     },
1193   { "sp_hardware_gray.frames",                  "1"                     },
1194   { "sp_hardware_green",                        "RocksSP.png"           },
1195   { "sp_hardware_green.xpos",                   "5"                     },
1196   { "sp_hardware_green.ypos",                   "3"                     },
1197   { "sp_hardware_green.frames",                 "1"                     },
1198   { "sp_hardware_blue",                         "RocksSP.png"           },
1199   { "sp_hardware_blue.xpos",                    "6"                     },
1200   { "sp_hardware_blue.ypos",                    "3"                     },
1201   { "sp_hardware_blue.frames",                  "1"                     },
1202   { "sp_hardware_red",                          "RocksSP.png"           },
1203   { "sp_hardware_red.xpos",                     "7"                     },
1204   { "sp_hardware_red.ypos",                     "3"                     },
1205   { "sp_hardware_red.frames",                   "1"                     },
1206   { "sp_hardware_yellow",                       "RocksSP.png"           },
1207   { "sp_hardware_yellow.xpos",                  "0"                     },
1208   { "sp_hardware_yellow.ypos",                  "4"                     },
1209   { "sp_hardware_yellow.frames",                "1"                     },
1210
1211   { "sp_exit_closed",                           "RocksSP.png"           },
1212   { "sp_exit_closed.xpos",                      "7"                     },
1213   { "sp_exit_closed.ypos",                      "0"                     },
1214   { "sp_exit_closed.frames",                    "1"                     },
1215   { "sp_exit.opening",                          "RocksSP.png"           },
1216   { "sp_exit.opening.xpos",                     "7"                     },
1217   { "sp_exit.opening.ypos",                     "0"                     },
1218   { "sp_exit.opening.frames",                   "1"                     },
1219   { "sp_exit_open",                             "RocksSP.png"           },
1220   { "sp_exit_open.xpos",                        "7"                     },
1221   { "sp_exit_open.ypos",                        "0"                     },
1222   { "sp_exit_open.frames",                      "1"                     },
1223   { "sp_exit.closing",                          "RocksSP.png"           },
1224   { "sp_exit.closing.xpos",                     "7"                     },
1225   { "sp_exit.closing.ypos",                     "0"                     },
1226   { "sp_exit.closing.frames",                   "1"                     },
1227
1228   { "sp_disk_orange",                           "RocksSP.png"           },
1229   { "sp_disk_orange.xpos",                      "0"                     },
1230   { "sp_disk_orange.ypos",                      "1"                     },
1231   { "sp_disk_orange.frames",                    "1"                     },
1232
1233   { "sp_disk_yellow",                           "RocksSP.png"           },
1234   { "sp_disk_yellow.xpos",                      "2"                     },
1235   { "sp_disk_yellow.ypos",                      "2"                     },
1236   { "sp_disk_yellow.frames",                    "1"                     },
1237
1238   { "sp_disk_red",                              "RocksSP.png"           },
1239   { "sp_disk_red.xpos",                         "4"                     },
1240   { "sp_disk_red.ypos",                         "2"                     },
1241   { "sp_disk_red.frames",                       "1"                     },
1242   { "sp_disk_red.collecting",                   "RocksSP.png"           },
1243   { "sp_disk_red.collecting.xpos",              "9"                     },
1244   { "sp_disk_red.collecting.ypos",              "5"                     },
1245   { "sp_disk_red.collecting.frames",            "7"                     },
1246   { "sp_disk_red.collecting.anim_mode",         "linear"                },
1247   { "sp_disk_red.active",                       "RocksSP.png"           },
1248   { "sp_disk_red.active.xpos",                  "4"                     },
1249   { "sp_disk_red.active.ypos",                  "2"                     },
1250   { "sp_disk_red.active.frames",                "1"                     },
1251
1252   { "sp_port_right",                            "RocksSP.png"           },
1253   { "sp_port_right.xpos",                       "1"                     },
1254   { "sp_port_right.ypos",                       "1"                     },
1255   { "sp_port_right.frames",                     "1"                     },
1256   { "sp_port_down",                             "RocksSP.png"           },
1257   { "sp_port_down.xpos",                        "2"                     },
1258   { "sp_port_down.ypos",                        "1"                     },
1259   { "sp_port_down.frames",                      "1"                     },
1260   { "sp_port_left",                             "RocksSP.png"           },
1261   { "sp_port_left.xpos",                        "3"                     },
1262   { "sp_port_left.ypos",                        "1"                     },
1263   { "sp_port_left.frames",                      "1"                     },
1264   { "sp_port_up",                               "RocksSP.png"           },
1265   { "sp_port_up.xpos",                          "4"                     },
1266   { "sp_port_up.ypos",                          "1"                     },
1267   { "sp_port_up.frames",                        "1"                     },
1268   { "sp_port_horizontal",                       "RocksSP.png"           },
1269   { "sp_port_horizontal.xpos",                  "6"                     },
1270   { "sp_port_horizontal.ypos",                  "2"                     },
1271   { "sp_port_horizontal.frames",                "1"                     },
1272   { "sp_port_vertical",                         "RocksSP.png"           },
1273   { "sp_port_vertical.xpos",                    "5"                     },
1274   { "sp_port_vertical.ypos",                    "2"                     },
1275   { "sp_port_vertical.frames",                  "1"                     },
1276   { "sp_port_any",                              "RocksSP.png"           },
1277   { "sp_port_any.xpos",                         "7"                     },
1278   { "sp_port_any.ypos",                         "2"                     },
1279   { "sp_port_any.frames",                       "1"                     },
1280   { "sp_gravity_port_right",                    "RocksSP.png"           },
1281   { "sp_gravity_port_right.xpos",               "1"                     },
1282   { "sp_gravity_port_right.ypos",               "1"                     },
1283   { "sp_gravity_port_right.frames",             "1"                     },
1284   { "sp_gravity_port_right.EDITOR",             "RocksSP.png"           },
1285   { "sp_gravity_port_right.EDITOR.xpos",        "0"                     },
1286   { "sp_gravity_port_right.EDITOR.ypos",        "14"                    },
1287   { "sp_gravity_port_down",                     "RocksSP.png"           },
1288   { "sp_gravity_port_down.xpos",                "2"                     },
1289   { "sp_gravity_port_down.ypos",                "1"                     },
1290   { "sp_gravity_port_down.frames",              "1"                     },
1291   { "sp_gravity_port_down.EDITOR",              "RocksSP.png"           },
1292   { "sp_gravity_port_down.EDITOR.xpos",         "1"                     },
1293   { "sp_gravity_port_down.EDITOR.ypos",         "14"                    },
1294   { "sp_gravity_port_left",                     "RocksSP.png"           },
1295   { "sp_gravity_port_left.xpos",                "3"                     },
1296   { "sp_gravity_port_left.ypos",                "1"                     },
1297   { "sp_gravity_port_left.frames",              "1"                     },
1298   { "sp_gravity_port_left.EDITOR",              "RocksSP.png"           },
1299   { "sp_gravity_port_left.EDITOR.xpos",         "2"                     },
1300   { "sp_gravity_port_left.EDITOR.ypos",         "14"                    },
1301   { "sp_gravity_port_up",                       "RocksSP.png"           },
1302   { "sp_gravity_port_up.xpos",                  "4"                     },
1303   { "sp_gravity_port_up.ypos",                  "1"                     },
1304   { "sp_gravity_port_up.frames",                "1"                     },
1305   { "sp_gravity_port_up.EDITOR",                "RocksSP.png"           },
1306   { "sp_gravity_port_up.EDITOR.xpos",           "3"                     },
1307   { "sp_gravity_port_up.EDITOR.ypos",           "14"                    },
1308   { "sp_gravity_on_port_right",                 "RocksSP.png"           },
1309   { "sp_gravity_on_port_right.xpos",            "1"                     },
1310   { "sp_gravity_on_port_right.ypos",            "1"                     },
1311   { "sp_gravity_on_port_right.frames",          "1"                     },
1312   { "sp_gravity_on_port_right.EDITOR",          "RocksSP.png"           },
1313   { "sp_gravity_on_port_right.EDITOR.xpos",     "0"                     },
1314   { "sp_gravity_on_port_right.EDITOR.ypos",     "13"                    },
1315   { "sp_gravity_on_port_down",                  "RocksSP.png"           },
1316   { "sp_gravity_on_port_down.xpos",             "2"                     },
1317   { "sp_gravity_on_port_down.ypos",             "1"                     },
1318   { "sp_gravity_on_port_down.frames",           "1"                     },
1319   { "sp_gravity_on_port_down.EDITOR",           "RocksSP.png"           },
1320   { "sp_gravity_on_port_down.EDITOR.xpos",      "1"                     },
1321   { "sp_gravity_on_port_down.EDITOR.ypos",      "13"                    },
1322   { "sp_gravity_on_port_left",                  "RocksSP.png"           },
1323   { "sp_gravity_on_port_left.xpos",             "3"                     },
1324   { "sp_gravity_on_port_left.ypos",             "1"                     },
1325   { "sp_gravity_on_port_left.frames",           "1"                     },
1326   { "sp_gravity_on_port_left.EDITOR",           "RocksSP.png"           },
1327   { "sp_gravity_on_port_left.EDITOR.xpos",      "2"                     },
1328   { "sp_gravity_on_port_left.EDITOR.ypos",      "13"                    },
1329   { "sp_gravity_on_port_up",                    "RocksSP.png"           },
1330   { "sp_gravity_on_port_up.xpos",               "4"                     },
1331   { "sp_gravity_on_port_up.ypos",               "1"                     },
1332   { "sp_gravity_on_port_up.frames",             "1"                     },
1333   { "sp_gravity_on_port_up.EDITOR",             "RocksSP.png"           },
1334   { "sp_gravity_on_port_up.EDITOR.xpos",        "3"                     },
1335   { "sp_gravity_on_port_up.EDITOR.ypos",        "13"                    },
1336   { "sp_gravity_off_port_right",                "RocksSP.png"           },
1337   { "sp_gravity_off_port_right.xpos",           "1"                     },
1338   { "sp_gravity_off_port_right.ypos",           "1"                     },
1339   { "sp_gravity_off_port_right.frames",         "1"                     },
1340   { "sp_gravity_off_port_right.EDITOR",         "RocksSP.png"           },
1341   { "sp_gravity_off_port_right.EDITOR.xpos",    "4"                     },
1342   { "sp_gravity_off_port_right.EDITOR.ypos",    "13"                    },
1343   { "sp_gravity_off_port_down",                 "RocksSP.png"           },
1344   { "sp_gravity_off_port_down.xpos",            "2"                     },
1345   { "sp_gravity_off_port_down.ypos",            "1"                     },
1346   { "sp_gravity_off_port_down.frames",          "1"                     },
1347   { "sp_gravity_off_port_down.EDITOR",          "RocksSP.png"           },
1348   { "sp_gravity_off_port_down.EDITOR.xpos",     "5"                     },
1349   { "sp_gravity_off_port_down.EDITOR.ypos",     "13"                    },
1350   { "sp_gravity_off_port_left",                 "RocksSP.png"           },
1351   { "sp_gravity_off_port_left.xpos",            "3"                     },
1352   { "sp_gravity_off_port_left.ypos",            "1"                     },
1353   { "sp_gravity_off_port_left.frames",          "1"                     },
1354   { "sp_gravity_off_port_left.EDITOR",          "RocksSP.png"           },
1355   { "sp_gravity_off_port_left.EDITOR.xpos",     "6"                     },
1356   { "sp_gravity_off_port_left.EDITOR.ypos",     "13"                    },
1357   { "sp_gravity_off_port_up",                   "RocksSP.png"           },
1358   { "sp_gravity_off_port_up.xpos",              "4"                     },
1359   { "sp_gravity_off_port_up.ypos",              "1"                     },
1360   { "sp_gravity_off_port_up.frames",            "1"                     },
1361   { "sp_gravity_off_port_up.EDITOR",            "RocksSP.png"           },
1362   { "sp_gravity_off_port_up.EDITOR.xpos",       "7"                     },
1363   { "sp_gravity_off_port_up.EDITOR.ypos",       "13"                    },
1364
1365   { "sp_sniksnak",                              "RocksSP.png"           },
1366   { "sp_sniksnak.xpos",                         "1"                     },
1367   { "sp_sniksnak.ypos",                         "2"                     },
1368   { "sp_sniksnak.frames",                       "1"                     },
1369   { "sp_sniksnak.left",                         "RocksSP.png"           },
1370   { "sp_sniksnak.left.xpos",                    "8"                     },
1371   { "sp_sniksnak.left.ypos",                    "8"                     },
1372   { "sp_sniksnak.left.frames",                  "4"                     },
1373   { "sp_sniksnak.left.anim_mode",               "pingpong2"             },
1374   { "sp_sniksnak.right",                        "RocksSP.png"           },
1375   { "sp_sniksnak.right.xpos",                   "12"                    },
1376   { "sp_sniksnak.right.ypos",                   "8"                     },
1377   { "sp_sniksnak.right.frames",                 "4"                     },
1378   { "sp_sniksnak.right.anim_mode",              "pingpong2"             },
1379   { "sp_sniksnak.up",                           "RocksSP.png"           },
1380   { "sp_sniksnak.up.xpos",                      "8"                     },
1381   { "sp_sniksnak.up.ypos",                      "9"                     },
1382   { "sp_sniksnak.up.frames",                    "4"                     },
1383   { "sp_sniksnak.up.anim_mode",                 "pingpong2"             },
1384   { "sp_sniksnak.down",                         "RocksSP.png"           },
1385   { "sp_sniksnak.down.xpos",                    "12"                    },
1386   { "sp_sniksnak.down.ypos",                    "9"                     },
1387   { "sp_sniksnak.down.frames",                  "4"                     },
1388   { "sp_sniksnak.down.anim_mode",               "pingpong2"             },
1389   { "sp_sniksnak.turning_from_left.up",         "RocksSP.png"           },
1390   { "sp_sniksnak.turning_from_left.up.xpos",    "12"                    },
1391   { "sp_sniksnak.turning_from_left.up.ypos",    "6"                     },
1392   { "sp_sniksnak.turning_from_left.up.frames",  "2"                     },
1393   { "sp_sniksnak.turning_from_left.up.delay",   "4"                     },
1394   { "sp_sniksnak.turning_from_left.up.offset",  "1408"                  },
1395   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"               },
1396   { "sp_sniksnak.turning_from_left.down",       "RocksSP.png"           },
1397   { "sp_sniksnak.turning_from_left.down.xpos",  "13"                    },
1398   { "sp_sniksnak.turning_from_left.down.ypos",  "6"                     },
1399   { "sp_sniksnak.turning_from_left.down.frames","2"                     },
1400   { "sp_sniksnak.turning_from_left.down.delay", "4"                     },
1401   { "sp_sniksnak.turning_from_left.down.offset","1504"                  },
1402   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"             },
1403   { "sp_sniksnak.turning_from_right.up",        "RocksSP.png"           },
1404   { "sp_sniksnak.turning_from_right.up.xpos",   "15"                    },
1405   { "sp_sniksnak.turning_from_right.up.ypos",   "6"                     },
1406   { "sp_sniksnak.turning_from_right.up.frames", "2"                     },
1407   { "sp_sniksnak.turning_from_right.up.delay",  "4"                     },
1408   { "sp_sniksnak.turning_from_right.up.offset", "1312"                  },
1409   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"              },
1410   { "sp_sniksnak.turning_from_right.down",      "RocksSP.png"           },
1411   { "sp_sniksnak.turning_from_right.down.xpos", "14"                    },
1412   { "sp_sniksnak.turning_from_right.down.ypos", "6"                     },
1413   { "sp_sniksnak.turning_from_right.down.frames","2"                    },
1414   { "sp_sniksnak.turning_from_right.down.delay","4"                     },
1415   { "sp_sniksnak.turning_from_right.down.offset","1472"                 },
1416   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"            },
1417   { "sp_sniksnak.turning_from_up.left",         "RocksSP.png"           },
1418   { "sp_sniksnak.turning_from_up.left.xpos",    "12"                    },
1419   { "sp_sniksnak.turning_from_up.left.ypos",    "6"                     },
1420   { "sp_sniksnak.turning_from_up.left.frames",  "2"                     },
1421   { "sp_sniksnak.turning_from_up.left.delay",   "4"                     },
1422   { "sp_sniksnak.turning_from_up.left.offset",  "896"                   },
1423   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"               },
1424   { "sp_sniksnak.turning_from_up.right",        "RocksSP.png"           },
1425   { "sp_sniksnak.turning_from_up.right.xpos",   "15"                    },
1426   { "sp_sniksnak.turning_from_up.right.ypos",   "6"                     },
1427   { "sp_sniksnak.turning_from_up.right.frames", "2"                     },
1428   { "sp_sniksnak.turning_from_up.right.delay",  "4"                     },
1429   { "sp_sniksnak.turning_from_up.right.offset", "928"                   },
1430   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"              },
1431   { "sp_sniksnak.turning_from_down.left",       "RocksSP.png"           },
1432   { "sp_sniksnak.turning_from_down.left.xpos",  "13"                    },
1433   { "sp_sniksnak.turning_from_down.left.ypos",  "6"                     },
1434   { "sp_sniksnak.turning_from_down.left.frames","2"                     },
1435   { "sp_sniksnak.turning_from_down.left.delay", "4"                     },
1436   { "sp_sniksnak.turning_from_down.left.offset","864"                   },
1437   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"             },
1438   { "sp_sniksnak.turning_from_down.right",      "RocksSP.png"           },
1439   { "sp_sniksnak.turning_from_down.right.xpos", "14"                    },
1440   { "sp_sniksnak.turning_from_down.right.ypos", "6"                     },
1441   { "sp_sniksnak.turning_from_down.right.frames","2"                    },
1442   { "sp_sniksnak.turning_from_down.right.delay","4"                     },
1443   { "sp_sniksnak.turning_from_down.right.offset","960"                  },
1444   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"            },
1445
1446   { "sp_electron",                              "RocksSP.png"           },
1447   { "sp_electron.xpos",                         "8"                     },
1448   { "sp_electron.ypos",                         "10"                    },
1449   { "sp_electron.frames",                       "8"                     },
1450   { "sp_electron.delay",                        "4"                     },
1451   { "sp_electron.global_sync",                  "true"                  },
1452   { "sp_electron.EDITOR",                       "RocksSP.png"           },
1453   { "sp_electron.EDITOR.xpos",                  "10"                    },
1454   { "sp_electron.EDITOR.ypos",                  "11"                    },
1455   { "sp_electron.exploding",                    "RocksSP.png"           },
1456   { "sp_electron.exploding.xpos",               "8"                     },
1457   { "sp_electron.exploding.ypos",               "4"                     },
1458   { "sp_electron.exploding.frames",             "8"                     },
1459   { "sp_electron.exploding.delay",              "4"                     },
1460   { "sp_electron.exploding.anim_mode",          "linear"                },
1461
1462   { "sp_terminal",                              "RocksSP.png"           },
1463   { "sp_terminal.xpos",                         "0"                     },
1464   { "sp_terminal.ypos",                         "10"                    },
1465   { "sp_terminal.frames",                       "7"                     },
1466   { "sp_terminal.delay",                        "12"                    },
1467   { "sp_terminal.EDITOR",                       "RocksSP.png"           },
1468   { "sp_terminal.EDITOR.xpos",                  "9"                     },
1469   { "sp_terminal.EDITOR.ypos",                  "11"                    },
1470   { "sp_terminal.active",                       "RocksSP.png"           },
1471   { "sp_terminal.active.xpos",                  "0"                     },
1472   { "sp_terminal.active.ypos",                  "11"                    },
1473   { "sp_terminal.active.frames",                "7"                     },
1474   { "sp_terminal.active.delay",                 "4"                     },
1475
1476   { "sp_buggy_base",                            "RocksSP.png"           },
1477   { "sp_buggy_base.xpos",                       "1"                     },
1478   { "sp_buggy_base.ypos",                       "3"                     },
1479   { "sp_buggy_base.frames",                     "1"                     },
1480   { "sp_buggy_base.EDITOR",                     "RocksSP.png"           },
1481   { "sp_buggy_base.EDITOR.xpos",                "9"                     },
1482   { "sp_buggy_base.EDITOR.ypos",                "6"                     },
1483   { "sp_buggy_base.activating",                 "RocksSP.png"           },
1484   { "sp_buggy_base.activating.xpos",            "15"                    },
1485   { "sp_buggy_base.activating.ypos",            "2"                     },
1486   { "sp_buggy_base.activating.frames",          "1"                     },
1487   { "sp_buggy_base.active",                     "RocksSP.png"           },
1488   { "sp_buggy_base.active.xpos",                "8"                     },
1489   { "sp_buggy_base.active.ypos",                "6"                     },
1490   { "sp_buggy_base.active.frames",              "4"                     },
1491   { "sp_buggy_base.active.delay",               "4"                     },
1492   { "sp_buggy_base.active.anim_mode",           "pingpong"              },
1493
1494   { "sp_hardware_base_1",                       "RocksSP.png"           },
1495   { "sp_hardware_base_1.xpos",                  "4"                     },
1496   { "sp_hardware_base_1.ypos",                  "3"                     },
1497   { "sp_hardware_base_1.frames",                "1"                     },
1498   { "sp_hardware_base_2",                       "RocksSP.png"           },
1499   { "sp_hardware_base_2.xpos",                  "1"                     },
1500   { "sp_hardware_base_2.ypos",                  "4"                     },
1501   { "sp_hardware_base_2.frames",                "1"                     },
1502   { "sp_hardware_base_3",                       "RocksSP.png"           },
1503   { "sp_hardware_base_3.xpos",                  "2"                     },
1504   { "sp_hardware_base_3.ypos",                  "4"                     },
1505   { "sp_hardware_base_3.frames",                "1"                     },
1506   { "sp_hardware_base_4",                       "RocksSP.png"           },
1507   { "sp_hardware_base_4.xpos",                  "3"                     },
1508   { "sp_hardware_base_4.ypos",                  "4"                     },
1509   { "sp_hardware_base_4.frames",                "1"                     },
1510   { "sp_hardware_base_5",                       "RocksSP.png"           },
1511   { "sp_hardware_base_5.xpos",                  "4"                     },
1512   { "sp_hardware_base_5.ypos",                  "4"                     },
1513   { "sp_hardware_base_5.frames",                "1"                     },
1514   { "sp_hardware_base_6",                       "RocksSP.png"           },
1515   { "sp_hardware_base_6.xpos",                  "5"                     },
1516   { "sp_hardware_base_6.ypos",                  "4"                     },
1517   { "sp_hardware_base_6.frames",                "1"                     },
1518
1519   // images for Sokoban style elements and actions
1520
1521   { "sokoban_object",                           "RocksElements.png"     },
1522   { "sokoban_object.xpos",                      "9"                     },
1523   { "sokoban_object.ypos",                      "7"                     },
1524   { "sokoban_object.frames",                    "1"                     },
1525
1526   { "sokoban_field_empty",                      "RocksElements.png"     },
1527   { "sokoban_field_empty.xpos",                 "10"                    },
1528   { "sokoban_field_empty.ypos",                 "7"                     },
1529   { "sokoban_field_empty.frames",               "1"                     },
1530
1531   { "sokoban_field_full",                       "RocksElements.png"     },
1532   { "sokoban_field_full.xpos",                  "11"                    },
1533   { "sokoban_field_full.ypos",                  "7"                     },
1534   { "sokoban_field_full.frames",                "1"                     },
1535
1536   { "sokoban_field_player",                     "RocksHeroes.png"       },
1537   { "sokoban_field_player.xpos",                "0"                     },
1538   { "sokoban_field_player.ypos",                "15"                    },
1539   { "sokoban_field_player.frames",              "1"                     },
1540
1541   // images for Emerald Mine style elements and actions
1542
1543   { "empty_space",                              "RocksSP.png"           },
1544   { "empty_space.xpos",                         "0"                     },
1545   { "empty_space.ypos",                         "0"                     },
1546   { "empty_space.frames",                       "1"                     },
1547
1548   { "sand",                                     "RocksElements.png"     },
1549   { "sand.xpos",                                "0"                     },
1550   { "sand.ypos",                                "0"                     },
1551   { "sand.frames",                              "1"                     },
1552   { "sand.CRUMBLED",                            "RocksElements.png"     },
1553   { "sand.CRUMBLED.xpos",                       "1"                     },
1554   { "sand.CRUMBLED.ypos",                       "0"                     },
1555   { "sand.CRUMBLED.frames",                     "1"                     },
1556   { "sand.digging.left",                        "RocksMore.png"         },
1557   { "sand.digging.left.xpos",                   "6"                     },
1558   { "sand.digging.left.ypos",                   "3"                     },
1559   { "sand.digging.left.frames",                 "3"                     },
1560   { "sand.digging.left.delay",                  "2"                     },
1561   { "sand.digging.left.anim_mode",              "linear"                },
1562   { "sand.digging.right",                       "RocksMore.png"         },
1563   { "sand.digging.right.xpos",                  "9"                     },
1564   { "sand.digging.right.ypos",                  "3"                     },
1565   { "sand.digging.right.frames",                "3"                     },
1566   { "sand.digging.right.delay",                 "2"                     },
1567   { "sand.digging.right.anim_mode",             "linear"                },
1568   { "sand.digging.up",                          "RocksMore.png"         },
1569   { "sand.digging.up.xpos",                     "0"                     },
1570   { "sand.digging.up.ypos",                     "3"                     },
1571   { "sand.digging.up.frames",                   "3"                     },
1572   { "sand.digging.up.delay",                    "2"                     },
1573   { "sand.digging.up.anim_mode",                "linear"                },
1574   { "sand.digging.down",                        "RocksMore.png"         },
1575   { "sand.digging.down.xpos",                   "3"                     },
1576   { "sand.digging.down.ypos",                   "3"                     },
1577   { "sand.digging.down.frames",                 "3"                     },
1578   { "sand.digging.down.delay",                  "2"                     },
1579   { "sand.digging.down.anim_mode",              "linear"                },
1580   { "sand.digging.left.CRUMBLED",               "RocksMore.png"         },
1581   { "sand.digging.left.CRUMBLED.xpos",          "6"                     },
1582   { "sand.digging.left.CRUMBLED.ypos",          "0"                     },
1583   { "sand.digging.left.CRUMBLED.frames",        "3"                     },
1584   { "sand.digging.left.CRUMBLED.delay",         "2"                     },
1585   { "sand.digging.left.CRUMBLED.anim_mode",     "linear"                },
1586   { "sand.digging.right.CRUMBLED",              "RocksMore.png"         },
1587   { "sand.digging.right.CRUMBLED.xpos",         "9"                     },
1588   { "sand.digging.right.CRUMBLED.ypos",         "0"                     },
1589   { "sand.digging.right.CRUMBLED.frames",       "3"                     },
1590   { "sand.digging.right.CRUMBLED.delay",        "2"                     },
1591   { "sand.digging.right.CRUMBLED.anim_mode",    "linear"                },
1592   { "sand.digging.up.CRUMBLED",                 "RocksMore.png"         },
1593   { "sand.digging.up.CRUMBLED.xpos",            "0"                     },
1594   { "sand.digging.up.CRUMBLED.ypos",            "0"                     },
1595   { "sand.digging.up.CRUMBLED.frames",          "3"                     },
1596   { "sand.digging.up.CRUMBLED.delay",           "2"                     },
1597   { "sand.digging.up.CRUMBLED.anim_mode",       "linear"                },
1598   { "sand.digging.down.CRUMBLED",               "RocksMore.png"         },
1599   { "sand.digging.down.CRUMBLED.xpos",          "3"                     },
1600   { "sand.digging.down.CRUMBLED.ypos",          "0"                     },
1601   { "sand.digging.down.CRUMBLED.frames",        "3"                     },
1602   { "sand.digging.down.CRUMBLED.delay",         "2"                     },
1603   { "sand.digging.down.CRUMBLED.anim_mode",     "linear"                },
1604
1605   { "wall",                                     "RocksElements.png"     },
1606   { "wall.xpos",                                "5"                     },
1607   { "wall.ypos",                                "0"                     },
1608   { "wall.frames",                              "1"                     },
1609
1610   { "wall_slippery",                            "RocksElements.png"     },
1611   { "wall_slippery.xpos",                       "6"                     },
1612   { "wall_slippery.ypos",                       "0"                     },
1613   { "wall_slippery.frames",                     "1"                     },
1614
1615   { "steelwall",                                "RocksElements.png"     },
1616   { "steelwall.xpos",                           "4"                     },
1617   { "steelwall.ypos",                           "0"                     },
1618   { "steelwall.frames",                         "1"                     },
1619
1620   { "rock",                                     "RocksElements.png"     },
1621   { "rock.xpos",                                "12"                    },
1622   { "rock.ypos",                                "0"                     },
1623   { "rock.frames",                              "1"                     },
1624   { "rock.moving.left",                         "RocksElements.png"     },
1625   { "rock.moving.left.xpos",                    "12"                    },
1626   { "rock.moving.left.ypos",                    "0"                     },
1627   { "rock.moving.left.frames",                  "4"                     },
1628   { "rock.moving.left.delay",                   "2"                     },
1629   { "rock.moving.left.anim_mode",               "reverse"               },
1630   { "rock.moving.right",                        "RocksElements.png"     },
1631   { "rock.moving.right.xpos",                   "12"                    },
1632   { "rock.moving.right.ypos",                   "0"                     },
1633   { "rock.moving.right.frames",                 "4"                     },
1634   { "rock.moving.right.start_frame",            "1"                     },
1635   { "rock.moving.right.delay",                  "2"                     },
1636   { "rock.pushing.left",                        "RocksElements.png"     },
1637   { "rock.pushing.left.xpos",                   "12"                    },
1638   { "rock.pushing.left.ypos",                   "0"                     },
1639   { "rock.pushing.left.frames",                 "4"                     },
1640   { "rock.pushing.left.delay",                  "2"                     },
1641   { "rock.pushing.left.anim_mode",              "reverse"               },
1642   { "rock.pushing.right",                       "RocksElements.png"     },
1643   { "rock.pushing.right.xpos",                  "12"                    },
1644   { "rock.pushing.right.ypos",                  "0"                     },
1645   { "rock.pushing.right.frames",                "4"                     },
1646   { "rock.pushing.right.start_frame",           "1"                     },
1647   { "rock.pushing.right.delay",                 "2"                     },
1648
1649   { "emerald",                                  "RocksElements.png"     },
1650   { "emerald.xpos",                             "8"                     },
1651   { "emerald.ypos",                             "0"                     },
1652   { "emerald.frames",                           "1"                     },
1653   { "emerald.moving",                           "RocksElements.png"     },
1654   { "emerald.moving.xpos",                      "8"                     },
1655   { "emerald.moving.ypos",                      "0"                     },
1656   { "emerald.moving.frames",                    "2"                     },
1657   { "emerald.moving.delay",                     "4"                     },
1658   { "emerald.falling",                          "RocksElements.png"     },
1659   { "emerald.falling.xpos",                     "8"                     },
1660   { "emerald.falling.ypos",                     "0"                     },
1661   { "emerald.falling.frames",                   "2"                     },
1662   { "emerald.falling.delay",                    "4"                     },
1663   { "emerald.collecting",                       "RocksCollect.png"      },
1664   { "emerald.collecting.xpos",                  "0"                     },
1665   { "emerald.collecting.ypos",                  "0"                     },
1666   { "emerald.collecting.frames",                "7"                     },
1667   { "emerald.collecting.anim_mode",             "linear"                },
1668
1669   { "diamond",                                  "RocksElements.png"     },
1670   { "diamond.xpos",                             "10"                    },
1671   { "diamond.ypos",                             "0"                     },
1672   { "diamond.frames",                           "1"                     },
1673   { "diamond.moving",                           "RocksElements.png"     },
1674   { "diamond.moving.xpos",                      "10"                    },
1675   { "diamond.moving.ypos",                      "0"                     },
1676   { "diamond.moving.frames",                    "2"                     },
1677   { "diamond.moving.delay",                     "4"                     },
1678   { "diamond.falling",                          "RocksElements.png"     },
1679   { "diamond.falling.xpos",                     "10"                    },
1680   { "diamond.falling.ypos",                     "0"                     },
1681   { "diamond.falling.frames",                   "2"                     },
1682   { "diamond.falling.delay",                    "4"                     },
1683   { "diamond.collecting",                       "RocksCollect.png"      },
1684   { "diamond.collecting.xpos",                  "0"                     },
1685   { "diamond.collecting.ypos",                  "1"                     },
1686   { "diamond.collecting.frames",                "7"                     },
1687   { "diamond.collecting.anim_mode",             "linear"                },
1688
1689   { "bomb",                                     "RocksElements.png"     },
1690   { "bomb.xpos",                                "11"                    },
1691   { "bomb.ypos",                                "1"                     },
1692   { "bomb.frames",                              "1"                     },
1693
1694   { "nut",                                      "RocksElements.png"     },
1695   { "nut.xpos",                                 "12"                    },
1696   { "nut.ypos",                                 "1"                     },
1697   { "nut.frames",                               "1"                     },
1698   { "nut.breaking",                             "RocksElements.png"     },
1699   { "nut.breaking.xpos",                        "13"                    },
1700   { "nut.breaking.ypos",                        "1"                     },
1701   { "nut.breaking.frames",                      "3"                     },
1702   { "nut.breaking.delay",                       "2"                     },
1703   { "nut.breaking.anim_mode",                   "linear"                },
1704
1705   { "dynamite",                                 "RocksElements.png"     },
1706   { "dynamite.xpos",                            "0"                     },
1707   { "dynamite.ypos",                            "3"                     },
1708   { "dynamite.frames",                          "1"                     },
1709   { "dynamite.active",                          "RocksElements.png"     },
1710   { "dynamite.active.xpos",                     "1"                     },
1711   { "dynamite.active.ypos",                     "3"                     },
1712   { "dynamite.active.frames",                   "7"                     },
1713   { "dynamite.active.delay",                    "12"                    },
1714   { "dynamite.active.anim_mode",                "linear"                },
1715   { "dynamite.collecting",                      "RocksCollect.png"      },
1716   { "dynamite.collecting.xpos",                 "0"                     },
1717   { "dynamite.collecting.ypos",                 "7"                     },
1718   { "dynamite.collecting.frames",               "7"                     },
1719   { "dynamite.collecting.anim_mode",            "linear"                },
1720
1721   { "em_dynamite",                              "RocksEMC.png"          },
1722   { "em_dynamite.xpos",                         "0"                     },
1723   { "em_dynamite.ypos",                         "15"                    },
1724   { "em_dynamite.frames",                       "1"                     },
1725   { "em_dynamite.active",                       "RocksEMC.png"          },
1726   { "em_dynamite.active.xpos",                  "1"                     },
1727   { "em_dynamite.active.ypos",                  "15"                    },
1728   { "em_dynamite.active.frames",                "4"                     },
1729   { "em_dynamite.active.delay",                 "8"                     },
1730   { "em_dynamite.active.anim_mode",             "linear"                },
1731   { "em_dynamite.active.EDITOR",                "RocksEMC.png"          },
1732   { "em_dynamite.active.EDITOR.xpos",           "2"                     },
1733   { "em_dynamite.active.EDITOR.ypos",           "15"                    },
1734   { "em_dynamite.collecting",                   "RocksCollect.png"      },
1735   { "em_dynamite.collecting.xpos",              "0"                     },
1736   { "em_dynamite.collecting.ypos",              "15"                    },
1737   { "em_dynamite.collecting.frames",            "7"                     },
1738   { "em_dynamite.collecting.anim_mode",         "linear"                },
1739
1740   { "wall_emerald",                             "RocksElements.png"     },
1741   { "wall_emerald.xpos",                        "4"                     },
1742   { "wall_emerald.ypos",                        "8"                     },
1743   { "wall_emerald.frames",                      "1"                     },
1744
1745   { "wall_diamond",                             "RocksElements.png"     },
1746   { "wall_diamond.xpos",                        "5"                     },
1747   { "wall_diamond.ypos",                        "8"                     },
1748   { "wall_diamond.frames",                      "1"                     },
1749
1750   { "bug",                                      "RocksElements.png"     },
1751   { "bug.xpos",                                 "8"                     },
1752   { "bug.ypos",                                 "4"                     },
1753   { "bug.frames",                               "4"                     },
1754   { "bug.delay",                                "8"                     },
1755   { "bug.right",                                "RocksElements.png"     },
1756   { "bug.right.xpos",                           "8"                     },
1757   { "bug.right.ypos",                           "4"                     },
1758   { "bug.right.frames",                         "1"                     },
1759   { "bug.up",                                   "RocksElements.png"     },
1760   { "bug.up.xpos",                              "9"                     },
1761   { "bug.up.ypos",                              "4"                     },
1762   { "bug.up.frames",                            "1"                     },
1763   { "bug.left",                                 "RocksElements.png"     },
1764   { "bug.left.xpos",                            "10"                    },
1765   { "bug.left.ypos",                            "4"                     },
1766   { "bug.left.frames",                          "1"                     },
1767   { "bug.down",                                 "RocksElements.png"     },
1768   { "bug.down.xpos",                            "11"                    },
1769   { "bug.down.ypos",                            "4"                     },
1770   { "bug.down.frames",                          "1"                     },
1771   { "bug.moving.right",                         "RocksElements.png"     },
1772   { "bug.moving.right.xpos",                    "8"                     },
1773   { "bug.moving.right.ypos",                    "4"                     },
1774   { "bug.moving.right.frames",                  "2"                     },
1775   { "bug.moving.right.delay",                   "4"                     },
1776   { "bug.moving.right.offset",                  "128"                   },
1777   { "bug.moving.up",                            "RocksElements.png"     },
1778   { "bug.moving.up.xpos",                       "9"                     },
1779   { "bug.moving.up.ypos",                       "4"                     },
1780   { "bug.moving.up.frames",                     "2"                     },
1781   { "bug.moving.up.delay",                      "4"                     },
1782   { "bug.moving.up.offset",                     "128"                   },
1783   { "bug.moving.left",                          "RocksElements.png"     },
1784   { "bug.moving.left.xpos",                     "10"                    },
1785   { "bug.moving.left.ypos",                     "4"                     },
1786   { "bug.moving.left.frames",                   "2"                     },
1787   { "bug.moving.left.delay",                    "4"                     },
1788   { "bug.moving.left.offset",                   "128"                   },
1789   { "bug.moving.down",                          "RocksElements.png"     },
1790   { "bug.moving.down.xpos",                     "11"                    },
1791   { "bug.moving.down.ypos",                     "4"                     },
1792   { "bug.moving.down.frames",                   "2"                     },
1793   { "bug.moving.down.delay",                    "4"                     },
1794   { "bug.moving.down.offset",                   "128"                   },
1795   { "bug.turning_from_right.up",                "RocksMore.png"         },
1796   { "bug.turning_from_right.up.xpos",           "0"                     },
1797   { "bug.turning_from_right.up.ypos",           "6"                     },
1798   { "bug.turning_from_right.up.frames",         "4"                     },
1799   { "bug.turning_from_right.up.delay",          "2"                     },
1800   { "bug.turning_from_right.up.anim_mode",      "linear,reverse"        },
1801   { "bug.turning_from_up.left",                 "RocksMore.png"         },
1802   { "bug.turning_from_up.left.xpos",            "12"                    },
1803   { "bug.turning_from_up.left.ypos",            "6"                     },
1804   { "bug.turning_from_up.left.frames",          "4"                     },
1805   { "bug.turning_from_up.left.delay",           "2"                     },
1806   { "bug.turning_from_up.left.anim_mode",       "linear,reverse"        },
1807   { "bug.turning_from_left.down",               "RocksMore.png"         },
1808   { "bug.turning_from_left.down.xpos",          "8"                     },
1809   { "bug.turning_from_left.down.ypos",          "6"                     },
1810   { "bug.turning_from_left.down.frames",        "4"                     },
1811   { "bug.turning_from_left.down.delay",         "2"                     },
1812   { "bug.turning_from_left.down.anim_mode",     "linear,reverse"        },
1813   { "bug.turning_from_down.right",              "RocksMore.png"         },
1814   { "bug.turning_from_down.right.xpos",         "4"                     },
1815   { "bug.turning_from_down.right.ypos",         "6"                     },
1816   { "bug.turning_from_down.right.frames",       "4"                     },
1817   { "bug.turning_from_down.right.delay",        "2"                     },
1818   { "bug.turning_from_down.right.anim_mode",    "linear,reverse"        },
1819   { "bug.turning_from_right.down",              "RocksMore.png"         },
1820   { "bug.turning_from_right.down.xpos",         "5"                     },
1821   { "bug.turning_from_right.down.ypos",         "6"                     },
1822   { "bug.turning_from_right.down.frames",       "4"                     },
1823   { "bug.turning_from_right.down.delay",        "2"                     },
1824   { "bug.turning_from_right.down.anim_mode",    "linear"                },
1825   { "bug.turning_from_up.right",                "RocksMore.png"         },
1826   { "bug.turning_from_up.right.xpos",           "1"                     },
1827   { "bug.turning_from_up.right.ypos",           "6"                     },
1828   { "bug.turning_from_up.right.frames",         "4"                     },
1829   { "bug.turning_from_up.right.delay",          "2"                     },
1830   { "bug.turning_from_up.right.anim_mode",      "linear"                },
1831   { "bug.turning_from_left.up",                 "RocksMore.png"         },
1832   { "bug.turning_from_left.up.xpos",            "13"                    },
1833   { "bug.turning_from_left.up.ypos",            "6"                     },
1834   { "bug.turning_from_left.up.frames",          "4"                     },
1835   { "bug.turning_from_left.up.delay",           "2"                     },
1836   { "bug.turning_from_left.up.anim_mode",       "linear"                },
1837   { "bug.turning_from_down.left",               "RocksMore.png"         },
1838   { "bug.turning_from_down.left.xpos",          "9"                     },
1839   { "bug.turning_from_down.left.ypos",          "6"                     },
1840   { "bug.turning_from_down.left.frames",        "4"                     },
1841   { "bug.turning_from_down.left.delay",         "2"                     },
1842   { "bug.turning_from_down.left.anim_mode",     "linear"                },
1843
1844   { "spaceship",                                "RocksElements.png"     },
1845   { "spaceship.xpos",                           "8"                     },
1846   { "spaceship.ypos",                           "3"                     },
1847   { "spaceship.frames",                         "4"                     },
1848   { "spaceship.delay",                          "8"                     },
1849   { "spaceship.right",                          "RocksElements.png"     },
1850   { "spaceship.right.xpos",                     "8"                     },
1851   { "spaceship.right.ypos",                     "3"                     },
1852   { "spaceship.right.frames",                   "1"                     },
1853   { "spaceship.up",                             "RocksElements.png"     },
1854   { "spaceship.up.xpos",                        "9"                     },
1855   { "spaceship.up.ypos",                        "3"                     },
1856   { "spaceship.up.frames",                      "1"                     },
1857   { "spaceship.left",                           "RocksElements.png"     },
1858   { "spaceship.left.xpos",                      "10"                    },
1859   { "spaceship.left.ypos",                      "3"                     },
1860   { "spaceship.left.frames",                    "1"                     },
1861   { "spaceship.down",                           "RocksElements.png"     },
1862   { "spaceship.down.xpos",                      "11"                    },
1863   { "spaceship.down.ypos",                      "3"                     },
1864   { "spaceship.down.frames",                    "1"                     },
1865   { "spaceship.moving.right",                   "RocksElements.png"     },
1866   { "spaceship.moving.right.xpos",              "8"                     },
1867   { "spaceship.moving.right.ypos",              "3"                     },
1868   { "spaceship.moving.right.frames",            "2"                     },
1869   { "spaceship.moving.right.delay",             "4"                     },
1870   { "spaceship.moving.right.offset",            "128"                   },
1871   { "spaceship.moving.up",                      "RocksElements.png"     },
1872   { "spaceship.moving.up.xpos",                 "9"                     },
1873   { "spaceship.moving.up.ypos",                 "3"                     },
1874   { "spaceship.moving.up.frames",               "2"                     },
1875   { "spaceship.moving.up.delay",                "4"                     },
1876   { "spaceship.moving.up.offset",               "128"                   },
1877   { "spaceship.moving.left",                    "RocksElements.png"     },
1878   { "spaceship.moving.left.xpos",               "10"                    },
1879   { "spaceship.moving.left.ypos",               "3"                     },
1880   { "spaceship.moving.left.frames",             "2"                     },
1881   { "spaceship.moving.left.delay",              "4"                     },
1882   { "spaceship.moving.left.offset",             "128"                   },
1883   { "spaceship.moving.down",                    "RocksElements.png"     },
1884   { "spaceship.moving.down.xpos",               "11"                    },
1885   { "spaceship.moving.down.ypos",               "3"                     },
1886   { "spaceship.moving.down.frames",             "2"                     },
1887   { "spaceship.moving.down.delay",              "4"                     },
1888   { "spaceship.moving.down.offset",             "128"                   },
1889   { "spaceship.turning_from_right.up",          "RocksMore.png"         },
1890   { "spaceship.turning_from_right.up.xpos",     "0"                     },
1891   { "spaceship.turning_from_right.up.ypos",     "5"                     },
1892   { "spaceship.turning_from_right.up.frames",   "4"                     },
1893   { "spaceship.turning_from_right.up.delay",    "2"                     },
1894   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"        },
1895   { "spaceship.turning_from_up.left",           "RocksMore.png"         },
1896   { "spaceship.turning_from_up.left.xpos",      "12"                    },
1897   { "spaceship.turning_from_up.left.ypos",      "5"                     },
1898   { "spaceship.turning_from_up.left.frames",    "4"                     },
1899   { "spaceship.turning_from_up.left.delay",     "2"                     },
1900   { "spaceship.turning_from_up.left.anim_mode", "linear,reverse"        },
1901   { "spaceship.turning_from_left.down",         "RocksMore.png"         },
1902   { "spaceship.turning_from_left.down.xpos",    "8"                     },
1903   { "spaceship.turning_from_left.down.ypos",    "5"                     },
1904   { "spaceship.turning_from_left.down.frames",  "4"                     },
1905   { "spaceship.turning_from_left.down.delay",   "2"                     },
1906   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"       },
1907   { "spaceship.turning_from_down.right",        "RocksMore.png"         },
1908   { "spaceship.turning_from_down.right.xpos",   "4"                     },
1909   { "spaceship.turning_from_down.right.ypos",   "5"                     },
1910   { "spaceship.turning_from_down.right.frames", "4"                     },
1911   { "spaceship.turning_from_down.right.delay",  "2"                     },
1912   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"      },
1913   { "spaceship.turning_from_right.down",        "RocksMore.png"         },
1914   { "spaceship.turning_from_right.down.xpos",   "5"                     },
1915   { "spaceship.turning_from_right.down.ypos",   "5"                     },
1916   { "spaceship.turning_from_right.down.frames", "4"                     },
1917   { "spaceship.turning_from_right.down.delay",  "2"                     },
1918   { "spaceship.turning_from_right.down.anim_mode","linear"              },
1919   { "spaceship.turning_from_up.right",          "RocksMore.png"         },
1920   { "spaceship.turning_from_up.right.xpos",     "1"                     },
1921   { "spaceship.turning_from_up.right.ypos",     "5"                     },
1922   { "spaceship.turning_from_up.right.frames",   "4"                     },
1923   { "spaceship.turning_from_up.right.delay",    "2"                     },
1924   { "spaceship.turning_from_up.right.anim_mode","linear"                },
1925   { "spaceship.turning_from_left.up",           "RocksMore.png"         },
1926   { "spaceship.turning_from_left.up.xpos",      "13"                    },
1927   { "spaceship.turning_from_left.up.ypos",      "5"                     },
1928   { "spaceship.turning_from_left.up.frames",    "4"                     },
1929   { "spaceship.turning_from_left.up.delay",     "2"                     },
1930   { "spaceship.turning_from_left.up.anim_mode", "linear"                },
1931   { "spaceship.turning_from_down.left",         "RocksMore.png"         },
1932   { "spaceship.turning_from_down.left.xpos",    "9"                     },
1933   { "spaceship.turning_from_down.left.ypos",    "5"                     },
1934   { "spaceship.turning_from_down.left.frames",  "4"                     },
1935   { "spaceship.turning_from_down.left.delay",   "2"                     },
1936   { "spaceship.turning_from_down.left.anim_mode","linear"               },
1937
1938   { "yamyam",                                   "RocksElements.png"     },
1939   { "yamyam.xpos",                              "0"                     },
1940   { "yamyam.ypos",                              "5"                     },
1941   { "yamyam.frames",                            "4"                     },
1942   { "yamyam.anim_mode",                         "pingpong2"             },
1943   { "yamyam.left",                              "RocksElements.png"     },
1944   { "yamyam.left.xpos",                         "0"                     },
1945   { "yamyam.left.ypos",                         "5"                     },
1946   { "yamyam.left.frames",                       "4"                     },
1947   { "yamyam.left.anim_mode",                    "pingpong2"             },
1948   { "yamyam.left.EDITOR",                       "RocksEMC.png"          },
1949   { "yamyam.left.EDITOR.xpos",                  "7"                     },
1950   { "yamyam.left.EDITOR.ypos",                  "15"                    },
1951   { "yamyam.right",                             "RocksElements.png"     },
1952   { "yamyam.right.xpos",                        "0"                     },
1953   { "yamyam.right.ypos",                        "5"                     },
1954   { "yamyam.right.frames",                      "4"                     },
1955   { "yamyam.right.anim_mode",                   "pingpong2"             },
1956   { "yamyam.right.EDITOR",                      "RocksEMC.png"          },
1957   { "yamyam.right.EDITOR.xpos",                 "8"                     },
1958   { "yamyam.right.EDITOR.ypos",                 "15"                    },
1959   { "yamyam.up",                                "RocksElements.png"     },
1960   { "yamyam.up.xpos",                           "0"                     },
1961   { "yamyam.up.ypos",                           "5"                     },
1962   { "yamyam.up.frames",                         "4"                     },
1963   { "yamyam.up.anim_mode",                      "pingpong2"             },
1964   { "yamyam.up.EDITOR",                         "RocksEMC.png"          },
1965   { "yamyam.up.EDITOR.xpos",                    "5"                     },
1966   { "yamyam.up.EDITOR.ypos",                    "15"                    },
1967   { "yamyam.down",                              "RocksElements.png"     },
1968   { "yamyam.down.xpos",                         "0"                     },
1969   { "yamyam.down.ypos",                         "5"                     },
1970   { "yamyam.down.frames",                       "4"                     },
1971   { "yamyam.down.anim_mode",                    "pingpong2"             },
1972   { "yamyam.down.EDITOR",                       "RocksEMC.png"          },
1973   { "yamyam.down.EDITOR.xpos",                  "6"                     },
1974   { "yamyam.down.EDITOR.ypos",                  "15"                    },
1975   { "yamyam.moving",                            "RocksElements.png"     },
1976   { "yamyam.moving.xpos",                       "0"                     },
1977   { "yamyam.moving.ypos",                       "5"                     },
1978   { "yamyam.moving.frames",                     "1"                     },
1979
1980   { "robot",                                    "RocksElements.png"     },
1981   { "robot.xpos",                               "4"                     },
1982   { "robot.ypos",                               "5"                     },
1983   { "robot.frames",                             "4"                     },
1984   { "robot.anim_mode",                          "pingpong2"             },
1985   { "robot.moving",                             "RocksElements.png"     },
1986   { "robot.moving.xpos",                        "4"                     },
1987   { "robot.moving.ypos",                        "5"                     },
1988   { "robot.moving.frames",                      "1"                     },
1989
1990   { "robot_wheel",                              "RocksElements.png"     },
1991   { "robot_wheel.xpos",                         "0"                     },
1992   { "robot_wheel.ypos",                         "6"                     },
1993   { "robot_wheel.frames",                       "1"                     },
1994   { "robot_wheel.active",                       "RocksElements.png"     },
1995   { "robot_wheel.active.xpos",                  "0"                     },
1996   { "robot_wheel.active.ypos",                  "6"                     },
1997   { "robot_wheel.active.frames",                "4"                     },
1998
1999   { "magic_wall",                               "RocksElements.png"     },
2000   { "magic_wall.xpos",                          "0"                     },
2001   { "magic_wall.ypos",                          "8"                     },
2002   { "magic_wall.frames",                        "1"                     },
2003   { "magic_wall.active",                        "RocksElements.png"     },
2004   { "magic_wall.active.xpos",                   "0"                     },
2005   { "magic_wall.active.ypos",                   "8"                     },
2006   { "magic_wall.active.frames",                 "4"                     },
2007   { "magic_wall.active.anim_mode",              "reverse"               },
2008   { "magic_wall.active.delay",                  "4"                     },
2009   { "magic_wall.active.global_sync",            "true"                  },
2010   { "magic_wall.filling",                       "RocksElements.png"     },
2011   { "magic_wall.filling.xpos",                  "0"                     },
2012   { "magic_wall.filling.ypos",                  "8"                     },
2013   { "magic_wall.filling.frames",                "4"                     },
2014   { "magic_wall.filling.anim_mode",             "reverse"               },
2015   { "magic_wall.filling.delay",                 "4"                     },
2016   { "magic_wall.filling.global_sync",           "true"                  },
2017   { "magic_wall_full",                          "RocksElements.png"     },
2018   { "magic_wall_full.xpos",                     "0"                     },
2019   { "magic_wall_full.ypos",                     "8"                     },
2020   { "magic_wall_full.frames",                   "4"                     },
2021   { "magic_wall_full.anim_mode",                "reverse"               },
2022   { "magic_wall_full.delay",                    "4"                     },
2023   { "magic_wall_full.global_sync",              "true"                  },
2024   { "magic_wall.emptying",                      "RocksElements.png"     },
2025   { "magic_wall.emptying.xpos",                 "0"                     },
2026   { "magic_wall.emptying.ypos",                 "8"                     },
2027   { "magic_wall.emptying.frames",               "4"                     },
2028   { "magic_wall.emptying.anim_mode",            "reverse"               },
2029   { "magic_wall.emptying.delay",                "4"                     },
2030   { "magic_wall.emptying.global_sync",          "true"                  },
2031   { "magic_wall_dead",                          "RocksElements.png"     },
2032   { "magic_wall_dead.xpos",                     "0"                     },
2033   { "magic_wall_dead.ypos",                     "8"                     },
2034   { "magic_wall_dead.frames",                   "1"                     },
2035
2036   { "dc_magic_wall",                            "RocksDC2.png"          },
2037   { "dc_magic_wall.xpos",                       "0"                     },
2038   { "dc_magic_wall.ypos",                       "3"                     },
2039   { "dc_magic_wall.frames",                     "1"                     },
2040   { "dc_magic_wall.active",                     "RocksDC2.png"          },
2041   { "dc_magic_wall.active.xpos",                "0"                     },
2042   { "dc_magic_wall.active.ypos",                "3"                     },
2043   { "dc_magic_wall.active.frames",              "4"                     },
2044   { "dc_magic_wall.active.anim_mode",           "reverse"               },
2045   { "dc_magic_wall.active.delay",               "4"                     },
2046   { "dc_magic_wall.active.global_sync",         "true"                  },
2047   { "dc_magic_wall.filling",                    "RocksDC2.png"          },
2048   { "dc_magic_wall.filling.xpos",               "0"                     },
2049   { "dc_magic_wall.filling.ypos",               "3"                     },
2050   { "dc_magic_wall.filling.frames",             "4"                     },
2051   { "dc_magic_wall.filling.anim_mode",          "reverse"               },
2052   { "dc_magic_wall.filling.delay",              "4"                     },
2053   { "dc_magic_wall.filling.global_sync",        "true"                  },
2054   { "dc_magic_wall_full",                       "RocksDC2.png"          },
2055   { "dc_magic_wall_full.xpos",                  "0"                     },
2056   { "dc_magic_wall_full.ypos",                  "3"                     },
2057   { "dc_magic_wall_full.frames",                "4"                     },
2058   { "dc_magic_wall_full.anim_mode",             "reverse"               },
2059   { "dc_magic_wall_full.delay",                 "4"                     },
2060   { "dc_magic_wall_full.global_sync",           "true"                  },
2061   { "dc_magic_wall.emptying",                   "RocksDC2.png"          },
2062   { "dc_magic_wall.emptying.xpos",              "0"                     },
2063   { "dc_magic_wall.emptying.ypos",              "3"                     },
2064   { "dc_magic_wall.emptying.frames",            "4"                     },
2065   { "dc_magic_wall.emptying.anim_mode",         "reverse"               },
2066   { "dc_magic_wall.emptying.delay",             "4"                     },
2067   { "dc_magic_wall.emptying.global_sync",       "true"                  },
2068   { "dc_magic_wall_dead",                       "RocksDC2.png"          },
2069   { "dc_magic_wall_dead.xpos",                  "0"                     },
2070   { "dc_magic_wall_dead.ypos",                  "3"                     },
2071   { "dc_magic_wall_dead.frames",                "1"                     },
2072
2073   { "quicksand_empty",                          "RocksElements.png"     },
2074   { "quicksand_empty.xpos",                     "2"                     },
2075   { "quicksand_empty.ypos",                     "0"                     },
2076   { "quicksand_empty.frames",                   "1"                     },
2077   { "quicksand.filling",                        "RocksElements.png"     },
2078   { "quicksand.filling.xpos",                   "3"                     },
2079   { "quicksand.filling.ypos",                   "0"                     },
2080   { "quicksand.filling.frames",                 "1"                     },
2081   { "quicksand_full",                           "RocksElements.png"     },
2082   { "quicksand_full.xpos",                      "3"                     },
2083   { "quicksand_full.ypos",                      "0"                     },
2084   { "quicksand_full.frames",                    "1"                     },
2085   { "quicksand_full.EDITOR",                    "RocksElements.png"     },
2086   { "quicksand_full.EDITOR.xpos",               "3"                     },
2087   { "quicksand_full.EDITOR.ypos",               "14"                    },
2088   { "quicksand.emptying",                       "RocksElements.png"     },
2089   { "quicksand.emptying.xpos",                  "3"                     },
2090   { "quicksand.emptying.ypos",                  "0"                     },
2091   { "quicksand.emptying.frames",                "1"                     },
2092
2093   { "quicksand_fast_empty",                     "RocksDC2.png"          },
2094   { "quicksand_fast_empty.xpos",                "4"                     },
2095   { "quicksand_fast_empty.ypos",                "3"                     },
2096   { "quicksand_fast_empty.frames",              "1"                     },
2097   { "quicksand_fast.filling",                   "RocksDC2.png"          },
2098   { "quicksand_fast.filling.xpos",              "4"                     },
2099   { "quicksand_fast.filling.ypos",              "3"                     },
2100   { "quicksand_fast.filling.frames",            "1"                     },
2101   { "quicksand_fast_full",                      "RocksDC2.png"          },
2102   { "quicksand_fast_full.xpos",                 "4"                     },
2103   { "quicksand_fast_full.ypos",                 "3"                     },
2104   { "quicksand_fast_full.frames",               "1"                     },
2105   { "quicksand_fast_full.EDITOR",               "RocksDC2.png"          },
2106   { "quicksand_fast_full.EDITOR.xpos",          "5"                     },
2107   { "quicksand_fast_full.EDITOR.ypos",          "3"                     },
2108   { "quicksand_fast.emptying",                  "RocksDC2.png"          },
2109   { "quicksand_fast.emptying.xpos",             "4"                     },
2110   { "quicksand_fast.emptying.ypos",             "3"                     },
2111   { "quicksand_fast.emptying.frames",           "1"                     },
2112
2113   { "acid_pool_topleft",                        "RocksElements.png"     },
2114   { "acid_pool_topleft.xpos",                   "0"                     },
2115   { "acid_pool_topleft.ypos",                   "1"                     },
2116   { "acid_pool_topleft.frames",                 "1"                     },
2117   { "acid_pool_topright",                       "RocksElements.png"     },
2118   { "acid_pool_topright.xpos",                  "2"                     },
2119   { "acid_pool_topright.ypos",                  "1"                     },
2120   { "acid_pool_topright.frames",                "1"                     },
2121   { "acid_pool_bottomleft",                     "RocksElements.png"     },
2122   { "acid_pool_bottomleft.xpos",                "0"                     },
2123   { "acid_pool_bottomleft.ypos",                "2"                     },
2124   { "acid_pool_bottomleft.frames",              "1"                     },
2125   { "acid_pool_bottom",                         "RocksElements.png"     },
2126   { "acid_pool_bottom.xpos",                    "1"                     },
2127   { "acid_pool_bottom.ypos",                    "2"                     },
2128   { "acid_pool_bottom.frames",                  "1"                     },
2129   { "acid_pool_bottomright",                    "RocksElements.png"     },
2130   { "acid_pool_bottomright.xpos",               "2"                     },
2131   { "acid_pool_bottomright.ypos",               "2"                     },
2132   { "acid_pool_bottomright.frames",             "1"                     },
2133
2134   { "acid",                                     "RocksElements.png"     },
2135   { "acid.xpos",                                "12"                    },
2136   { "acid.ypos",                                "7"                     },
2137   { "acid.frames",                              "4"                     },
2138   { "acid.delay",                               "10"                    },
2139   { "acid.global_sync",                         "true"                  },
2140
2141   { "acid_splash_left",                         "RocksHeroes.png"       },
2142   { "acid_splash_left.xpos",                    "8"                     },
2143   { "acid_splash_left.ypos",                    "10"                    },
2144   { "acid_splash_left.frames",                  "4"                     },
2145   { "acid_splash_left.delay",                   "2"                     },
2146   { "acid_splash_left.anim_mode",               "linear"                },
2147   { "acid_splash_right",                        "RocksHeroes.png"       },
2148   { "acid_splash_right.xpos",                   "12"                    },
2149   { "acid_splash_right.ypos",                   "10"                    },
2150   { "acid_splash_right.frames",                 "4"                     },
2151   { "acid_splash_right.delay",                  "2"                     },
2152   { "acid_splash_right.anim_mode",              "linear"                },
2153
2154   { "amoeba_drop",                              "RocksElements.png"     },
2155   { "amoeba_drop.xpos",                         "5"                     },
2156   { "amoeba_drop.ypos",                         "6"                     },
2157   { "amoeba_drop.frames",                       "1"                     },
2158   { "amoeba.growing",                           "RocksElements.png"     },
2159   { "amoeba.growing.xpos",                      "5"                     },
2160   { "amoeba.growing.ypos",                      "6"                     },
2161   { "amoeba.growing.frames",                    "3"                     },
2162   { "amoeba.growing.delay",                     "2"                     },
2163   { "amoeba.growing.anim_mode",                 "linear"                },
2164   { "amoeba.shrinking",                         "RocksElements.png"     },
2165   { "amoeba.shrinking.xpos",                    "5"                     },
2166   { "amoeba.shrinking.ypos",                    "6"                     },
2167   { "amoeba.shrinking.frames",                  "3"                     },
2168   { "amoeba.shrinking.delay",                   "2"                     },
2169   { "amoeba.shrinking.anim_mode",               "linear,reverse"        },
2170   { "amoeba_wet",                               "RocksElements.png"     },
2171   { "amoeba_wet.xpos",                          "8"                     },
2172   { "amoeba_wet.ypos",                          "6"                     },
2173   { "amoeba_wet.frames",                        "4"                     },
2174   { "amoeba_wet.anim_mode",                     "random_static"         },
2175   { "amoeba_wet.EDITOR",                        "RocksElements.png"     },
2176   { "amoeba_wet.EDITOR.xpos",                   "4"                     },
2177   { "amoeba_wet.EDITOR.ypos",                   "6"                     },
2178   { "amoeba.dropping",                          "RocksElements.png"     },
2179   { "amoeba.dropping.xpos",                     "8"                     },
2180   { "amoeba.dropping.ypos",                     "6"                     },
2181   { "amoeba.dropping.frames",                   "4"                     },
2182   { "amoeba.dropping.anim_mode",                "random_static"         },
2183   { "amoeba_dry",                               "RocksElements.png"     },
2184   { "amoeba_dry.xpos",                          "8"                     },
2185   { "amoeba_dry.ypos",                          "6"                     },
2186   { "amoeba_dry.frames",                        "4"                     },
2187   { "amoeba_dry.anim_mode",                     "random_static"         },
2188   { "amoeba_full",                              "RocksElements.png"     },
2189   { "amoeba_full.xpos",                         "8"                     },
2190   { "amoeba_full.ypos",                         "6"                     },
2191   { "amoeba_full.frames",                       "4"                     },
2192   { "amoeba_full.anim_mode",                    "random_static"         },
2193   { "amoeba_full.EDITOR",                       "RocksElements.png"     },
2194   { "amoeba_full.EDITOR.xpos",                  "8"                     },
2195   { "amoeba_full.EDITOR.ypos",                  "7"                     },
2196   { "amoeba_dead",                              "RocksElements.png"     },
2197   { "amoeba_dead.xpos",                         "12"                    },
2198   { "amoeba_dead.ypos",                         "6"                     },
2199   { "amoeba_dead.frames",                       "4"                     },
2200   { "amoeba_dead.anim_mode",                    "random_static"         },
2201   { "amoeba_dead.EDITOR",                       "RocksElements.png"     },
2202   { "amoeba_dead.EDITOR.xpos",                  "12"                    },
2203   { "amoeba_dead.EDITOR.ypos",                  "6"                     },
2204
2205   { "em_key_1",                                 "RocksSP.png"           },
2206   { "em_key_1.xpos",                            "4"                     },
2207   { "em_key_1.ypos",                            "6"                     },
2208   { "em_key_1.frames",                          "1"                     },
2209   { "em_key_1.collecting",                      "RocksCollect.png"      },
2210   { "em_key_1.collecting.xpos",                 "7"                     },
2211   { "em_key_1.collecting.ypos",                 "4"                     },
2212   { "em_key_1.collecting.frames",               "7"                     },
2213   { "em_key_1.collecting.anim_mode",            "linear"                },
2214   { "em_key_2",                                 "RocksSP.png"           },
2215   { "em_key_2.xpos",                            "5"                     },
2216   { "em_key_2.ypos",                            "6"                     },
2217   { "em_key_2.frames",                          "1"                     },
2218   { "em_key_2.collecting",                      "RocksCollect.png"      },
2219   { "em_key_2.collecting.xpos",                 "7"                     },
2220   { "em_key_2.collecting.ypos",                 "5"                     },
2221   { "em_key_2.collecting.frames",               "7"                     },
2222   { "em_key_2.collecting.anim_mode",            "linear"                },
2223   { "em_key_3",                                 "RocksSP.png"           },
2224   { "em_key_3.xpos",                            "6"                     },
2225   { "em_key_3.ypos",                            "6"                     },
2226   { "em_key_3.frames",                          "1"                     },
2227   { "em_key_3.collecting",                      "RocksCollect.png"      },
2228   { "em_key_3.collecting.xpos",                 "7"                     },
2229   { "em_key_3.collecting.ypos",                 "6"                     },
2230   { "em_key_3.collecting.frames",               "7"                     },
2231   { "em_key_3.collecting.anim_mode",            "linear"                },
2232   { "em_key_4",                                 "RocksSP.png"           },
2233   { "em_key_4.xpos",                            "7"                     },
2234   { "em_key_4.ypos",                            "6"                     },
2235   { "em_key_4.frames",                          "1"                     },
2236   { "em_key_4.collecting",                      "RocksCollect.png"      },
2237   { "em_key_4.collecting.xpos",                 "7"                     },
2238   { "em_key_4.collecting.ypos",                 "7"                     },
2239   { "em_key_4.collecting.frames",               "7"                     },
2240   { "em_key_4.collecting.anim_mode",            "linear"                },
2241
2242   { "dc_key_white",                             "RocksSP.png"           },
2243   { "dc_key_white.xpos",                        "13"                    },
2244   { "dc_key_white.ypos",                        "1"                     },
2245   { "dc_key_white.frames",                      "1"                     },
2246   { "dc_key_white.collecting",                  "RocksCollect.png"      },
2247   { "dc_key_white.collecting.xpos",             "7"                     },
2248   { "dc_key_white.collecting.ypos",             "0"                     },
2249   { "dc_key_white.collecting.frames",           "7"                     },
2250   { "dc_key_white.collecting.anim_mode",        "linear"                },
2251
2252   { "em_gate_1",                                "RocksSP.png"           },
2253   { "em_gate_1.xpos",                           "0"                     },
2254   { "em_gate_1.ypos",                           "7"                     },
2255   { "em_gate_1.frames",                         "1"                     },
2256   { "em_gate_2",                                "RocksSP.png"           },
2257   { "em_gate_2.xpos",                           "1"                     },
2258   { "em_gate_2.ypos",                           "7"                     },
2259   { "em_gate_2.frames",                         "1"                     },
2260   { "em_gate_3",                                "RocksSP.png"           },
2261   { "em_gate_3.xpos",                           "2"                     },
2262   { "em_gate_3.ypos",                           "7"                     },
2263   { "em_gate_3.frames",                         "1"                     },
2264   { "em_gate_4",                                "RocksSP.png"           },
2265   { "em_gate_4.xpos",                           "3"                     },
2266   { "em_gate_4.ypos",                           "7"                     },
2267   { "em_gate_4.frames",                         "1"                     },
2268
2269   { "dc_gate_white",                            "RocksSP.png"           },
2270   { "dc_gate_white.xpos",                       "14"                    },
2271   { "dc_gate_white.ypos",                       "1"                     },
2272   { "dc_gate_white.frames",                     "1"                     },
2273
2274   { "em_gate_1_gray",                           "RocksSP.png"           },
2275   { "em_gate_1_gray.xpos",                      "4"                     },
2276   { "em_gate_1_gray.ypos",                      "7"                     },
2277   { "em_gate_1_gray.frames",                    "1"                     },
2278   { "em_gate_1_gray.EDITOR",                    "RocksSP.png"           },
2279   { "em_gate_1_gray.EDITOR.xpos",               "12"                    },
2280   { "em_gate_1_gray.EDITOR.ypos",               "11"                    },
2281   { "em_gate_1_gray.active",                    "RocksSP.png"           },
2282   { "em_gate_1_gray.active.xpos",               "0"                     },
2283   { "em_gate_1_gray.active.ypos",               "7"                     },
2284   { "em_gate_1_gray.active.frames",             "1"                     },
2285   { "em_gate_2_gray",                           "RocksSP.png"           },
2286   { "em_gate_2_gray.xpos",                      "5"                     },
2287   { "em_gate_2_gray.ypos",                      "7"                     },
2288   { "em_gate_2_gray.frames",                    "1"                     },
2289   { "em_gate_2_gray.EDITOR",                    "RocksSP.png"           },
2290   { "em_gate_2_gray.EDITOR.xpos",               "13"                    },
2291   { "em_gate_2_gray.EDITOR.ypos",               "11"                    },
2292   { "em_gate_2_gray.active",                    "RocksSP.png"           },
2293   { "em_gate_2_gray.active.xpos",               "1"                     },
2294   { "em_gate_2_gray.active.ypos",               "7"                     },
2295   { "em_gate_2_gray.active.frames",             "1"                     },
2296   { "em_gate_3_gray",                           "RocksSP.png"           },
2297   { "em_gate_3_gray.xpos",                      "6"                     },
2298   { "em_gate_3_gray.ypos",                      "7"                     },
2299   { "em_gate_3_gray.frames",                    "1"                     },
2300   { "em_gate_3_gray.EDITOR",                    "RocksSP.png"           },
2301   { "em_gate_3_gray.EDITOR.xpos",               "14"                    },
2302   { "em_gate_3_gray.EDITOR.ypos",               "11"                    },
2303   { "em_gate_3_gray.active",                    "RocksSP.png"           },
2304   { "em_gate_3_gray.active.xpos",               "2"                     },
2305   { "em_gate_3_gray.active.ypos",               "7"                     },
2306   { "em_gate_3_gray.active.frames",             "1"                     },
2307   { "em_gate_4_gray",                           "RocksSP.png"           },
2308   { "em_gate_4_gray.xpos",                      "7"                     },
2309   { "em_gate_4_gray.ypos",                      "7"                     },
2310   { "em_gate_4_gray.frames",                    "1"                     },
2311   { "em_gate_4_gray.EDITOR",                    "RocksSP.png"           },
2312   { "em_gate_4_gray.EDITOR.xpos",               "15"                    },
2313   { "em_gate_4_gray.EDITOR.ypos",               "11"                    },
2314   { "em_gate_4_gray.active",                    "RocksSP.png"           },
2315   { "em_gate_4_gray.active.xpos",               "3"                     },
2316   { "em_gate_4_gray.active.ypos",               "7"                     },
2317   { "em_gate_4_gray.active.frames",             "1"                     },
2318
2319   { "dc_gate_white_gray",                       "RocksSP.png"           },
2320   { "dc_gate_white_gray.xpos",                  "7"                     },
2321   { "dc_gate_white_gray.ypos",                  "7"                     },
2322   { "dc_gate_white_gray.frames",                "1"                     },
2323   { "dc_gate_white_gray.EDITOR",                "RocksSP.png"           },
2324   { "dc_gate_white_gray.EDITOR.xpos",           "15"                    },
2325   { "dc_gate_white_gray.EDITOR.ypos",           "1"                     },
2326   { "dc_gate_white_gray.active",                "RocksSP.png"           },
2327   { "dc_gate_white_gray.active.xpos",           "14"                    },
2328   { "dc_gate_white_gray.active.ypos",           "1"                     },
2329   { "dc_gate_white_gray.active.frames",         "1"                     },
2330
2331   { "dc_gate_fake_gray",                        "RocksSP.png"           },
2332   { "dc_gate_fake_gray.xpos",                   "7"                     },
2333   { "dc_gate_fake_gray.ypos",                   "7"                     },
2334   { "dc_gate_fake_gray.frames",                 "1"                     },
2335
2336   { "exit_closed",                              "RocksElements.png"     },
2337   { "exit_closed.xpos",                         "0"                     },
2338   { "exit_closed.ypos",                         "11"                    },
2339   { "exit_closed.frames",                       "1"                     },
2340   { "exit.opening",                             "RocksElements.png"     },
2341   { "exit.opening.xpos",                        "0"                     },
2342   { "exit.opening.ypos",                        "11"                    },
2343   { "exit.opening.frames",                      "5"                     },
2344   { "exit.opening.delay",                       "6"                     },
2345   { "exit.opening.anim_mode",                   "linear"                },
2346   { "exit_open",                                "RocksElements.png"     },
2347   { "exit_open.xpos",                           "4"                     },
2348   { "exit_open.ypos",                           "11"                    },
2349   { "exit_open.frames",                         "4"                     },
2350   { "exit_open.delay",                          "4"                     },
2351   { "exit_open.anim_mode",                      "pingpong"              },
2352   { "exit.closing",                             "RocksElements.png"     },
2353   { "exit.closing.xpos",                        "0"                     },
2354   { "exit.closing.ypos",                        "11"                    },
2355   { "exit.closing.frames",                      "5"                     },
2356   { "exit.closing.delay",                       "6"                     },
2357   { "exit.closing.anim_mode",                   "linear,reverse"        },
2358
2359   { "steel_exit_closed",                        "RocksDC2.png"  },
2360   { "steel_exit_closed.xpos",                   "8"                     },
2361   { "steel_exit_closed.ypos",                   "0"                     },
2362   { "steel_exit_closed.frames",                 "1"                     },
2363   { "steel_exit.opening",                       "RocksDC2.png"  },
2364   { "steel_exit.opening.xpos",                  "8"                     },
2365   { "steel_exit.opening.ypos",                  "0"                     },
2366   { "steel_exit.opening.frames",                "5"                     },
2367   { "steel_exit.opening.delay",                 "6"                     },
2368   { "steel_exit.opening.anim_mode",             "linear"                },
2369   { "steel_exit_open",                          "RocksDC2.png"  },
2370   { "steel_exit_open.xpos",                     "12"                    },
2371   { "steel_exit_open.ypos",                     "0"                     },
2372   { "steel_exit_open.frames",                   "4"                     },
2373   { "steel_exit_open.delay",                    "4"                     },
2374   { "steel_exit_open.anim_mode",                "pingpong"              },
2375   { "steel_exit.closing",                       "RocksDC2.png"  },
2376   { "steel_exit.closing.xpos",                  "8"                     },
2377   { "steel_exit.closing.ypos",                  "0"                     },
2378   { "steel_exit.closing.frames",                "5"                     },
2379   { "steel_exit.closing.delay",                 "6"                     },
2380   { "steel_exit.closing.anim_mode",             "linear,reverse"        },
2381
2382   { "em_exit_closed",                           "RocksDC2.png"  },
2383   { "em_exit_closed.xpos",                      "0"                     },
2384   { "em_exit_closed.ypos",                      "4"                     },
2385   { "em_exit_closed.frames",                    "1"                     },
2386   { "em_exit.opening",                          "RocksDC2.png"  },
2387   { "em_exit.opening.xpos",                     "0"                     },
2388   { "em_exit.opening.ypos",                     "4"                     },
2389   { "em_exit.opening.frames",                   "5"                     },
2390   { "em_exit.opening.delay",                    "6"                     },
2391   { "em_exit.opening.anim_mode",                "linear"                },
2392   { "em_exit_open",                             "RocksDC2.png"  },
2393   { "em_exit_open.xpos",                        "4"                     },
2394   { "em_exit_open.ypos",                        "4"                     },
2395   { "em_exit_open.frames",                      "4"                     },
2396   { "em_exit_open.delay",                       "4"                     },
2397   { "em_exit_open.anim_mode",                   "pingpong"              },
2398   { "em_exit.closing",                          "RocksDC2.png"  },
2399   { "em_exit.closing.xpos",                     "0"                     },
2400   { "em_exit.closing.ypos",                     "6"                     },
2401   { "em_exit.closing.frames",                   "5"                     },
2402   { "em_exit.closing.delay",                    "6"                     },
2403   { "em_exit.closing.anim_mode",                "linear"                },
2404
2405   { "em_steel_exit_closed",                     "RocksDC2.png"  },
2406   { "em_steel_exit_closed.xpos",                "0"                     },
2407   { "em_steel_exit_closed.ypos",                "5"                     },
2408   { "em_steel_exit_closed.frames",              "1"                     },
2409   { "em_steel_exit.opening",                    "RocksDC2.png"  },
2410   { "em_steel_exit.opening.xpos",               "0"                     },
2411   { "em_steel_exit.opening.ypos",               "5"                     },
2412   { "em_steel_exit.opening.frames",             "5"                     },
2413   { "em_steel_exit.opening.delay",              "6"                     },
2414   { "em_steel_exit.opening.anim_mode",          "linear"                },
2415   { "em_steel_exit_open",                       "RocksDC2.png"  },
2416   { "em_steel_exit_open.xpos",                  "4"                     },
2417   { "em_steel_exit_open.ypos",                  "5"                     },
2418   { "em_steel_exit_open.frames",                "4"                     },
2419   { "em_steel_exit_open.delay",                 "4"                     },
2420   { "em_steel_exit_open.anim_mode",             "pingpong"              },
2421   { "em_steel_exit.closing",                    "RocksDC2.png"  },
2422   { "em_steel_exit.closing.xpos",               "0"                     },
2423   { "em_steel_exit.closing.ypos",               "7"                     },
2424   { "em_steel_exit.closing.frames",             "5"                     },
2425   { "em_steel_exit.closing.delay",              "6"                     },
2426   { "em_steel_exit.closing.anim_mode",          "linear"                },
2427
2428   // images for Emerald Mine Club style elements and actions
2429
2430   { "balloon",                                  "RocksDC.png"           },
2431   { "balloon.xpos",                             "12"                    },
2432   { "balloon.ypos",                             "7"                     },
2433   { "balloon.frames",                           "1"                     },
2434   { "balloon.moving",                           "RocksDC.png"           },
2435   { "balloon.moving.xpos",                      "12"                    },
2436   { "balloon.moving.ypos",                      "7"                     },
2437   { "balloon.moving.frames",                    "4"                     },
2438   { "balloon.moving.anim_mode",                 "pingpong"              },
2439   { "balloon.moving.delay",                     "2"                     },
2440   { "balloon.pushing",                          "RocksDC.png"           },
2441   { "balloon.pushing.xpos",                     "12"                    },
2442   { "balloon.pushing.ypos",                     "7"                     },
2443   { "balloon.pushing.frames",                   "4"                     },
2444   { "balloon.pushing.anim_mode",                "pingpong"              },
2445   { "balloon.pushing.delay",                    "2"                     },
2446   { "balloon_switch_left",                      "RocksDC.png"           },
2447   { "balloon_switch_left.xpos",                 "8"                     },
2448   { "balloon_switch_left.ypos",                 "7"                     },
2449   { "balloon_switch_left.frames",               "1"                     },
2450   { "balloon_switch_right",                     "RocksDC.png"           },
2451   { "balloon_switch_right.xpos",                "9"                     },
2452   { "balloon_switch_right.ypos",                "7"                     },
2453   { "balloon_switch_right.frames",              "1"                     },
2454   { "balloon_switch_up",                        "RocksDC.png"           },
2455   { "balloon_switch_up.xpos",                   "10"                    },
2456   { "balloon_switch_up.ypos",                   "7"                     },
2457   { "balloon_switch_up.frames",                 "1"                     },
2458   { "balloon_switch_down",                      "RocksDC.png"           },
2459   { "balloon_switch_down.xpos",                 "11"                    },
2460   { "balloon_switch_down.ypos",                 "7"                     },
2461   { "balloon_switch_down.frames",               "1"                     },
2462   { "balloon_switch_any",                       "RocksDC.png"           },
2463   { "balloon_switch_any.xpos",                  "15"                    },
2464   { "balloon_switch_any.ypos",                  "0"                     },
2465   { "balloon_switch_any.frames",                "1"                     },
2466   { "balloon_switch_none",                      "RocksDC.png"           },
2467   { "balloon_switch_none.xpos",                 "13"                    },
2468   { "balloon_switch_none.ypos",                 "5"                     },
2469   { "balloon_switch_none.frames",               "1"                     },
2470
2471   { "spring",                                   "RocksDC.png"           },
2472   { "spring.xpos",                              "8"                     },
2473   { "spring.ypos",                              "13"                    },
2474   { "spring.frames",                            "1"                     },
2475
2476   { "spring.left",                              UNDEFINED_FILENAME      },
2477   { "spring.left.clone_from",                   "spring"                },
2478   { "spring.right",                             UNDEFINED_FILENAME      },
2479   { "spring.right.clone_from",                  "spring"                },
2480
2481   { "emc_steelwall_1",                          "RocksDC.png"           },
2482   { "emc_steelwall_1.xpos",                     "14"                    },
2483   { "emc_steelwall_1.ypos",                     "0"                     },
2484   { "emc_steelwall_1.frames",                   "1"                     },
2485   { "emc_steelwall_2",                          "RocksEMC.png"          },
2486   { "emc_steelwall_2.xpos",                     "9"                     },
2487   { "emc_steelwall_2.ypos",                     "8"                     },
2488   { "emc_steelwall_2.frames",                   "1"                     },
2489   { "emc_steelwall_3",                          "RocksEMC.png"          },
2490   { "emc_steelwall_3.xpos",                     "9"                     },
2491   { "emc_steelwall_3.ypos",                     "9"                     },
2492   { "emc_steelwall_3.frames",                   "1"                     },
2493   { "emc_steelwall_4",                          "RocksEMC.png"          },
2494   { "emc_steelwall_4.xpos",                     "9"                     },
2495   { "emc_steelwall_4.ypos",                     "10"                    },
2496   { "emc_steelwall_4.frames",                   "1"                     },
2497
2498   { "emc_wall_1",                               "RocksDC.png"           },
2499   { "emc_wall_1.xpos",                          "13"                    },
2500   { "emc_wall_1.ypos",                          "6"                     },
2501   { "emc_wall_1.frames",                        "1"                     },
2502   { "emc_wall_2",                               "RocksDC.png"           },
2503   { "emc_wall_2.xpos",                          "14"                    },
2504   { "emc_wall_2.ypos",                          "6"                     },
2505   { "emc_wall_2.frames",                        "1"                     },
2506   { "emc_wall_3",                               "RocksDC.png"           },
2507   { "emc_wall_3.xpos",                          "15"                    },
2508   { "emc_wall_3.ypos",                          "6"                     },
2509   { "emc_wall_3.frames",                        "1"                     },
2510   { "emc_wall_4",                               "RocksDC.png"           },
2511   { "emc_wall_4.xpos",                          "14"                    },
2512   { "emc_wall_4.ypos",                          "1"                     },
2513   { "emc_wall_4.frames",                        "1"                     },
2514   { "emc_wall_5",                               "RocksDC.png"           },
2515   { "emc_wall_5.xpos",                          "15"                    },
2516   { "emc_wall_5.ypos",                          "1"                     },
2517   { "emc_wall_5.frames",                        "1"                     },
2518   { "emc_wall_6",                               "RocksDC.png"           },
2519   { "emc_wall_6.xpos",                          "14"                    },
2520   { "emc_wall_6.ypos",                          "2"                     },
2521   { "emc_wall_6.frames",                        "1"                     },
2522   { "emc_wall_7",                               "RocksDC.png"           },
2523   { "emc_wall_7.xpos",                          "15"                    },
2524   { "emc_wall_7.ypos",                          "2"                     },
2525   { "emc_wall_7.frames",                        "1"                     },
2526   { "emc_wall_8",                               "RocksEMC.png"          },
2527   { "emc_wall_8.xpos",                          "8"                     },
2528   { "emc_wall_8.ypos",                          "7"                     },
2529   { "emc_wall_8.frames",                        "1"                     },
2530
2531   // images for Diamond Caves style elements and actions
2532
2533   { "invisible_steelwall",                      "RocksSP.png"           },
2534   { "invisible_steelwall.xpos",                 "3"                     },
2535   { "invisible_steelwall.ypos",                 "5"                     },
2536   { "invisible_steelwall.frames",               "1"                     },
2537   { "invisible_steelwall.EDITOR",               "RocksSP.png"           },
2538   { "invisible_steelwall.EDITOR.xpos",          "1"                     },
2539   { "invisible_steelwall.EDITOR.ypos",          "5"                     },
2540   { "invisible_steelwall.active",               "RocksSP.png"           },
2541   { "invisible_steelwall.active.xpos",          "1"                     },
2542   { "invisible_steelwall.active.ypos",          "5"                     },
2543   { "invisible_steelwall.active.frames",        "1"                     },
2544
2545   { "invisible_wall",                           "RocksSP.png"           },
2546   { "invisible_wall.xpos",                      "7"                     },
2547   { "invisible_wall.ypos",                      "5"                     },
2548   { "invisible_wall.frames",                    "1"                     },
2549   { "invisible_wall.EDITOR",                    "RocksSP.png"           },
2550   { "invisible_wall.EDITOR.xpos",               "5"                     },
2551   { "invisible_wall.EDITOR.ypos",               "5"                     },
2552   { "invisible_wall.active",                    "RocksSP.png"           },
2553   { "invisible_wall.active.xpos",               "5"                     },
2554   { "invisible_wall.active.ypos",               "5"                     },
2555   { "invisible_wall.active.frames",             "1"                     },
2556
2557   { "invisible_sand",                           "RocksSP.png"           },
2558   { "invisible_sand.xpos",                      "0"                     },
2559   { "invisible_sand.ypos",                      "0"                     },
2560   { "invisible_sand.frames",                    "1"                     },
2561   { "invisible_sand.EDITOR",                    "RocksEMC.png"          },
2562   { "invisible_sand.EDITOR.xpos",               "2"                     },
2563   { "invisible_sand.EDITOR.ypos",               "4"                     },
2564   { "invisible_sand.active",                    "RocksEMC.png"          },
2565   { "invisible_sand.active.xpos",               "2"                     },
2566   { "invisible_sand.active.ypos",               "4"                     },
2567   { "invisible_sand.active.frames",             "1"                     },
2568   { "invisible_sand.active.CRUMBLED",           "RocksEMC.png"          },
2569   { "invisible_sand.active.CRUMBLED.xpos",      "3"                     },
2570   { "invisible_sand.active.CRUMBLED.ypos",      "4"                     },
2571   { "invisible_sand.active.CRUMBLED.frames",    "1"                     },
2572   { "invisible_sand.active.digging.left",       "RocksEMC.png"          },
2573   { "invisible_sand.active.digging.left.xpos",  "6"                     },
2574   { "invisible_sand.active.digging.left.ypos",  "2"                     },
2575   { "invisible_sand.active.digging.left.frames","3"                     },
2576   { "invisible_sand.active.digging.left.delay", "2"                     },
2577   { "invisible_sand.active.digging.left.anim_mode","linear"             },
2578   { "invisible_sand.active.digging.right",      "RocksEMC.png"          },
2579   { "invisible_sand.active.digging.right.xpos", "9"                     },
2580   { "invisible_sand.active.digging.right.ypos", "2"                     },
2581   { "invisible_sand.active.digging.right.frames","3"                    },
2582   { "invisible_sand.active.digging.right.delay","2"                     },
2583   { "invisible_sand.active.digging.right.anim_mode","linear"            },
2584   { "invisible_sand.active.digging.up",         "RocksEMC.png"          },
2585   { "invisible_sand.active.digging.up.xpos",    "0"                     },
2586   { "invisible_sand.active.digging.up.ypos",    "2"                     },
2587   { "invisible_sand.active.digging.up.frames",  "3"                     },
2588   { "invisible_sand.active.digging.up.delay",   "2"                     },
2589   { "invisible_sand.active.digging.up.anim_mode","linear"               },
2590   { "invisible_sand.active.digging.down",       "RocksEMC.png"          },
2591   { "invisible_sand.active.digging.down.xpos",  "3"                     },
2592   { "invisible_sand.active.digging.down.ypos",  "2"                     },
2593   { "invisible_sand.active.digging.down.frames","3"                     },
2594   { "invisible_sand.active.digging.down.delay", "2"                     },
2595   { "invisible_sand.active.digging.down.anim_mode","linear"             },
2596   { "invisible_sand.active.digging.left.CRUMBLED",      "RocksEMC.png"  },
2597   { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6"             },
2598   { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3"             },
2599   { "invisible_sand.active.digging.left.CRUMBLED.frames","3"            },
2600   { "invisible_sand.active.digging.left.CRUMBLED.delay","2"             },
2601   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear"    },
2602   { "invisible_sand.active.digging.right.CRUMBLED",     "RocksEMC.png"  },
2603   { "invisible_sand.active.digging.right.CRUMBLED.xpos","9"             },
2604   { "invisible_sand.active.digging.right.CRUMBLED.ypos","3"             },
2605   { "invisible_sand.active.digging.right.CRUMBLED.frames","3"           },
2606   { "invisible_sand.active.digging.right.CRUMBLED.delay","2"            },
2607   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear"   },
2608   { "invisible_sand.active.digging.up.CRUMBLED",        "RocksEMC.png"  },
2609   { "invisible_sand.active.digging.up.CRUMBLED.xpos",   "0"             },
2610   { "invisible_sand.active.digging.up.CRUMBLED.ypos",   "3"             },
2611   { "invisible_sand.active.digging.up.CRUMBLED.frames", "3"             },
2612   { "invisible_sand.active.digging.up.CRUMBLED.delay",  "2"             },
2613   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear"      },
2614   { "invisible_sand.active.digging.down.CRUMBLED",      "RocksEMC.png"  },
2615   { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3"             },
2616   { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3"             },
2617   { "invisible_sand.active.digging.down.CRUMBLED.frames","3"            },
2618   { "invisible_sand.active.digging.down.CRUMBLED.delay","2"             },
2619   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear"    },
2620
2621   { "conveyor_belt_1_middle",                   "RocksDC.png"           },
2622   { "conveyor_belt_1_middle.xpos",              "0"                     },
2623   { "conveyor_belt_1_middle.ypos",              "0"                     },
2624   { "conveyor_belt_1_middle.frames",            "1"                     },
2625   { "conveyor_belt_1_middle.active",            "RocksDC.png"           },
2626   { "conveyor_belt_1_middle.active.xpos",       "0"                     },
2627   { "conveyor_belt_1_middle.active.ypos",       "0"                     },
2628   { "conveyor_belt_1_middle.active.frames",     "8"                     },
2629   { "conveyor_belt_1_middle.active.delay",      "2"                     },
2630   { "conveyor_belt_1_left",                     "RocksDC.png"           },
2631   { "conveyor_belt_1_left.xpos",                "0"                     },
2632   { "conveyor_belt_1_left.ypos",                "1"                     },
2633   { "conveyor_belt_1_left.frames",              "1"                     },
2634   { "conveyor_belt_1_left.active",              "RocksDC.png"           },
2635   { "conveyor_belt_1_left.active.xpos",         "0"                     },
2636   { "conveyor_belt_1_left.active.ypos",         "1"                     },
2637   { "conveyor_belt_1_left.active.frames",       "8"                     },
2638   { "conveyor_belt_1_left.active.delay",        "2"                     },
2639   { "conveyor_belt_1_right",                    "RocksDC.png"           },
2640   { "conveyor_belt_1_right.xpos",               "0"                     },
2641   { "conveyor_belt_1_right.ypos",               "2"                     },
2642   { "conveyor_belt_1_right.frames",             "1"                     },
2643   { "conveyor_belt_1_right.active",             "RocksDC.png"           },
2644   { "conveyor_belt_1_right.active.xpos",        "0"                     },
2645   { "conveyor_belt_1_right.active.ypos",        "2"                     },
2646   { "conveyor_belt_1_right.active.frames",      "8"                     },
2647   { "conveyor_belt_1_right.active.delay",       "2"                     },
2648   { "conveyor_belt_1_switch_left",              "RocksDC.png"           },
2649   { "conveyor_belt_1_switch_left.xpos",         "0"                     },
2650   { "conveyor_belt_1_switch_left.ypos",         "12"                    },
2651   { "conveyor_belt_1_switch_left.frames",       "1"                     },
2652   { "conveyor_belt_1_switch_middle",            "RocksDC.png"           },
2653   { "conveyor_belt_1_switch_middle.xpos",       "0"                     },
2654   { "conveyor_belt_1_switch_middle.ypos",       "13"                    },
2655   { "conveyor_belt_1_switch_middle.frames",     "1"                     },
2656   { "conveyor_belt_1_switch_right",             "RocksDC.png"           },
2657   { "conveyor_belt_1_switch_right.xpos",        "0"                     },
2658   { "conveyor_belt_1_switch_right.ypos",        "14"                    },
2659   { "conveyor_belt_1_switch_right.frames",      "1"                     },
2660
2661   { "conveyor_belt_2_middle",                   "RocksDC.png"           },
2662   { "conveyor_belt_2_middle.xpos",              "0"                     },
2663   { "conveyor_belt_2_middle.ypos",              "3"                     },
2664   { "conveyor_belt_2_middle.frames",            "1"                     },
2665   { "conveyor_belt_2_middle.active",            "RocksDC.png"           },
2666   { "conveyor_belt_2_middle.active.xpos",       "0"                     },
2667   { "conveyor_belt_2_middle.active.ypos",       "3"                     },
2668   { "conveyor_belt_2_middle.active.frames",     "8"                     },
2669   { "conveyor_belt_2_middle.active.delay",      "2"                     },
2670   { "conveyor_belt_2_left",                     "RocksDC.png"           },
2671   { "conveyor_belt_2_left.xpos",                "0"                     },
2672   { "conveyor_belt_2_left.ypos",                "4"                     },
2673   { "conveyor_belt_2_left.frames",              "1"                     },
2674   { "conveyor_belt_2_left.active",              "RocksDC.png"           },
2675   { "conveyor_belt_2_left.active.xpos",         "0"                     },
2676   { "conveyor_belt_2_left.active.ypos",         "4"                     },
2677   { "conveyor_belt_2_left.active.frames",       "8"                     },
2678   { "conveyor_belt_2_left.active.delay",        "2"                     },
2679   { "conveyor_belt_2_right",                    "RocksDC.png"           },
2680   { "conveyor_belt_2_right.xpos",               "0"                     },
2681   { "conveyor_belt_2_right.ypos",               "5"                     },
2682   { "conveyor_belt_2_right.frames",             "1"                     },
2683   { "conveyor_belt_2_right.active",             "RocksDC.png"           },
2684   { "conveyor_belt_2_right.active.xpos",        "0"                     },
2685   { "conveyor_belt_2_right.active.ypos",        "5"                     },
2686   { "conveyor_belt_2_right.active.frames",      "8"                     },
2687   { "conveyor_belt_2_right.active.delay",       "2"                     },
2688   { "conveyor_belt_2_switch_left",              "RocksDC.png"           },
2689   { "conveyor_belt_2_switch_left.xpos",         "1"                     },
2690   { "conveyor_belt_2_switch_left.ypos",         "12"                    },
2691   { "conveyor_belt_2_switch_left.frames",       "1"                     },
2692   { "conveyor_belt_2_switch_middle",            "RocksDC.png"           },
2693   { "conveyor_belt_2_switch_middle.xpos",       "1"                     },
2694   { "conveyor_belt_2_switch_middle.ypos",       "13"                    },
2695   { "conveyor_belt_2_switch_middle.frames",     "1"                     },
2696   { "conveyor_belt_2_switch_right",             "RocksDC.png"           },
2697   { "conveyor_belt_2_switch_right.xpos",        "1"                     },
2698   { "conveyor_belt_2_switch_right.ypos",        "14"                    },
2699   { "conveyor_belt_2_switch_right.frames",      "1"                     },
2700
2701   { "conveyor_belt_3_middle",                   "RocksDC.png"           },
2702   { "conveyor_belt_3_middle.xpos",              "0"                     },
2703   { "conveyor_belt_3_middle.ypos",              "6"                     },
2704   { "conveyor_belt_3_middle.frames",            "1"                     },
2705   { "conveyor_belt_3_middle.active",            "RocksDC.png"           },
2706   { "conveyor_belt_3_middle.active.xpos",       "0"                     },
2707   { "conveyor_belt_3_middle.active.ypos",       "6"                     },
2708   { "conveyor_belt_3_middle.active.frames",     "8"                     },
2709   { "conveyor_belt_3_middle.active.delay",      "2"                     },
2710   { "conveyor_belt_3_left",                     "RocksDC.png"           },
2711   { "conveyor_belt_3_left.xpos",                "0"                     },
2712   { "conveyor_belt_3_left.ypos",                "7"                     },
2713   { "conveyor_belt_3_left.frames",              "1"                     },
2714   { "conveyor_belt_3_left.active",              "RocksDC.png"           },
2715   { "conveyor_belt_3_left.active.xpos",         "0"                     },
2716   { "conveyor_belt_3_left.active.ypos",         "7"                     },
2717   { "conveyor_belt_3_left.active.frames",       "8"                     },
2718   { "conveyor_belt_3_left.active.delay",        "2"                     },
2719   { "conveyor_belt_3_right",                    "RocksDC.png"           },
2720   { "conveyor_belt_3_right.xpos",               "0"                     },
2721   { "conveyor_belt_3_right.ypos",               "8"                     },
2722   { "conveyor_belt_3_right.frames",             "1"                     },
2723   { "conveyor_belt_3_right.active",             "RocksDC.png"           },
2724   { "conveyor_belt_3_right.active.xpos",        "0"                     },
2725   { "conveyor_belt_3_right.active.ypos",        "8"                     },
2726   { "conveyor_belt_3_right.active.frames",      "8"                     },
2727   { "conveyor_belt_3_right.active.delay",       "2"                     },
2728   { "conveyor_belt_3_switch_left",              "RocksDC.png"           },
2729   { "conveyor_belt_3_switch_left.xpos",         "2"                     },
2730   { "conveyor_belt_3_switch_left.ypos",         "12"                    },
2731   { "conveyor_belt_3_switch_left.frames",       "1"                     },
2732   { "conveyor_belt_3_switch_middle",            "RocksDC.png"           },
2733   { "conveyor_belt_3_switch_middle.xpos",       "2"                     },
2734   { "conveyor_belt_3_switch_middle.ypos",       "13"                    },
2735   { "conveyor_belt_3_switch_middle.frames",     "1"                     },
2736   { "conveyor_belt_3_switch_right",             "RocksDC.png"           },
2737   { "conveyor_belt_3_switch_right.xpos",        "2"                     },
2738   { "conveyor_belt_3_switch_right.ypos",        "14"                    },
2739   { "conveyor_belt_3_switch_right.frames",      "1"                     },
2740
2741   { "conveyor_belt_4_middle",                   "RocksDC.png"           },
2742   { "conveyor_belt_4_middle.xpos",              "0"                     },
2743   { "conveyor_belt_4_middle.ypos",              "9"                     },
2744   { "conveyor_belt_4_middle.frames",            "1"                     },
2745   { "conveyor_belt_4_middle.active",            "RocksDC.png"           },
2746   { "conveyor_belt_4_middle.active.xpos",       "0"                     },
2747   { "conveyor_belt_4_middle.active.ypos",       "9"                     },
2748   { "conveyor_belt_4_middle.active.frames",     "8"                     },
2749   { "conveyor_belt_4_middle.active.delay",      "2"                     },
2750   { "conveyor_belt_4_left",                     "RocksDC.png"           },
2751   { "conveyor_belt_4_left.xpos",                "0"                     },
2752   { "conveyor_belt_4_left.ypos",                "10"                    },
2753   { "conveyor_belt_4_left.frames",              "1"                     },
2754   { "conveyor_belt_4_left.active",              "RocksDC.png"           },
2755   { "conveyor_belt_4_left.active.xpos",         "0"                     },
2756   { "conveyor_belt_4_left.active.ypos",         "10"                    },
2757   { "conveyor_belt_4_left.active.frames",       "8"                     },
2758   { "conveyor_belt_4_left.active.delay",        "2"                     },
2759   { "conveyor_belt_4_right",                    "RocksDC.png"           },
2760   { "conveyor_belt_4_right.xpos",               "0"                     },
2761   { "conveyor_belt_4_right.ypos",               "11"                    },
2762   { "conveyor_belt_4_right.frames",             "1"                     },
2763   { "conveyor_belt_4_right.active",             "RocksDC.png"           },
2764   { "conveyor_belt_4_right.active.xpos",        "0"                     },
2765   { "conveyor_belt_4_right.active.ypos",        "11"                    },
2766   { "conveyor_belt_4_right.active.frames",      "8"                     },
2767   { "conveyor_belt_4_right.active.delay",       "2"                     },
2768   { "conveyor_belt_4_switch_left",              "RocksDC.png"           },
2769   { "conveyor_belt_4_switch_left.xpos",         "3"                     },
2770   { "conveyor_belt_4_switch_left.ypos",         "12"                    },
2771   { "conveyor_belt_4_switch_left.frames",       "1"                     },
2772   { "conveyor_belt_4_switch_middle",            "RocksDC.png"           },
2773   { "conveyor_belt_4_switch_middle.xpos",       "3"                     },
2774   { "conveyor_belt_4_switch_middle.ypos",       "13"                    },
2775   { "conveyor_belt_4_switch_middle.frames",     "1"                     },
2776   { "conveyor_belt_4_switch_right",             "RocksDC.png"           },
2777   { "conveyor_belt_4_switch_right.xpos",        "3"                     },
2778   { "conveyor_belt_4_switch_right.ypos",        "14"                    },
2779   { "conveyor_belt_4_switch_right.frames",      "1"                     },
2780
2781   { "switchgate_switch_up",                     "RocksDC.png"           },
2782   { "switchgate_switch_up.xpos",                "4"                     },
2783   { "switchgate_switch_up.ypos",                "12"                    },
2784   { "switchgate_switch_up.frames",              "1"                     },
2785   { "switchgate_switch_down",                   "RocksDC.png"           },
2786   { "switchgate_switch_down.xpos",              "5"                     },
2787   { "switchgate_switch_down.ypos",              "12"                    },
2788   { "switchgate_switch_down.frames",            "1"                     },
2789
2790   { "dc_switchgate_switch_up",                  "RocksDC2.png"          },
2791   { "dc_switchgate_switch_up.xpos",             "10"                    },
2792   { "dc_switchgate_switch_up.ypos",             "1"                     },
2793   { "dc_switchgate_switch_up.frames",           "1"                     },
2794   { "dc_switchgate_switch_down",                "RocksDC2.png"          },
2795   { "dc_switchgate_switch_down.xpos",           "11"                    },
2796   { "dc_switchgate_switch_down.ypos",           "1"                     },
2797   { "dc_switchgate_switch_down.frames",         "1"                     },
2798
2799   { "light_switch",                             "RocksDC.png"           },
2800   { "light_switch.xpos",                        "6"                     },
2801   { "light_switch.ypos",                        "12"                    },
2802   { "light_switch.frames",                      "1"                     },
2803   { "light_switch.active",                      "RocksDC.png"           },
2804   { "light_switch.active.xpos",                 "7"                     },
2805   { "light_switch.active.ypos",                 "12"                    },
2806   { "light_switch.active.frames",               "1"                     },
2807
2808   { "timegate_switch",                          "RocksDC.png"           },
2809   { "timegate_switch.xpos",                     "0"                     },
2810   { "timegate_switch.ypos",                     "15"                    },
2811   { "timegate_switch.frames",                   "1"                     },
2812   { "timegate_switch.active",                   "RocksDC.png"           },
2813   { "timegate_switch.active.xpos",              "0"                     },
2814   { "timegate_switch.active.ypos",              "15"                    },
2815   { "timegate_switch.active.frames",            "4"                     },
2816
2817   { "dc_timegate_switch",                       "RocksDC2.png"          },
2818   { "dc_timegate_switch.xpos",                  "12"                    },
2819   { "dc_timegate_switch.ypos",                  "1"                     },
2820   { "dc_timegate_switch.frames",                "1"                     },
2821   { "dc_timegate_switch.active",                "RocksDC2.png"          },
2822   { "dc_timegate_switch.active.xpos",           "12"                    },
2823   { "dc_timegate_switch.active.ypos",           "1"                     },
2824   { "dc_timegate_switch.active.frames",         "4"                     },
2825
2826   { "envelope_1",                               "RocksMore.png"         },
2827   { "envelope_1.xpos",                          "0"                     },
2828   { "envelope_1.ypos",                          "4"                     },
2829   { "envelope_1.frames",                        "1"                     },
2830   { "envelope_1.collecting",                    "RocksCollect.png"      },
2831   { "envelope_1.collecting.xpos",               "7"                     },
2832   { "envelope_1.collecting.ypos",               "8"                     },
2833   { "envelope_1.collecting.frames",             "7"                     },
2834   { "envelope_1.collecting.anim_mode",          "linear"                },
2835   { "envelope_2",                               "RocksMore.png"         },
2836   { "envelope_2.xpos",                          "1"                     },
2837   { "envelope_2.ypos",                          "4"                     },
2838   { "envelope_2.frames",                        "1"                     },
2839   { "envelope_2.collecting",                    "RocksCollect.png"      },
2840   { "envelope_2.collecting.xpos",               "7"                     },
2841   { "envelope_2.collecting.ypos",               "9"                     },
2842   { "envelope_2.collecting.frames",             "7"                     },
2843   { "envelope_2.collecting.anim_mode",          "linear"                },
2844   { "envelope_3",                               "RocksMore.png"         },
2845   { "envelope_3.xpos",                          "2"                     },
2846   { "envelope_3.ypos",                          "4"                     },
2847   { "envelope_3.frames",                        "1"                     },
2848   { "envelope_3.collecting",                    "RocksCollect.png"      },
2849   { "envelope_3.collecting.xpos",               "7"                     },
2850   { "envelope_3.collecting.ypos",               "10"                    },
2851   { "envelope_3.collecting.frames",             "7"                     },
2852   { "envelope_3.collecting.anim_mode",          "linear"                },
2853   { "envelope_4",                               "RocksMore.png"         },
2854   { "envelope_4.xpos",                          "3"                     },
2855   { "envelope_4.ypos",                          "4"                     },
2856   { "envelope_4.frames",                        "1"                     },
2857   { "envelope_4.collecting",                    "RocksCollect.png"      },
2858   { "envelope_4.collecting.xpos",               "7"                     },
2859   { "envelope_4.collecting.ypos",               "11"                    },
2860   { "envelope_4.collecting.frames",             "7"                     },
2861   { "envelope_4.collecting.anim_mode",          "linear"                },
2862
2863   { "sign_radioactivity",                       "RocksDC.png"           },
2864   { "sign_radioactivity.xpos",                  "4"                     },
2865   { "sign_radioactivity.ypos",                  "13"                    },
2866   { "sign_radioactivity.frames",                "1"                     },
2867
2868   { "sign_give_way",                            "RocksDC.png"           },
2869   { "sign_give_way.xpos",                       "5"                     },
2870   { "sign_give_way.ypos",                       "13"                    },
2871   { "sign_give_way.frames",                     "1"                     },
2872
2873   { "sign_no_entry",                            "RocksDC.png"           },
2874   { "sign_no_entry.xpos",                       "6"                     },
2875   { "sign_no_entry.ypos",                       "13"                    },
2876   { "sign_no_entry.frames",                     "1"                     },
2877
2878   { "sign_emergency_exit",                      "RocksDC.png"           },
2879   { "sign_emergency_exit.xpos",                 "7"                     },
2880   { "sign_emergency_exit.ypos",                 "13"                    },
2881   { "sign_emergency_exit.frames",               "1"                     },
2882
2883   { "sign_yin_yang",                            "RocksDC.png"           },
2884   { "sign_yin_yang.xpos",                       "4"                     },
2885   { "sign_yin_yang.ypos",                       "14"                    },
2886   { "sign_yin_yang.frames",                     "1"                     },
2887
2888   { "sign_exclamation",                         "RocksDC.png"           },
2889   { "sign_exclamation.xpos",                    "5"                     },
2890   { "sign_exclamation.ypos",                    "14"                    },
2891   { "sign_exclamation.frames",                  "1"                     },
2892
2893   { "sign_stop",                                "RocksDC.png"           },
2894   { "sign_stop.xpos",                           "6"                     },
2895   { "sign_stop.ypos",                           "14"                    },
2896   { "sign_stop.frames",                         "1"                     },
2897
2898   { "sign_parking",                             "RocksDC.png"           },
2899   { "sign_parking.xpos",                        "6"                     },
2900   { "sign_parking.ypos",                        "15"                    },
2901   { "sign_parking.frames",                      "1"                     },
2902
2903   { "sign_wheelchair",                          "RocksDC.png"           },
2904   { "sign_wheelchair.xpos",                     "7"                     },
2905   { "sign_wheelchair.ypos",                     "15"                    },
2906   { "sign_wheelchair.frames",                   "1"                     },
2907
2908   { "sign_entry_forbidden",                     "RocksDC.png"           },
2909   { "sign_entry_forbidden.xpos",                "12"                    },
2910   { "sign_entry_forbidden.ypos",                "15"                    },
2911   { "sign_entry_forbidden.frames",              "1"                     },
2912
2913   { "sperms",                                   "RocksDC2.png"          },
2914   { "sperms.xpos",                              "11"                    },
2915   { "sperms.ypos",                              "3"                     },
2916   { "sperms.frames",                            "1"                     },
2917
2918   { "bullet",                                   "RocksDC2.png"          },
2919   { "bullet.xpos",                              "12"                    },
2920   { "bullet.ypos",                              "3"                     },
2921   { "bullet.frames",                            "1"                     },
2922
2923   { "heart",                                    "RocksDC2.png"          },
2924   { "heart.xpos",                               "13"                    },
2925   { "heart.ypos",                               "3"                     },
2926   { "heart.frames",                             "1"                     },
2927
2928   { "cross",                                    "RocksDC2.png"          },
2929   { "cross.xpos",                               "14"                    },
2930   { "cross.ypos",                               "3"                     },
2931   { "cross.frames",                             "1"                     },
2932
2933   { "frankie",                                  "RocksDC2.png"          },
2934   { "frankie.xpos",                             "15"                    },
2935   { "frankie.ypos",                             "3"                     },
2936   { "frankie.frames",                           "1"                     },
2937
2938   { "sign_sperms",                              "RocksDC2.png"          },
2939   { "sign_sperms.xpos",                         "11"                    },
2940   { "sign_sperms.ypos",                         "2"                     },
2941   { "sign_sperms.frames",                       "1"                     },
2942
2943   { "sign_bullet",                              "RocksDC2.png"          },
2944   { "sign_bullet.xpos",                         "12"                    },
2945   { "sign_bullet.ypos",                         "2"                     },
2946   { "sign_bullet.frames",                       "1"                     },
2947
2948   { "sign_heart",                               "RocksDC2.png"          },
2949   { "sign_heart.xpos",                          "13"                    },
2950   { "sign_heart.ypos",                          "2"                     },
2951   { "sign_heart.frames",                        "1"                     },
2952
2953   { "sign_cross",                               "RocksDC2.png"          },
2954   { "sign_cross.xpos",                          "14"                    },
2955   { "sign_cross.ypos",                          "2"                     },
2956   { "sign_cross.frames",                        "1"                     },
2957
2958   { "sign_frankie",                             "RocksDC2.png"          },
2959   { "sign_frankie.xpos",                        "15"                    },
2960   { "sign_frankie.ypos",                        "2"                     },
2961   { "sign_frankie.frames",                      "1"                     },
2962
2963   { "landmine",                                 "RocksDC.png"           },
2964   { "landmine.xpos",                            "7"                     },
2965   { "landmine.ypos",                            "14"                    },
2966   { "landmine.frames",                          "1"                     },
2967   { "landmine.crumbled_like",                   "sand"                  },
2968
2969   { "dc_landmine",                              "RocksDC.png"           },
2970   { "dc_landmine.xpos",                         "14"                    },
2971   { "dc_landmine.ypos",                         "5"                     },
2972   { "dc_landmine.frames",                       "1"                     },
2973   { "dc_landmine.crumbled_like",                "sand"                  },
2974
2975   { "steelwall_slippery",                       "RocksDC.png"           },
2976   { "steelwall_slippery.xpos",                  "5"                     },
2977   { "steelwall_slippery.ypos",                  "15"                    },
2978   { "steelwall_slippery.frames",                "1"                     },
2979
2980   { "extra_time",                               "RocksDC.png"           },
2981   { "extra_time.xpos",                          "8"                     },
2982   { "extra_time.ypos",                          "0"                     },
2983   { "extra_time.frames",                        "6"                     },
2984   { "extra_time.delay",                         "4"                     },
2985   { "extra_time.collecting",                    "RocksCollect.png"      },
2986   { "extra_time.collecting.xpos",               "7"                     },
2987   { "extra_time.collecting.ypos",               "2"                     },
2988   { "extra_time.collecting.frames",             "7"                     },
2989   { "extra_time.collecting.anim_mode",          "linear"                },
2990
2991   { "shield_normal",                            "RocksDC.png"           },
2992   { "shield_normal.xpos",                       "8"                     },
2993   { "shield_normal.ypos",                       "2"                     },
2994   { "shield_normal.frames",                     "6"                     },
2995   { "shield_normal.delay",                      "4"                     },
2996   { "shield_normal.active",                     "RocksHeroes.png"       },
2997   { "shield_normal.active.xpos",                "1"                     },
2998   { "shield_normal.active.ypos",                "13"                    },
2999   { "shield_normal.active.frames",              "3"                     },
3000   { "shield_normal.active.delay",               "8"                     },
3001   { "shield_normal.active.anim_mode",           "pingpong"              },
3002   { "shield_normal.collecting",                 "RocksCollect.png"      },
3003   { "shield_normal.collecting.xpos",            "7"                     },
3004   { "shield_normal.collecting.ypos",            "1"                     },
3005   { "shield_normal.collecting.frames",          "7"                     },
3006   { "shield_normal.collecting.anim_mode",       "linear"                },
3007
3008   { "shield_deadly",                            "RocksDC.png"           },
3009   { "shield_deadly.xpos",                       "8"                     },
3010   { "shield_deadly.ypos",                       "1"                     },
3011   { "shield_deadly.frames",                     "6"                     },
3012   { "shield_deadly.delay",                      "4"                     },
3013   { "shield_deadly.active",                     "RocksHeroes.png"       },
3014   { "shield_deadly.active.xpos",                "5"                     },
3015   { "shield_deadly.active.ypos",                "13"                    },
3016   { "shield_deadly.active.frames",              "3"                     },
3017   { "shield_deadly.active.delay",               "8"                     },
3018   { "shield_deadly.active.anim_mode",           "pingpong"              },
3019   { "shield_deadly.collecting",                 "RocksCollect.png"      },
3020   { "shield_deadly.collecting.xpos",            "7"                     },
3021   { "shield_deadly.collecting.ypos",            "3"                     },
3022   { "shield_deadly.collecting.frames",          "7"                     },
3023   { "shield_deadly.collecting.anim_mode",       "linear"                },
3024
3025   { "switchgate_closed",                        "RocksDC.png"           },
3026   { "switchgate_closed.xpos",                   "8"                     },
3027   { "switchgate_closed.ypos",                   "5"                     },
3028   { "switchgate_closed.frames",                 "1"                     },
3029   { "switchgate.opening",                       "RocksDC.png"           },
3030   { "switchgate.opening.xpos",                  "8"                     },
3031   { "switchgate.opening.ypos",                  "5"                     },
3032   { "switchgate.opening.frames",                "5"                     },
3033   { "switchgate.opening.delay",                 "6"                     },
3034   { "switchgate_open",                          "RocksDC.png"           },
3035   { "switchgate_open.xpos",                     "12"                    },
3036   { "switchgate_open.ypos",                     "5"                     },
3037   { "switchgate_open.frames",                   "1"                     },
3038   { "switchgate.closing",                       "RocksDC.png"           },
3039   { "switchgate.closing.xpos",                  "8"                     },
3040   { "switchgate.closing.ypos",                  "5"                     },
3041   { "switchgate.closing.frames",                "5"                     },
3042   { "switchgate.closing.delay",                 "6"                     },
3043   { "switchgate.closing.anim_mode",             "reverse"               },
3044
3045   { "timegate_closed",                          "RocksDC.png"           },
3046   { "timegate_closed.xpos",                     "8"                     },
3047   { "timegate_closed.ypos",                     "6"                     },
3048   { "timegate_closed.frames",                   "1"                     },
3049   { "timegate.opening",                         "RocksDC.png"           },
3050   { "timegate.opening.xpos",                    "8"                     },
3051   { "timegate.opening.ypos",                    "6"                     },
3052   { "timegate.opening.frames",                  "5"                     },
3053   { "timegate.opening.delay",                   "6"                     },
3054   { "timegate_open",                            "RocksDC.png"           },
3055   { "timegate_open.xpos",                       "12"                    },
3056   { "timegate_open.ypos",                       "6"                     },
3057   { "timegate_open.frames",                     "1"                     },
3058   { "timegate.closing",                         "RocksDC.png"           },
3059   { "timegate.closing.xpos",                    "8"                     },
3060   { "timegate.closing.ypos",                    "6"                     },
3061   { "timegate.closing.frames",                  "5"                     },
3062   { "timegate.closing.delay",                   "6"                     },
3063   { "timegate.closing.anim_mode",               "reverse"               },
3064
3065   { "pearl",                                    "RocksDC.png"           },
3066   { "pearl.xpos",                               "8"                     },
3067   { "pearl.ypos",                               "11"                    },
3068   { "pearl.frames",                             "1"                     },
3069   { "pearl.breaking",                           "RocksDC.png"           },
3070   { "pearl.breaking.xpos",                      "8"                     },
3071   { "pearl.breaking.ypos",                      "12"                    },
3072   { "pearl.breaking.frames",                    "4"                     },
3073   { "pearl.breaking.delay",                     "2"                     },
3074   { "pearl.breaking.anim_mode",                 "linear"                },
3075   { "pearl.collecting",                         "RocksCollect.png"      },
3076   { "pearl.collecting.xpos",                    "0"                     },
3077   { "pearl.collecting.ypos",                    "16"                    },
3078   { "pearl.collecting.frames",                  "7"                     },
3079   { "pearl.collecting.anim_mode",               "linear"                },
3080
3081   { "crystal",                                  "RocksDC.png"           },
3082   { "crystal.xpos",                             "9"                     },
3083   { "crystal.ypos",                             "11"                    },
3084   { "crystal.frames",                           "1"                     },
3085   { "crystal.collecting",                       "RocksCollect.png"      },
3086   { "crystal.collecting.xpos",                  "0"                     },
3087   { "crystal.collecting.ypos",                  "17"                    },
3088   { "crystal.collecting.frames",                "7"                     },
3089   { "crystal.collecting.anim_mode",             "linear"                },
3090
3091   { "wall_pearl",                               "RocksDC.png"           },
3092   { "wall_pearl.xpos",                          "10"                    },
3093   { "wall_pearl.ypos",                          "11"                    },
3094   { "wall_pearl.frames",                        "1"                     },
3095
3096   { "wall_crystal",                             "RocksDC.png"           },
3097   { "wall_crystal.xpos",                        "11"                    },
3098   { "wall_crystal.ypos",                        "11"                    },
3099   { "wall_crystal.frames",                      "1"                     },
3100
3101   { "dc_steelwall_1_left",                      "RocksDC2.png"          },
3102   { "dc_steelwall_1_left.xpos",                 "5"                     },
3103   { "dc_steelwall_1_left.ypos",                 "1"                     },
3104   { "dc_steelwall_1_left.frames",               "1"                     },
3105   { "dc_steelwall_1_right",                     "RocksDC2.png"          },
3106   { "dc_steelwall_1_right.xpos",                "3"                     },
3107   { "dc_steelwall_1_right.ypos",                "1"                     },
3108   { "dc_steelwall_1_right.frames",              "1"                     },
3109   { "dc_steelwall_1_top",                       "RocksDC2.png"          },
3110   { "dc_steelwall_1_top.xpos",                  "4"                     },
3111   { "dc_steelwall_1_top.ypos",                  "2"                     },
3112   { "dc_steelwall_1_top.frames",                "1"                     },
3113   { "dc_steelwall_1_bottom",                    "RocksDC2.png"          },
3114   { "dc_steelwall_1_bottom.xpos",               "4"                     },
3115   { "dc_steelwall_1_bottom.ypos",               "0"                     },
3116   { "dc_steelwall_1_bottom.frames",             "1"                     },
3117   { "dc_steelwall_1_horizontal",                "RocksDC2.png"          },
3118   { "dc_steelwall_1_horizontal.xpos",           "1"                     },
3119   { "dc_steelwall_1_horizontal.ypos",           "0"                     },
3120   { "dc_steelwall_1_horizontal.frames",         "1"                     },
3121   { "dc_steelwall_1_vertical",                  "RocksDC2.png"          },
3122   { "dc_steelwall_1_vertical.xpos",             "0"                     },
3123   { "dc_steelwall_1_vertical.ypos",             "1"                     },
3124   { "dc_steelwall_1_vertical.frames",           "1"                     },
3125   { "dc_steelwall_1_topleft",                   "RocksDC2.png"          },
3126   { "dc_steelwall_1_topleft.xpos",              "0"                     },
3127   { "dc_steelwall_1_topleft.ypos",              "0"                     },
3128   { "dc_steelwall_1_topleft.frames",            "1"                     },
3129   { "dc_steelwall_1_topright",                  "RocksDC2.png"          },
3130   { "dc_steelwall_1_topright.xpos",             "2"                     },
3131   { "dc_steelwall_1_topright.ypos",             "0"                     },
3132   { "dc_steelwall_1_topright.frames",           "1"                     },
3133   { "dc_steelwall_1_bottomleft",                "RocksDC2.png"          },
3134   { "dc_steelwall_1_bottomleft.xpos",           "0"                     },
3135   { "dc_steelwall_1_bottomleft.ypos",           "2"                     },
3136   { "dc_steelwall_1_bottomleft.frames",         "1"                     },
3137   { "dc_steelwall_1_bottomright",               "RocksDC2.png"          },
3138   { "dc_steelwall_1_bottomright.xpos",          "2"                     },
3139   { "dc_steelwall_1_bottomright.ypos",          "2"                     },
3140   { "dc_steelwall_1_bottomright.frames",        "1"                     },
3141   { "dc_steelwall_1_topleft_2",                 "RocksDC2.png"          },
3142   { "dc_steelwall_1_topleft_2.xpos",            "5"                     },
3143   { "dc_steelwall_1_topleft_2.ypos",            "2"                     },
3144   { "dc_steelwall_1_topleft_2.frames",          "1"                     },
3145   { "dc_steelwall_1_topright_2",                "RocksDC2.png"          },
3146   { "dc_steelwall_1_topright_2.xpos",           "3"                     },
3147   { "dc_steelwall_1_topright_2.ypos",           "2"                     },
3148   { "dc_steelwall_1_topright_2.frames",         "1"                     },
3149   { "dc_steelwall_1_bottomleft_2",              "RocksDC2.png"          },
3150   { "dc_steelwall_1_bottomleft_2.xpos",         "5"                     },
3151   { "dc_steelwall_1_bottomleft_2.ypos",         "0"                     },
3152   { "dc_steelwall_1_bottomleft_2.frames",       "1"                     },
3153   { "dc_steelwall_1_bottomright_2",             "RocksDC2.png"          },
3154   { "dc_steelwall_1_bottomright_2.xpos",        "3"                     },
3155   { "dc_steelwall_1_bottomright_2.ypos",        "0"                     },
3156   { "dc_steelwall_1_bottomright_2.frames",      "1"                     },
3157
3158   { "dc_steelwall_2_left",                      "RocksDC2.png"          },
3159   { "dc_steelwall_2_left.xpos",                 "6"                     },
3160   { "dc_steelwall_2_left.ypos",                 "1"                     },
3161   { "dc_steelwall_2_left.frames",               "1"                     },
3162   { "dc_steelwall_2_right",                     "RocksDC2.png"          },
3163   { "dc_steelwall_2_right.xpos",                "9"                     },
3164   { "dc_steelwall_2_right.ypos",                "1"                     },
3165   { "dc_steelwall_2_right.frames",              "1"                     },
3166   { "dc_steelwall_2_top",                       "RocksDC2.png"          },
3167   { "dc_steelwall_2_top.xpos",                  "7"                     },
3168   { "dc_steelwall_2_top.ypos",                  "0"                     },
3169   { "dc_steelwall_2_top.frames",                "1"                     },
3170   { "dc_steelwall_2_bottom",                    "RocksDC2.png"          },
3171   { "dc_steelwall_2_bottom.xpos",               "7"                     },
3172   { "dc_steelwall_2_bottom.ypos",               "3"                     },
3173   { "dc_steelwall_2_bottom.frames",             "1"                     },
3174   { "dc_steelwall_2_horizontal",                "RocksDC2.png"          },
3175   { "dc_steelwall_2_horizontal.xpos",           "8"                     },
3176   { "dc_steelwall_2_horizontal.ypos",           "1"                     },
3177   { "dc_steelwall_2_horizontal.frames",         "1"                     },
3178   { "dc_steelwall_2_vertical",                  "RocksDC2.png"          },
3179   { "dc_steelwall_2_vertical.xpos",             "7"                     },
3180   { "dc_steelwall_2_vertical.ypos",             "2"                     },
3181   { "dc_steelwall_2_vertical.frames",           "1"                     },
3182   { "dc_steelwall_2_middle",                    "RocksDC2.png"          },
3183   { "dc_steelwall_2_middle.xpos",               "7"                     },
3184   { "dc_steelwall_2_middle.ypos",               "1"                     },
3185   { "dc_steelwall_2_middle.frames",             "1"                     },
3186   { "dc_steelwall_2_single",                    "RocksDC2.png"          },
3187   { "dc_steelwall_2_single.xpos",               "6"                     },
3188   { "dc_steelwall_2_single.ypos",               "0"                     },
3189   { "dc_steelwall_2_single.frames",             "1"                     },
3190
3191   // images for DX Boulderdash style elements and actions
3192
3193   { "tube_right_down",                          "RocksDC.png"           },
3194   { "tube_right_down.xpos",                     "9"                     },
3195   { "tube_right_down.ypos",                     "13"                    },
3196   { "tube_right_down.frames",                   "1"                     },
3197
3198   { "tube_horizontal_down",                     "RocksDC.png"           },
3199   { "tube_horizontal_down.xpos",                "10"                    },
3200   { "tube_horizontal_down.ypos",                "13"                    },
3201   { "tube_horizontal_down.frames",              "1"                     },
3202
3203   { "tube_left_down",                           "RocksDC.png"           },
3204   { "tube_left_down.xpos",                      "11"                    },
3205   { "tube_left_down.ypos",                      "13"                    },
3206   { "tube_left_down.frames",                    "1"                     },
3207
3208   { "tube_horizontal",                          "RocksDC.png"           },
3209   { "tube_horizontal.xpos",                     "8"                     },
3210   { "tube_horizontal.ypos",                     "14"                    },
3211   { "tube_horizontal.frames",                   "1"                     },
3212
3213   { "tube_vertical_right",                      "RocksDC.png"           },
3214   { "tube_vertical_right.xpos",                 "9"                     },
3215   { "tube_vertical_right.ypos",                 "14"                    },
3216   { "tube_vertical_right.frames",               "1"                     },
3217
3218   { "tube_any",                                 "RocksDC.png"           },
3219   { "tube_any.xpos",                            "10"                    },
3220   { "tube_any.ypos",                            "14"                    },
3221   { "tube_any.frames",                          "1"                     },
3222
3223   { "tube_vertical_left",                       "RocksDC.png"           },
3224   { "tube_vertical_left.xpos",                  "11"                    },
3225   { "tube_vertical_left.ypos",                  "14"                    },
3226   { "tube_vertical_left.frames",                "1"                     },
3227
3228   { "tube_vertical",                            "RocksDC.png"           },
3229   { "tube_vertical.xpos",                       "8"                     },
3230   { "tube_vertical.ypos",                       "15"                    },
3231   { "tube_vertical.frames",                     "1"                     },
3232
3233   { "tube_right_up",                            "RocksDC.png"           },
3234   { "tube_right_up.xpos",                       "9"                     },
3235   { "tube_right_up.ypos",                       "15"                    },
3236   { "tube_right_up.frames",                     "1"                     },
3237
3238   { "tube_horizontal_up",                       "RocksDC.png"           },
3239   { "tube_horizontal_up.xpos",                  "10"                    },
3240   { "tube_horizontal_up.ypos",                  "15"                    },
3241   { "tube_horizontal_up.frames",                "1"                     },
3242
3243   { "tube_left_up",                             "RocksDC.png"           },
3244   { "tube_left_up.xpos",                        "11"                    },
3245   { "tube_left_up.ypos",                        "15"                    },
3246   { "tube_left_up.frames",                      "1"                     },
3247
3248   { "trap",                                     "RocksDC.png"           },
3249   { "trap.xpos",                                "12"                    },
3250   { "trap.ypos",                                "8"                     },
3251   { "trap.frames",                              "1"                     },
3252   { "trap.crumbled_like",                       "sand"                  },
3253   { "trap.diggable_like",                       "sand"                  },
3254   { "trap.active",                              "RocksDC.png"           },
3255   { "trap.active.xpos",                         "12"                    },
3256   { "trap.active.ypos",                         "8"                     },
3257   { "trap.active.frames",                       "4"                     },
3258   { "trap.active.delay",                        "4"                     },
3259   { "trap.active.anim_mode",                    "pingpong2"             },
3260   { "trap.active.crumbled_like",                "sand"                  },
3261
3262   { "dx_supabomb",                              "RocksDC.png"           },
3263   { "dx_supabomb.xpos",                         "15"                    },
3264   { "dx_supabomb.ypos",                         "9"                     },
3265   { "dx_supabomb.frames",                       "1"                     },
3266
3267   // images for Rocks'n'Diamonds style elements and actions
3268
3269   { "key_1",                                    "RocksElements.png"     },
3270   { "key_1.xpos",                               "4"                     },
3271   { "key_1.ypos",                               "1"                     },
3272   { "key_1.frames",                             "1"                     },
3273   { "key_1.collecting",                         "RocksCollect.png"      },
3274   { "key_1.collecting.xpos",                    "0"                     },
3275   { "key_1.collecting.ypos",                    "3"                     },
3276   { "key_1.collecting.frames",                  "7"                     },
3277   { "key_1.collecting.anim_mode",               "linear"                },
3278   { "key_2",                                    "RocksElements.png"     },
3279   { "key_2.xpos",                               "5"                     },
3280   { "key_2.ypos",                               "1"                     },
3281   { "key_2.frames",                             "1"                     },
3282   { "key_2.collecting",                         "RocksCollect.png"      },
3283   { "key_2.collecting.xpos",                    "0"                     },
3284   { "key_2.collecting.ypos",                    "4"                     },
3285   { "key_2.collecting.frames",                  "7"                     },
3286   { "key_2.collecting.anim_mode",               "linear"                },
3287   { "key_3",                                    "RocksElements.png"     },
3288   { "key_3.xpos",                               "6"                     },
3289   { "key_3.ypos",                               "1"                     },
3290   { "key_3.frames",                             "1"                     },
3291   { "key_3.collecting",                         "RocksCollect.png"      },
3292   { "key_3.collecting.xpos",                    "0"                     },
3293   { "key_3.collecting.ypos",                    "5"                     },
3294   { "key_3.collecting.frames",                  "7"                     },
3295   { "key_3.collecting.anim_mode",               "linear"                },
3296   { "key_4",                                    "RocksElements.png"     },
3297   { "key_4.xpos",                               "7"                     },
3298   { "key_4.ypos",                               "1"                     },
3299   { "key_4.frames",                             "1"                     },
3300   { "key_4.collecting",                         "RocksCollect.png"      },
3301   { "key_4.collecting.xpos",                    "0"                     },
3302   { "key_4.collecting.ypos",                    "6"                     },
3303   { "key_4.collecting.frames",                  "7"                     },
3304   { "key_4.collecting.anim_mode",               "linear"                },
3305
3306   { "gate_1",                                   "RocksElements.png"     },
3307   { "gate_1.xpos",                              "4"                     },
3308   { "gate_1.ypos",                              "2"                     },
3309   { "gate_1.frames",                            "1"                     },
3310   { "gate_2",                                   "RocksElements.png"     },
3311   { "gate_2.xpos",                              "5"                     },
3312   { "gate_2.ypos",                              "2"                     },
3313   { "gate_2.frames",                            "1"                     },
3314   { "gate_3",                                   "RocksElements.png"     },
3315   { "gate_3.xpos",                              "6"                     },
3316   { "gate_3.ypos",                              "2"                     },
3317   { "gate_3.frames",                            "1"                     },
3318   { "gate_4",                                   "RocksElements.png"     },
3319   { "gate_4.xpos",                              "7"                     },
3320   { "gate_4.ypos",                              "2"                     },
3321   { "gate_4.frames",                            "1"                     },
3322   { "gate_1_gray",                              "RocksElements.png"     },
3323   { "gate_1_gray.xpos",                         "8"                     },
3324   { "gate_1_gray.ypos",                         "2"                     },
3325   { "gate_1_gray.frames",                       "1"                     },
3326   { "gate_1_gray.EDITOR",                       "RocksElements.png"     },
3327   { "gate_1_gray.EDITOR.xpos",                  "8"                     },
3328   { "gate_1_gray.EDITOR.ypos",                  "14"                    },
3329   { "gate_1_gray.active",                       "RocksElements.png"     },
3330   { "gate_1_gray.active.xpos",                  "4"                     },
3331   { "gate_1_gray.active.ypos",                  "2"                     },
3332   { "gate_1_gray.active.frames",                "1"                     },
3333   { "gate_2_gray",                              "RocksElements.png"     },
3334   { "gate_2_gray.xpos",                         "9"                     },
3335   { "gate_2_gray.ypos",                         "2"                     },
3336   { "gate_2_gray.frames",                       "1"                     },
3337   { "gate_2_gray.EDITOR",                       "RocksElements.png"     },
3338   { "gate_2_gray.EDITOR.xpos",                  "9"                     },
3339   { "gate_2_gray.EDITOR.ypos",                  "14"                    },
3340   { "gate_2_gray.active",                       "RocksElements.png"     },
3341   { "gate_2_gray.active.xpos",                  "5"                     },
3342   { "gate_2_gray.active.ypos",                  "2"                     },
3343   { "gate_2_gray.active.frames",                "1"                     },
3344   { "gate_3_gray",                              "RocksElements.png"     },
3345   { "gate_3_gray.xpos",                         "10"                    },
3346   { "gate_3_gray.ypos",                         "2"                     },
3347   { "gate_3_gray.frames",                       "1"                     },
3348   { "gate_3_gray.EDITOR",                       "RocksElements.png"     },
3349   { "gate_3_gray.EDITOR.xpos",                  "10"                    },
3350   { "gate_3_gray.EDITOR.ypos",                  "14"                    },
3351   { "gate_3_gray.active",                       "RocksElements.png"     },
3352   { "gate_3_gray.active.xpos",                  "6"                     },
3353   { "gate_3_gray.active.ypos",                  "2"                     },
3354   { "gate_3_gray.active.frames",                "1"                     },
3355   { "gate_4_gray",                              "RocksElements.png"     },
3356   { "gate_4_gray.xpos",                         "11"                    },
3357   { "gate_4_gray.ypos",                         "2"                     },
3358   { "gate_4_gray.frames",                       "1"                     },
3359   { "gate_4_gray.EDITOR",                       "RocksElements.png"     },
3360   { "gate_4_gray.EDITOR.xpos",                  "11"                    },
3361   { "gate_4_gray.EDITOR.ypos",                  "14"                    },
3362   { "gate_4_gray.active",                       "RocksElements.png"     },
3363   { "gate_4_gray.active.xpos",                  "7"                     },
3364   { "gate_4_gray.active.ypos",                  "2"                     },
3365   { "gate_4_gray.active.frames",                "1"                     },
3366
3367   { "game_of_life",                             "RocksElements.png"     },
3368   { "game_of_life.xpos",                        "8"                     },
3369   { "game_of_life.ypos",                        "1"                     },
3370   { "game_of_life.frames",                      "1"                     },
3371
3372   { "biomaze",                                  "RocksElements.png"     },
3373   { "biomaze.xpos",                             "9"                     },
3374   { "biomaze.ypos",                             "1"                     },
3375   { "biomaze.frames",                           "1"                     },
3376
3377   { "pacman",                                   "RocksElements.png"     },
3378   { "pacman.xpos",                              "8"                     },
3379   { "pacman.ypos",                              "5"                     },
3380   { "pacman.frames",                            "1"                     },
3381   { "pacman.right",                             "RocksElements.png"     },
3382   { "pacman.right.xpos",                        "8"                     },
3383   { "pacman.right.ypos",                        "5"                     },
3384   { "pacman.right.frames",                      "2"                     },
3385   { "pacman.right.delay",                       "4"                     },
3386   { "pacman.right.offset",                      "128"                   },
3387   { "pacman.up",                                "RocksElements.png"     },
3388   { "pacman.up.xpos",                           "9"                     },
3389   { "pacman.up.ypos",                           "5"                     },
3390   { "pacman.up.frames",                         "2"                     },
3391   { "pacman.up.delay",                          "4"                     },
3392   { "pacman.up.offset",                         "128"                   },
3393   { "pacman.left",                              "RocksElements.png"     },
3394   { "pacman.left.xpos",                         "10"                    },
3395   { "pacman.left.ypos",                         "5"                     },
3396   { "pacman.left.frames",                       "2"                     },
3397   { "pacman.left.delay",                        "4"                     },
3398   { "pacman.left.offset",                       "128"                   },
3399   { "pacman.down",                              "RocksElements.png"     },
3400   { "pacman.down.xpos",                         "11"                    },
3401   { "pacman.down.ypos",                         "5"                     },
3402   { "pacman.down.frames",                       "2"                     },
3403   { "pacman.down.delay",                        "4"                     },
3404   { "pacman.down.offset",                       "128"                   },
3405   { "pacman.turning_from_right",                "RocksElements.png"     },
3406   { "pacman.turning_from_right.xpos",           "12"                    },
3407   { "pacman.turning_from_right.ypos",           "5"                     },
3408   { "pacman.turning_from_right.frames",         "1"                     },
3409   { "pacman.turning_from_up",                   "RocksElements.png"     },
3410   { "pacman.turning_from_up.xpos",              "13"                    },
3411   { "pacman.turning_from_up.ypos",              "5"                     },
3412   { "pacman.turning_from_up.frames",            "1"                     },
3413   { "pacman.turning_from_left",                 "RocksElements.png"     },
3414   { "pacman.turning_from_left.xpos",            "14"                    },
3415   { "pacman.turning_from_left.ypos",            "5"                     },
3416   { "pacman.turning_from_left.frames",          "1"                     },
3417   { "pacman.turning_from_down",                 "RocksElements.png"     },
3418   { "pacman.turning_from_down.xpos",            "15"                    },
3419   { "pacman.turning_from_down.ypos",            "5"                     },
3420   { "pacman.turning_from_down.frames",          "1"                     },
3421
3422   { "lamp",                                     "RocksElements.png"     },
3423   { "lamp.xpos",                                "0"                     },
3424   { "lamp.ypos",                                "7"                     },
3425   { "lamp.frames",                              "1"                     },
3426   { "lamp.active",                              "RocksElements.png"     },
3427   { "lamp.active.xpos",                         "1"                     },
3428   { "lamp.active.ypos",                         "7"                     },
3429   { "lamp.active.frames",                       "1"                     },
3430
3431   { "time_orb_full",                            "RocksElements.png"     },
3432   { "time_orb_full.xpos",                       "2"                     },
3433   { "time_orb_full.ypos",                       "7"                     },
3434   { "time_orb_full.frames",                     "1"                     },
3435   { "time_orb_empty",                           "RocksElements.png"     },
3436   { "time_orb_empty.xpos",                      "3"                     },
3437   { "time_orb_empty.ypos",                      "7"                     },
3438   { "time_orb_empty.frames",                    "1"                     },
3439
3440   { "emerald_yellow",                           "RocksElements.png"     },
3441   { "emerald_yellow.xpos",                      "10"                    },
3442   { "emerald_yellow.ypos",                      "8"                     },
3443   { "emerald_yellow.frames",                    "1"                     },
3444   { "emerald_yellow.moving",                    "RocksElements.png"     },
3445   { "emerald_yellow.moving.xpos",               "10"                    },
3446   { "emerald_yellow.moving.ypos",               "8"                     },
3447   { "emerald_yellow.moving.frames",             "2"                     },
3448   { "emerald_yellow.moving.delay",              "4"                     },
3449   { "emerald_yellow.falling",                   "RocksElements.png"     },
3450   { "emerald_yellow.falling.xpos",              "10"                    },
3451   { "emerald_yellow.falling.ypos",              "8"                     },
3452   { "emerald_yellow.falling.frames",            "2"                     },
3453   { "emerald_yellow.falling.delay",             "4"                     },
3454   { "emerald_yellow.collecting",                "RocksCollect.png"      },
3455   { "emerald_yellow.collecting.xpos",           "0"                     },
3456   { "emerald_yellow.collecting.ypos",           "9"                     },
3457   { "emerald_yellow.collecting.frames",         "7"                     },
3458   { "emerald_yellow.collecting.anim_mode",      "linear"                },
3459   { "emerald_red",                              "RocksElements.png"     },
3460   { "emerald_red.xpos",                         "8"                     },
3461   { "emerald_red.ypos",                         "9"                     },
3462   { "emerald_red.frames",                       "1"                     },
3463   { "emerald_red.moving",                       "RocksElements.png"     },
3464   { "emerald_red.moving.xpos",                  "8"                     },
3465   { "emerald_red.moving.ypos",                  "9"                     },
3466   { "emerald_red.moving.frames",                "2"                     },
3467   { "emerald_red.moving.delay",                 "4"                     },
3468   { "emerald_red.falling",                      "RocksElements.png"     },
3469   { "emerald_red.falling.xpos",                 "8"                     },
3470   { "emerald_red.falling.ypos",                 "9"                     },
3471   { "emerald_red.falling.frames",               "2"                     },
3472   { "emerald_red.falling.delay",                "4"                     },
3473   { "emerald_red.collecting",                   "RocksCollect.png"      },
3474   { "emerald_red.collecting.xpos",              "0"                     },
3475   { "emerald_red.collecting.ypos",              "13"                    },
3476   { "emerald_red.collecting.frames",            "7"                     },
3477   { "emerald_red.collecting.anim_mode",         "linear"                },
3478   { "emerald_purple",                           "RocksElements.png"     },
3479   { "emerald_purple.xpos",                      "10"                    },
3480   { "emerald_purple.ypos",                      "9"                     },
3481   { "emerald_purple.frames",                    "1"                     },
3482   { "emerald_purple.moving",                    "RocksElements.png"     },
3483   { "emerald_purple.moving.xpos",               "10"                    },
3484   { "emerald_purple.moving.ypos",               "9"                     },
3485   { "emerald_purple.moving.frames",             "2"                     },
3486   { "emerald_purple.moving.delay",              "4"                     },
3487   { "emerald_purple.falling",                   "RocksElements.png"     },
3488   { "emerald_purple.falling.xpos",              "10"                    },
3489   { "emerald_purple.falling.ypos",              "9"                     },
3490   { "emerald_purple.falling.frames",            "2"                     },
3491   { "emerald_purple.falling.delay",             "4"                     },
3492   { "emerald_purple.collecting",                "RocksCollect.png"      },
3493   { "emerald_purple.collecting.xpos",           "0"                     },
3494   { "emerald_purple.collecting.ypos",           "14"                    },
3495   { "emerald_purple.collecting.frames",         "7"                     },
3496   { "emerald_purple.collecting.anim_mode",      "linear"                },
3497
3498   { "wall_emerald_yellow",                      "RocksElements.png"     },
3499   { "wall_emerald_yellow.xpos",                 "8"                     },
3500   { "wall_emerald_yellow.ypos",                 "8"                     },
3501   { "wall_emerald_yellow.frames",               "1"                     },
3502   { "wall_emerald_red",                         "RocksElements.png"     },
3503   { "wall_emerald_red.xpos",                    "6"                     },
3504   { "wall_emerald_red.ypos",                    "8"                     },
3505   { "wall_emerald_red.frames",                  "1"                     },
3506   { "wall_emerald_purple",                      "RocksElements.png"     },
3507   { "wall_emerald_purple.xpos",                 "7"                     },
3508   { "wall_emerald_purple.ypos",                 "8"                     },
3509   { "wall_emerald_purple.frames",               "1"                     },
3510   { "wall_bd_diamond",                          "RocksElements.png"     },
3511   { "wall_bd_diamond.xpos",                     "9"                     },
3512   { "wall_bd_diamond.ypos",                     "8"                     },
3513   { "wall_bd_diamond.frames",                   "1"                     },
3514
3515   { "expandable_wall",                          "RocksElements.png"     },
3516   { "expandable_wall.xpos",                     "11"                    },
3517   { "expandable_wall.ypos",                     "10"                    },
3518   { "expandable_wall.frames",                   "1"                     },
3519   { "expandable_wall_horizontal",               "RocksElements.png"     },
3520   { "expandable_wall_horizontal.xpos",          "5"                     },
3521   { "expandable_wall_horizontal.ypos",          "9"                     },
3522   { "expandable_wall_horizontal.frames",        "1"                     },
3523   { "expandable_wall_horizontal.EDITOR",        "RocksElements.png"     },
3524   { "expandable_wall_horizontal.EDITOR.xpos",   "13"                    },
3525   { "expandable_wall_horizontal.EDITOR.ypos",   "13"                    },
3526   { "expandable_wall_vertical",                 "RocksElements.png"     },
3527   { "expandable_wall_vertical.xpos",            "6"                     },
3528   { "expandable_wall_vertical.ypos",            "9"                     },
3529   { "expandable_wall_vertical.frames",          "1"                     },
3530   { "expandable_wall_vertical.EDITOR",          "RocksElements.png"     },
3531   { "expandable_wall_vertical.EDITOR.xpos",     "14"                    },
3532   { "expandable_wall_vertical.EDITOR.ypos",     "13"                    },
3533   { "expandable_wall_any",                      "RocksElements.png"     },
3534   { "expandable_wall_any.xpos",                 "4"                     },
3535   { "expandable_wall_any.ypos",                 "9"                     },
3536   { "expandable_wall_any.frames",               "1"                     },
3537   { "expandable_wall_any.EDITOR",               "RocksElements.png"     },
3538   { "expandable_wall_any.EDITOR.xpos",          "12"                    },
3539   { "expandable_wall_any.EDITOR.ypos",          "13"                    },
3540
3541   { "expandable_steelwall_horizontal",          "RocksDC2.png"          },
3542   { "expandable_steelwall_horizontal.xpos",     "6"                     },
3543   { "expandable_steelwall_horizontal.ypos",     "2"                     },
3544   { "expandable_steelwall_horizontal.frames",   "1"                     },
3545   { "expandable_steelwall_horizontal.EDITOR",   "RocksDC2.png"          },
3546   { "expandable_steelwall_horizontal.EDITOR.xpos","9"                   },
3547   { "expandable_steelwall_horizontal.EDITOR.ypos","2"                   },
3548   { "expandable_steelwall_vertical",            "RocksDC2.png"          },
3549   { "expandable_steelwall_vertical.xpos",       "6"                     },
3550   { "expandable_steelwall_vertical.ypos",       "2"                     },
3551   { "expandable_steelwall_vertical.frames",     "1"                     },
3552   { "expandable_steelwall_vertical.EDITOR",     "RocksDC2.png"          },
3553   { "expandable_steelwall_vertical.EDITOR.xpos","10"                    },
3554   { "expandable_steelwall_vertical.EDITOR.ypos","2"                     },
3555   { "expandable_steelwall_any",                 "RocksDC2.png"          },
3556   { "expandable_steelwall_any.xpos",            "6"                     },
3557   { "expandable_steelwall_any.ypos",            "2"                     },
3558   { "expandable_steelwall_any.frames",          "1"                     },
3559   { "expandable_steelwall_any.EDITOR",          "RocksDC2.png"          },
3560   { "expandable_steelwall_any.EDITOR.xpos",     "8"                     },
3561   { "expandable_steelwall_any.EDITOR.ypos",     "2"                     },
3562
3563   { "bd_expandable_wall",                       "RocksElements.png"     },
3564   { "bd_expandable_wall.xpos",                  "5"                     },
3565   { "bd_expandable_wall.ypos",                  "9"                     },
3566   { "bd_expandable_wall.frames",                "1"                     },
3567   { "bd_expandable_wall.EDITOR",                "RocksDC.png"           },
3568   { "bd_expandable_wall.EDITOR.xpos",           "15"                    },
3569   { "bd_expandable_wall.EDITOR.ypos",           "15"                    },
3570
3571   { "expandable_wall.growing.left",             "RocksElements.png"     },
3572   { "expandable_wall.growing.left.xpos",        "8"                     },
3573   { "expandable_wall.growing.left.ypos",        "10"                    },
3574   { "expandable_wall.growing.left.frames",      "3"                     },
3575   { "expandable_wall.growing.left.delay",       "6"                     },
3576   { "expandable_wall.growing.left.anim_mode",   "linear"                },
3577   { "expandable_wall.growing.right",            "RocksElements.png"     },
3578   { "expandable_wall.growing.right.xpos",       "5"                     },
3579   { "expandable_wall.growing.right.ypos",       "10"                    },
3580   { "expandable_wall.growing.right.frames",     "3"                     },
3581   { "expandable_wall.growing.right.delay",      "6"                     },
3582   { "expandable_wall.growing.right.anim_mode",  "linear"                },
3583   { "expandable_wall.growing.up",               "RocksHeroes.png"       },
3584   { "expandable_wall.growing.up.xpos",          "3"                     },
3585   { "expandable_wall.growing.up.ypos",          "12"                    },
3586   { "expandable_wall.growing.up.frames",        "3"                     },
3587   { "expandable_wall.growing.up.delay",         "6"                     },
3588   { "expandable_wall.growing.up.anim_mode",     "linear"                },
3589   { "expandable_wall.growing.down",             "RocksHeroes.png"       },
3590   { "expandable_wall.growing.down.xpos",        "0"                     },
3591   { "expandable_wall.growing.down.ypos",        "12"                    },
3592   { "expandable_wall.growing.down.frames",      "3"                     },
3593   { "expandable_wall.growing.down.delay",       "6"                     },
3594   { "expandable_wall.growing.down.anim_mode",   "linear"                },
3595
3596   { "expandable_steelwall.growing.left",        "RocksDC2.png"          },
3597   { "expandable_steelwall.growing.left.xpos",   "8"                     },
3598   { "expandable_steelwall.growing.left.ypos",   "4"                     },
3599   { "expandable_steelwall.growing.left.frames", "4"                     },
3600   { "expandable_steelwall.growing.left.delay",  "4"                     },
3601   { "expandable_steelwall.growing.left.anim_mode","linear"              },
3602   { "expandable_steelwall.growing.right",       "RocksDC2.png"          },
3603   { "expandable_steelwall.growing.right.xpos",  "12"                    },
3604   { "expandable_steelwall.growing.right.ypos",  "4"                     },
3605   { "expandable_steelwall.growing.right.frames","4"                     },
3606   { "expandable_steelwall.growing.right.delay", "4"                     },
3607   { "expandable_steelwall.growing.right.anim_mode","linear"             },
3608   { "expandable_steelwall.growing.up",          "RocksDC2.png"          },
3609   { "expandable_steelwall.growing.up.xpos",     "8"                     },
3610   { "expandable_steelwall.growing.up.ypos",     "5"                     },
3611   { "expandable_steelwall.growing.up.frames",   "4"                     },
3612   { "expandable_steelwall.growing.up.delay",    "4"                     },
3613   { "expandable_steelwall.growing.up.anim_mode","linear"                },
3614   { "expandable_steelwall.growing.down",        "RocksDC2.png"          },
3615   { "expandable_steelwall.growing.down.xpos",   "12"                    },
3616   { "expandable_steelwall.growing.down.ypos",   "5"                     },
3617   { "expandable_steelwall.growing.down.frames", "4"                     },
3618   { "expandable_steelwall.growing.down.delay",  "4"                     },
3619   { "expandable_steelwall.growing.down.anim_mode","linear"              },
3620
3621   { "black_orb",                                "RocksElements.png"     },
3622   { "black_orb.xpos",                           "13"                    },
3623   { "black_orb.ypos",                           "9"                     },
3624   { "black_orb.frames",                         "1"                     },
3625
3626   { "speed_pill",                               "RocksElements.png"     },
3627   { "speed_pill.xpos",                          "14"                    },
3628   { "speed_pill.ypos",                          "9"                     },
3629   { "speed_pill.frames",                        "1"                     },
3630   { "speed_pill.collecting",                    "RocksCollect.png"      },
3631   { "speed_pill.collecting.xpos",               "0"                     },
3632   { "speed_pill.collecting.ypos",               "2"                     },
3633   { "speed_pill.collecting.frames",             "7"                     },
3634   { "speed_pill.collecting.anim_mode",          "linear"                },
3635
3636   { "dark_yamyam",                              "RocksElements.png"     },
3637   { "dark_yamyam.xpos",                         "8"                     },
3638   { "dark_yamyam.ypos",                         "11"                    },
3639   { "dark_yamyam.frames",                       "4"                     },
3640   { "dark_yamyam.anim_mode",                    "pingpong2"             },
3641
3642   { "dynabomb",                                 "RocksElements.png"     },
3643   { "dynabomb.xpos",                            "12"                    },
3644   { "dynabomb.ypos",                            "11"                    },
3645   { "dynabomb.frames",                          "1"                     },
3646   { "dynabomb.active",                          "RocksElements.png"     },
3647   { "dynabomb.active.xpos",                     "12"                    },
3648   { "dynabomb.active.ypos",                     "11"                    },
3649   { "dynabomb.active.frames",                   "4"                     },
3650   { "dynabomb.active.delay",                    "6"                     },
3651   { "dynabomb.active.anim_mode",                "pingpong"              },
3652   { "dynabomb_player_1",                        "RocksElements.png"     },
3653   { "dynabomb_player_1.xpos",                   "12"                    },
3654   { "dynabomb_player_1.ypos",                   "11"                    },
3655   { "dynabomb_player_1.frames",                 "1"                     },
3656   { "dynabomb_player_1.active",                 "RocksElements.png"     },
3657   { "dynabomb_player_1.active.xpos",            "12"                    },
3658   { "dynabomb_player_1.active.ypos",            "11"                    },
3659   { "dynabomb_player_1.active.frames",          "4"                     },
3660   { "dynabomb_player_1.active.delay",           "6"                     },
3661   { "dynabomb_player_1.active.anim_mode",       "pingpong"              },
3662   { "dynabomb_player_2",                        "RocksElements.png"     },
3663   { "dynabomb_player_2.xpos",                   "12"                    },
3664   { "dynabomb_player_2.ypos",                   "11"                    },
3665   { "dynabomb_player_2.frames",                 "1"                     },
3666   { "dynabomb_player_2.active",                 "RocksElements.png"     },
3667   { "dynabomb_player_2.active.xpos",            "12"                    },
3668   { "dynabomb_player_2.active.ypos",            "11"                    },
3669   { "dynabomb_player_2.active.frames",          "4"                     },
3670   { "dynabomb_player_2.active.delay",           "6"                     },
3671   { "dynabomb_player_2.active.anim_mode",       "pingpong"              },
3672   { "dynabomb_player_3",                        "RocksElements.png"     },
3673   { "dynabomb_player_3.xpos",                   "12"                    },
3674   { "dynabomb_player_3.ypos",                   "11"                    },
3675   { "dynabomb_player_3.frames",                 "1"                     },
3676   { "dynabomb_player_3.active",                 "RocksElements.png"     },
3677   { "dynabomb_player_3.active.xpos",            "12"                    },
3678   { "dynabomb_player_3.active.ypos",            "11"                    },
3679   { "dynabomb_player_3.active.frames",          "4"                     },
3680   { "dynabomb_player_3.active.delay",           "6"                     },
3681   { "dynabomb_player_3.active.anim_mode",       "pingpong"              },
3682   { "dynabomb_player_4",                        "RocksElements.png"     },
3683   { "dynabomb_player_4.xpos",                   "12"                    },
3684   { "dynabomb_player_4.ypos",                   "11"                    },
3685   { "dynabomb_player_4.frames",                 "1"                     },
3686   { "dynabomb_player_4.active",                 "RocksElements.png"     },
3687   { "dynabomb_player_4.active.xpos",            "12"                    },
3688   { "dynabomb_player_4.active.ypos",            "11"                    },
3689   { "dynabomb_player_4.active.frames",          "4"                     },
3690   { "dynabomb_player_4.active.delay",           "6"                     },
3691   { "dynabomb_player_4.active.anim_mode",       "pingpong"              },
3692   { "dynabomb_increase_number",                 "RocksElements.png"     },
3693   { "dynabomb_increase_number.xpos",            "12"                    },
3694   { "dynabomb_increase_number.ypos",            "11"                    },
3695   { "dynabomb_increase_number.frames",          "1"                     },
3696   { "dynabomb_increase_number.collecting",      "RocksCollect.png"      },
3697   { "dynabomb_increase_number.collecting.xpos", "0"                     },
3698   { "dynabomb_increase_number.collecting.ypos", "10"                    },
3699   { "dynabomb_increase_number.collecting.frames", "7"                   },
3700   { "dynabomb_increase_number.collecting.anim_mode", "linear"           },
3701   { "dynabomb_increase_size",                   "RocksElements.png"     },
3702   { "dynabomb_increase_size.xpos",              "15"                    },
3703   { "dynabomb_increase_size.ypos",              "11"                    },
3704   { "dynabomb_increase_size.frames",            "1"                     },
3705   { "dynabomb_increase_size.collecting",        "RocksCollect.png"      },
3706   { "dynabomb_increase_size.collecting.xpos",   "0"                     },
3707   { "dynabomb_increase_size.collecting.ypos",   "11"                    },
3708   { "dynabomb_increase_size.collecting.frames", "7"                     },
3709   { "dynabomb_increase_size.collecting.anim_mode", "linear"             },
3710   { "dynabomb_increase_power",                  "RocksElements.png"     },
3711   { "dynabomb_increase_power.xpos",             "12"                    },
3712   { "dynabomb_increase_power.ypos",             "9"                     },
3713   { "dynabomb_increase_power.frames",           "1"                     },
3714   { "dynabomb_increase_power.collecting",       "RocksCollect.png"      },
3715   { "dynabomb_increase_power.collecting.xpos",  "0"                     },
3716   { "dynabomb_increase_power.collecting.ypos",  "12"                    },
3717   { "dynabomb_increase_power.collecting.frames", "7"                    },
3718   { "dynabomb_increase_power.collecting.anim_mode", "linear"            },
3719
3720   { "pig",                                      "RocksHeroes.png"       },
3721   { "pig.xpos",                                 "8"                     },
3722   { "pig.ypos",                                 "0"                     },
3723   { "pig.frames",                               "1"                     },
3724   { "pig.down",                                 "RocksHeroes.png"       },
3725   { "pig.down.xpos",                            "8"                     },
3726   { "pig.down.ypos",                            "0"                     },
3727   { "pig.down.frames",                          "1"                     },
3728   { "pig.up",                                   "RocksHeroes.png"       },
3729   { "pig.up.xpos",                              "12"                    },
3730   { "pig.up.ypos",                              "0"                     },
3731   { "pig.up.frames",                            "1"                     },
3732   { "pig.left",                                 "RocksHeroes.png"       },
3733   { "pig.left.xpos",                            "8"                     },
3734   { "pig.left.ypos",                            "1"                     },
3735   { "pig.left.frames",                          "1"                     },
3736   { "pig.right",                                "RocksHeroes.png"       },
3737   { "pig.right.xpos",                           "12"                    },
3738   { "pig.right.ypos",                           "1"                     },
3739   { "pig.right.frames",                         "1"                     },
3740   { "pig.moving.down",                          "RocksHeroes.png"       },
3741   { "pig.moving.down.xpos",                     "8"                     },
3742   { "pig.moving.down.ypos",                     "0"                     },
3743   { "pig.moving.down.frames",                   "4"                     },
3744   { "pig.moving.down.delay",                    "2"                     },
3745   { "pig.moving.up",                            "RocksHeroes.png"       },
3746   { "pig.moving.up.xpos",                       "12"                    },
3747   { "pig.moving.up.ypos",                       "0"                     },
3748   { "pig.moving.up.frames",                     "4"                     },
3749   { "pig.moving.up.delay",                      "2"                     },
3750   { "pig.moving.left",                          "RocksHeroes.png"       },
3751   { "pig.moving.left.xpos",                     "8"                     },
3752   { "pig.moving.left.ypos",                     "1"                     },
3753   { "pig.moving.left.frames",                   "4"                     },
3754   { "pig.moving.left.delay",                    "2"                     },
3755   { "pig.moving.right",                         "RocksHeroes.png"       },
3756   { "pig.moving.right.xpos",                    "12"                    },
3757   { "pig.moving.right.ypos",                    "1"                     },
3758   { "pig.moving.right.frames",                  "4"                     },
3759   { "pig.moving.right.delay",                   "2"                     },
3760   { "pig.digging.down",                         "RocksHeroes.png"       },
3761   { "pig.digging.down.xpos",                    "8"                     },
3762   { "pig.digging.down.ypos",                    "0"                     },
3763   { "pig.digging.down.frames",                  "4"                     },
3764   { "pig.digging.down.delay",                   "2"                     },
3765   { "pig.digging.up",                           "RocksHeroes.png"       },
3766   { "pig.digging.up.xpos",                      "12"                    },
3767   { "pig.digging.up.ypos",                      "0"                     },
3768   { "pig.digging.up.frames",                    "4"                     },
3769   { "pig.digging.up.delay",                     "2"                     },
3770   { "pig.digging.left",                         "RocksHeroes.png"       },
3771   { "pig.digging.left.xpos",                    "8"                     },
3772   { "pig.digging.left.ypos",                    "1"                     },
3773   { "pig.digging.left.frames",                  "4"                     },
3774   { "pig.digging.left.delay",                   "2"                     },
3775   { "pig.digging.right",                        "RocksHeroes.png"       },
3776   { "pig.digging.right.xpos",                   "12"                    },
3777   { "pig.digging.right.ypos",                   "1"                     },
3778   { "pig.digging.right.frames",                 "4"                     },
3779   { "pig.digging.right.delay",                  "2"                     },
3780
3781   { "dragon",                                   "RocksHeroes.png"       },
3782   { "dragon.xpos",                              "8"                     },
3783   { "dragon.ypos",                              "2"                     },
3784   { "dragon.frames",                            "1"                     },
3785   { "dragon.down",                              "RocksHeroes.png"       },
3786   { "dragon.down.xpos",                         "8"                     },
3787   { "dragon.down.ypos",                         "2"                     },
3788   { "dragon.down.frames",                       "1"                     },
3789   { "dragon.up",                                "RocksHeroes.png"       },
3790   { "dragon.up.xpos",                           "12"                    },
3791   { "dragon.up.ypos",                           "2"                     },
3792   { "dragon.up.frames",                         "1"                     },
3793   { "dragon.left",                              "RocksHeroes.png"       },
3794   { "dragon.left.xpos",                         "8"                     },
3795   { "dragon.left.ypos",                         "3"                     },
3796   { "dragon.left.frames",                       "1"                     },
3797   { "dragon.right",                             "RocksHeroes.png"       },
3798   { "dragon.right.xpos",                        "12"                    },
3799   { "dragon.right.ypos",                        "3"                     },
3800   { "dragon.right.frames",                      "1"                     },
3801   { "dragon.moving.down",                       "RocksHeroes.png"       },
3802   { "dragon.moving.down.xpos",                  "8"                     },
3803   { "dragon.moving.down.ypos",                  "2"                     },
3804   { "dragon.moving.down.frames",                "4"                     },
3805   { "dragon.moving.down.delay",                 "2"                     },
3806   { "dragon.moving.up",                         "RocksHeroes.png"       },
3807   { "dragon.moving.up.xpos",                    "12"                    },
3808   { "dragon.moving.up.ypos",                    "2"                     },
3809   { "dragon.moving.up.frames",                  "4"                     },
3810   { "dragon.moving.up.delay",                   "2"                     },
3811   { "dragon.moving.left",                       "RocksHeroes.png"       },
3812   { "dragon.moving.left.xpos",                  "8"                     },
3813   { "dragon.moving.left.ypos",                  "3"                     },
3814   { "dragon.moving.left.frames",                "4"                     },
3815   { "dragon.moving.left.delay",                 "2"                     },
3816   { "dragon.moving.right",                      "RocksHeroes.png"       },
3817   { "dragon.moving.right.xpos",                 "12"                    },
3818   { "dragon.moving.right.ypos",                 "3"                     },
3819   { "dragon.moving.right.frames",               "4"                     },
3820   { "dragon.moving.right.delay",                "2"                     },
3821   { "dragon.attacking.down",                    "RocksHeroes.png"       },
3822   { "dragon.attacking.down.xpos",               "8"                     },
3823   { "dragon.attacking.down.ypos",               "2"                     },
3824   { "dragon.attacking.down.frames",             "1"                     },
3825   { "dragon.attacking.up",                      "RocksHeroes.png"       },
3826   { "dragon.attacking.up.xpos",                 "12"                    },
3827   { "dragon.attacking.up.ypos",                 "2"                     },
3828   { "dragon.attacking.up.frames",               "1"                     },
3829   { "dragon.attacking.left",                    "RocksHeroes.png"       },
3830   { "dragon.attacking.left.xpos",               "8"                     },
3831   { "dragon.attacking.left.ypos",               "3"                     },
3832   { "dragon.attacking.left.frames",             "1"                     },
3833   { "dragon.attacking.right",                   "RocksHeroes.png"       },
3834   { "dragon.attacking.right.xpos",              "12"                    },
3835   { "dragon.attacking.right.ypos",              "3"                     },
3836   { "dragon.attacking.right.frames",            "1"                     },
3837
3838   { "mole",                                     "RocksHeroes.png"       },
3839   { "mole.xpos",                                "8"                     },
3840   { "mole.ypos",                                "4"                     },
3841   { "mole.frames",                              "1"                     },
3842   { "mole.down",                                "RocksHeroes.png"       },
3843   { "mole.down.xpos",                           "8"                     },
3844   { "mole.down.ypos",                           "4"                     },
3845   { "mole.down.frames",                         "1"                     },
3846   { "mole.up",                                  "RocksHeroes.png"       },
3847   { "mole.up.xpos",                             "12"                    },
3848   { "mole.up.ypos",                             "4"                     },
3849   { "mole.up.frames",                           "1"                     },
3850   { "mole.left",                                "RocksHeroes.png"       },
3851   { "mole.left.xpos",                           "8"                     },
3852   { "mole.left.ypos",                           "5"                     },
3853   { "mole.left.frames",                         "1"                     },
3854   { "mole.right",                               "RocksHeroes.png"       },
3855   { "mole.right.xpos",                          "12"                    },
3856   { "mole.right.ypos",                          "5"                     },
3857   { "mole.right.frames",                        "1"                     },
3858   { "mole.moving.down",                         "RocksHeroes.png"       },
3859   { "mole.moving.down.xpos",                    "8"                     },
3860   { "mole.moving.down.ypos",                    "4"                     },
3861   { "mole.moving.down.frames",                  "4"                     },
3862   { "mole.moving.down.delay",                   "2"                     },
3863   { "mole.moving.up",                           "RocksHeroes.png"       },
3864   { "mole.moving.up.xpos",                      "12"                    },
3865   { "mole.moving.up.ypos",                      "4"                     },
3866   { "mole.moving.up.frames",                    "4"                     },
3867   { "mole.moving.up.delay",                     "2"                     },
3868   { "mole.moving.left",                         "RocksHeroes.png"       },
3869   { "mole.moving.left.xpos",                    "8"                     },
3870   { "mole.moving.left.ypos",                    "5"                     },
3871   { "mole.moving.left.frames",                  "4"                     },
3872   { "mole.moving.left.delay",                   "2"                     },
3873   { "mole.moving.right",                        "RocksHeroes.png"       },
3874   { "mole.moving.right.xpos",                   "12"                    },
3875   { "mole.moving.right.ypos",                   "5"                     },
3876   { "mole.moving.right.frames",                 "4"                     },
3877   { "mole.moving.right.delay",                  "2"                     },
3878   { "mole.digging.down",                        "RocksHeroes.png"       },
3879   { "mole.digging.down.xpos",                   "8"                     },
3880   { "mole.digging.down.ypos",                   "4"                     },
3881   { "mole.digging.down.frames",                 "4"                     },
3882   { "mole.digging.down.delay",                  "2"                     },
3883   { "mole.digging.up",                          "RocksHeroes.png"       },
3884   { "mole.digging.up.xpos",                     "12"                    },
3885   { "mole.digging.up.ypos",                     "4"                     },
3886   { "mole.digging.up.frames",                   "4"                     },
3887   { "mole.digging.up.delay",                    "2"                     },
3888   { "mole.digging.left",                        "RocksHeroes.png"       },
3889   { "mole.digging.left.xpos",                   "8"                     },
3890   { "mole.digging.left.ypos",                   "5"                     },
3891   { "mole.digging.left.frames",                 "4"                     },
3892   { "mole.digging.left.delay",                  "2"                     },
3893   { "mole.digging.right",                       "RocksHeroes.png"       },
3894   { "mole.digging.right.xpos",                  "12"                    },
3895   { "mole.digging.right.ypos",                  "5"                     },
3896   { "mole.digging.right.frames",                "4"                     },
3897   { "mole.digging.right.delay",                 "2"                     },
3898
3899   { "penguin",                                  "RocksHeroes.png"       },
3900   { "penguin.xpos",                             "8"                     },
3901   { "penguin.ypos",                             "6"                     },
3902   { "penguin.frames",                           "1"                     },
3903   { "penguin.down",                             "RocksHeroes.png"       },
3904   { "penguin.down.xpos",                        "8"                     },
3905   { "penguin.down.ypos",                        "6"                     },
3906   { "penguin.down.frames",                      "1"                     },
3907   { "penguin.up",                               "RocksHeroes.png"       },
3908   { "penguin.up.xpos",                          "12"                    },
3909   { "penguin.up.ypos",                          "6"                     },
3910   { "penguin.up.frames",                        "1"                     },
3911   { "penguin.left",                             "RocksHeroes.png"       },
3912   { "penguin.left.xpos",                        "8"                     },
3913   { "penguin.left.ypos",                        "7"                     },
3914   { "penguin.left.frames",                      "1"                     },
3915   { "penguin.right",                            "RocksHeroes.png"       },
3916   { "penguin.right.xpos",                       "12"                    },
3917   { "penguin.right.ypos",                       "7"                     },
3918   { "penguin.right.frames",                     "1"                     },
3919   { "penguin.moving.down",                      "RocksHeroes.png"       },
3920   { "penguin.moving.down.xpos",                 "8"                     },
3921   { "penguin.moving.down.ypos",                 "6"                     },
3922   { "penguin.moving.down.frames",               "4"                     },
3923   { "penguin.moving.down.delay",                "2"                     },
3924   { "penguin.moving.up",                        "RocksHeroes.png"       },
3925   { "penguin.moving.up.xpos",                   "12"                    },
3926   { "penguin.moving.up.ypos",                   "6"                     },
3927   { "penguin.moving.up.frames",                 "4"                     },
3928   { "penguin.moving.up.delay",                  "2"                     },
3929   { "penguin.moving.left",                      "RocksHeroes.png"       },
3930   { "penguin.moving.left.xpos",                 "8"                     },
3931   { "penguin.moving.left.ypos",                 "7"                     },
3932   { "penguin.moving.left.frames",               "4"                     },
3933   { "penguin.moving.left.delay",                "2"                     },
3934   { "penguin.moving.right",                     "RocksHeroes.png"       },
3935   { "penguin.moving.right.xpos",                "12"                    },
3936   { "penguin.moving.right.ypos",                "7"                     },
3937   { "penguin.moving.right.frames",              "4"                     },
3938   { "penguin.moving.right.delay",               "2"                     },
3939
3940   { "satellite",                                "RocksHeroes.png"       },
3941   { "satellite.xpos",                           "8"                     },
3942   { "satellite.ypos",                           "9"                     },
3943   { "satellite.frames",                         "8"                     },
3944   { "satellite.delay",                          "2"                     },
3945   { "satellite.global_sync",                    "true"                  },
3946
3947   { "flames_1_left",                            "RocksHeroes.png"       },
3948   { "flames_1_left.xpos",                       "8"                     },
3949   { "flames_1_left.ypos",                       "12"                    },
3950   { "flames_1_left.frames",                     "2"                     },
3951   { "flames_1_left.offset",                     "96"                    },
3952   { "flames_2_left",                            "RocksHeroes.png"       },
3953   { "flames_2_left.xpos",                       "9"                     },
3954   { "flames_2_left.ypos",                       "12"                    },
3955   { "flames_2_left.frames",                     "2"                     },
3956   { "flames_2_left.offset",                     "96"                    },
3957   { "flames_3_left",                            "RocksHeroes.png"       },
3958   { "flames_3_left.xpos",                       "10"                    },
3959   { "flames_3_left.ypos",                       "12"                    },
3960   { "flames_3_left.frames",                     "2"                     },
3961   { "flames_3_left.offset",                     "96"                    },
3962
3963   { "flames_1_right",                           "RocksHeroes.png"       },
3964   { "flames_1_right.xpos",                      "8"                     },
3965   { "flames_1_right.ypos",                      "13"                    },
3966   { "flames_1_right.frames",                    "2"                     },
3967   { "flames_1_right.offset",                    "96"                    },
3968   { "flames_2_right",                           "RocksHeroes.png"       },
3969   { "flames_2_right.xpos",                      "9"                     },
3970   { "flames_2_right.ypos",                      "13"                    },
3971   { "flames_2_right.frames",                    "2"                     },
3972   { "flames_2_right.offset",                    "96"                    },
3973   { "flames_3_right",                           "RocksHeroes.png"       },
3974   { "flames_3_right.xpos",                      "10"                    },
3975   { "flames_3_right.ypos",                      "13"                    },
3976   { "flames_3_right.frames",                    "2"                     },
3977   { "flames_3_right.offset",                    "96"                    },
3978
3979   { "flames_1_up",                              "RocksHeroes.png"       },
3980   { "flames_1_up.xpos",                         "8"                     },
3981   { "flames_1_up.ypos",                         "14"                    },
3982   { "flames_1_up.frames",                       "2"                     },
3983   { "flames_1_up.offset",                       "96"                    },
3984   { "flames_2_up",                              "RocksHeroes.png"       },
3985   { "flames_2_up.xpos",                         "9"                     },
3986   { "flames_2_up.ypos",                         "14"                    },
3987   { "flames_2_up.frames",                       "2"                     },
3988   { "flames_2_up.offset",                       "96"                    },
3989   { "flames_3_up",                              "RocksHeroes.png"       },
3990   { "flames_3_up.xpos",                         "10"                    },
3991   { "flames_3_up.ypos",                         "14"                    },
3992   { "flames_3_up.frames",                       "2"                     },
3993   { "flames_3_up.offset",                       "96"                    },
3994
3995   { "flames_1_down",                            "RocksHeroes.png"       },
3996   { "flames_1_down.xpos",                       "8"                     },
3997   { "flames_1_down.ypos",                       "15"                    },
3998   { "flames_1_down.frames",                     "2"                     },
3999   { "flames_1_down.offset",                     "96"                    },
4000   { "flames_2_down",                            "RocksHeroes.png"       },
4001   { "flames_2_down.xpos",                       "9"                     },
4002   { "flames_2_down.ypos",                       "15"                    },
4003   { "flames_2_down.frames",                     "2"                     },
4004   { "flames_2_down.offset",                     "96"                    },
4005   { "flames_3_down",                            "RocksHeroes.png"       },
4006   { "flames_3_down.xpos",                       "10"                    },
4007   { "flames_3_down.ypos",                       "15"                    },
4008   { "flames_3_down.frames",                     "2"                     },
4009   { "flames_3_down.offset",                     "96"                    },
4010
4011   { "stoneblock",                               "RocksElements.png"     },
4012   { "stoneblock.xpos",                          "10"                    },
4013   { "stoneblock.ypos",                          "1"                     },
4014   { "stoneblock.frames",                        "1"                     },
4015
4016   // images for other elements and actions
4017
4018   { "player_1",                                 "RocksHeroes.png"       },
4019   { "player_1.xpos",                            "0"                     },
4020   { "player_1.ypos",                            "0"                     },
4021   { "player_1.frames",                          "1"                     },
4022   { "player_1.down",                            "RocksHeroes.png"       },
4023   { "player_1.down.xpos",                       "0"                     },
4024   { "player_1.down.ypos",                       "0"                     },
4025   { "player_1.down.frames",                     "1"                     },
4026   { "player_1.up",                              "RocksHeroes.png"       },
4027   { "player_1.up.xpos",                         "4"                     },
4028   { "player_1.up.ypos",                         "0"                     },
4029   { "player_1.up.frames",                       "1"                     },
4030   { "player_1.left",                            "RocksHeroes.png"       },
4031   { "player_1.left.xpos",                       "0"                     },
4032   { "player_1.left.ypos",                       "1"                     },
4033   { "player_1.left.frames",                     "1"                     },
4034   { "player_1.right",                           "RocksHeroes.png"       },
4035   { "player_1.right.xpos",                      "4"                     },
4036   { "player_1.right.ypos",                      "1"                     },
4037   { "player_1.right.frames",                    "1"                     },
4038   { "player_1.moving.down",                     "RocksHeroes.png"       },
4039   { "player_1.moving.down.xpos",                "0"                     },
4040   { "player_1.moving.down.ypos",                "0"                     },
4041   { "player_1.moving.down.frames",              "4"                     },
4042   { "player_1.moving.down.start_frame",         "1"                     },
4043   { "player_1.moving.down.delay",               "4"                     },
4044   { "player_1.moving.up",                       "RocksHeroes.png"       },
4045   { "player_1.moving.up.xpos",                  "4"                     },
4046   { "player_1.moving.up.ypos",                  "0"                     },
4047   { "player_1.moving.up.frames",                "4"                     },
4048   { "player_1.moving.up.start_frame",           "1"                     },
4049   { "player_1.moving.up.delay",                 "4"                     },
4050   { "player_1.moving.left",                     "RocksHeroes.png"       },
4051   { "player_1.moving.left.xpos",                "0"                     },
4052   { "player_1.moving.left.ypos",                "1"                     },
4053   { "player_1.moving.left.frames",              "4"                     },
4054   { "player_1.moving.left.start_frame",         "1"                     },
4055   { "player_1.moving.left.delay",               "4"                     },
4056   { "player_1.moving.right",                    "RocksHeroes.png"       },
4057   { "player_1.moving.right.xpos",               "4"                     },
4058   { "player_1.moving.right.ypos",               "1"                     },
4059   { "player_1.moving.right.frames",             "4"                     },
4060   { "player_1.moving.right.start_frame",        "1"                     },
4061   { "player_1.moving.right.delay",              "4"                     },
4062   { "player_1.digging.down",                    "RocksHeroes.png"       },
4063   { "player_1.digging.down.xpos",               "0"                     },
4064   { "player_1.digging.down.ypos",               "0"                     },
4065   { "player_1.digging.down.frames",             "4"                     },
4066   { "player_1.digging.down.start_frame",        "1"                     },
4067   { "player_1.digging.down.delay",              "4"                     },
4068   { "player_1.digging.up",                      "RocksHeroes.png"       },
4069   { "player_1.digging.up.xpos",                 "4"                     },
4070   { "player_1.digging.up.ypos",                 "0"                     },
4071   { "player_1.digging.up.frames",               "4"                     },
4072   { "player_1.digging.up.start_frame",          "1"                     },
4073   { "player_1.digging.up.delay",                "4"                     },
4074   { "player_1.digging.left",                    "RocksHeroes.png"       },
4075   { "player_1.digging.left.xpos",               "0"                     },
4076   { "player_1.digging.left.ypos",               "1"                     },
4077   { "player_1.digging.left.frames",             "4"                     },
4078   { "player_1.digging.left.start_frame",        "1"                     },
4079   { "player_1.digging.left.delay",              "4"                     },
4080   { "player_1.digging.right",                   "RocksHeroes.png"       },
4081   { "player_1.digging.right.xpos",              "4"                     },
4082   { "player_1.digging.right.ypos",              "1"                     },
4083   { "player_1.digging.right.frames",            "4"                     },
4084   { "player_1.digging.right.start_frame",       "1"                     },
4085   { "player_1.digging.right.delay",             "4"                     },
4086   { "player_1.collecting.down",                 "RocksHeroes.png"       },
4087   { "player_1.collecting.down.xpos",            "0"                     },
4088   { "player_1.collecting.down.ypos",            "0"                     },
4089   { "player_1.collecting.down.frames",          "4"                     },
4090   { "player_1.collecting.down.start_frame",     "1"                     },
4091   { "player_1.collecting.down.delay",           "4"                     },
4092   { "player_1.collecting.up",                   "RocksHeroes.png"       },
4093   { "player_1.collecting.up.xpos",              "4"                     },
4094   { "player_1.collecting.up.ypos",              "0"                     },
4095   { "player_1.collecting.up.frames",            "4"                     },
4096   { "player_1.collecting.up.start_frame",       "1"                     },
4097   { "player_1.collecting.up.delay",             "4"                     },
4098   { "player_1.collecting.left",                 "RocksHeroes.png"       },
4099   { "player_1.collecting.left.xpos",            "0"                     },
4100   { "player_1.collecting.left.ypos",            "1"                     },
4101   { "player_1.collecting.left.frames",          "4"                     },
4102   { "player_1.collecting.left.start_frame",     "1"                     },
4103   { "player_1.collecting.left.delay",           "4"                     },
4104   { "player_1.collecting.right",                "RocksHeroes.png"       },
4105   { "player_1.collecting.right.xpos",           "4"                     },
4106   { "player_1.collecting.right.ypos",           "1"                     },
4107   { "player_1.collecting.right.frames",         "4"                     },
4108   { "player_1.collecting.right.start_frame",    "1"                     },
4109   { "player_1.collecting.right.delay",          "4"                     },
4110   { "player_1.pushing.down",                    "RocksHeroes.png"       },
4111   { "player_1.pushing.down.xpos",               "0"                     },
4112   { "player_1.pushing.down.ypos",               "0"                     },
4113   { "player_1.pushing.down.frames",             "4"                     },
4114   { "player_1.pushing.down.delay",              "4"                     },
4115   { "player_1.pushing.up",                      "RocksHeroes.png"       },
4116   { "player_1.pushing.up.xpos",                 "4"                     },
4117   { "player_1.pushing.up.ypos",                 "0"                     },
4118   { "player_1.pushing.up.frames",               "4"                     },
4119   { "player_1.pushing.up.delay",                "4"                     },
4120   { "player_1.pushing.left",                    "RocksHeroes.png"       },
4121   { "player_1.pushing.left.xpos",               "4"                     },
4122   { "player_1.pushing.left.ypos",               "2"                     },
4123   { "player_1.pushing.left.frames",             "4"                     },
4124   { "player_1.pushing.left.delay",              "4"                     },
4125   { "player_1.pushing.right",                   "RocksHeroes.png"       },
4126   { "player_1.pushing.right.xpos",              "0"                     },
4127   { "player_1.pushing.right.ypos",              "2"                     },
4128   { "player_1.pushing.right.frames",            "4"                     },
4129   { "player_1.pushing.right.delay",             "4"                     },
4130   { "player_1.snapping.down",                   "RocksHeroes.png"       },
4131   { "player_1.snapping.down.xpos",              "0"                     },
4132   { "player_1.snapping.down.ypos",              "0"                     },
4133   { "player_1.snapping.down.frames",            "1"                     },
4134   { "player_1.snapping.up",                     "RocksHeroes.png"       },
4135   { "player_1.snapping.up.xpos",                "4"                     },
4136   { "player_1.snapping.up.ypos",                "0"                     },
4137   { "player_1.snapping.up.frames",              "1"                     },
4138   { "player_1.snapping.left",                   "RocksHeroes.png"       },
4139   { "player_1.snapping.left.xpos",              "0"                     },
4140   { "player_1.snapping.left.ypos",              "1"                     },
4141   { "player_1.snapping.left.frames",            "1"                     },
4142   { "player_1.snapping.right",                  "RocksHeroes.png"       },
4143   { "player_1.snapping.right.xpos",             "4"                     },
4144   { "player_1.snapping.right.ypos",             "1"                     },
4145   { "player_1.snapping.right.frames",           "1"                     },
4146
4147   { "player_2",                                 "RocksHeroes.png"       },
4148   { "player_2.xpos",                            "0"                     },
4149   { "player_2.ypos",                            "3"                     },
4150   { "player_2.frames",                          "1"                     },
4151   { "player_2.down",                            "RocksHeroes.png"       },
4152   { "player_2.down.xpos",                       "0"                     },
4153   { "player_2.down.ypos",                       "3"                     },
4154   { "player_2.down.frames",                     "1"                     },
4155   { "player_2.up",                              "RocksHeroes.png"       },
4156   { "player_2.up.xpos",                         "4"                     },
4157   { "player_2.up.ypos",                         "3"                     },
4158   { "player_2.up.frames",                       "1"                     },
4159   { "player_2.left",                            "RocksHeroes.png"       },
4160   { "player_2.left.xpos",                       "0"                     },
4161   { "player_2.left.ypos",                       "4"                     },
4162   { "player_2.left.frames",                     "1"                     },
4163   { "player_2.right",                           "RocksHeroes.png"       },
4164   { "player_2.right.xpos",                      "4"                     },
4165   { "player_2.right.ypos",                      "4"                     },
4166   { "player_2.right.frames",                    "1"                     },
4167   { "player_2.moving.down",                     "RocksHeroes.png"       },
4168   { "player_2.moving.down.xpos",                "0"                     },
4169   { "player_2.moving.down.ypos",                "3"                     },
4170   { "player_2.moving.down.frames",              "4"                     },
4171   { "player_2.moving.down.start_frame",         "1"                     },
4172   { "player_2.moving.down.delay",               "4"                     },
4173   { "player_2.moving.up",                       "RocksHeroes.png"       },
4174   { "player_2.moving.up.xpos",                  "4"                     },
4175   { "player_2.moving.up.ypos",                  "3"                     },
4176   { "player_2.moving.up.frames",                "4"                     },
4177   { "player_2.moving.up.start_frame",           "1"                     },
4178   { "player_2.moving.up.delay",                 "4"                     },
4179   { "player_2.moving.left",                     "RocksHeroes.png"       },
4180   { "player_2.moving.left.xpos",                "0"                     },
4181   { "player_2.moving.left.ypos",                "4"                     },
4182   { "player_2.moving.left.frames",              "4"                     },
4183   { "player_2.moving.left.start_frame",         "1"                     },
4184   { "player_2.moving.left.delay",               "4"                     },
4185   { "player_2.moving.right",                    "RocksHeroes.png"       },
4186   { "player_2.moving.right.xpos",               "4"                     },
4187   { "player_2.moving.right.ypos",               "4"                     },
4188   { "player_2.moving.right.frames",             "4"                     },
4189   { "player_2.moving.right.start_frame",        "1"                     },
4190   { "player_2.moving.right.delay",              "4"                     },
4191   { "player_2.digging.down",                    "RocksHeroes.png"       },
4192   { "player_2.digging.down.xpos",               "0"                     },
4193   { "player_2.digging.down.ypos",               "3"                     },
4194   { "player_2.digging.down.frames",             "4"                     },
4195   { "player_2.digging.down.start_frame",        "1"                     },
4196   { "player_2.digging.down.delay",              "4"                     },
4197   { "player_2.digging.up",                      "RocksHeroes.png"       },
4198   { "player_2.digging.up.xpos",                 "4"                     },
4199   { "player_2.digging.up.ypos",                 "3"                     },
4200   { "player_2.digging.up.frames",               "4"                     },
4201   { "player_2.digging.up.start_frame",          "1"                     },
4202   { "player_2.digging.up.delay",                "4"                     },
4203   { "player_2.digging.left",                    "RocksHeroes.png"       },
4204   { "player_2.digging.left.xpos",               "0"                     },
4205   { "player_2.digging.left.ypos",               "4"                     },
4206   { "player_2.digging.left.frames",             "4"                     },
4207   { "player_2.digging.left.start_frame",        "1"                     },
4208   { "player_2.digging.left.delay",              "4"                     },
4209   { "player_2.digging.right",                   "RocksHeroes.png"       },
4210   { "player_2.digging.right.xpos",              "4"                     },
4211   { "player_2.digging.right.ypos",              "4"                     },
4212   { "player_2.digging.right.frames",            "4"                     },
4213   { "player_2.digging.right.start_frame",       "1"                     },
4214   { "player_2.digging.right.delay",             "4"                     },
4215   { "player_2.collecting.down",                 "RocksHeroes.png"       },
4216   { "player_2.collecting.down.xpos",            "0"                     },
4217   { "player_2.collecting.down.ypos",            "3"                     },
4218   { "player_2.collecting.down.frames",          "4"                     },
4219   { "player_2.collecting.down.start_frame",     "1"                     },
4220   { "player_2.collecting.down.delay",           "4"                     },
4221   { "player_2.collecting.up",                   "RocksHeroes.png"       },
4222   { "player_2.collecting.up.xpos",              "4"                     },
4223   { "player_2.collecting.up.ypos",              "3"                     },
4224   { "player_2.collecting.up.frames",            "4"                     },
4225   { "player_2.collecting.up.start_frame",       "1"                     },
4226   { "player_2.collecting.up.delay",             "4"                     },
4227   { "player_2.collecting.left",                 "RocksHeroes.png"       },
4228   { "player_2.collecting.left.xpos",            "0"                     },
4229   { "player_2.collecting.left.ypos",            "4"                     },
4230   { "player_2.collecting.left.frames",          "4"                     },
4231   { "player_2.collecting.left.start_frame",     "1"                     },
4232   { "player_2.collecting.left.delay",           "4"                     },
4233   { "player_2.collecting.right",                "RocksHeroes.png"       },
4234   { "player_2.collecting.right.xpos",           "4"                     },
4235   { "player_2.collecting.right.ypos",           "4"                     },
4236   { "player_2.collecting.right.frames",         "4"                     },
4237   { "player_2.collecting.right.start_frame",    "1"                     },
4238   { "player_2.collecting.right.delay",          "4"                     },
4239   { "player_2.pushing.down",                    "RocksHeroes.png"       },
4240   { "player_2.pushing.down.xpos",               "0"                     },
4241   { "player_2.pushing.down.ypos",               "3"                     },
4242   { "player_2.pushing.down.frames",             "4"                     },
4243   { "player_2.pushing.down.delay",              "4"                     },
4244   { "player_2.pushing.up",                      "RocksHeroes.png"       },
4245   { "player_2.pushing.up.xpos",                 "4"                     },
4246   { "player_2.pushing.up.ypos",                 "3"                     },
4247   { "player_2.pushing.up.frames",               "4"                     },
4248   { "player_2.pushing.up.delay",                "4"                     },
4249   { "player_2.pushing.left",                    "RocksHeroes.png"       },
4250   { "player_2.pushing.left.xpos",               "4"                     },
4251   { "player_2.pushing.left.ypos",               "5"                     },
4252   { "player_2.pushing.left.frames",             "4"                     },
4253   { "player_2.pushing.left.delay",              "4"                     },
4254   { "player_2.pushing.right",                   "RocksHeroes.png"       },
4255   { "player_2.pushing.right.xpos",              "0"                     },
4256   { "player_2.pushing.right.ypos",              "5"                     },
4257   { "player_2.pushing.right.frames",            "4"                     },
4258   { "player_2.pushing.right.delay",             "4"                     },
4259   { "player_2.snapping.down",                   "RocksHeroes.png"       },
4260   { "player_2.snapping.down.xpos",              "0"                     },
4261   { "player_2.snapping.down.ypos",              "3"                     },
4262   { "player_2.snapping.down.frames",            "1"                     },
4263   { "player_2.snapping.up",                     "RocksHeroes.png"       },
4264   { "player_2.snapping.up.xpos",                "4"                     },
4265   { "player_2.snapping.up.ypos",                "3"                     },
4266   { "player_2.snapping.up.frames",              "1"                     },
4267   { "player_2.snapping.left",                   "RocksHeroes.png"       },
4268   { "player_2.snapping.left.xpos",              "0"                     },
4269   { "player_2.snapping.left.ypos",              "4"                     },
4270   { "player_2.snapping.left.frames",            "1"                     },
4271   { "player_2.snapping.right",                  "RocksHeroes.png"       },
4272   { "player_2.snapping.right.xpos",             "4"                     },
4273   { "player_2.snapping.right.ypos",             "4"                     },
4274   { "player_2.snapping.right.frames",           "1"                     },
4275
4276   { "player_3",                                 "RocksHeroes.png"       },
4277   { "player_3.xpos",                            "0"                     },
4278   { "player_3.ypos",                            "6"                     },
4279   { "player_3.frames",                          "1"                     },
4280   { "player_3.down",                            "RocksHeroes.png"       },
4281   { "player_3.down.xpos",                       "0"                     },
4282   { "player_3.down.ypos",                       "6"                     },
4283   { "player_3.down.frames",                     "1"                     },
4284   { "player_3.up",                              "RocksHeroes.png"       },
4285   { "player_3.up.xpos",                         "4"                     },
4286   { "player_3.up.ypos",                         "6"                     },
4287   { "player_3.up.frames",                       "1"                     },
4288   { "player_3.left",                            "RocksHeroes.png"       },
4289   { "player_3.left.xpos",                       "0"                     },
4290   { "player_3.left.ypos",                       "7"                     },
4291   { "player_3.left.frames",                     "1"                     },
4292   { "player_3.right",                           "RocksHeroes.png"       },
4293   { "player_3.right.xpos",                      "4"                     },
4294   { "player_3.right.ypos",                      "7"                     },
4295   { "player_3.right.frames",                    "1"                     },
4296   { "player_3.moving.down",                     "RocksHeroes.png"       },
4297   { "player_3.moving.down.xpos",                "0"                     },
4298   { "player_3.moving.down.ypos",                "6"                     },
4299   { "player_3.moving.down.frames",              "4"                     },
4300   { "player_3.moving.down.start_frame",         "1"                     },
4301   { "player_3.moving.down.delay",               "4"                     },
4302   { "player_3.moving.up",                       "RocksHeroes.png"       },
4303   { "player_3.moving.up.xpos",                  "4"                     },
4304   { "player_3.moving.up.ypos",                  "6"                     },
4305   { "player_3.moving.up.frames",                "4"                     },
4306   { "player_3.moving.up.start_frame",           "1"                     },
4307   { "player_3.moving.up.delay",                 "4"                     },
4308   { "player_3.moving.left",                     "RocksHeroes.png"       },
4309   { "player_3.moving.left.xpos",                "0"                     },
4310   { "player_3.moving.left.ypos",                "7"                     },
4311   { "player_3.moving.left.frames",              "4"                     },
4312   { "player_3.moving.left.start_frame",         "1"                     },
4313   { "player_3.moving.left.delay",               "4"                     },
4314   { "player_3.moving.right",                    "RocksHeroes.png"       },
4315   { "player_3.moving.right.xpos",               "4"                     },
4316   { "player_3.moving.right.ypos",               "7"                     },
4317   { "player_3.moving.right.frames",             "4"                     },
4318   { "player_3.moving.right.start_frame",        "1"                     },
4319   { "player_3.moving.right.delay",              "4"                     },
4320   { "player_3.digging.down",                    "RocksHeroes.png"       },
4321   { "player_3.digging.down.xpos",               "0"                     },
4322   { "player_3.digging.down.ypos",               "6"                     },
4323   { "player_3.digging.down.frames",             "4"                     },
4324   { "player_3.digging.down.start_frame",        "1"                     },
4325   { "player_3.digging.down.delay",              "4"                     },
4326   { "player_3.digging.up",                      "RocksHeroes.png"       },
4327   { "player_3.digging.up.xpos",                 "4"                     },
4328   { "player_3.digging.up.ypos",                 "6"                     },
4329   { "player_3.digging.up.frames",               "4"                     },
4330   { "player_3.digging.up.start_frame",          "1"                     },
4331   { "player_3.digging.up.delay",                "4"                     },
4332   { "player_3.digging.left",                    "RocksHeroes.png"       },
4333   { "player_3.digging.left.xpos",               "0"                     },
4334   { "player_3.digging.left.ypos",               "7"                     },
4335   { "player_3.digging.left.frames",             "4"                     },
4336   { "player_3.digging.left.start_frame",        "1"                     },
4337   { "player_3.digging.left.delay",              "4"                     },
4338   { "player_3.digging.right",                   "RocksHeroes.png"       },
4339   { "player_3.digging.right.xpos",              "4"                     },
4340   { "player_3.digging.right.ypos",              "7"                     },
4341   { "player_3.digging.right.frames",            "4"                     },
4342   { "player_3.digging.right.start_frame",       "1"                     },
4343   { "player_3.digging.right.delay",             "4"                     },
4344   { "player_3.collecting.down",                 "RocksHeroes.png"       },
4345   { "player_3.collecting.down.xpos",            "0"                     },
4346   { "player_3.collecting.down.ypos",            "6"                     },
4347   { "player_3.collecting.down.frames",          "4"                     },
4348   { "player_3.collecting.down.start_frame",     "1"                     },
4349   { "player_3.collecting.down.delay",           "4"                     },
4350   { "player_3.collecting.up",                   "RocksHeroes.png"       },
4351   { "player_3.collecting.up.xpos",              "4"                     },
4352   { "player_3.collecting.up.ypos",              "6"                     },
4353   { "player_3.collecting.up.frames",            "4"                     },
4354   { "player_3.collecting.up.start_frame",       "1"                     },
4355   { "player_3.collecting.up.delay",             "4"                     },
4356   { "player_3.collecting.left",                 "RocksHeroes.png"       },
4357   { "player_3.collecting.left.xpos",            "0"                     },
4358   { "player_3.collecting.left.ypos",            "7"                     },
4359   { "player_3.collecting.left.frames",          "4"                     },
4360   { "player_3.collecting.left.start_frame",     "1"                     },
4361   { "player_3.collecting.left.delay",           "4"                     },
4362   { "player_3.collecting.right",                "RocksHeroes.png"       },
4363   { "player_3.collecting.right.xpos",           "4"                     },
4364   { "player_3.collecting.right.ypos",           "7"                     },
4365   { "player_3.collecting.right.frames",         "4"                     },
4366   { "player_3.collecting.right.start_frame",    "1"                     },
4367   { "player_3.collecting.right.delay",          "4"                     },
4368   { "player_3.pushing.down",                    "RocksHeroes.png"       },
4369   { "player_3.pushing.down.xpos",               "0"                     },
4370   { "player_3.pushing.down.ypos",               "6"                     },
4371   { "player_3.pushing.down.frames",             "4"                     },
4372   { "player_3.pushing.down.delay",              "4"                     },
4373   { "player_3.pushing.up",                      "RocksHeroes.png"       },
4374   { "player_3.pushing.up.xpos",                 "4"                     },
4375   { "player_3.pushing.up.ypos",                 "6"                     },
4376   { "player_3.pushing.up.frames",               "4"                     },
4377   { "player_3.pushing.up.delay",                "4"                     },
4378   { "player_3.pushing.left",                    "RocksHeroes.png"       },
4379   { "player_3.pushing.left.xpos",               "4"                     },
4380   { "player_3.pushing.left.ypos",               "8"                     },
4381   { "player_3.pushing.left.frames",             "4"                     },
4382   { "player_3.pushing.left.delay",              "4"                     },
4383   { "player_3.pushing.right",                   "RocksHeroes.png"       },
4384   { "player_3.pushing.right.xpos",              "0"                     },
4385   { "player_3.pushing.right.ypos",              "8"                     },
4386   { "player_3.pushing.right.frames",            "4"                     },
4387   { "player_3.pushing.right.delay",             "4"                     },
4388   { "player_3.snapping.down",                   "RocksHeroes.png"       },
4389   { "player_3.snapping.down.xpos",              "0"                     },
4390   { "player_3.snapping.down.ypos",              "6"                     },
4391   { "player_3.snapping.down.frames",            "1"                     },
4392   { "player_3.snapping.up",                     "RocksHeroes.png"       },
4393   { "player_3.snapping.up.xpos",                "4"                     },
4394   { "player_3.snapping.up.ypos",                "6"                     },
4395   { "player_3.snapping.up.frames",              "1"                     },
4396   { "player_3.snapping.left",                   "RocksHeroes.png"       },
4397   { "player_3.snapping.left.xpos",              "0"                     },
4398   { "player_3.snapping.left.ypos",              "7"                     },
4399   { "player_3.snapping.left.frames",            "1"                     },
4400   { "player_3.snapping.right",                  "RocksHeroes.png"       },
4401   { "player_3.snapping.right.xpos",             "4"                     },
4402   { "player_3.snapping.right.ypos",             "7"                     },
4403   { "player_3.snapping.right.frames",           "1"                     },
4404
4405   { "player_4",                                 "RocksHeroes.png"       },
4406   { "player_4.xpos",                            "0"                     },
4407   { "player_4.ypos",                            "9"                     },
4408   { "player_4.frames",                          "1"                     },
4409   { "player_4.down",                            "RocksHeroes.png"       },
4410   { "player_4.down.xpos",                       "0"                     },
4411   { "player_4.down.ypos",                       "9"                     },
4412   { "player_4.down.frames",                     "1"                     },
4413   { "player_4.up",                              "RocksHeroes.png"       },
4414   { "player_4.up.xpos",                         "4"                     },
4415   { "player_4.up.ypos",                         "9"                     },
4416   { "player_4.up.frames",                       "1"                     },
4417   { "player_4.left",                            "RocksHeroes.png"       },
4418   { "player_4.left.xpos",                       "0"                     },
4419   { "player_4.left.ypos",                       "10"                    },
4420   { "player_4.left.frames",                     "1"                     },
4421   { "player_4.right",                           "RocksHeroes.png"       },
4422   { "player_4.right.xpos",                      "4"                     },
4423   { "player_4.right.ypos",                      "10"                    },
4424   { "player_4.right.frames",                    "1"                     },
4425   { "player_4.moving.down",                     "RocksHeroes.png"       },
4426   { "player_4.moving.down.xpos",                "0"                     },
4427   { "player_4.moving.down.ypos",                "9"                     },
4428   { "player_4.moving.down.frames",              "4"                     },
4429   { "player_4.moving.down.start_frame",         "1"                     },
4430   { "player_4.moving.down.delay",               "4"                     },
4431   { "player_4.moving.up",                       "RocksHeroes.png"       },
4432   { "player_4.moving.up.xpos",                  "4"                     },
4433   { "player_4.moving.up.ypos",                  "9"                     },
4434   { "player_4.moving.up.frames",                "4"                     },
4435   { "player_4.moving.up.start_frame",           "1"                     },
4436   { "player_4.moving.up.delay",                 "4"                     },
4437   { "player_4.moving.left",                     "RocksHeroes.png"       },
4438   { "player_4.moving.left.xpos",                "0"                     },
4439   { "player_4.moving.left.ypos",                "10"                    },
4440   { "player_4.moving.left.frames",              "4"                     },
4441   { "player_4.moving.left.start_frame",         "1"                     },
4442   { "player_4.moving.left.delay",               "4"                     },
4443   { "player_4.moving.right",                    "RocksHeroes.png"       },
4444   { "player_4.moving.right.xpos",               "4"                     },
4445   { "player_4.moving.right.ypos",               "10"                    },
4446   { "player_4.moving.right.frames",             "4"                     },
4447   { "player_4.moving.right.start_frame",        "1"                     },
4448   { "player_4.moving.right.delay",              "4"                     },
4449   { "player_4.digging.down",                    "RocksHeroes.png"       },
4450   { "player_4.digging.down.xpos",               "0"                     },
4451   { "player_4.digging.down.ypos",               "9"                     },
4452   { "player_4.digging.down.frames",             "4"                     },
4453   { "player_4.digging.down.start_frame",        "1"                     },
4454   { "player_4.digging.down.delay",              "4"                     },
4455   { "player_4.digging.up",                      "RocksHeroes.png"       },
4456   { "player_4.digging.up.xpos",                 "4"                     },
4457   { "player_4.digging.up.ypos",                 "9"                     },
4458   { "player_4.digging.up.frames",               "4"                     },
4459   { "player_4.digging.up.start_frame",          "1"                     },
4460   { "player_4.digging.up.delay",                "4"                     },
4461   { "player_4.digging.left",                    "RocksHeroes.png"       },
4462   { "player_4.digging.left.xpos",               "0"                     },
4463   { "player_4.digging.left.ypos",               "10"                    },
4464   { "player_4.digging.left.frames",             "4"                     },
4465   { "player_4.digging.left.start_frame",        "1"                     },
4466   { "player_4.digging.left.delay",              "4"                     },
4467   { "player_4.digging.right",                   "RocksHeroes.png"       },
4468   { "player_4.digging.right.xpos",              "4"                     },
4469   { "player_4.digging.right.ypos",              "10"                    },
4470   { "player_4.digging.right.frames",            "4"                     },
4471   { "player_4.digging.right.start_frame",       "1"                     },
4472   { "player_4.digging.right.delay",             "4"                     },
4473   { "player_4.collecting.down",                 "RocksHeroes.png"       },
4474   { "player_4.collecting.down.xpos",            "0"                     },
4475   { "player_4.collecting.down.ypos",            "9"                     },
4476   { "player_4.collecting.down.frames",          "4"                     },
4477   { "player_4.collecting.down.start_frame",     "1"                     },
4478   { "player_4.collecting.down.delay",           "4"                     },
4479   { "player_4.collecting.up",                   "RocksHeroes.png"       },
4480   { "player_4.collecting.up.xpos",              "4"                     },
4481   { "player_4.collecting.up.ypos",              "9"                     },
4482   { "player_4.collecting.up.frames",            "4"                     },
4483   { "player_4.collecting.up.start_frame",       "1"                     },
4484   { "player_4.collecting.up.delay",             "4"                     },
4485   { "player_4.collecting.left",                 "RocksHeroes.png"       },
4486   { "player_4.collecting.left.xpos",            "0"                     },
4487   { "player_4.collecting.left.ypos",            "10"                    },
4488   { "player_4.collecting.left.frames",          "4"                     },
4489   { "player_4.collecting.left.start_frame",     "1"                     },
4490   { "player_4.collecting.left.delay",           "4"                     },
4491   { "player_4.collecting.right",                "RocksHeroes.png"       },
4492   { "player_4.collecting.right.xpos",           "4"                     },
4493   { "player_4.collecting.right.ypos",           "10"                    },
4494   { "player_4.collecting.right.frames",         "4"                     },
4495   { "player_4.collecting.right.start_frame",    "1"                     },
4496   { "player_4.collecting.right.delay",          "4"                     },
4497   { "player_4.pushing.down",                    "RocksHeroes.png"       },
4498   { "player_4.pushing.down.xpos",               "0"                     },
4499   { "player_4.pushing.down.ypos",               "9"                     },
4500   { "player_4.pushing.down.frames",             "4"                     },
4501   { "player_4.pushing.down.delay",              "4"                     },
4502   { "player_4.pushing.up",                      "RocksHeroes.png"       },
4503   { "player_4.pushing.up.xpos",                 "4"                     },
4504   { "player_4.pushing.up.ypos",                 "9"                     },
4505   { "player_4.pushing.up.frames",               "4"                     },
4506   { "player_4.pushing.up.delay",                "4"                     },
4507   { "player_4.pushing.left",                    "RocksHeroes.png"       },
4508   { "player_4.pushing.left.xpos",               "4"                     },
4509   { "player_4.pushing.left.ypos",               "11"                    },
4510   { "player_4.pushing.left.frames",             "4"                     },
4511   { "player_4.pushing.left.delay",              "4"                     },
4512   { "player_4.pushing.right",                   "RocksHeroes.png"       },
4513   { "player_4.pushing.right.xpos",              "0"                     },
4514   { "player_4.pushing.right.ypos",              "11"                    },
4515   { "player_4.pushing.right.frames",            "4"                     },
4516   { "player_4.pushing.right.delay",             "4"                     },
4517   { "player_4.snapping.down",                   "RocksHeroes.png"       },
4518   { "player_4.snapping.down.xpos",              "0"                     },
4519   { "player_4.snapping.down.ypos",              "9"                     },
4520   { "player_4.snapping.down.frames",            "1"                     },
4521   { "player_4.snapping.up",                     "RocksHeroes.png"       },
4522   { "player_4.snapping.up.xpos",                "4"                     },
4523   { "player_4.snapping.up.ypos",                "9"                     },
4524   { "player_4.snapping.up.frames",              "1"                     },
4525   { "player_4.snapping.left",                   "RocksHeroes.png"       },
4526   { "player_4.snapping.left.xpos",              "0"                     },
4527   { "player_4.snapping.left.ypos",              "10"                    },
4528   { "player_4.snapping.left.frames",            "1"                     },
4529   { "player_4.snapping.right",                  "RocksHeroes.png"       },
4530   { "player_4.snapping.right.xpos",             "4"                     },
4531   { "player_4.snapping.right.ypos",             "10"                    },
4532   { "player_4.snapping.right.frames",           "1"                     },
4533
4534   { "[default].exploding",                      "RocksElements.png"     },
4535   { "[default].exploding.xpos",                 "0"                     },
4536   { "[default].exploding.ypos",                 "4"                     },
4537   { "[default].exploding.frames",               "8"                     },
4538   { "[default].exploding.delay",                "2"                     },
4539   { "[default].exploding.anim_mode",            "linear"                },
4540
4541   { "twinkle_blue",                             "RocksHeroes.png"       },
4542   { "twinkle_blue.xpos",                        "9"                     },
4543   { "twinkle_blue.ypos",                        "11"                    },
4544   { "twinkle_blue.frames",                      "3"                     },
4545   { "twinkle_blue.delay",                       "2"                     },
4546   { "twinkle_blue.anim_mode",                   "pingpong"              },
4547   { "twinkle_blue.global_sync",                 "false"                 },
4548   { "twinkle_white",                            "RocksHeroes.png"       },
4549   { "twinkle_white.xpos",                       "13"                    },
4550   { "twinkle_white.ypos",                       "11"                    },
4551   { "twinkle_white.frames",                     "3"                     },
4552   { "twinkle_white.delay",                      "2"                     },
4553   { "twinkle_white.anim_mode",                  "pingpong"              },
4554   { "twinkle_white.global_sync",                "false"                 },
4555
4556   { "steelwall_topleft",                        "RocksElements.png"     },
4557   { "steelwall_topleft.xpos",                   "4"                     },
4558   { "steelwall_topleft.ypos",                   "0"                     },
4559   { "steelwall_topleft.frames",                 "1"                     },
4560   { "steelwall_topright",                       "RocksElements.png"     },
4561   { "steelwall_topright.xpos",                  "4"                     },
4562   { "steelwall_topright.ypos",                  "0"                     },
4563   { "steelwall_topright.frames",                "1"                     },
4564   { "steelwall_bottomleft",                     "RocksElements.png"     },
4565   { "steelwall_bottomleft.xpos",                "4"                     },
4566   { "steelwall_bottomleft.ypos",                "0"                     },
4567   { "steelwall_bottomleft.frames",              "1"                     },
4568   { "steelwall_bottomright",                    "RocksElements.png"     },
4569   { "steelwall_bottomright.xpos",               "4"                     },
4570   { "steelwall_bottomright.ypos",               "0"                     },
4571   { "steelwall_bottomright.frames",             "1"                     },
4572   { "steelwall_horizontal",                     "RocksElements.png"     },
4573   { "steelwall_horizontal.xpos",                "4"                     },
4574   { "steelwall_horizontal.ypos",                "0"                     },
4575   { "steelwall_horizontal.frames",              "1"                     },
4576   { "steelwall_vertical",                       "RocksElements.png"     },
4577   { "steelwall_vertical.xpos",                  "4"                     },
4578   { "steelwall_vertical.ypos",                  "0"                     },
4579   { "steelwall_vertical.frames",                "1"                     },
4580
4581   { "steelwall_topleft.EDITOR",                 "RocksElements.png"     },
4582   { "steelwall_topleft.EDITOR.xpos",            "0"                     },
4583   { "steelwall_topleft.EDITOR.ypos",            "13"                    },
4584   { "steelwall_topright.EDITOR",                "RocksElements.png"     },
4585   { "steelwall_topright.EDITOR.xpos",           "1"                     },
4586   { "steelwall_topright.EDITOR.ypos",           "13"                    },
4587   { "steelwall_bottomleft.EDITOR",              "RocksElements.png"     },
4588   { "steelwall_bottomleft.EDITOR.xpos",         "2"                     },
4589   { "steelwall_bottomleft.EDITOR.ypos",         "13"                    },
4590   { "steelwall_bottomright.EDITOR",             "RocksElements.png"     },
4591   { "steelwall_bottomright.EDITOR.xpos",        "3"                     },
4592   { "steelwall_bottomright.EDITOR.ypos",        "13"                    },
4593   { "steelwall_horizontal.EDITOR",              "RocksElements.png"     },
4594   { "steelwall_horizontal.EDITOR.xpos",         "4"                     },
4595   { "steelwall_horizontal.EDITOR.ypos",         "13"                    },
4596   { "steelwall_vertical.EDITOR",                "RocksElements.png"     },
4597   { "steelwall_vertical.EDITOR.xpos",           "5"                     },
4598   { "steelwall_vertical.EDITOR.ypos",           "13"                    },
4599
4600   { "invisible_steelwall_topleft",              "RocksSP.png"           },
4601   { "invisible_steelwall_topleft.xpos",         "0"                     },
4602   { "invisible_steelwall_topleft.ypos",         "0"                     },
4603   { "invisible_steelwall_topleft.frames",       "1"                     },
4604   { "invisible_steelwall_topright",             "RocksSP.png"           },
4605   { "invisible_steelwall_topright.xpos",        "0"                     },
4606   { "invisible_steelwall_topright.ypos",        "0"                     },
4607   { "invisible_steelwall_topright.frames",      "1"                     },
4608   { "invisible_steelwall_bottomleft",           "RocksSP.png"           },
4609   { "invisible_steelwall_bottomleft.xpos",      "0"                     },
4610   { "invisible_steelwall_bottomleft.ypos",      "0"                     },
4611   { "invisible_steelwall_bottomleft.frames",    "1"                     },
4612   { "invisible_steelwall_bottomright",          "RocksSP.png"           },
4613   { "invisible_steelwall_bottomright.xpos",     "0"                     },
4614   { "invisible_steelwall_bottomright.ypos",     "0"                     },
4615   { "invisible_steelwall_bottomright.frames",   "1"                     },
4616   { "invisible_steelwall_horizontal",           "RocksSP.png"           },
4617   { "invisible_steelwall_horizontal.xpos",      "0"                     },
4618   { "invisible_steelwall_horizontal.ypos",      "0"                     },
4619   { "invisible_steelwall_horizontal.frames",    "1"                     },
4620   { "invisible_steelwall_vertical",             "RocksSP.png"           },
4621   { "invisible_steelwall_vertical.xpos",        "0"                     },
4622   { "invisible_steelwall_vertical.ypos",        "0"                     },
4623   { "invisible_steelwall_vertical.frames",      "1"                     },
4624
4625   { "invisible_steelwall_topleft.EDITOR",       "RocksElements.png"     },
4626   { "invisible_steelwall_topleft.EDITOR.xpos",  "6"                     },
4627   { "invisible_steelwall_topleft.EDITOR.ypos",  "13"                    },
4628   { "invisible_steelwall_topright.EDITOR",      "RocksElements.png"     },
4629   { "invisible_steelwall_topright.EDITOR.xpos", "7"                     },
4630   { "invisible_steelwall_topright.EDITOR.ypos", "13"                    },
4631   { "invisible_steelwall_bottomleft.EDITOR",    "RocksElements.png"     },
4632   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                    },
4633   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                   },
4634   { "invisible_steelwall_bottomright.EDITOR",   "RocksElements.png"     },
4635   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                   },
4636   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                  },
4637   { "invisible_steelwall_horizontal.EDITOR",    "RocksElements.png"     },
4638   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                   },
4639   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                   },
4640   { "invisible_steelwall_vertical.EDITOR",      "RocksElements.png"     },
4641   { "invisible_steelwall_vertical.EDITOR.xpos", "11"                    },
4642   { "invisible_steelwall_vertical.EDITOR.ypos", "13"                    },
4643
4644   { "arrow_left",                               "RocksDC.png"           },
4645   { "arrow_left.xpos",                          "8"                     },
4646   { "arrow_left.ypos",                          "8"                     },
4647   { "arrow_left.frames",                        "1"                     },
4648   { "arrow_right",                              "RocksDC.png"           },
4649   { "arrow_right.xpos",                         "9"                     },
4650   { "arrow_right.ypos",                         "8"                     },
4651   { "arrow_right.frames",                       "1"                     },
4652   { "arrow_up",                                 "RocksDC.png"           },
4653   { "arrow_up.xpos",                            "10"                    },
4654   { "arrow_up.ypos",                            "8"                     },
4655   { "arrow_up.frames",                          "1"                     },
4656   { "arrow_down",                               "RocksDC.png"           },
4657   { "arrow_down.xpos",                          "11"                    },
4658   { "arrow_down.ypos",                          "8"                     },
4659   { "arrow_down.frames",                        "1"                     },
4660
4661   { "unknown",                                  "RocksFontEM.png"       },
4662   { "unknown.xpos",                             "15"                    },
4663   { "unknown.ypos",                             "1"                     },
4664   { "unknown.frames",                           "1"                     },
4665
4666   { "trigger_element",                          "RocksDC.png"           },
4667   { "trigger_element.xpos",                     "15"                    },
4668   { "trigger_element.ypos",                     "14"                    },
4669   { "trigger_element.frames",                   "1"                     },
4670
4671   { "trigger_player",                           "RocksDC.png"           },
4672   { "trigger_player.xpos",                      "15"                    },
4673   { "trigger_player.ypos",                      "13"                    },
4674   { "trigger_player.frames",                    "1"                     },
4675
4676   { "trigger_ce_value",                         "RocksDC.png"           },
4677   { "trigger_ce_value.xpos",                    "15"                    },
4678   { "trigger_ce_value.ypos",                    "11"                    },
4679   { "trigger_ce_value.frames",                  "1"                     },
4680
4681   { "trigger_ce_score",                         "RocksDC.png"           },
4682   { "trigger_ce_score.xpos",                    "15"                    },
4683   { "trigger_ce_score.ypos",                    "12"                    },
4684   { "trigger_ce_score.frames",                  "1"                     },
4685
4686   { "current_ce_value",                         "RocksDC.png"           },
4687   { "current_ce_value.xpos",                    "14"                    },
4688   { "current_ce_value.ypos",                    "11"                    },
4689   { "current_ce_value.frames",                  "1"                     },
4690
4691   { "current_ce_score",                         "RocksDC.png"           },
4692   { "current_ce_score.xpos",                    "14"                    },
4693   { "current_ce_score.ypos",                    "12"                    },
4694   { "current_ce_score.frames",                  "1"                     },
4695
4696   { "prev_ce_1",                                "RocksMore.png"         },
4697   { "prev_ce_1.xpos",                           "0"                     },
4698   { "prev_ce_1.ypos",                           "7"                     },
4699   { "prev_ce_1.frames",                         "1"                     },
4700
4701   { "prev_ce_2",                                "RocksMore.png"         },
4702   { "prev_ce_2.xpos",                           "1"                     },
4703   { "prev_ce_2.ypos",                           "7"                     },
4704   { "prev_ce_2.frames",                         "1"                     },
4705
4706   { "prev_ce_3",                                "RocksMore.png"         },
4707   { "prev_ce_3.xpos",                           "2"                     },
4708   { "prev_ce_3.ypos",                           "7"                     },
4709   { "prev_ce_3.frames",                         "1"                     },
4710
4711   { "prev_ce_4",                                "RocksMore.png"         },
4712   { "prev_ce_4.xpos",                           "3"                     },
4713   { "prev_ce_4.ypos",                           "7"                     },
4714   { "prev_ce_4.frames",                         "1"                     },
4715
4716   { "prev_ce_5",                                "RocksMore.png"         },
4717   { "prev_ce_5.xpos",                           "4"                     },
4718   { "prev_ce_5.ypos",                           "7"                     },
4719   { "prev_ce_5.frames",                         "1"                     },
4720
4721   { "prev_ce_6",                                "RocksMore.png"         },
4722   { "prev_ce_6.xpos",                           "5"                     },
4723   { "prev_ce_6.ypos",                           "7"                     },
4724   { "prev_ce_6.frames",                         "1"                     },
4725
4726   { "prev_ce_7",                                "RocksMore.png"         },
4727   { "prev_ce_7.xpos",                           "6"                     },
4728   { "prev_ce_7.ypos",                           "7"                     },
4729   { "prev_ce_7.frames",                         "1"                     },
4730
4731   { "prev_ce_8",                                "RocksMore.png"         },
4732   { "prev_ce_8.xpos",                           "7"                     },
4733   { "prev_ce_8.ypos",                           "7"                     },
4734   { "prev_ce_8.frames",                         "1"                     },
4735
4736   { "next_ce_1",                                "RocksMore.png"         },
4737   { "next_ce_1.xpos",                           "0"                     },
4738   { "next_ce_1.ypos",                           "8"                     },
4739   { "next_ce_1.frames",                         "1"                     },
4740
4741   { "next_ce_2",                                "RocksMore.png"         },
4742   { "next_ce_2.xpos",                           "1"                     },
4743   { "next_ce_2.ypos",                           "8"                     },
4744   { "next_ce_2.frames",                         "1"                     },
4745
4746   { "next_ce_3",                                "RocksMore.png"         },
4747   { "next_ce_3.xpos",                           "2"                     },
4748   { "next_ce_3.ypos",                           "8"                     },
4749   { "next_ce_3.frames",                         "1"                     },
4750
4751   { "next_ce_4",                                "RocksMore.png"         },
4752   { "next_ce_4.xpos",                           "3"                     },
4753   { "next_ce_4.ypos",                           "8"                     },
4754   { "next_ce_4.frames",                         "1"                     },
4755
4756   { "next_ce_5",                                "RocksMore.png"         },
4757   { "next_ce_5.xpos",                           "4"                     },
4758   { "next_ce_5.ypos",                           "8"                     },
4759   { "next_ce_5.frames",                         "1"                     },
4760
4761   { "next_ce_6",                                "RocksMore.png"         },
4762   { "next_ce_6.xpos",                           "5"                     },
4763   { "next_ce_6.ypos",                           "8"                     },
4764   { "next_ce_6.frames",                         "1"                     },
4765
4766   { "next_ce_7",                                "RocksMore.png"         },
4767   { "next_ce_7.xpos",                           "6"                     },
4768   { "next_ce_7.ypos",                           "8"                     },
4769   { "next_ce_7.frames",                         "1"                     },
4770
4771   { "next_ce_8",                                "RocksMore.png"         },
4772   { "next_ce_8.xpos",                           "7"                     },
4773   { "next_ce_8.ypos",                           "8"                     },
4774   { "next_ce_8.frames",                         "1"                     },
4775
4776   { "self",                                     "RocksMore.png"         },
4777   { "self.xpos",                                "8"                     },
4778   { "self.ypos",                                "7"                     },
4779   { "self.frames",                              "1"                     },
4780
4781   { "any_element",                              "RocksMore.png"         },
4782   { "any_element.xpos",                         "9"                     },
4783   { "any_element.ypos",                         "7"                     },
4784   { "any_element.frames",                       "1"                     },
4785
4786   { "emc_key_5",                                "RocksEMC.png"          },
4787   { "emc_key_5.xpos",                           "0"                     },
4788   { "emc_key_5.ypos",                           "5"                     },
4789   { "emc_key_5.frames",                         "1"                     },
4790   { "emc_key_5.collecting",                     "RocksCollect.png"      },
4791   { "emc_key_5.collecting.xpos",                "7"                     },
4792   { "emc_key_5.collecting.ypos",                "12"                    },
4793   { "emc_key_5.collecting.frames",              "7"                     },
4794   { "emc_key_5.collecting.anim_mode",           "linear"                },
4795   { "emc_key_6",                                "RocksEMC.png"          },
4796   { "emc_key_6.xpos",                           "1"                     },
4797   { "emc_key_6.ypos",                           "5"                     },
4798   { "emc_key_6.frames",                         "1"                     },
4799   { "emc_key_6.collecting",                     "RocksCollect.png"      },
4800   { "emc_key_6.collecting.xpos",                "7"                     },
4801   { "emc_key_6.collecting.ypos",                "13"                    },
4802   { "emc_key_6.collecting.frames",              "7"                     },
4803   { "emc_key_6.collecting.anim_mode",           "linear"                },
4804   { "emc_key_7",                                "RocksEMC.png"          },
4805   { "emc_key_7.xpos",                           "2"                     },
4806   { "emc_key_7.ypos",                           "5"                     },
4807   { "emc_key_7.frames",                         "1"                     },
4808   { "emc_key_7.collecting",                     "RocksCollect.png"      },
4809   { "emc_key_7.collecting.xpos",                "7"                     },
4810   { "emc_key_7.collecting.ypos",                "14"                    },
4811   { "emc_key_7.collecting.frames",              "7"                     },
4812   { "emc_key_7.collecting.anim_mode",           "linear"                },
4813   { "emc_key_8",                                "RocksEMC.png"          },
4814   { "emc_key_8.xpos",                           "3"                     },
4815   { "emc_key_8.ypos",                           "5"                     },
4816   { "emc_key_8.frames",                         "1"                     },
4817   { "emc_key_8.collecting",                     "RocksCollect.png"      },
4818   { "emc_key_8.collecting.xpos",                "7"                     },
4819   { "emc_key_8.collecting.ypos",                "15"                    },
4820   { "emc_key_8.collecting.frames",              "7"                     },
4821   { "emc_key_8.collecting.anim_mode",           "linear"                },
4822
4823   { "emc_gate_5",                               "RocksEMC.png"          },
4824   { "emc_gate_5.xpos",                          "0"                     },
4825   { "emc_gate_5.ypos",                          "6"                     },
4826   { "emc_gate_5.frames",                        "1"                     },
4827   { "emc_gate_6",                               "RocksEMC.png"          },
4828   { "emc_gate_6.xpos",                          "1"                     },
4829   { "emc_gate_6.ypos",                          "6"                     },
4830   { "emc_gate_6.frames",                        "1"                     },
4831   { "emc_gate_7",                               "RocksEMC.png"          },
4832   { "emc_gate_7.xpos",                          "2"                     },
4833   { "emc_gate_7.ypos",                          "6"                     },
4834   { "emc_gate_7.frames",                        "1"                     },
4835   { "emc_gate_8",                               "RocksEMC.png"          },
4836   { "emc_gate_8.xpos",                          "3"                     },
4837   { "emc_gate_8.ypos",                          "6"                     },
4838   { "emc_gate_8.frames",                        "1"                     },
4839   { "emc_gate_5_gray",                          "RocksEMC.png"          },
4840   { "emc_gate_5_gray.xpos",                     "4"                     },
4841   { "emc_gate_5_gray.ypos",                     "7"                     },
4842   { "emc_gate_5_gray.frames",                   "1"                     },
4843   { "emc_gate_5_gray.EDITOR",                   "RocksEMC.png"          },
4844   { "emc_gate_5_gray.EDITOR.xpos",              "0"                     },
4845   { "emc_gate_5_gray.EDITOR.ypos",              "7"                     },
4846   { "emc_gate_5_gray.active",                   "RocksEMC.png"          },
4847   { "emc_gate_5_gray.active.xpos",              "0"                     },
4848   { "emc_gate_5_gray.active.ypos",              "6"                     },
4849   { "emc_gate_5_gray.active.frames",            "1"                     },
4850   { "emc_gate_6_gray",                          "RocksEMC.png"          },
4851   { "emc_gate_6_gray.xpos",                     "4"                     },
4852   { "emc_gate_6_gray.ypos",                     "7"                     },
4853   { "emc_gate_6_gray.frames",                   "1"                     },
4854   { "emc_gate_6_gray.EDITOR",                   "RocksEMC.png"          },
4855   { "emc_gate_6_gray.EDITOR.xpos",              "1"                     },
4856   { "emc_gate_6_gray.EDITOR.ypos",              "7"                     },
4857   { "emc_gate_6_gray.active",                   "RocksEMC.png"          },
4858   { "emc_gate_6_gray.active.xpos",              "1"                     },
4859   { "emc_gate_6_gray.active.ypos",              "6"                     },
4860   { "emc_gate_6_gray.active.frames",            "1"                     },
4861   { "emc_gate_7_gray",                          "RocksEMC.png"          },
4862   { "emc_gate_7_gray.xpos",                     "4"                     },
4863   { "emc_gate_7_gray.ypos",                     "7"                     },
4864   { "emc_gate_7_gray.frames",                   "1"                     },
4865   { "emc_gate_7_gray.EDITOR",                   "RocksEMC.png"          },
4866   { "emc_gate_7_gray.EDITOR.xpos",              "2"                     },
4867   { "emc_gate_7_gray.EDITOR.ypos",              "7"                     },
4868   { "emc_gate_7_gray.active",                   "RocksEMC.png"          },
4869   { "emc_gate_7_gray.active.xpos",              "2"                     },
4870   { "emc_gate_7_gray.active.ypos",              "6"                     },
4871   { "emc_gate_7_gray.active.frames",            "1"                     },
4872   { "emc_gate_8_gray",                          "RocksEMC.png"          },
4873   { "emc_gate_8_gray.xpos",                     "4"                     },
4874   { "emc_gate_8_gray.ypos",                     "7"                     },
4875   { "emc_gate_8_gray.frames",                   "1"                     },
4876   { "emc_gate_8_gray.EDITOR",                   "RocksEMC.png"          },
4877   { "emc_gate_8_gray.EDITOR.xpos",              "3"                     },
4878   { "emc_gate_8_gray.EDITOR.ypos",              "7"                     },
4879   { "emc_gate_8_gray.active",                   "RocksEMC.png"          },
4880   { "emc_gate_8_gray.active.xpos",              "3"                     },
4881   { "emc_gate_8_gray.active.ypos",              "6"                     },
4882   { "emc_gate_8_gray.active.frames",            "1"                     },
4883
4884   { "emc_android",                              "RocksEMC.png"          },
4885   { "emc_android.xpos",                         "0"                     },
4886   { "emc_android.ypos",                         "8"                     },
4887   { "emc_android.frames",                       "8"                     },
4888   { "emc_android.delay",                        "2"                     },
4889
4890   { "emc_android.shrinking.upleft",             "RocksEMC.png"          },
4891   { "emc_android.shrinking.upleft.xpos",        "1"                     },
4892   { "emc_android.shrinking.upleft.ypos",        "11"                    },
4893   { "emc_android.shrinking.upleft.frames",      "8"                     },
4894   { "emc_android.shrinking.upleft.anim_mode",   "linear"                },
4895
4896   { "emc_android.growing.downright",            "RocksEMC.png"          },
4897   { "emc_android.growing.downright.xpos",       "0"                     },
4898   { "emc_android.growing.downright.ypos",       "11"                    },
4899   { "emc_android.growing.downright.frames",     "8"                     },
4900   { "emc_android.growing.downright.anim_mode",  "linear,reverse"        },
4901
4902   { "emc_android.shrinking.downleft",           "RocksEMC.png"          },
4903   { "emc_android.shrinking.downleft.xpos",      "1"                     },
4904   { "emc_android.shrinking.downleft.ypos",      "12"                    },
4905   { "emc_android.shrinking.downleft.frames",    "8"                     },
4906   { "emc_android.shrinking.downleft.anim_mode", "linear"                },
4907
4908   { "emc_android.growing.upright",              "RocksEMC.png"          },
4909   { "emc_android.growing.upright.xpos",         "0"                     },
4910   { "emc_android.growing.upright.ypos",         "12"                    },
4911   { "emc_android.growing.upright.frames",       "8"                     },
4912   { "emc_android.growing.upright.anim_mode",    "linear,reverse"        },
4913
4914   { "emc_android.shrinking.upright",            "RocksEMC.png"          },
4915   { "emc_android.shrinking.upright.xpos",       "1"                     },
4916   { "emc_android.shrinking.upright.ypos",       "13"                    },
4917   { "emc_android.shrinking.upright.frames",     "8"                     },
4918   { "emc_android.shrinking.upright.anim_mode",  "linear"                },
4919
4920   { "emc_android.growing.downleft",             "RocksEMC.png"          },
4921   { "emc_android.growing.downleft.xpos",        "0"                     },
4922   { "emc_android.growing.downleft.ypos",        "13"                    },
4923   { "emc_android.growing.downleft.frames",      "8"                     },
4924   { "emc_android.growing.downleft.anim_mode",   "linear,reverse"        },
4925
4926   { "emc_android.shrinking.downright",          "RocksEMC.png"          },
4927   { "emc_android.shrinking.downright.xpos",     "1"                     },
4928   { "emc_android.shrinking.downright.ypos",     "14"                    },
4929   { "emc_android.shrinking.downright.frames",   "8"                     },
4930   { "emc_android.shrinking.downright.anim_mode","linear"                },
4931
4932   { "emc_android.growing.upleft",               "RocksEMC.png"          },
4933   { "emc_android.growing.upleft.xpos",          "0"                     },
4934   { "emc_android.growing.upleft.ypos",          "14"                    },
4935   { "emc_android.growing.upleft.frames",        "8"                     },
4936   { "emc_android.growing.upleft.anim_mode",     "linear,reverse"        },
4937
4938   { "emc_grass",                                "RocksEMC.png"          },
4939   { "emc_grass.xpos",                           "0"                     },
4940   { "emc_grass.ypos",                           "4"                     },
4941   { "emc_grass.frames",                         "1"                     },
4942   { "emc_grass.CRUMBLED",                       "RocksEMC.png"          },
4943   { "emc_grass.CRUMBLED.xpos",                  "1"                     },
4944   { "emc_grass.CRUMBLED.ypos",                  "4"                     },
4945   { "emc_grass.CRUMBLED.frames",                "1"                     },
4946   { "emc_grass.digging.left",                   "RocksEMC.png"          },
4947   { "emc_grass.digging.left.xpos",              "6"                     },
4948   { "emc_grass.digging.left.ypos",              "0"                     },
4949   { "emc_grass.digging.left.frames",            "3"                     },
4950   { "emc_grass.digging.left.delay",             "2"                     },
4951   { "emc_grass.digging.left.anim_mode",         "linear"                },
4952   { "emc_grass.digging.right",                  "RocksEMC.png"          },
4953   { "emc_grass.digging.right.xpos",             "9"                     },
4954   { "emc_grass.digging.right.ypos",             "0"                     },
4955   { "emc_grass.digging.right.frames",           "3"                     },
4956   { "emc_grass.digging.right.delay",            "2"                     },
4957   { "emc_grass.digging.right.anim_mode",        "linear"                },
4958   { "emc_grass.digging.up",                     "RocksEMC.png"          },
4959   { "emc_grass.digging.up.xpos",                "0"                     },
4960   { "emc_grass.digging.up.ypos",                "0"                     },
4961   { "emc_grass.digging.up.frames",              "3"                     },
4962   { "emc_grass.digging.up.delay",               "2"                     },
4963   { "emc_grass.digging.up.anim_mode",           "linear"                },
4964   { "emc_grass.digging.down",                   "RocksEMC.png"          },
4965   { "emc_grass.digging.down.xpos",              "3"                     },
4966   { "emc_grass.digging.down.ypos",              "0"                     },
4967   { "emc_grass.digging.down.frames",            "3"                     },
4968   { "emc_grass.digging.down.delay",             "2"                     },
4969   { "emc_grass.digging.down.anim_mode",         "linear"                },
4970   { "emc_grass.digging.left.CRUMBLED",          "RocksEMC.png"          },
4971   { "emc_grass.digging.left.CRUMBLED.xpos",     "6"                     },
4972   { "emc_grass.digging.left.CRUMBLED.ypos",     "1"                     },
4973   { "emc_grass.digging.left.CRUMBLED.frames",   "3"                     },
4974   { "emc_grass.digging.left.CRUMBLED.delay",    "2"                     },
4975   { "emc_grass.digging.left.CRUMBLED.anim_mode","linear"                },
4976   { "emc_grass.digging.right.CRUMBLED",         "RocksEMC.png"          },
4977   { "emc_grass.digging.right.CRUMBLED.xpos",    "9"                     },
4978   { "emc_grass.digging.right.CRUMBLED.ypos",    "1"                     },
4979   { "emc_grass.digging.right.CRUMBLED.frames",  "3"                     },
4980   { "emc_grass.digging.right.CRUMBLED.delay",   "2"                     },
4981   { "emc_grass.digging.right.CRUMBLED.anim_mode","linear"               },
4982   { "emc_grass.digging.up.CRUMBLED",            "RocksEMC.png"          },
4983   { "emc_grass.digging.up.CRUMBLED.xpos",       "0"                     },
4984   { "emc_grass.digging.up.CRUMBLED.ypos",       "1"                     },
4985   { "emc_grass.digging.up.CRUMBLED.frames",     "3"                     },
4986   { "emc_grass.digging.up.CRUMBLED.delay",      "2"                     },
4987   { "emc_grass.digging.up.CRUMBLED.anim_mode",  "linear"                },
4988   { "emc_grass.digging.down.CRUMBLED",          "RocksEMC.png"          },
4989   { "emc_grass.digging.down.CRUMBLED.xpos",     "3"                     },
4990   { "emc_grass.digging.down.CRUMBLED.ypos",     "1"                     },
4991   { "emc_grass.digging.down.CRUMBLED.frames",   "3"                     },
4992   { "emc_grass.digging.down.CRUMBLED.delay",    "2"                     },
4993   { "emc_grass.digging.down.CRUMBLED.anim_mode","linear"                },
4994
4995   { "emc_magic_ball",                           "RocksEMC.png"          },
4996   { "emc_magic_ball.xpos",                      "0"                     },
4997   { "emc_magic_ball.ypos",                      "9"                     },
4998   { "emc_magic_ball.frames",                    "1"                     },
4999   { "emc_magic_ball.active",                    "RocksEMC.png"          },
5000   { "emc_magic_ball.active.xpos",               "0"                     },
5001   { "emc_magic_ball.active.ypos",               "9"                     },
5002   { "emc_magic_ball.active.frames",             "16"                    },
5003   { "emc_magic_ball.active.frames_per_line",    "8"                     },
5004   { "emc_magic_ball.dropping",                  "RocksElements.png"     },
5005   { "emc_magic_ball.dropping.xpos",             "0"                     },
5006   { "emc_magic_ball.dropping.ypos",             "4"                     },
5007   { "emc_magic_ball.dropping.frames",           "8"                     },
5008   { "emc_magic_ball.dropping.anim_mode",        "linear"                },
5009
5010   { "emc_magic_ball_switch",                    "RocksEMC.png"          },
5011   { "emc_magic_ball_switch.xpos",               "8"                     },
5012   { "emc_magic_ball_switch.ypos",               "10"                    },
5013   { "emc_magic_ball_switch.frames",             "1"                     },
5014   { "emc_magic_ball_switch.active",             "RocksEMC.png"          },
5015   { "emc_magic_ball_switch.active.xpos",        "8"                     },
5016   { "emc_magic_ball_switch.active.ypos",        "9"                     },
5017   { "emc_magic_ball_switch.active.frames",      "1"                     },
5018
5019   { "emc_spring_bumper",                        "RocksEMC.png"          },
5020   { "emc_spring_bumper.xpos",                   "8"                     },
5021   { "emc_spring_bumper.ypos",                   "4"                     },
5022   { "emc_spring_bumper.frames",                 "1"                     },
5023
5024   { "emc_spring_bumper.active",                 "RocksEMC.png"          },
5025   { "emc_spring_bumper.active.xpos",            "8"                     },
5026   { "emc_spring_bumper.active.ypos",            "4"                     },
5027   { "emc_spring_bumper.active.frames",          "4"                     },
5028   { "emc_spring_bumper.active.anim_mode",       "pingpong2"             },
5029
5030   { "emc_plant",                                "RocksEMC.png"          },
5031   { "emc_plant.xpos",                           "4"                     },
5032   { "emc_plant.ypos",                           "4"                     },
5033   { "emc_plant.frames",                         "1"                     },
5034   { "emc_plant.CRUMBLED",                       "RocksEMC.png"          },
5035   { "emc_plant.CRUMBLED.xpos",                  "5"                     },
5036   { "emc_plant.CRUMBLED.ypos",                  "4"                     },
5037   { "emc_plant.CRUMBLED.frames",                "1"                     },
5038
5039   { "emc_lenses",                               "RocksEMC.png"          },
5040   { "emc_lenses.xpos",                          "6"                     },
5041   { "emc_lenses.ypos",                          "4"                     },
5042   { "emc_lenses.frames",                        "1"                     },
5043   { "emc_lenses.collecting",                    "RocksCollect.png"      },
5044   { "emc_lenses.collecting.xpos",               "7"                     },
5045   { "emc_lenses.collecting.ypos",               "16"                    },
5046   { "emc_lenses.collecting.frames",             "7"                     },
5047   { "emc_lenses.collecting.anim_mode",          "linear"                },
5048
5049   { "emc_magnifier",                            "RocksEMC.png"          },
5050   { "emc_magnifier.xpos",                       "7"                     },
5051   { "emc_magnifier.ypos",                       "4"                     },
5052   { "emc_magnifier.frames",                     "1"                     },
5053   { "emc_magnifier.collecting",                 "RocksCollect.png"      },
5054   { "emc_magnifier.collecting.xpos",            "7"                     },
5055   { "emc_magnifier.collecting.ypos",            "17"                    },
5056   { "emc_magnifier.collecting.frames",          "7"                     },
5057   { "emc_magnifier.collecting.anim_mode",       "linear"                },
5058
5059   { "emc_wall_9",                               "RocksEMC.png"          },
5060   { "emc_wall_9.xpos",                          "10"                    },
5061   { "emc_wall_9.ypos",                          "5"                     },
5062   { "emc_wall_9.frames",                        "1"                     },
5063   { "emc_wall_10",                              "RocksEMC.png"          },
5064   { "emc_wall_10.xpos",                         "10"                    },
5065   { "emc_wall_10.ypos",                         "6"                     },
5066   { "emc_wall_10.frames",                       "1"                     },
5067   { "emc_wall_11",                              "RocksEMC.png"          },
5068   { "emc_wall_11.xpos",                         "11"                    },
5069   { "emc_wall_11.ypos",                         "5"                     },
5070   { "emc_wall_11.frames",                       "1"                     },
5071   { "emc_wall_12",                              "RocksEMC.png"          },
5072   { "emc_wall_12.xpos",                         "11"                    },
5073   { "emc_wall_12.ypos",                         "6"                     },
5074   { "emc_wall_12.frames",                       "1"                     },
5075   { "emc_wall_13",                              "RocksEMC.png"          },
5076   { "emc_wall_13.xpos",                         "10"                    },
5077   { "emc_wall_13.ypos",                         "7"                     },
5078   { "emc_wall_13.frames",                       "1"                     },
5079   { "emc_wall_14",                              "RocksEMC.png"          },
5080   { "emc_wall_14.xpos",                         "10"                    },
5081   { "emc_wall_14.ypos",                         "8"                     },
5082   { "emc_wall_14.frames",                       "1"                     },
5083   { "emc_wall_15",                              "RocksEMC.png"          },
5084   { "emc_wall_15.xpos",                         "10"                    },
5085   { "emc_wall_15.ypos",                         "9"                     },
5086   { "emc_wall_15.frames",                       "1"                     },
5087   { "emc_wall_16",                              "RocksEMC.png"          },
5088   { "emc_wall_16.xpos",                         "10"                    },
5089   { "emc_wall_16.ypos",                         "10"                    },
5090   { "emc_wall_16.frames",                       "1"                     },
5091
5092   { "emc_wall_slippery_1",                      "RocksEMC.png"          },
5093   { "emc_wall_slippery_1.xpos",                 "11"                    },
5094   { "emc_wall_slippery_1.ypos",                 "7"                     },
5095   { "emc_wall_slippery_1.frames",               "1"                     },
5096   { "emc_wall_slippery_2",                      "RocksEMC.png"          },
5097   { "emc_wall_slippery_2.xpos",                 "11"                    },
5098   { "emc_wall_slippery_2.ypos",                 "8"                     },
5099   { "emc_wall_slippery_2.frames",               "1"                     },
5100   { "emc_wall_slippery_3",                      "RocksEMC.png"          },
5101   { "emc_wall_slippery_3.xpos",                 "11"                    },
5102   { "emc_wall_slippery_3.ypos",                 "9"                     },
5103   { "emc_wall_slippery_3.frames",               "1"                     },
5104   { "emc_wall_slippery_4",                      "RocksEMC.png"          },
5105   { "emc_wall_slippery_4.xpos",                 "11"                    },
5106   { "emc_wall_slippery_4.ypos",                 "10"                    },
5107   { "emc_wall_slippery_4.frames",               "1"                     },
5108
5109   { "emc_fake_grass",                           "RocksEMC.png"          },
5110   { "emc_fake_grass.xpos",                      "0"                     },
5111   { "emc_fake_grass.ypos",                      "4"                     },
5112   { "emc_fake_grass.frames",                    "1"                     },
5113   { "emc_fake_grass.CRUMBLED",                  "RocksEMC.png"          },
5114   { "emc_fake_grass.CRUMBLED.xpos",             "1"                     },
5115   { "emc_fake_grass.CRUMBLED.ypos",             "4"                     },
5116   { "emc_fake_grass.CRUMBLED.frames",           "1"                     },
5117   { "emc_fake_grass.active",                    "RocksEMC.png"          },
5118   { "emc_fake_grass.active.xpos",               "2"                     },
5119   { "emc_fake_grass.active.ypos",               "4"                     },
5120   { "emc_fake_grass.active.frames",             "1"                     },
5121   { "emc_fake_grass.active.CRUMBLED",           "RocksEMC.png"          },
5122   { "emc_fake_grass.active.CRUMBLED.xpos",      "3"                     },
5123   { "emc_fake_grass.active.CRUMBLED.ypos",      "4"                     },
5124   { "emc_fake_grass.active.CRUMBLED.frames",    "1"                     },
5125   { "emc_fake_grass.EDITOR",                    "RocksEMC.png"          },
5126   { "emc_fake_grass.EDITOR.xpos",               "2"                     },
5127   { "emc_fake_grass.EDITOR.ypos",               "4"                     },
5128   { "emc_fake_grass.EDITOR.frames",             "1"                     },
5129
5130   { "emc_fake_acid",                            "RocksElements.png"     },
5131   { "emc_fake_acid.xpos",                       "12"                    },
5132   { "emc_fake_acid.ypos",                       "7"                     },
5133   { "emc_fake_acid.frames",                     "4"                     },
5134   { "emc_fake_acid.delay",                      "10"                    },
5135   { "emc_fake_acid.global_sync",                "true"                  },
5136
5137   { "emc_dripper",                              "RocksSP.png"           },
5138   { "emc_dripper.xpos",                         "0"                     },
5139   { "emc_dripper.ypos",                         "0"                     },
5140   { "emc_dripper.frames",                       "1"                     },
5141   { "emc_dripper.EDITOR",                       "RocksEMC.png"          },
5142   { "emc_dripper.EDITOR.xpos",                  "8"                     },
5143   { "emc_dripper.EDITOR.ypos",                  "8"                     },
5144   { "emc_dripper.active",                       "RocksEMC.png"          },
5145   { "emc_dripper.active.xpos",                  "8"                     },
5146   { "emc_dripper.active.ypos",                  "8"                     },
5147   { "emc_dripper.active.frames",                "1"                     },
5148
5149   { "mm_mcduffin",                              "RocksMM.png"           },
5150   { "mm_mcduffin.xpos",                         "4"                     },
5151   { "mm_mcduffin.ypos",                         "1"                     },
5152   { "mm_mcduffin.frames",                       "4"                     },
5153   { "mm_mcduffin.delay",                        "8"                     },
5154   { "mm_mcduffin.right",                        "RocksMM.png"           },
5155   { "mm_mcduffin.right.xpos",                   "4"                     },
5156   { "mm_mcduffin.right.ypos",                   "1"                     },
5157   { "mm_mcduffin.right.frames",                 "1"                     },
5158   { "mm_mcduffin.up",                           "RocksMM.png"           },
5159   { "mm_mcduffin.up.xpos",                      "5"                     },
5160   { "mm_mcduffin.up.ypos",                      "1"                     },
5161   { "mm_mcduffin.up.frames",                    "1"                     },
5162   { "mm_mcduffin.left",                         "RocksMM.png"           },
5163   { "mm_mcduffin.left.xpos",                    "6"                     },
5164   { "mm_mcduffin.left.ypos",                    "1"                     },
5165   { "mm_mcduffin.left.frames",                  "1"                     },
5166   { "mm_mcduffin.down",                         "RocksMM.png"           },
5167   { "mm_mcduffin.down.xpos",                    "7"                     },
5168   { "mm_mcduffin.down.ypos",                    "1"                     },
5169   { "mm_mcduffin.down.frames",                  "1"                     },
5170
5171   { "mm_exit_closed",                           "RocksMM.png"           },
5172   { "mm_exit_closed.xpos",                      "8"                     },
5173   { "mm_exit_closed.ypos",                      "1"                     },
5174   { "mm_exit_closed.frames",                    "1"                     },
5175   { "mm_exit.opening",                          "RocksMM.png"           },
5176   { "mm_exit.opening.xpos",                     "8"                     },
5177   { "mm_exit.opening.ypos",                     "1"                     },
5178   { "mm_exit.opening.frames",                   "4"                     },
5179   { "mm_exit.opening.delay",                    "6"                     },
5180   { "mm_exit.opening.anim_mode",                "linear"                },
5181   { "mm_exit_open",                             "RocksMM.png"           },
5182   { "mm_exit_open.xpos",                        "11"                    },
5183   { "mm_exit_open.ypos",                        "1"                     },
5184   { "mm_exit_open.frames",                      "1"                     },
5185   { "mm_exit.closing",                          "RocksMM.png"           },
5186   { "mm_exit.closing.xpos",                     "8"                     },
5187   { "mm_exit.closing.ypos",                     "1"                     },
5188   { "mm_exit.closing.frames",                   "4"                     },
5189   { "mm_exit.closing.delay",                    "6"                     },
5190   { "mm_exit.closing.anim_mode",                "linear,reverse"        },
5191
5192   { "mm_mirror_1",                              "RocksMM.png"           },
5193   { "mm_mirror_1.xpos",                         "0"                     },
5194   { "mm_mirror_1.ypos",                         "0"                     },
5195   { "mm_mirror_1.frames",                       "1"                     },
5196   { "mm_mirror_2",                              "RocksMM.png"           },
5197   { "mm_mirror_2.xpos",                         "1"                     },
5198   { "mm_mirror_2.ypos",                         "0"                     },
5199   { "mm_mirror_2.frames",                       "1"                     },
5200   { "mm_mirror_3",                              "RocksMM.png"           },
5201   { "mm_mirror_3.xpos",                         "2"                     },
5202   { "mm_mirror_3.ypos",                         "0"                     },
5203   { "mm_mirror_3.frames",                       "1"                     },
5204   { "mm_mirror_4",                              "RocksMM.png"           },
5205   { "mm_mirror_4.xpos",                         "3"                     },
5206   { "mm_mirror_4.ypos",                         "0"                     },
5207   { "mm_mirror_4.frames",                       "1"                     },
5208   { "mm_mirror_5",                              "RocksMM.png"           },
5209   { "mm_mirror_5.xpos",                         "4"                     },
5210   { "mm_mirror_5.ypos",                         "0"                     },
5211   { "mm_mirror_5.frames",                       "1"                     },
5212   { "mm_mirror_6",                              "RocksMM.png"           },
5213   { "mm_mirror_6.xpos",                         "5"                     },
5214   { "mm_mirror_6.ypos",                         "0"                     },
5215   { "mm_mirror_6.frames",                       "1"                     },
5216   { "mm_mirror_7",                              "RocksMM.png"           },
5217   { "mm_mirror_7.xpos",                         "6"                     },
5218   { "mm_mirror_7.ypos",                         "0"                     },
5219   { "mm_mirror_7.frames",                       "1"                     },
5220   { "mm_mirror_8",                              "RocksMM.png"           },
5221   { "mm_mirror_8.xpos",                         "7"                     },
5222   { "mm_mirror_8.ypos",                         "0"                     },
5223   { "mm_mirror_8.frames",                       "1"                     },
5224   { "mm_mirror_9",                              "RocksMM.png"           },
5225   { "mm_mirror_9.xpos",                         "8"                     },
5226   { "mm_mirror_9.ypos",                         "0"                     },
5227   { "mm_mirror_9.frames",                       "1"                     },
5228   { "mm_mirror_10",                             "RocksMM.png"           },
5229   { "mm_mirror_10.xpos",                        "9"                     },
5230   { "mm_mirror_10.ypos",                        "0"                     },
5231   { "mm_mirror_10.frames",                      "1"                     },
5232   { "mm_mirror_11",                             "RocksMM.png"           },
5233   { "mm_mirror_11.xpos",                        "10"                    },
5234   { "mm_mirror_11.ypos",                        "0"                     },
5235   { "mm_mirror_11.frames",                      "1"                     },
5236   { "mm_mirror_12",                             "RocksMM.png"           },
5237   { "mm_mirror_12.xpos",                        "11"                    },
5238   { "mm_mirror_12.ypos",                        "0"                     },
5239   { "mm_mirror_12.frames",                      "1"                     },
5240   { "mm_mirror_13",                             "RocksMM.png"           },
5241   { "mm_mirror_13.xpos",                        "12"                    },
5242   { "mm_mirror_13.ypos",                        "0"                     },
5243   { "mm_mirror_13.frames",                      "1"                     },
5244   { "mm_mirror_14",                             "RocksMM.png"           },
5245   { "mm_mirror_14.xpos",                        "13"                    },
5246   { "mm_mirror_14.ypos",                        "0"                     },
5247   { "mm_mirror_14.frames",                      "1"                     },
5248   { "mm_mirror_15",                             "RocksMM.png"           },
5249   { "mm_mirror_15.xpos",                        "14"                    },
5250   { "mm_mirror_15.ypos",                        "0"                     },
5251   { "mm_mirror_15.frames",                      "1"                     },
5252   { "mm_mirror_16",                             "RocksMM.png"           },
5253   { "mm_mirror_16.xpos",                        "15"                    },
5254   { "mm_mirror_16.ypos",                        "0"                     },
5255   { "mm_mirror_16.frames",                      "1"                     },
5256
5257   { "mm_mirror_fixed_1",                        "RocksMM.png"           },
5258   { "mm_mirror_fixed_1.xpos",                   "4"                     },
5259   { "mm_mirror_fixed_1.ypos",                   "6"                     },
5260   { "mm_mirror_fixed_1.frames",                 "1"                     },
5261   { "mm_mirror_fixed_2",                        "RocksMM.png"           },
5262   { "mm_mirror_fixed_2.xpos",                   "5"                     },
5263   { "mm_mirror_fixed_2.ypos",                   "6"                     },
5264   { "mm_mirror_fixed_2.frames",                 "1"                     },
5265   { "mm_mirror_fixed_3",                        "RocksMM.png"           },
5266   { "mm_mirror_fixed_3.xpos",                   "6"                     },
5267   { "mm_mirror_fixed_3.ypos",                   "6"                     },
5268   { "mm_mirror_fixed_3.frames",                 "1"                     },
5269   { "mm_mirror_fixed_4",                        "RocksMM.png"           },
5270   { "mm_mirror_fixed_4.xpos",                   "7"                     },
5271   { "mm_mirror_fixed_4.ypos",                   "6"                     },
5272   { "mm_mirror_fixed_4.frames",                 "1"                     },
5273
5274   { "mm_steel_grid_fixed_1",                    "RocksMM.png"           },
5275   { "mm_steel_grid_fixed_1.xpos",               "0"                     },
5276   { "mm_steel_grid_fixed_1.ypos",               "1"                     },
5277   { "mm_steel_grid_fixed_1.frames",             "1"                     },
5278   { "mm_steel_grid_fixed_2",                    "RocksMM.png"           },
5279   { "mm_steel_grid_fixed_2.xpos",               "1"                     },
5280   { "mm_steel_grid_fixed_2.ypos",               "1"                     },
5281   { "mm_steel_grid_fixed_2.frames",             "1"                     },
5282   { "mm_steel_grid_fixed_3",                    "RocksMM.png"           },
5283   { "mm_steel_grid_fixed_3.xpos",               "2"                     },
5284   { "mm_steel_grid_fixed_3.ypos",               "1"                     },
5285   { "mm_steel_grid_fixed_3.frames",             "1"                     },
5286   { "mm_steel_grid_fixed_4",                    "RocksMM.png"           },
5287   { "mm_steel_grid_fixed_4.xpos",               "3"                     },
5288   { "mm_steel_grid_fixed_4.ypos",               "1"                     },
5289   { "mm_steel_grid_fixed_4.frames",             "1"                     },
5290
5291   { "mm_wooden_grid_fixed_1",                   "RocksMM.png"           },
5292   { "mm_wooden_grid_fixed_1.xpos",              "12"                    },
5293   { "mm_wooden_grid_fixed_1.ypos",              "6"                     },
5294   { "mm_wooden_grid_fixed_1.frames",            "1"                     },
5295   { "mm_wooden_grid_fixed_2",                   "RocksMM.png"           },
5296   { "mm_wooden_grid_fixed_2.xpos",              "13"                    },
5297   { "mm_wooden_grid_fixed_2.ypos",              "6"                     },
5298   { "mm_wooden_grid_fixed_2.frames",            "1"                     },
5299   { "mm_wooden_grid_fixed_3",                   "RocksMM.png"           },
5300   { "mm_wooden_grid_fixed_3.xpos",              "14"                    },
5301   { "mm_wooden_grid_fixed_3.ypos",              "6"                     },
5302   { "mm_wooden_grid_fixed_3.frames",            "1"                     },
5303   { "mm_wooden_grid_fixed_4",                   "RocksMM.png"           },
5304   { "mm_wooden_grid_fixed_4.xpos",              "15"                    },
5305   { "mm_wooden_grid_fixed_4.ypos",              "6"                     },
5306   { "mm_wooden_grid_fixed_4.frames",            "1"                     },
5307
5308   { "mm_polarizer_1",                           "RocksMM.png"           },
5309   { "mm_polarizer_1.xpos",                      "0"                     },
5310   { "mm_polarizer_1.ypos",                      "5"                     },
5311   { "mm_polarizer_1.frames",                    "1"                     },
5312   { "mm_polarizer_2",                           "RocksMM.png"           },
5313   { "mm_polarizer_2.xpos",                      "1"                     },
5314   { "mm_polarizer_2.ypos",                      "5"                     },
5315   { "mm_polarizer_2.frames",                    "1"                     },
5316   { "mm_polarizer_3",                           "RocksMM.png"           },
5317   { "mm_polarizer_3.xpos",                      "2"                     },
5318   { "mm_polarizer_3.ypos",                      "5"                     },
5319   { "mm_polarizer_3.frames",                    "1"                     },
5320   { "mm_polarizer_4",                           "RocksMM.png"           },
5321   { "mm_polarizer_4.xpos",                      "3"                     },
5322   { "mm_polarizer_4.ypos",                      "5"                     },
5323   { "mm_polarizer_4.frames",                    "1"                     },
5324   { "mm_polarizer_5",                           "RocksMM.png"           },
5325   { "mm_polarizer_5.xpos",                      "4"                     },
5326   { "mm_polarizer_5.ypos",                      "5"                     },
5327   { "mm_polarizer_5.frames",                    "1"                     },
5328   { "mm_polarizer_6",                           "RocksMM.png"           },
5329   { "mm_polarizer_6.xpos",                      "5"                     },
5330   { "mm_polarizer_6.ypos",                      "5"                     },
5331   { "mm_polarizer_6.frames",                    "1"                     },
5332   { "mm_polarizer_7",                           "RocksMM.png"           },
5333   { "mm_polarizer_7.xpos",                      "6"                     },
5334   { "mm_polarizer_7.ypos",                      "5"                     },
5335   { "mm_polarizer_7.frames",                    "1"                     },
5336   { "mm_polarizer_8",                           "RocksMM.png"           },
5337   { "mm_polarizer_8.xpos",                      "7"                     },
5338   { "mm_polarizer_8.ypos",                      "5"                     },
5339   { "mm_polarizer_8.frames",                    "1"                     },
5340   { "mm_polarizer_9",                           "RocksMM.png"           },
5341   { "mm_polarizer_9.xpos",                      "8"                     },
5342   { "mm_polarizer_9.ypos",                      "5"                     },
5343   { "mm_polarizer_9.frames",                    "1"                     },
5344   { "mm_polarizer_10",                          "RocksMM.png"           },
5345   { "mm_polarizer_10.xpos",                     "9"                     },
5346   { "mm_polarizer_10.ypos",                     "5"                     },
5347   { "mm_polarizer_10.frames",                   "1"                     },
5348   { "mm_polarizer_11",                          "RocksMM.png"           },
5349   { "mm_polarizer_11.xpos",                     "10"                    },
5350   { "mm_polarizer_11.ypos",                     "5"                     },
5351   { "mm_polarizer_11.frames",                   "1"                     },
5352   { "mm_polarizer_12",                          "RocksMM.png"           },
5353   { "mm_polarizer_12.xpos",                     "11"                    },
5354   { "mm_polarizer_12.ypos",                     "5"                     },
5355   { "mm_polarizer_12.frames",                   "1"                     },
5356   { "mm_polarizer_13",                          "RocksMM.png"           },
5357   { "mm_polarizer_13.xpos",                     "12"                    },
5358   { "mm_polarizer_13.ypos",                     "5"                     },
5359   { "mm_polarizer_13.frames",                   "1"                     },
5360   { "mm_polarizer_14",                          "RocksMM.png"           },
5361   { "mm_polarizer_14.xpos",                     "13"                    },
5362   { "mm_polarizer_14.ypos",                     "5"                     },
5363   { "mm_polarizer_14.frames",                   "1"                     },
5364   { "mm_polarizer_15",                          "RocksMM.png"           },
5365   { "mm_polarizer_15.xpos",                     "14"                    },
5366   { "mm_polarizer_15.ypos",                     "5"                     },
5367   { "mm_polarizer_15.frames",                   "1"                     },
5368   { "mm_polarizer_16",                          "RocksMM.png"           },
5369   { "mm_polarizer_16.xpos",                     "15"                    },
5370   { "mm_polarizer_16.ypos",                     "5"                     },
5371   { "mm_polarizer_16.frames",                   "1"                     },
5372
5373   { "mm_polarizer_cross_1",                     "RocksMM.png"           },
5374   { "mm_polarizer_cross_1.xpos",                "0"                     },
5375   { "mm_polarizer_cross_1.ypos",                "6"                     },
5376   { "mm_polarizer_cross_1.frames",              "1"                     },
5377   { "mm_polarizer_cross_2",                     "RocksMM.png"           },
5378   { "mm_polarizer_cross_2.xpos",                "1"                     },
5379   { "mm_polarizer_cross_2.ypos",                "6"                     },
5380   { "mm_polarizer_cross_2.frames",              "1"                     },
5381   { "mm_polarizer_cross_3",                     "RocksMM.png"           },
5382   { "mm_polarizer_cross_3.xpos",                "2"                     },
5383   { "mm_polarizer_cross_3.ypos",                "6"                     },
5384   { "mm_polarizer_cross_3.frames",              "1"                     },
5385   { "mm_polarizer_cross_4",                     "RocksMM.png"           },
5386   { "mm_polarizer_cross_4.xpos",                "3"                     },
5387   { "mm_polarizer_cross_4.ypos",                "6"                     },
5388   { "mm_polarizer_cross_4.frames",              "1"                     },
5389
5390   { "mm_teleporter_1",                          "RocksMM.png"           },
5391   { "mm_teleporter_1.xpos",                     "0"                     },
5392   { "mm_teleporter_1.ypos",                     "3"                     },
5393   { "mm_teleporter_1.frames",                   "1"                     },
5394   { "mm_teleporter_2",                          "RocksMM.png"           },
5395   { "mm_teleporter_2.xpos",                     "1"                     },
5396   { "mm_teleporter_2.ypos",                     "3"                     },
5397   { "mm_teleporter_2.frames",                   "1"                     },
5398   { "mm_teleporter_3",                          "RocksMM.png"           },
5399   { "mm_teleporter_3.xpos",                     "2"                     },
5400   { "mm_teleporter_3.ypos",                     "3"                     },
5401   { "mm_teleporter_3.frames",                   "1"                     },
5402   { "mm_teleporter_4",                          "RocksMM.png"           },
5403   { "mm_teleporter_4.xpos",                     "3"                     },
5404   { "mm_teleporter_4.ypos",                     "3"                     },
5405   { "mm_teleporter_4.frames",                   "1"                     },
5406   { "mm_teleporter_5",                          "RocksMM.png"           },
5407   { "mm_teleporter_5.xpos",                     "4"                     },
5408   { "mm_teleporter_5.ypos",                     "3"                     },
5409   { "mm_teleporter_5.frames",                   "1"                     },
5410   { "mm_teleporter_6",                          "RocksMM.png"           },
5411   { "mm_teleporter_6.xpos",                     "5"                     },
5412   { "mm_teleporter_6.ypos",                     "3"                     },
5413   { "mm_teleporter_6.frames",                   "1"                     },
5414   { "mm_teleporter_7",                          "RocksMM.png"           },
5415   { "mm_teleporter_7.xpos",                     "6"                     },
5416   { "mm_teleporter_7.ypos",                     "3"                     },
5417   { "mm_teleporter_7.frames",                   "1"                     },
5418   { "mm_teleporter_8",                          "RocksMM.png"           },
5419   { "mm_teleporter_8.xpos",                     "7"                     },
5420   { "mm_teleporter_8.ypos",                     "3"                     },
5421   { "mm_teleporter_8.frames",                   "1"                     },
5422   { "mm_teleporter_9",                          "RocksMM.png"           },
5423   { "mm_teleporter_9.xpos",                     "8"                     },
5424   { "mm_teleporter_9.ypos",                     "3"                     },
5425   { "mm_teleporter_9.frames",                   "1"                     },
5426   { "mm_teleporter_10",                         "RocksMM.png"           },
5427   { "mm_teleporter_10.xpos",                    "9"                     },
5428   { "mm_teleporter_10.ypos",                    "3"                     },
5429   { "mm_teleporter_10.frames",                  "1"                     },
5430   { "mm_teleporter_11",                         "RocksMM.png"           },
5431   { "mm_teleporter_11.xpos",                    "10"                    },
5432   { "mm_teleporter_11.ypos",                    "3"                     },
5433   { "mm_teleporter_11.frames",                  "1"                     },
5434   { "mm_teleporter_12",                         "RocksMM.png"           },
5435   { "mm_teleporter_12.xpos",                    "11"                    },
5436   { "mm_teleporter_12.ypos",                    "3"                     },
5437   { "mm_teleporter_12.frames",                  "1"                     },
5438   { "mm_teleporter_13",                         "RocksMM.png"           },
5439   { "mm_teleporter_13.xpos",                    "12"                    },
5440   { "mm_teleporter_13.ypos",                    "3"                     },
5441   { "mm_teleporter_13.frames",                  "1"                     },
5442   { "mm_teleporter_14",                         "RocksMM.png"           },
5443   { "mm_teleporter_14.xpos",                    "13"                    },
5444   { "mm_teleporter_14.ypos",                    "3"                     },
5445   { "mm_teleporter_14.frames",                  "1"                     },
5446   { "mm_teleporter_15",                         "RocksMM.png"           },
5447   { "mm_teleporter_15.xpos",                    "14"                    },
5448   { "mm_teleporter_15.ypos",                    "3"                     },
5449   { "mm_teleporter_15.frames",                  "1"                     },
5450   { "mm_teleporter_16",                         "RocksMM.png"           },
5451   { "mm_teleporter_16.xpos",                    "15"                    },
5452   { "mm_teleporter_16.ypos",                    "3"                     },
5453   { "mm_teleporter_16.frames",                  "1"                     },
5454
5455   { "mm_teleporter_red_1",                      "RocksDF.png"           },
5456   { "mm_teleporter_red_1.xpos",                 "0"                     },
5457   { "mm_teleporter_red_1.ypos",                 "4"                     },
5458   { "mm_teleporter_red_1.frames",               "1"                     },
5459   { "mm_teleporter_red_2",                      "RocksDF.png"           },
5460   { "mm_teleporter_red_2.xpos",                 "1"                     },
5461   { "mm_teleporter_red_2.ypos",                 "4"                     },
5462   { "mm_teleporter_red_2.frames",               "1"                     },
5463   { "mm_teleporter_red_3",                      "RocksDF.png"           },
5464   { "mm_teleporter_red_3.xpos",                 "2"                     },
5465   { "mm_teleporter_red_3.ypos",                 "4"                     },
5466   { "mm_teleporter_red_3.frames",               "1"                     },
5467   { "mm_teleporter_red_4",                      "RocksDF.png"           },
5468   { "mm_teleporter_red_4.xpos",                 "3"                     },
5469   { "mm_teleporter_red_4.ypos",                 "4"                     },
5470   { "mm_teleporter_red_4.frames",               "1"                     },
5471   { "mm_teleporter_red_5",                      "RocksDF.png"           },
5472   { "mm_teleporter_red_5.xpos",                 "4"                     },
5473   { "mm_teleporter_red_5.ypos",                 "4"                     },
5474   { "mm_teleporter_red_5.frames",               "1"                     },
5475   { "mm_teleporter_red_6",                      "RocksDF.png"           },
5476   { "mm_teleporter_red_6.xpos",                 "5"                     },
5477   { "mm_teleporter_red_6.ypos",                 "4"                     },
5478   { "mm_teleporter_red_6.frames",               "1"                     },
5479   { "mm_teleporter_red_7",                      "RocksDF.png"           },
5480   { "mm_teleporter_red_7.xpos",                 "6"                     },
5481   { "mm_teleporter_red_7.ypos",                 "4"                     },
5482   { "mm_teleporter_red_7.frames",               "1"                     },
5483   { "mm_teleporter_red_8",                      "RocksDF.png"           },
5484   { "mm_teleporter_red_8.xpos",                 "7"                     },
5485   { "mm_teleporter_red_8.ypos",                 "4"                     },
5486   { "mm_teleporter_red_8.frames",               "1"                     },
5487   { "mm_teleporter_red_9",                      "RocksDF.png"           },
5488   { "mm_teleporter_red_9.xpos",                 "8"                     },
5489   { "mm_teleporter_red_9.ypos",                 "4"                     },
5490   { "mm_teleporter_red_9.frames",               "1"                     },
5491   { "mm_teleporter_red_10",                     "RocksDF.png"           },
5492   { "mm_teleporter_red_10.xpos",                "9"                     },
5493   { "mm_teleporter_red_10.ypos",                "4"                     },
5494   { "mm_teleporter_red_10.frames",              "1"                     },
5495   { "mm_teleporter_red_11",                     "RocksDF.png"           },
5496   { "mm_teleporter_red_11.xpos",                "10"                    },
5497   { "mm_teleporter_red_11.ypos",                "4"                     },
5498   { "mm_teleporter_red_11.frames",              "1"                     },
5499   { "mm_teleporter_red_12",                     "RocksDF.png"           },
5500   { "mm_teleporter_red_12.xpos",                "11"                    },
5501   { "mm_teleporter_red_12.ypos",                "4"                     },
5502   { "mm_teleporter_red_12.frames",              "1"                     },
5503   { "mm_teleporter_red_13",                     "RocksDF.png"           },
5504   { "mm_teleporter_red_13.xpos",                "12"                    },
5505   { "mm_teleporter_red_13.ypos",                "4"                     },
5506   { "mm_teleporter_red_13.frames",              "1"                     },
5507   { "mm_teleporter_red_14",                     "RocksDF.png"           },
5508   { "mm_teleporter_red_14.xpos",                "13"                    },
5509   { "mm_teleporter_red_14.ypos",                "4"                     },
5510   { "mm_teleporter_red_14.frames",              "1"                     },
5511   { "mm_teleporter_red_15",                     "RocksDF.png"           },
5512   { "mm_teleporter_red_15.xpos",                "14"                    },
5513   { "mm_teleporter_red_15.ypos",                "4"                     },
5514   { "mm_teleporter_red_15.frames",              "1"                     },
5515   { "mm_teleporter_red_16",                     "RocksDF.png"           },
5516   { "mm_teleporter_red_16.xpos",                "15"                    },
5517   { "mm_teleporter_red_16.ypos",                "4"                     },
5518   { "mm_teleporter_red_16.frames",              "1"                     },
5519
5520   { "mm_teleporter_yellow_1",                   "RocksDF.png"           },
5521   { "mm_teleporter_yellow_1.xpos",              "0"                     },
5522   { "mm_teleporter_yellow_1.ypos",              "5"                     },
5523   { "mm_teleporter_yellow_1.frames",            "1"                     },
5524   { "mm_teleporter_yellow_2",                   "RocksDF.png"           },
5525   { "mm_teleporter_yellow_2.xpos",              "1"                     },
5526   { "mm_teleporter_yellow_2.ypos",              "5"                     },
5527   { "mm_teleporter_yellow_2.frames",            "1"                     },
5528   { "mm_teleporter_yellow_3",                   "RocksDF.png"           },
5529   { "mm_teleporter_yellow_3.xpos",              "2"                     },
5530   { "mm_teleporter_yellow_3.ypos",              "5"                     },
5531   { "mm_teleporter_yellow_3.frames",            "1"                     },
5532   { "mm_teleporter_yellow_4",                   "RocksDF.png"           },
5533   { "mm_teleporter_yellow_4.xpos",              "3"                     },
5534   { "mm_teleporter_yellow_4.ypos",              "5"                     },
5535   { "mm_teleporter_yellow_4.frames",            "1"                     },
5536   { "mm_teleporter_yellow_5",                   "RocksDF.png"           },
5537   { "mm_teleporter_yellow_5.xpos",              "4"                     },
5538   { "mm_teleporter_yellow_5.ypos",              "5"                     },
5539   { "mm_teleporter_yellow_5.frames",            "1"                     },
5540   { "mm_teleporter_yellow_6",                   "RocksDF.png"           },
5541   { "mm_teleporter_yellow_6.xpos",              "5"                     },
5542   { "mm_teleporter_yellow_6.ypos",              "5"                     },
5543   { "mm_teleporter_yellow_6.frames",            "1"                     },
5544   { "mm_teleporter_yellow_7",                   "RocksDF.png"           },
5545   { "mm_teleporter_yellow_7.xpos",              "6"                     },
5546   { "mm_teleporter_yellow_7.ypos",              "5"                     },
5547   { "mm_teleporter_yellow_7.frames",            "1"                     },
5548   { "mm_teleporter_yellow_8",                   "RocksDF.png"           },
5549   { "mm_teleporter_yellow_8.xpos",              "7"                     },
5550   { "mm_teleporter_yellow_8.ypos",              "5"                     },
5551   { "mm_teleporter_yellow_8.frames",            "1"                     },
5552   { "mm_teleporter_yellow_9",                   "RocksDF.png"           },
5553   { "mm_teleporter_yellow_9.xpos",              "8"                     },
5554   { "mm_teleporter_yellow_9.ypos",              "5"                     },
5555   { "mm_teleporter_yellow_9.frames",            "1"                     },
5556   { "mm_teleporter_yellow_10",                  "RocksDF.png"           },
5557   { "mm_teleporter_yellow_10.xpos",             "9"                     },
5558   { "mm_teleporter_yellow_10.ypos",             "5"                     },
5559   { "mm_teleporter_yellow_10.frames",           "1"                     },
5560   { "mm_teleporter_yellow_11",                  "RocksDF.png"           },
5561   { "mm_teleporter_yellow_11.xpos",             "10"                    },
5562   { "mm_teleporter_yellow_11.ypos",             "5"                     },
5563   { "mm_teleporter_yellow_11.frames",           "1"                     },
5564   { "mm_teleporter_yellow_12",                  "RocksDF.png"           },
5565   { "mm_teleporter_yellow_12.xpos",             "11"                    },
5566   { "mm_teleporter_yellow_12.ypos",             "5"                     },
5567   { "mm_teleporter_yellow_12.frames",           "1"                     },
5568   { "mm_teleporter_yellow_13",                  "RocksDF.png"           },
5569   { "mm_teleporter_yellow_13.xpos",             "12"                    },
5570   { "mm_teleporter_yellow_13.ypos",             "5"                     },
5571   { "mm_teleporter_yellow_13.frames",           "1"                     },
5572   { "mm_teleporter_yellow_14",                  "RocksDF.png"           },
5573   { "mm_teleporter_yellow_14.xpos",             "13"                    },
5574   { "mm_teleporter_yellow_14.ypos",             "5"                     },
5575   { "mm_teleporter_yellow_14.frames",           "1"                     },
5576   { "mm_teleporter_yellow_15",                  "RocksDF.png"           },
5577   { "mm_teleporter_yellow_15.xpos",             "14"                    },
5578   { "mm_teleporter_yellow_15.ypos",             "5"                     },
5579   { "mm_teleporter_yellow_15.frames",           "1"                     },
5580   { "mm_teleporter_yellow_16",                  "RocksDF.png"           },
5581   { "mm_teleporter_yellow_16.xpos",             "15"                    },
5582   { "mm_teleporter_yellow_16.ypos",             "5"                     },
5583   { "mm_teleporter_yellow_16.frames",           "1"                     },
5584
5585   { "mm_teleporter_green_1",                    "RocksDF.png"           },
5586   { "mm_teleporter_green_1.xpos",               "0"                     },
5587   { "mm_teleporter_green_1.ypos",               "6"                     },
5588   { "mm_teleporter_green_1.frames",             "1"                     },
5589   { "mm_teleporter_green_2",                    "RocksDF.png"           },
5590   { "mm_teleporter_green_2.xpos",               "1"                     },
5591   { "mm_teleporter_green_2.ypos",               "6"                     },
5592   { "mm_teleporter_green_2.frames",             "1"                     },
5593   { "mm_teleporter_green_3",                    "RocksDF.png"           },
5594   { "mm_teleporter_green_3.xpos",               "2"                     },
5595   { "mm_teleporter_green_3.ypos",               "6"                     },
5596   { "mm_teleporter_green_3.frames",             "1"                     },
5597   { "mm_teleporter_green_4",                    "RocksDF.png"           },
5598   { "mm_teleporter_green_4.xpos",               "3"                     },
5599   { "mm_teleporter_green_4.ypos",               "6"                     },
5600   { "mm_teleporter_green_4.frames",             "1"                     },
5601   { "mm_teleporter_green_5",                    "RocksDF.png"           },
5602   { "mm_teleporter_green_5.xpos",               "4"                     },
5603   { "mm_teleporter_green_5.ypos",               "6"                     },
5604   { "mm_teleporter_green_5.frames",             "1"                     },
5605   { "mm_teleporter_green_6",                    "RocksDF.png"           },
5606   { "mm_teleporter_green_6.xpos",               "5"                     },
5607   { "mm_teleporter_green_6.ypos",               "6"                     },
5608   { "mm_teleporter_green_6.frames",             "1"                     },
5609   { "mm_teleporter_green_7",                    "RocksDF.png"           },
5610   { "mm_teleporter_green_7.xpos",               "6"                     },
5611   { "mm_teleporter_green_7.ypos",               "6"                     },
5612   { "mm_teleporter_green_7.frames",             "1"                     },
5613   { "mm_teleporter_green_8",                    "RocksDF.png"           },
5614   { "mm_teleporter_green_8.xpos",               "7"                     },
5615   { "mm_teleporter_green_8.ypos",               "6"                     },
5616   { "mm_teleporter_green_8.frames",             "1"                     },
5617   { "mm_teleporter_green_9",                    "RocksDF.png"           },
5618   { "mm_teleporter_green_9.xpos",               "8"                     },
5619   { "mm_teleporter_green_9.ypos",               "6"                     },
5620   { "mm_teleporter_green_9.frames",             "1"                     },
5621   { "mm_teleporter_green_10",                   "RocksDF.png"           },
5622   { "mm_teleporter_green_10.xpos",              "9"                     },
5623   { "mm_teleporter_green_10.ypos",              "6"                     },
5624   { "mm_teleporter_green_10.frames",            "1"                     },
5625   { "mm_teleporter_green_11",                   "RocksDF.png"           },
5626   { "mm_teleporter_green_11.xpos",              "10"                    },
5627   { "mm_teleporter_green_11.ypos",              "6"                     },
5628   { "mm_teleporter_green_11.frames",            "1"                     },
5629   { "mm_teleporter_green_12",                   "RocksDF.png"           },
5630   { "mm_teleporter_green_12.xpos",              "11"                    },
5631   { "mm_teleporter_green_12.ypos",              "6"                     },
5632   { "mm_teleporter_green_12.frames",            "1"                     },
5633   { "mm_teleporter_green_13",                   "RocksDF.png"           },
5634   { "mm_teleporter_green_13.xpos",              "12"                    },
5635   { "mm_teleporter_green_13.ypos",              "6"                     },
5636   { "mm_teleporter_green_13.frames",            "1"                     },
5637   { "mm_teleporter_green_14",                   "RocksDF.png"           },
5638   { "mm_teleporter_green_14.xpos",              "13"                    },
5639   { "mm_teleporter_green_14.ypos",              "6"                     },
5640   { "mm_teleporter_green_14.frames",            "1"                     },
5641   { "mm_teleporter_green_15",                   "RocksDF.png"           },
5642   { "mm_teleporter_green_15.xpos",              "14"                    },
5643   { "mm_teleporter_green_15.ypos",              "6"                     },
5644   { "mm_teleporter_green_15.frames",            "1"                     },
5645   { "mm_teleporter_green_16",                   "RocksDF.png"           },
5646   { "mm_teleporter_green_16.xpos",              "15"                    },
5647   { "mm_teleporter_green_16.ypos",              "6"                     },
5648   { "mm_teleporter_green_16.frames",            "1"                     },
5649
5650   { "mm_teleporter_blue_1",                     "RocksDF.png"           },
5651   { "mm_teleporter_blue_1.xpos",                "0"                     },
5652   { "mm_teleporter_blue_1.ypos",                "7"                     },
5653   { "mm_teleporter_blue_1.frames",              "1"                     },
5654   { "mm_teleporter_blue_2",                     "RocksDF.png"           },
5655   { "mm_teleporter_blue_2.xpos",                "1"                     },
5656   { "mm_teleporter_blue_2.ypos",                "7"                     },
5657   { "mm_teleporter_blue_2.frames",              "1"                     },
5658   { "mm_teleporter_blue_3",                     "RocksDF.png"           },
5659   { "mm_teleporter_blue_3.xpos",                "2"                     },
5660   { "mm_teleporter_blue_3.ypos",                "7"                     },
5661   { "mm_teleporter_blue_3.frames",              "1"                     },
5662   { "mm_teleporter_blue_4",                     "RocksDF.png"           },
5663   { "mm_teleporter_blue_4.xpos",                "3"                     },
5664   { "mm_teleporter_blue_4.ypos",                "7"                     },
5665   { "mm_teleporter_blue_4.frames",              "1"                     },
5666   { "mm_teleporter_blue_5",                     "RocksDF.png"           },
5667   { "mm_teleporter_blue_5.xpos",                "4"                     },
5668   { "mm_teleporter_blue_5.ypos",                "7"                     },
5669   { "mm_teleporter_blue_5.frames",              "1"                     },
5670   { "mm_teleporter_blue_6",                     "RocksDF.png"           },
5671   { "mm_teleporter_blue_6.xpos",                "5"                     },
5672   { "mm_teleporter_blue_6.ypos",                "7"                     },
5673   { "mm_teleporter_blue_6.frames",              "1"                     },
5674   { "mm_teleporter_blue_7",                     "RocksDF.png"           },
5675   { "mm_teleporter_blue_7.xpos",                "6"                     },
5676   { "mm_teleporter_blue_7.ypos",                "7"                     },
5677   { "mm_teleporter_blue_7.frames",              "1"                     },
5678   { "mm_teleporter_blue_8",                     "RocksDF.png"           },
5679   { "mm_teleporter_blue_8.xpos",                "7"                     },
5680   { "mm_teleporter_blue_8.ypos",                "7"                     },
5681   { "mm_teleporter_blue_8.frames",              "1"                     },
5682   { "mm_teleporter_blue_9",                     "RocksDF.png"           },
5683   { "mm_teleporter_blue_9.xpos",                "8"                     },
5684   { "mm_teleporter_blue_9.ypos",                "7"                     },
5685   { "mm_teleporter_blue_9.frames",              "1"                     },
5686   { "mm_teleporter_blue_10",                    "RocksDF.png"           },
5687   { "mm_teleporter_blue_10.xpos",               "9"                     },
5688   { "mm_teleporter_blue_10.ypos",               "7"                     },
5689   { "mm_teleporter_blue_10.frames",             "1"                     },
5690   { "mm_teleporter_blue_11",                    "RocksDF.png"           },
5691   { "mm_teleporter_blue_11.xpos",               "10"                    },
5692   { "mm_teleporter_blue_11.ypos",               "7"                     },
5693   { "mm_teleporter_blue_11.frames",             "1"                     },
5694   { "mm_teleporter_blue_12",                    "RocksDF.png"           },
5695   { "mm_teleporter_blue_12.xpos",               "11"                    },
5696   { "mm_teleporter_blue_12.ypos",               "7"                     },
5697   { "mm_teleporter_blue_12.frames",             "1"                     },
5698   { "mm_teleporter_blue_13",                    "RocksDF.png"           },
5699   { "mm_teleporter_blue_13.xpos",               "12"                    },
5700   { "mm_teleporter_blue_13.ypos",               "7"                     },
5701   { "mm_teleporter_blue_13.frames",             "1"                     },
5702   { "mm_teleporter_blue_14",                    "RocksDF.png"           },
5703   { "mm_teleporter_blue_14.xpos",               "13"                    },
5704   { "mm_teleporter_blue_14.ypos",               "7"                     },
5705   { "mm_teleporter_blue_14.frames",             "1"                     },
5706   { "mm_teleporter_blue_15",                    "RocksDF.png"           },
5707   { "mm_teleporter_blue_15.xpos",               "14"                    },
5708   { "mm_teleporter_blue_15.ypos",               "7"                     },
5709   { "mm_teleporter_blue_15.frames",             "1"                     },
5710   { "mm_teleporter_blue_16",                    "RocksDF.png"           },
5711   { "mm_teleporter_blue_16.xpos",               "15"                    },
5712   { "mm_teleporter_blue_16.ypos",               "7"                     },
5713   { "mm_teleporter_blue_16.frames",             "1"                     },
5714
5715   { "mm_kettle",                                "RocksMM.png"           },
5716   { "mm_kettle.xpos",                           "9"                     },
5717   { "mm_kettle.ypos",                           "8"                     },
5718   { "mm_kettle.frames",                         "1"                     },
5719   { "mm_kettle.exploding",                      "RocksMM.png"           },
5720   { "mm_kettle.exploding.xpos",                 "10"                    },
5721   { "mm_kettle.exploding.ypos",                 "8"                     },
5722   { "mm_kettle.exploding.frames",               "6"                     },
5723   { "mm_kettle.exploding.delay",                "2"                     },
5724   { "mm_kettle.exploding.anim_mode",            "linear"                },
5725
5726   { "mm_bomb",                                  "RocksMM.png"           },
5727   { "mm_bomb.xpos",                             "5"                     },
5728   { "mm_bomb.ypos",                             "2"                     },
5729   { "mm_bomb.frames",                           "1"                     },
5730   { "mm_bomb.active",                           "RocksMM.png"           },
5731   { "mm_bomb.active.xpos",                      "12"                    },
5732   { "mm_bomb.active.ypos",                      "1"                     },
5733   { "mm_bomb.active.frames",                    "3"                     },
5734   { "mm_bomb.active.delay",                     "6"                     },
5735   { "mm_bomb.active.anim_mode",                 "pingpong"              },
5736
5737   { "mm_prism",                                 "RocksMM.png"           },
5738   { "mm_prism.xpos",                            "0"                     },
5739   { "mm_prism.ypos",                            "2"                     },
5740   { "mm_prism.frames",                          "1"                     },
5741
5742   { "mm_fuse",                                  "RocksMM.png"           },
5743   { "mm_fuse.xpos",                             "7"                     },
5744   { "mm_fuse.ypos",                             "2"                     },
5745   { "mm_fuse.frames",                           "1"                     },
5746   { "mm_fuse.active",                           "RocksMM.png"           },
5747   { "mm_fuse.active.xpos",                      "6"                     },
5748   { "mm_fuse.active.ypos",                      "2"                     },
5749   { "mm_fuse.active.frames",                    "1"                     },
5750
5751   { "mm_steel_lock",                            "RocksMM.png"           },
5752   { "mm_steel_lock.xpos",                       "8"                     },
5753   { "mm_steel_lock.ypos",                       "2"                     },
5754   { "mm_steel_lock.frames",                     "1"                     },
5755   { "mm_steel_lock.exploding",                  "RocksMM.png"           },
5756   { "mm_steel_lock.exploding.xpos",             "4"                     },
5757   { "mm_steel_lock.exploding.ypos",             "8"                     },
5758   { "mm_steel_lock.exploding.frames",           "5"                     },
5759   { "mm_steel_lock.exploding.delay",            "2"                     },
5760   { "mm_steel_lock.exploding.anim_mode",        "linear"                },
5761
5762   { "mm_wooden_lock",                           "RocksMM.png"           },
5763   { "mm_wooden_lock.xpos",                      "9"                     },
5764   { "mm_wooden_lock.ypos",                      "6"                     },
5765   { "mm_wooden_lock.frames",                    "1"                     },
5766   { "mm_wooden_lock.exploding",                 "RocksMM.png"           },
5767   { "mm_wooden_lock.exploding.xpos",            "4"                     },
5768   { "mm_wooden_lock.exploding.ypos",            "8"                     },
5769   { "mm_wooden_lock.exploding.frames",          "5"                     },
5770   { "mm_wooden_lock.exploding.delay",           "2"                     },
5771   { "mm_wooden_lock.exploding.anim_mode",       "linear"                },
5772
5773   { "mm_steel_block",                           "RocksMM.png"           },
5774   { "mm_steel_block.xpos",                      "8"                     },
5775   { "mm_steel_block.ypos",                      "6"                     },
5776   { "mm_steel_block.frames",                    "1"                     },
5777
5778   { "mm_wooden_block",                          "RocksMM.png"           },
5779   { "mm_wooden_block.xpos",                     "4"                     },
5780   { "mm_wooden_block.ypos",                     "2"                     },
5781   { "mm_wooden_block.frames",                   "1"                     },
5782
5783   { "mm_key",                                   "RocksMM.png"           },
5784   { "mm_key.xpos",                              "9"                     },
5785   { "mm_key.ypos",                              "2"                     },
5786   { "mm_key.frames",                            "1"                     },
5787
5788   { "mm_lightbulb",                             "RocksMM.png"           },
5789   { "mm_lightbulb.xpos",                        "10"                    },
5790   { "mm_lightbulb.ypos",                        "2"                     },
5791   { "mm_lightbulb.frames",                      "1"                     },
5792   { "mm_lightbulb.active",                      "RocksMM.png"           },
5793   { "mm_lightbulb.active.xpos",                 "11"                    },
5794   { "mm_lightbulb.active.ypos",                 "2"                     },
5795   { "mm_lightbulb.active.frames",               "1"                     },
5796
5797   { "mm_lightball",                             "RocksMM.png"           },
5798   { "mm_lightball.xpos",                        "12"                    },
5799   { "mm_lightball.ypos",                        "2"                     },
5800   { "mm_lightball.frames",                      "3"                     },
5801   { "mm_lightball.anim_mode",                   "random_static"         },
5802   { "mm_lightball_red",                         "RocksMM.png"           },
5803   { "mm_lightball_red.xpos",                    "12"                    },
5804   { "mm_lightball_red.ypos",                    "2"                     },
5805   { "mm_lightball_red.frames",                  "1"                     },
5806   { "mm_lightball_blue",                        "RocksMM.png"           },
5807   { "mm_lightball_blue.xpos",                   "13"                    },
5808   { "mm_lightball_blue.ypos",                   "2"                     },
5809   { "mm_lightball_blue.frames",                 "1"                     },
5810   { "mm_lightball_yellow",                      "RocksMM.png"           },
5811   { "mm_lightball_yellow.xpos",                 "14"                    },
5812   { "mm_lightball_yellow.ypos",                 "2"                     },
5813   { "mm_lightball_yellow.frames",               "1"                     },
5814
5815   { "mm_gray_ball",                             "RocksMM.png"           },
5816   { "mm_gray_ball.xpos",                        "15"                    },
5817   { "mm_gray_ball.ypos",                        "2"                     },
5818   { "mm_gray_ball.frames",                      "1"                     },
5819   { "mm_gray_ball.active",                      "RocksMM.png"           },
5820   { "mm_gray_ball.active.xpos",                 "15"                    },
5821   { "mm_gray_ball.active.ypos",                 "1"                     },
5822   { "mm_gray_ball.active.frames",               "2"                     },
5823   { "mm_gray_ball.active.delay",                "20"                    },
5824   { "mm_gray_ball.active.vertical",             "true"                  },
5825   { "mm_gray_ball.EDITOR",                      "RocksMM.png"           },
5826   { "mm_gray_ball.EDITOR.xpos",                 "15"                    },
5827   { "mm_gray_ball.EDITOR.ypos",                 "1"                     },
5828   { "mm_gray_ball.EDITOR.frames",               "1"                     },
5829
5830   { "mm_fuel_full",                             "RocksMM.png"           },
5831   { "mm_fuel_full.xpos",                        "10"                    },
5832   { "mm_fuel_full.ypos",                        "6"                     },
5833   { "mm_fuel_full.frames",                      "1"                     },
5834   { "mm_fuel_empty",                            "RocksMM.png"           },
5835   { "mm_fuel_empty.xpos",                       "11"                    },
5836   { "mm_fuel_empty.ypos",                       "6"                     },
5837   { "mm_fuel_empty.frames",                     "1"                     },
5838
5839   { "mm_steel_wall",                            "RocksMM.png"           },
5840   { "mm_steel_wall.xpos",                       "0"                     },
5841   { "mm_steel_wall.ypos",                       "7"                     },
5842   { "mm_steel_wall.frames",                     "1"                     },
5843
5844   { "mm_wooden_wall",                           "RocksMM.png"           },
5845   { "mm_wooden_wall.xpos",                      "1"                     },
5846   { "mm_wooden_wall.ypos",                      "7"                     },
5847   { "mm_wooden_wall.frames",                    "1"                     },
5848
5849   { "mm_ice_wall",                              "RocksMM.png"           },
5850   { "mm_ice_wall.xpos",                         "2"                     },
5851   { "mm_ice_wall.ypos",                         "7"                     },
5852   { "mm_ice_wall.frames",                       "1"                     },
5853   { "mm_ice_wall.shrinking",                    "RocksMM.png"           },
5854   { "mm_ice_wall.shrinking.xpos",               "2"                     },
5855   { "mm_ice_wall.shrinking.ypos",               "7"                     },
5856   { "mm_ice_wall.shrinking.frames",             "5"                     },
5857   { "mm_ice_wall.shrinking.delay",              "8"                     },
5858   { "mm_ice_wall.shrinking.anim_mode",          "linear"                },
5859
5860   { "mm_amoeba_wall",                           "RocksMM.png"           },
5861   { "mm_amoeba_wall.xpos",                      "8"                     },
5862   { "mm_amoeba_wall.ypos",                      "7"                     },
5863   { "mm_amoeba_wall.frames",                    "1"                     },
5864   { "mm_amoeba_wall.growing",                   "RocksMM.png"           },
5865   { "mm_amoeba_wall.growing.xpos",              "8"                     },
5866   { "mm_amoeba_wall.growing.ypos",              "7"                     },
5867   { "mm_amoeba_wall.growing.frames",            "5"                     },
5868   { "mm_amoeba_wall.growing.delay",             "8"                     },
5869   { "mm_amoeba_wall.growing.anim_mode",         "linear,reverse"        },
5870
5871   { "mm_pacman",                                "RocksMM.png"           },
5872   { "mm_pacman.xpos",                           "0"                     },
5873   { "mm_pacman.ypos",                           "4"                     },
5874   { "mm_pacman.frames",                         "1"                     },
5875   { "mm_pacman.right",                          "RocksMM.png"           },
5876   { "mm_pacman.right.xpos",                     "0"                     },
5877   { "mm_pacman.right.ypos",                     "4"                     },
5878   { "mm_pacman.right.frames",                   "1"                     },
5879   { "mm_pacman.up",                             "RocksMM.png"           },
5880   { "mm_pacman.up.xpos",                        "1"                     },
5881   { "mm_pacman.up.ypos",                        "4"                     },
5882   { "mm_pacman.up.frames",                      "1"                     },
5883   { "mm_pacman.left",                           "RocksMM.png"           },
5884   { "mm_pacman.left.xpos",                      "2"                     },
5885   { "mm_pacman.left.ypos",                      "4"                     },
5886   { "mm_pacman.left.frames",                    "1"                     },
5887   { "mm_pacman.down",                           "RocksMM.png"           },
5888   { "mm_pacman.down.xpos",                      "3"                     },
5889   { "mm_pacman.down.ypos",                      "4"                     },
5890   { "mm_pacman.down.frames",                    "1"                     },
5891   { "mm_pacman.eating.right",                   "RocksMM.png"           },
5892   { "mm_pacman.eating.right.xpos",              "4"                     },
5893   { "mm_pacman.eating.right.ypos",              "4"                     },
5894   { "mm_pacman.eating.right.frames",            "1"                     },
5895   { "mm_pacman.eating.up",                      "RocksMM.png"           },
5896   { "mm_pacman.eating.up.xpos",                 "5"                     },
5897   { "mm_pacman.eating.up.ypos",                 "4"                     },
5898   { "mm_pacman.eating.up.frames",               "1"                     },
5899   { "mm_pacman.eating.left",                    "RocksMM.png"           },
5900   { "mm_pacman.eating.left.xpos",               "6"                     },
5901   { "mm_pacman.eating.left.ypos",               "4"                     },
5902   { "mm_pacman.eating.left.frames",             "1"                     },
5903   { "mm_pacman.eating.down",                    "RocksMM.png"           },
5904   { "mm_pacman.eating.down.xpos",               "7"                     },
5905   { "mm_pacman.eating.down.ypos",               "4"                     },
5906   { "mm_pacman.eating.down.frames",             "1"                     },
5907
5908   { "mm_envelope_1",                            UNDEFINED_FILENAME      },
5909   { "mm_envelope_1.clone_from",                 "envelope_1"            },
5910   { "mm_envelope_1.collecting",                 UNDEFINED_FILENAME      },
5911   { "mm_envelope_1.collecting.clone_from",      "envelope_1.collecting" },
5912   { "mm_envelope_2",                            UNDEFINED_FILENAME      },
5913   { "mm_envelope_2.clone_from",                 "envelope_2"            },
5914   { "mm_envelope_2.collecting",                 UNDEFINED_FILENAME      },
5915   { "mm_envelope_2.collecting.clone_from",      "envelope_2.collecting" },
5916   { "mm_envelope_3",                            UNDEFINED_FILENAME      },
5917   { "mm_envelope_3.clone_from",                 "envelope_3"            },
5918   { "mm_envelope_3.collecting",                 UNDEFINED_FILENAME      },
5919   { "mm_envelope_3.collecting.clone_from",      "envelope_3.collecting" },
5920   { "mm_envelope_4",                            UNDEFINED_FILENAME      },
5921   { "mm_envelope_4.clone_from",                 "envelope_4"            },
5922   { "mm_envelope_4.collecting",                 UNDEFINED_FILENAME      },
5923   { "mm_envelope_4.collecting.clone_from",      "envelope_4.collecting" },
5924
5925   { "[mm_default].exploding",                   "RocksMM.png"           },
5926   { "[mm_default].exploding.xpos",              "0"                     },
5927   { "[mm_default].exploding.ypos",              "8"                     },
5928   { "[mm_default].exploding.frames",            "8"                     },
5929   { "[mm_default].exploding.delay",             "2"                     },
5930   { "[mm_default].exploding.anim_mode",         "linear"                },
5931
5932   { "df_laser",                                 "RocksDF.png"           },
5933   { "df_laser.xpos",                            "0"                     },
5934   { "df_laser.ypos",                            "9"                     },
5935   { "df_laser.frames",                          "4"                     },
5936   { "df_laser.delay",                           "8"                     },
5937   { "df_laser.right",                           "RocksDF.png"           },
5938   { "df_laser.right.xpos",                      "0"                     },
5939   { "df_laser.right.ypos",                      "9"                     },
5940   { "df_laser.right.frames",                    "1"                     },
5941   { "df_laser.up",                              "RocksDF.png"           },
5942   { "df_laser.up.xpos",                         "1"                     },
5943   { "df_laser.up.ypos",                         "9"                     },
5944   { "df_laser.up.frames",                       "1"                     },
5945   { "df_laser.left",                            "RocksDF.png"           },
5946   { "df_laser.left.xpos",                       "2"                     },
5947   { "df_laser.left.ypos",                       "9"                     },
5948   { "df_laser.left.frames",                     "1"                     },
5949   { "df_laser.down",                            "RocksDF.png"           },
5950   { "df_laser.down.xpos",                       "3"                     },
5951   { "df_laser.down.ypos",                       "9"                     },
5952   { "df_laser.down.frames",                     "1"                     },
5953
5954   { "df_receiver",                              "RocksDF.png"           },
5955   { "df_receiver.xpos",                         "4"                     },
5956   { "df_receiver.ypos",                         "9"                     },
5957   { "df_receiver.frames",                       "4"                     },
5958   { "df_receiver.delay",                        "8"                     },
5959   { "df_receiver.right",                        "RocksDF.png"           },
5960   { "df_receiver.right.xpos",                   "4"                     },
5961   { "df_receiver.right.ypos",                   "9"                     },
5962   { "df_receiver.right.frames",                 "1"                     },
5963   { "df_receiver.up",                           "RocksDF.png"           },
5964   { "df_receiver.up.xpos",                      "5"                     },
5965   { "df_receiver.up.ypos",                      "9"                     },
5966   { "df_receiver.up.frames",                    "1"                     },
5967   { "df_receiver.left",                         "RocksDF.png"           },
5968   { "df_receiver.left.xpos",                    "6"                     },
5969   { "df_receiver.left.ypos",                    "9"                     },
5970   { "df_receiver.left.frames",                  "1"                     },
5971   { "df_receiver.down",                         "RocksDF.png"           },
5972   { "df_receiver.down.xpos",                    "7"                     },
5973   { "df_receiver.down.ypos",                    "9"                     },
5974   { "df_receiver.down.frames",                  "1"                     },
5975
5976   { "df_mirror_1",                              "RocksDF.png"           },
5977   { "df_mirror_1.xpos",                         "0"                     },
5978   { "df_mirror_1.ypos",                         "0"                     },
5979   { "df_mirror_1.frames",                       "1"                     },
5980   { "df_mirror_2",                              "RocksDF.png"           },
5981   { "df_mirror_2.xpos",                         "1"                     },
5982   { "df_mirror_2.ypos",                         "0"                     },
5983   { "df_mirror_2.frames",                       "1"                     },
5984   { "df_mirror_3",                              "RocksDF.png"           },
5985   { "df_mirror_3.xpos",                         "2"                     },
5986   { "df_mirror_3.ypos",                         "0"                     },
5987   { "df_mirror_3.frames",                       "1"                     },
5988   { "df_mirror_4",                              "RocksDF.png"           },
5989   { "df_mirror_4.xpos",                         "3"                     },
5990   { "df_mirror_4.ypos",                         "0"                     },
5991   { "df_mirror_4.frames",                       "1"                     },
5992   { "df_mirror_5",                              "RocksDF.png"           },
5993   { "df_mirror_5.xpos",                         "4"                     },
5994   { "df_mirror_5.ypos",                         "0"                     },
5995   { "df_mirror_5.frames",                       "1"                     },
5996   { "df_mirror_6",                              "RocksDF.png"           },
5997   { "df_mirror_6.xpos",                         "5"                     },
5998   { "df_mirror_6.ypos",                         "0"                     },
5999   { "df_mirror_6.frames",                       "1"                     },
6000   { "df_mirror_7",                              "RocksDF.png"           },
6001   { "df_mirror_7.xpos",                         "6"                     },
6002   { "df_mirror_7.ypos",                         "0"                     },
6003   { "df_mirror_7.frames",                       "1"                     },
6004   { "df_mirror_8",                              "RocksDF.png"           },
6005   { "df_mirror_8.xpos",                         "7"                     },
6006   { "df_mirror_8.ypos",                         "0"                     },
6007   { "df_mirror_8.frames",                       "1"                     },
6008   { "df_mirror_9",                              "RocksDF.png"           },
6009   { "df_mirror_9.xpos",                         "8"                     },
6010   { "df_mirror_9.ypos",                         "0"                     },
6011   { "df_mirror_9.frames",                       "1"                     },
6012   { "df_mirror_10",                             "RocksDF.png"           },
6013   { "df_mirror_10.xpos",                        "9"                     },
6014   { "df_mirror_10.ypos",                        "0"                     },
6015   { "df_mirror_10.frames",                      "1"                     },
6016   { "df_mirror_11",                             "RocksDF.png"           },
6017   { "df_mirror_11.xpos",                        "10"                    },
6018   { "df_mirror_11.ypos",                        "0"                     },
6019   { "df_mirror_11.frames",                      "1"                     },
6020   { "df_mirror_12",                             "RocksDF.png"           },
6021   { "df_mirror_12.xpos",                        "11"                    },
6022   { "df_mirror_12.ypos",                        "0"                     },
6023   { "df_mirror_12.frames",                      "1"                     },
6024   { "df_mirror_13",                             "RocksDF.png"           },
6025   { "df_mirror_13.xpos",                        "12"                    },
6026   { "df_mirror_13.ypos",                        "0"                     },
6027   { "df_mirror_13.frames",                      "1"                     },
6028   { "df_mirror_14",                             "RocksDF.png"           },
6029   { "df_mirror_14.xpos",                        "13"                    },
6030   { "df_mirror_14.ypos",                        "0"                     },
6031   { "df_mirror_14.frames",                      "1"                     },
6032   { "df_mirror_15",                             "RocksDF.png"           },
6033   { "df_mirror_15.xpos",                        "14"                    },
6034   { "df_mirror_15.ypos",                        "0"                     },
6035   { "df_mirror_15.frames",                      "1"                     },
6036   { "df_mirror_16",                             "RocksDF.png"           },
6037   { "df_mirror_16.xpos",                        "15"                    },
6038   { "df_mirror_16.ypos",                        "0"                     },
6039   { "df_mirror_16.frames",                      "1"                     },
6040
6041   { "df_mirror_rotating_1",                     "RocksDF.png"           },
6042   { "df_mirror_rotating_1.xpos",                "0"                     },
6043   { "df_mirror_rotating_1.ypos",                "0"                     },
6044   { "df_mirror_rotating_1.frames",              "1"                     },
6045   { "df_mirror_rotating_1.EDITOR",              "RocksDF.png"           },
6046   { "df_mirror_rotating_1.EDITOR.xpos",         "0"                     },
6047   { "df_mirror_rotating_1.EDITOR.ypos",         "1"                     },
6048   { "df_mirror_rotating_1.EDITOR.frames",       "1"                     },
6049   { "df_mirror_rotating_2",                     "RocksDF.png"           },
6050   { "df_mirror_rotating_2.xpos",                "1"                     },
6051   { "df_mirror_rotating_2.ypos",                "0"                     },
6052   { "df_mirror_rotating_2.frames",              "1"                     },
6053   { "df_mirror_rotating_2.EDITOR",              "RocksDF.png"           },
6054   { "df_mirror_rotating_2.EDITOR.xpos",         "1"                     },
6055   { "df_mirror_rotating_2.EDITOR.ypos",         "1"                     },
6056   { "df_mirror_rotating_2.EDITOR.frames",       "1"                     },
6057   { "df_mirror_rotating_3",                     "RocksDF.png"           },
6058   { "df_mirror_rotating_3.xpos",                "2"                     },
6059   { "df_mirror_rotating_3.ypos",                "0"                     },
6060   { "df_mirror_rotating_3.frames",              "1"                     },
6061   { "df_mirror_rotating_3.EDITOR",              "RocksDF.png"           },
6062   { "df_mirror_rotating_3.EDITOR.xpos",         "2"                     },
6063   { "df_mirror_rotating_3.EDITOR.ypos",         "1"                     },
6064   { "df_mirror_rotating_3.EDITOR.frames",       "1"                     },
6065   { "df_mirror_rotating_4",                     "RocksDF.png"           },
6066   { "df_mirror_rotating_4.xpos",                "3"                     },
6067   { "df_mirror_rotating_4.ypos",                "0"                     },
6068   { "df_mirror_rotating_4.frames",              "1"                     },
6069   { "df_mirror_rotating_4.EDITOR",              "RocksDF.png"           },
6070   { "df_mirror_rotating_4.EDITOR.xpos",         "3"                     },
6071   { "df_mirror_rotating_4.EDITOR.ypos",         "1"                     },
6072   { "df_mirror_rotating_4.EDITOR.frames",       "1"                     },
6073   { "df_mirror_rotating_5",                     "RocksDF.png"           },
6074   { "df_mirror_rotating_5.xpos",                "4"                     },
6075   { "df_mirror_rotating_5.ypos",                "0"                     },
6076   { "df_mirror_rotating_5.frames",              "1"                     },
6077   { "df_mirror_rotating_5.EDITOR",              "RocksDF.png"           },
6078   { "df_mirror_rotating_5.EDITOR.xpos",         "4"                     },
6079   { "df_mirror_rotating_5.EDITOR.ypos",         "1"                     },
6080   { "df_mirror_rotating_5.EDITOR.frames",       "1"                     },
6081   { "df_mirror_rotating_6",                     "RocksDF.png"           },
6082   { "df_mirror_rotating_6.xpos",                "5"                     },
6083   { "df_mirror_rotating_6.ypos",                "0"                     },
6084   { "df_mirror_rotating_6.frames",              "1"                     },
6085   { "df_mirror_rotating_6.EDITOR",              "RocksDF.png"           },
6086   { "df_mirror_rotating_6.EDITOR.xpos",         "5"                     },
6087   { "df_mirror_rotating_6.EDITOR.ypos",         "1"                     },
6088   { "df_mirror_rotating_6.EDITOR.frames",       "1"                     },
6089   { "df_mirror_rotating_7",                     "RocksDF.png"           },
6090   { "df_mirror_rotating_7.xpos",                "6"                     },
6091   { "df_mirror_rotating_7.ypos",                "0"                     },
6092   { "df_mirror_rotating_7.frames",              "1"                     },
6093   { "df_mirror_rotating_7.EDITOR",              "RocksDF.png"           },
6094   { "df_mirror_rotating_7.EDITOR.xpos",         "6"                     },
6095   { "df_mirror_rotating_7.EDITOR.ypos",         "1"                     },
6096   { "df_mirror_rotating_7.EDITOR.frames",       "1"                     },
6097   { "df_mirror_rotating_8",                     "RocksDF.png"           },
6098   { "df_mirror_rotating_8.xpos",                "7"                     },
6099   { "df_mirror_rotating_8.ypos",                "0"                     },
6100   { "df_mirror_rotating_8.frames",              "1"                     },
6101   { "df_mirror_rotating_8.EDITOR",              "RocksDF.png"           },
6102   { "df_mirror_rotating_8.EDITOR.xpos",         "7"                     },
6103   { "df_mirror_rotating_8.EDITOR.ypos",         "1"                     },
6104   { "df_mirror_rotating_8.EDITOR.frames",       "1"                     },
6105   { "df_mirror_rotating_9",                     "RocksDF.png"           },
6106   { "df_mirror_rotating_9.xpos",                "8"                     },
6107   { "df_mirror_rotating_9.ypos",                "0"                     },
6108   { "df_mirror_rotating_9.frames",              "1"                     },
6109   { "df_mirror_rotating_9.EDITOR",              "RocksDF.png"           },
6110   { "df_mirror_rotating_9.EDITOR.xpos",         "8"                     },
6111   { "df_mirror_rotating_9.EDITOR.ypos",         "1"                     },
6112   { "df_mirror_rotating_9.EDITOR.frames",       "1"                     },
6113   { "df_mirror_rotating_10",                    "RocksDF.png"           },
6114   { "df_mirror_rotating_10.xpos",               "9"                     },
6115   { "df_mirror_rotating_10.ypos",               "0"                     },
6116   { "df_mirror_rotating_10.frames",             "1"                     },
6117   { "df_mirror_rotating_10.EDITOR",             "RocksDF.png"           },
6118   { "df_mirror_rotating_10.EDITOR.xpos",        "9"                     },
6119   { "df_mirror_rotating_10.EDITOR.ypos",        "1"                     },
6120   { "df_mirror_rotating_10.EDITOR.frames",      "1"                     },
6121   { "df_mirror_rotating_11",                    "RocksDF.png"           },
6122   { "df_mirror_rotating_11.xpos",               "10"                    },
6123   { "df_mirror_rotating_11.ypos",               "0"                     },
6124   { "df_mirror_rotating_11.frames",             "1"                     },
6125   { "df_mirror_rotating_11.EDITOR",             "RocksDF.png"           },
6126   { "df_mirror_rotating_11.EDITOR.xpos",        "10"                    },
6127   { "df_mirror_rotating_11.EDITOR.ypos",        "1"                     },
6128   { "df_mirror_rotating_11.EDITOR.frames",      "1"                     },
6129   { "df_mirror_rotating_12",                    "RocksDF.png"           },
6130   { "df_mirror_rotating_12.xpos",               "11"                    },
6131   { "df_mirror_rotating_12.ypos",               "0"                     },
6132   { "df_mirror_rotating_12.frames",             "1"                     },
6133   { "df_mirror_rotating_12.EDITOR",             "RocksDF.png"           },
6134   { "df_mirror_rotating_12.EDITOR.xpos",        "11"                    },
6135   { "df_mirror_rotating_12.EDITOR.ypos",        "1"                     },
6136   { "df_mirror_rotating_12.EDITOR.frames",      "1"                     },
6137   { "df_mirror_rotating_13",                    "RocksDF.png"           },
6138   { "df_mirror_rotating_13.xpos",               "12"                    },
6139   { "df_mirror_rotating_13.ypos",               "0"                     },
6140   { "df_mirror_rotating_13.frames",             "1"                     },
6141   { "df_mirror_rotating_13.EDITOR",             "RocksDF.png"           },
6142   { "df_mirror_rotating_13.EDITOR.xpos",        "12"                    },
6143   { "df_mirror_rotating_13.EDITOR.ypos",        "1"                     },
6144   { "df_mirror_rotating_13.EDITOR.frames",      "1"                     },
6145   { "df_mirror_rotating_14",                    "RocksDF.png"           },
6146   { "df_mirror_rotating_14.xpos",               "13"                    },
6147   { "df_mirror_rotating_14.ypos",               "0"                     },
6148   { "df_mirror_rotating_14.frames",             "1"                     },
6149   { "df_mirror_rotating_14.EDITOR",             "RocksDF.png"           },
6150   { "df_mirror_rotating_14.EDITOR.xpos",        "13"                    },
6151   { "df_mirror_rotating_14.EDITOR.ypos",        "1"                     },
6152   { "df_mirror_rotating_14.EDITOR.frames",      "1"                     },
6153   { "df_mirror_rotating_15",                    "RocksDF.png"           },
6154   { "df_mirror_rotating_15.xpos",               "14"                    },
6155   { "df_mirror_rotating_15.ypos",               "0"                     },
6156   { "df_mirror_rotating_15.frames",             "1"                     },
6157   { "df_mirror_rotating_15.EDITOR",             "RocksDF.png"           },
6158   { "df_mirror_rotating_15.EDITOR.xpos",        "14"                    },
6159   { "df_mirror_rotating_15.EDITOR.ypos",        "1"                     },
6160   { "df_mirror_rotating_15.EDITOR.frames",      "1"                     },
6161   { "df_mirror_rotating_16",                    "RocksDF.png"           },
6162   { "df_mirror_rotating_16.xpos",               "15"                    },
6163   { "df_mirror_rotating_16.ypos",               "0"                     },
6164   { "df_mirror_rotating_16.frames",             "1"                     },
6165   { "df_mirror_rotating_16.EDITOR",             "RocksDF.png"           },
6166   { "df_mirror_rotating_16.EDITOR.xpos",        "15"                    },
6167   { "df_mirror_rotating_16.EDITOR.ypos",        "1"                     },
6168   { "df_mirror_rotating_16.EDITOR.frames",      "1"                     },
6169
6170   { "df_steel_grid_fixed_1",                    "RocksDF.png"           },
6171   { "df_steel_grid_fixed_1.xpos",               "0"                     },
6172   { "df_steel_grid_fixed_1.ypos",               "2"                     },
6173   { "df_steel_grid_fixed_1.frames",             "1"                     },
6174   { "df_steel_grid_fixed_2",                    "RocksDF.png"           },
6175   { "df_steel_grid_fixed_2.xpos",               "1"                     },
6176   { "df_steel_grid_fixed_2.ypos",               "2"                     },
6177   { "df_steel_grid_fixed_2.frames",             "1"                     },
6178   { "df_steel_grid_fixed_3",                    "RocksDF.png"           },
6179   { "df_steel_grid_fixed_3.xpos",               "2"                     },
6180   { "df_steel_grid_fixed_3.ypos",               "2"                     },
6181   { "df_steel_grid_fixed_3.frames",             "1"                     },
6182   { "df_steel_grid_fixed_4",                    "RocksDF.png"           },
6183   { "df_steel_grid_fixed_4.xpos",               "3"                     },
6184   { "df_steel_grid_fixed_4.ypos",               "2"                     },
6185   { "df_steel_grid_fixed_4.frames",             "1"                     },
6186   { "df_steel_grid_fixed_5",                    "RocksDF.png"           },
6187   { "df_steel_grid_fixed_5.xpos",               "4"                     },
6188   { "df_steel_grid_fixed_5.ypos",               "2"                     },
6189   { "df_steel_grid_fixed_5.frames",             "1"                     },
6190   { "df_steel_grid_fixed_6",                    "RocksDF.png"           },
6191   { "df_steel_grid_fixed_6.xpos",               "5"                     },
6192   { "df_steel_grid_fixed_6.ypos",               "2"                     },
6193   { "df_steel_grid_fixed_6.frames",             "1"                     },
6194   { "df_steel_grid_fixed_7",                    "RocksDF.png"           },
6195   { "df_steel_grid_fixed_7.xpos",               "6"                     },
6196   { "df_steel_grid_fixed_7.ypos",               "2"                     },
6197   { "df_steel_grid_fixed_7.frames",             "1"                     },
6198   { "df_steel_grid_fixed_8",                    "RocksDF.png"           },
6199   { "df_steel_grid_fixed_8.xpos",               "7"                     },
6200   { "df_steel_grid_fixed_8.ypos",               "2"                     },
6201   { "df_steel_grid_fixed_8.frames",             "1"                     },
6202
6203   { "df_wooden_grid_fixed_1",                   "RocksDF.png"           },
6204   { "df_wooden_grid_fixed_1.xpos",              "8"                     },
6205   { "df_wooden_grid_fixed_1.ypos",              "2"                     },
6206   { "df_wooden_grid_fixed_1.frames",            "1"                     },
6207   { "df_wooden_grid_fixed_2",                   "RocksDF.png"           },
6208   { "df_wooden_grid_fixed_2.xpos",              "9"                     },
6209   { "df_wooden_grid_fixed_2.ypos",              "2"                     },
6210   { "df_wooden_grid_fixed_2.frames",            "1"                     },
6211   { "df_wooden_grid_fixed_3",                   "RocksDF.png"           },
6212   { "df_wooden_grid_fixed_3.xpos",              "10"                    },
6213   { "df_wooden_grid_fixed_3.ypos",              "2"                     },
6214   { "df_wooden_grid_fixed_3.frames",            "1"                     },
6215   { "df_wooden_grid_fixed_4",                   "RocksDF.png"           },
6216   { "df_wooden_grid_fixed_4.xpos",              "11"                    },
6217   { "df_wooden_grid_fixed_4.ypos",              "2"                     },
6218   { "df_wooden_grid_fixed_4.frames",            "1"                     },
6219   { "df_wooden_grid_fixed_5",                   "RocksDF.png"           },
6220   { "df_wooden_grid_fixed_5.xpos",              "12"                    },
6221   { "df_wooden_grid_fixed_5.ypos",              "2"                     },
6222   { "df_wooden_grid_fixed_5.frames",            "1"                     },
6223   { "df_wooden_grid_fixed_6",                   "RocksDF.png"           },
6224   { "df_wooden_grid_fixed_6.xpos",              "13"                    },
6225   { "df_wooden_grid_fixed_6.ypos",              "2"                     },
6226   { "df_wooden_grid_fixed_6.frames",            "1"                     },
6227   { "df_wooden_grid_fixed_7",                   "RocksDF.png"           },
6228   { "df_wooden_grid_fixed_7.xpos",              "14"                    },
6229   { "df_wooden_grid_fixed_7.ypos",              "2"                     },
6230   { "df_wooden_grid_fixed_7.frames",            "1"                     },
6231   { "df_wooden_grid_fixed_8",                   "RocksDF.png"           },
6232   { "df_wooden_grid_fixed_8.xpos",              "15"                    },
6233   { "df_wooden_grid_fixed_8.ypos",              "2"                     },
6234   { "df_wooden_grid_fixed_8.frames",            "1"                     },
6235
6236   { "df_steel_grid_rotating_1",                 "RocksDF.png"           },
6237   { "df_steel_grid_rotating_1.xpos",            "0"                     },
6238   { "df_steel_grid_rotating_1.ypos",            "2"                     },
6239   { "df_steel_grid_rotating_1.frames",          "1"                     },
6240   { "df_steel_grid_rotating_1.EDITOR",          "RocksDF.png"           },
6241   { "df_steel_grid_rotating_1.EDITOR.xpos",     "0"                     },
6242   { "df_steel_grid_rotating_1.EDITOR.ypos",     "3"                     },
6243   { "df_steel_grid_rotating_1.EDITOR.frames",   "1"                     },
6244   { "df_steel_grid_rotating_2",                 "RocksDF.png"           },
6245   { "df_steel_grid_rotating_2.xpos",            "1"                     },
6246   { "df_steel_grid_rotating_2.ypos",            "2"                     },
6247   { "df_steel_grid_rotating_2.frames",          "1"                     },
6248   { "df_steel_grid_rotating_2.EDITOR",          "RocksDF.png"           },
6249   { "df_steel_grid_rotating_2.EDITOR.xpos",     "1"                     },
6250   { "df_steel_grid_rotating_2.EDITOR.ypos",     "3"                     },
6251   { "df_steel_grid_rotating_2.EDITOR.frames",   "1"                     },
6252   { "df_steel_grid_rotating_3",                 "RocksDF.png"           },
6253   { "df_steel_grid_rotating_3.xpos",            "2"                     },
6254   { "df_steel_grid_rotating_3.ypos",            "2"                     },
6255   { "df_steel_grid_rotating_3.frames",          "1"                     },
6256   { "df_steel_grid_rotating_3.EDITOR",          "RocksDF.png"           },
6257   { "df_steel_grid_rotating_3.EDITOR.xpos",     "2"                     },
6258   { "df_steel_grid_rotating_3.EDITOR.ypos",     "3"                     },
6259   { "df_steel_grid_rotating_3.EDITOR.frames",   "1"                     },
6260   { "df_steel_grid_rotating_4",                 "RocksDF.png"           },
6261   { "df_steel_grid_rotating_4.xpos",            "3"                     },
6262   { "df_steel_grid_rotating_4.ypos",            "2"                     },
6263   { "df_steel_grid_rotating_4.frames",          "1"                     },
6264   { "df_steel_grid_rotating_4.EDITOR",          "RocksDF.png"           },
6265   { "df_steel_grid_rotating_4.EDITOR.xpos",     "3"                     },
6266   { "df_steel_grid_rotating_4.EDITOR.ypos",     "3"                     },
6267   { "df_steel_grid_rotating_4.EDITOR.frames",   "1"                     },
6268   { "df_steel_grid_rotating_5",                 "RocksDF.png"           },
6269   { "df_steel_grid_rotating_5.xpos",            "4"                     },
6270   { "df_steel_grid_rotating_5.ypos",            "2"                     },
6271   { "df_steel_grid_rotating_5.frames",          "1"                     },
6272   { "df_steel_grid_rotating_5.EDITOR",          "RocksDF.png"           },
6273   { "df_steel_grid_rotating_5.EDITOR.xpos",     "4"                     },
6274   { "df_steel_grid_rotating_5.EDITOR.ypos",     "3"                     },
6275   { "df_steel_grid_rotating_5.EDITOR.frames",   "1"                     },
6276   { "df_steel_grid_rotating_6",                 "RocksDF.png"           },
6277   { "df_steel_grid_rotating_6.xpos",            "5"                     },
6278   { "df_steel_grid_rotating_6.ypos",            "2"                     },
6279   { "df_steel_grid_rotating_6.frames",          "1"                     },
6280   { "df_steel_grid_rotating_6.EDITOR",          "RocksDF.png"           },
6281   { "df_steel_grid_rotating_6.EDITOR.xpos",     "5"                     },
6282   { "df_steel_grid_rotating_6.EDITOR.ypos",     "3"                     },
6283   { "df_steel_grid_rotating_6.EDITOR.frames",   "1"                     },
6284   { "df_steel_grid_rotating_7",                 "RocksDF.png"           },
6285   { "df_steel_grid_rotating_7.xpos",            "6"                     },
6286   { "df_steel_grid_rotating_7.ypos",            "2"                     },
6287   { "df_steel_grid_rotating_7.frames",          "1"                     },
6288   { "df_steel_grid_rotating_7.EDITOR",          "RocksDF.png"           },
6289   { "df_steel_grid_rotating_7.EDITOR.xpos",     "6"                     },
6290   { "df_steel_grid_rotating_7.EDITOR.ypos",     "3"                     },
6291   { "df_steel_grid_rotating_7.EDITOR.frames",   "1"                     },
6292   { "df_steel_grid_rotating_8",                 "RocksDF.png"           },
6293   { "df_steel_grid_rotating_8.xpos",            "7"                     },
6294   { "df_steel_grid_rotating_8.ypos",            "2"                     },
6295   { "df_steel_grid_rotating_8.frames",          "1"                     },
6296   { "df_steel_grid_rotating_8.EDITOR",          "RocksDF.png"           },
6297   { "df_steel_grid_rotating_8.EDITOR.xpos",     "7"                     },
6298   { "df_steel_grid_rotating_8.EDITOR.ypos",     "3"                     },
6299   { "df_steel_grid_rotating_8.EDITOR.frames",   "1"                     },
6300
6301   { "df_wooden_grid_rotating_1",                "RocksDF.png"           },
6302   { "df_wooden_grid_rotating_1.xpos",           "8"                     },
6303   { "df_wooden_grid_rotating_1.ypos",           "2"                     },
6304   { "df_wooden_grid_rotating_1.frames",         "1"                     },
6305   { "df_wooden_grid_rotating_1.EDITOR",         "RocksDF.png"           },
6306   { "df_wooden_grid_rotating_1.EDITOR.xpos",    "8"                     },
6307   { "df_wooden_grid_rotating_1.EDITOR.ypos",    "3"                     },
6308   { "df_wooden_grid_rotating_1.EDITOR.frames",  "1"                     },
6309   { "df_wooden_grid_rotating_2",                "RocksDF.png"           },
6310   { "df_wooden_grid_rotating_2.xpos",           "9"                     },
6311   { "df_wooden_grid_rotating_2.ypos",           "2"                     },
6312   { "df_wooden_grid_rotating_2.frames",         "1"                     },
6313   { "df_wooden_grid_rotating_2.EDITOR",         "RocksDF.png"           },
6314   { "df_wooden_grid_rotating_2.EDITOR.xpos",    "9"                     },
6315   { "df_wooden_grid_rotating_2.EDITOR.ypos",    "3"                     },
6316   { "df_wooden_grid_rotating_2.EDITOR.frames",  "1"                     },
6317   { "df_wooden_grid_rotating_3",                "RocksDF.png"           },
6318   { "df_wooden_grid_rotating_3.xpos",           "10"                    },
6319   { "df_wooden_grid_rotating_3.ypos",           "2"                     },
6320   { "df_wooden_grid_rotating_3.frames",         "1"                     },
6321   { "df_wooden_grid_rotating_3.EDITOR",         "RocksDF.png"           },
6322   { "df_wooden_grid_rotating_3.EDITOR.xpos",    "10"                    },
6323   { "df_wooden_grid_rotating_3.EDITOR.ypos",    "3"                     },
6324   { "df_wooden_grid_rotating_3.EDITOR.frames",  "1"                     },
6325   { "df_wooden_grid_rotating_4",                "RocksDF.png"           },
6326   { "df_wooden_grid_rotating_4.xpos",           "11"                    },
6327   { "df_wooden_grid_rotating_4.ypos",           "2"                     },
6328   { "df_wooden_grid_rotating_4.frames",         "1"                     },
6329   { "df_wooden_grid_rotating_4.EDITOR",         "RocksDF.png"           },
6330   { "df_wooden_grid_rotating_4.EDITOR.xpos",    "11"                    },
6331   { "df_wooden_grid_rotating_4.EDITOR.ypos",    "3"                     },
6332   { "df_wooden_grid_rotating_4.EDITOR.frames",  "1"                     },
6333   { "df_wooden_grid_rotating_5",                "RocksDF.png"           },
6334   { "df_wooden_grid_rotating_5.xpos",           "12"                    },
6335   { "df_wooden_grid_rotating_5.ypos",           "2"                     },
6336   { "df_wooden_grid_rotating_5.frames",         "1"                     },
6337   { "df_wooden_grid_rotating_5.EDITOR",         "RocksDF.png"           },
6338   { "df_wooden_grid_rotating_5.EDITOR.xpos",    "12"                    },
6339   { "df_wooden_grid_rotating_5.EDITOR.ypos",    "3"                     },
6340   { "df_wooden_grid_rotating_5.EDITOR.frames",  "1"                     },
6341   { "df_wooden_grid_rotating_6",                "RocksDF.png"           },
6342   { "df_wooden_grid_rotating_6.xpos",           "13"                    },
6343   { "df_wooden_grid_rotating_6.ypos",           "2"                     },
6344   { "df_wooden_grid_rotating_6.frames",         "1"                     },
6345   { "df_wooden_grid_rotating_6.EDITOR",         "RocksDF.png"           },
6346   { "df_wooden_grid_rotating_6.EDITOR.xpos",    "13"                    },
6347   { "df_wooden_grid_rotating_6.EDITOR.ypos",    "3"                     },
6348   { "df_wooden_grid_rotating_6.EDITOR.frames",  "1"                     },
6349   { "df_wooden_grid_rotating_7",                "RocksDF.png"           },
6350   { "df_wooden_grid_rotating_7.xpos",           "14"                    },
6351   { "df_wooden_grid_rotating_7.ypos",           "2"                     },
6352   { "df_wooden_grid_rotating_7.frames",         "1"                     },
6353   { "df_wooden_grid_rotating_7.EDITOR",         "RocksDF.png"           },
6354   { "df_wooden_grid_rotating_7.EDITOR.xpos",    "14"                    },
6355   { "df_wooden_grid_rotating_7.EDITOR.ypos",    "3"                     },
6356   { "df_wooden_grid_rotating_7.EDITOR.frames",  "1"                     },
6357   { "df_wooden_grid_rotating_8",                "RocksDF.png"           },
6358   { "df_wooden_grid_rotating_8.xpos",           "15"                    },
6359   { "df_wooden_grid_rotating_8.ypos",           "2"                     },
6360   { "df_wooden_grid_rotating_8.frames",         "1"                     },
6361   { "df_wooden_grid_rotating_8.EDITOR",         "RocksDF.png"           },
6362   { "df_wooden_grid_rotating_8.EDITOR.xpos",    "15"                    },
6363   { "df_wooden_grid_rotating_8.EDITOR.ypos",    "3"                     },
6364   { "df_wooden_grid_rotating_8.EDITOR.frames",  "1"                     },
6365
6366   { "df_fibre_optic_red_1",                     "RocksDF.png"           },
6367   { "df_fibre_optic_red_1.xpos",                "8"                     },
6368   { "df_fibre_optic_red_1.ypos",                "8"                     },
6369   { "df_fibre_optic_red_1.frames",              "1"                     },
6370   { "df_fibre_optic_red_1.EDITOR",              "RocksDF.png"           },
6371   { "df_fibre_optic_red_1.EDITOR.xpos",         "8"                     },
6372   { "df_fibre_optic_red_1.EDITOR.ypos",         "9"                     },
6373   { "df_fibre_optic_red_1.EDITOR.frames",       "1"                     },
6374   { "df_fibre_optic_red_2",                     "RocksDF.png"           },
6375   { "df_fibre_optic_red_2.xpos",                "9"                     },
6376   { "df_fibre_optic_red_2.ypos",                "8"                     },
6377   { "df_fibre_optic_red_2.frames",              "1"                     },
6378   { "df_fibre_optic_red_2.EDITOR",              "RocksDF.png"           },
6379   { "df_fibre_optic_red_2.EDITOR.xpos",         "9"                     },
6380   { "df_fibre_optic_red_2.EDITOR.ypos",         "9"                     },
6381   { "df_fibre_optic_red_2.EDITOR.frames",       "1"                     },
6382   { "df_fibre_optic_yellow_1",                  "RocksDF.png"           },
6383   { "df_fibre_optic_yellow_1.xpos",             "10"                    },
6384   { "df_fibre_optic_yellow_1.ypos",             "8"                     },
6385   { "df_fibre_optic_yellow_1.frames",           "1"                     },
6386   { "df_fibre_optic_yellow_1.EDITOR",           "RocksDF.png"           },
6387   { "df_fibre_optic_yellow_1.EDITOR.xpos",      "10"                    },
6388   { "df_fibre_optic_yellow_1.EDITOR.ypos",      "9"                     },
6389   { "df_fibre_optic_yellow_1.EDITOR.frames",    "1"                     },
6390   { "df_fibre_optic_yellow_2",                  "RocksDF.png"           },
6391   { "df_fibre_optic_yellow_2.xpos",             "11"                    },
6392   { "df_fibre_optic_yellow_2.ypos",             "8"                     },
6393   { "df_fibre_optic_yellow_2.frames",           "1"                     },
6394   { "df_fibre_optic_yellow_2.EDITOR",           "RocksDF.png"           },
6395   { "df_fibre_optic_yellow_2.EDITOR.xpos",      "11"                    },
6396   { "df_fibre_optic_yellow_2.EDITOR.ypos",      "9"                     },
6397   { "df_fibre_optic_yellow_2.EDITOR.frames",    "1"                     },
6398   { "df_fibre_optic_green_1",                   "RocksDF.png"           },
6399   { "df_fibre_optic_green_1.xpos",              "12"                    },
6400   { "df_fibre_optic_green_1.ypos",              "8"                     },
6401   { "df_fibre_optic_green_1.frames",            "1"                     },
6402   { "df_fibre_optic_green_1.EDITOR",            "RocksDF.png"           },
6403   { "df_fibre_optic_green_1.EDITOR.xpos",       "12"                    },
6404   { "df_fibre_optic_green_1.EDITOR.ypos",       "9"                     },
6405   { "df_fibre_optic_green_1.EDITOR.frames",     "1"                     },
6406   { "df_fibre_optic_green_2",                   "RocksDF.png"           },
6407   { "df_fibre_optic_green_2.xpos",              "13"                    },
6408   { "df_fibre_optic_green_2.ypos",              "8"                     },
6409   { "df_fibre_optic_green_2.frames",            "1"                     },
6410   { "df_fibre_optic_green_2.EDITOR",            "RocksDF.png"           },
6411   { "df_fibre_optic_green_2.EDITOR.xpos",       "13"                    },
6412   { "df_fibre_optic_green_2.EDITOR.ypos",       "9"                     },
6413   { "df_fibre_optic_green_2.EDITOR.frames",     "1"                     },
6414   { "df_fibre_optic_blue_1",                    "RocksDF.png"           },
6415   { "df_fibre_optic_blue_1.xpos",               "14"                    },
6416   { "df_fibre_optic_blue_1.ypos",               "8"                     },
6417   { "df_fibre_optic_blue_1.frames",             "1"                     },
6418   { "df_fibre_optic_blue_1.EDITOR",             "RocksDF.png"           },
6419   { "df_fibre_optic_blue_1.EDITOR.xpos",        "14"                    },
6420   { "df_fibre_optic_blue_1.EDITOR.ypos",        "9"                     },
6421   { "df_fibre_optic_blue_1.EDITOR.frames",      "1"                     },
6422   { "df_fibre_optic_blue_2",                    "RocksDF.png"           },
6423   { "df_fibre_optic_blue_2.xpos",               "15"                    },
6424   { "df_fibre_optic_blue_2.ypos",               "8"                     },
6425   { "df_fibre_optic_blue_2.frames",             "1"                     },
6426   { "df_fibre_optic_blue_2.EDITOR",             "RocksDF.png"           },
6427   { "df_fibre_optic_blue_2.EDITOR.xpos",        "15"                    },
6428   { "df_fibre_optic_blue_2.EDITOR.ypos",        "9"                     },
6429   { "df_fibre_optic_blue_2.EDITOR.frames",      "1"                     },
6430
6431   { "df_steel_wall",                            "RocksDF.png"           },
6432   { "df_steel_wall.xpos",                       "6"                     },
6433   { "df_steel_wall.ypos",                       "8"                     },
6434   { "df_steel_wall.frames",                     "1"                     },
6435
6436   { "df_wooden_wall",                           "RocksDF.png"           },
6437   { "df_wooden_wall.xpos",                      "7"                     },
6438   { "df_wooden_wall.ypos",                      "8"                     },
6439   { "df_wooden_wall.frames",                    "1"                     },
6440
6441   { "df_refractor",                             "RocksDF.png"           },
6442   { "df_refractor.xpos",                        "1"                     },
6443   { "df_refractor.ypos",                        "8"                     },
6444   { "df_refractor.frames",                      "1"                     },
6445
6446   { "df_cell",                                  "RocksDF.png"           },
6447   { "df_cell.xpos",                             "2"                     },
6448   { "df_cell.ypos",                             "8"                     },
6449   { "df_cell.frames",                           "1"                     },
6450
6451   { "df_mine",                                  "RocksDF.png"           },
6452   { "df_mine.xpos",                             "4"                     },
6453   { "df_mine.ypos",                             "8"                     },
6454   { "df_mine.frames",                           "1"                     },
6455   { "df_mine.active",                           "RocksDF.png"           },
6456   { "df_mine.active.xpos",                      "3"                     },
6457   { "df_mine.active.ypos",                      "8"                     },
6458   { "df_mine.active.frames",                    "3"                     },
6459   { "df_mine.active.delay",                     "6"                     },
6460   { "df_mine.active.anim_mode",                 "pingpong"              },
6461
6462   { "df_mirror_fixed_1",                        "RocksDF.png"           },
6463   { "df_mirror_fixed_1.xpos",                   "0"                     },
6464   { "df_mirror_fixed_1.ypos",                   "10"                    },
6465   { "df_mirror_fixed_1.frames",                 "1"                     },
6466   { "df_mirror_fixed_2",                        "RocksDF.png"           },
6467   { "df_mirror_fixed_2.xpos",                   "1"                     },
6468   { "df_mirror_fixed_2.ypos",                   "10"                    },
6469   { "df_mirror_fixed_2.frames",                 "1"                     },
6470   { "df_mirror_fixed_3",                        "RocksDF.png"           },
6471   { "df_mirror_fixed_3.xpos",                   "2"                     },
6472   { "df_mirror_fixed_3.ypos",                   "10"                    },
6473   { "df_mirror_fixed_3.frames",                 "1"                     },
6474   { "df_mirror_fixed_4",                        "RocksDF.png"           },
6475   { "df_mirror_fixed_4.xpos",                   "3"                     },
6476   { "df_mirror_fixed_4.ypos",                   "10"                    },
6477   { "df_mirror_fixed_4.frames",                 "1"                     },
6478   { "df_mirror_fixed_5",                        "RocksDF.png"           },
6479   { "df_mirror_fixed_5.xpos",                   "4"                     },
6480   { "df_mirror_fixed_5.ypos",                   "10"                    },
6481   { "df_mirror_fixed_5.frames",                 "1"                     },
6482   { "df_mirror_fixed_6",                        "RocksDF.png"           },
6483   { "df_mirror_fixed_6.xpos",                   "5"                     },
6484   { "df_mirror_fixed_6.ypos",                   "10"                    },
6485   { "df_mirror_fixed_6.frames",                 "1"                     },
6486   { "df_mirror_fixed_7",                        "RocksDF.png"           },
6487   { "df_mirror_fixed_7.xpos",                   "6"                     },
6488   { "df_mirror_fixed_7.ypos",                   "10"                    },
6489   { "df_mirror_fixed_7.frames",                 "1"                     },
6490   { "df_mirror_fixed_8",                        "RocksDF.png"           },
6491   { "df_mirror_fixed_8.xpos",                   "7"                     },
6492   { "df_mirror_fixed_8.ypos",                   "10"                    },
6493   { "df_mirror_fixed_8.frames",                 "1"                     },
6494   { "df_mirror_fixed_9",                        "RocksDF.png"           },
6495   { "df_mirror_fixed_9.xpos",                   "8"                     },
6496   { "df_mirror_fixed_9.ypos",                   "10"                    },
6497   { "df_mirror_fixed_9.frames",                 "1"                     },
6498   { "df_mirror_fixed_10",                       "RocksDF.png"           },
6499   { "df_mirror_fixed_10.xpos",                  "9"                     },
6500   { "df_mirror_fixed_10.ypos",                  "10"                    },
6501   { "df_mirror_fixed_10.frames",                "1"                     },
6502   { "df_mirror_fixed_11",                       "RocksDF.png"           },
6503   { "df_mirror_fixed_11.xpos",                  "10"                    },
6504   { "df_mirror_fixed_11.ypos",                  "10"                    },
6505   { "df_mirror_fixed_11.frames",                "1"                     },
6506   { "df_mirror_fixed_12",                       "RocksDF.png"           },
6507   { "df_mirror_fixed_12.xpos",                  "11"                    },
6508   { "df_mirror_fixed_12.ypos",                  "10"                    },
6509   { "df_mirror_fixed_12.frames",                "1"                     },
6510   { "df_mirror_fixed_13",                       "RocksDF.png"           },
6511   { "df_mirror_fixed_13.xpos",                  "12"                    },
6512   { "df_mirror_fixed_13.ypos",                  "10"                    },
6513   { "df_mirror_fixed_13.frames",                "1"                     },
6514   { "df_mirror_fixed_14",                       "RocksDF.png"           },
6515   { "df_mirror_fixed_14.xpos",                  "13"                    },
6516   { "df_mirror_fixed_14.ypos",                  "10"                    },
6517   { "df_mirror_fixed_14.frames",                "1"                     },
6518   { "df_mirror_fixed_15",                       "RocksDF.png"           },
6519   { "df_mirror_fixed_15.xpos",                  "14"                    },
6520   { "df_mirror_fixed_15.ypos",                  "10"                    },
6521   { "df_mirror_fixed_15.frames",                "1"                     },
6522   { "df_mirror_fixed_16",                       "RocksDF.png"           },
6523   { "df_mirror_fixed_16.xpos",                  "15"                    },
6524   { "df_mirror_fixed_16.ypos",                  "10"                    },
6525   { "df_mirror_fixed_16.frames",                "1"                     },
6526
6527   { "df_slope_1",                               "RocksDF.png"           },
6528   { "df_slope_1.xpos",                          "0"                     },
6529   { "df_slope_1.ypos",                          "11"                    },
6530   { "df_slope_1.frames",                        "1"                     },
6531   { "df_slope_2",                               "RocksDF.png"           },
6532   { "df_slope_2.xpos",                          "1"                     },
6533   { "df_slope_2.ypos",                          "11"                    },
6534   { "df_slope_2.frames",                        "1"                     },
6535   { "df_slope_3",                               "RocksDF.png"           },
6536   { "df_slope_3.xpos",                          "2"                     },
6537   { "df_slope_3.ypos",                          "11"                    },
6538   { "df_slope_3.frames",                        "1"                     },
6539   { "df_slope_4",                               "RocksDF.png"           },
6540   { "df_slope_4.xpos",                          "3"                     },
6541   { "df_slope_4.ypos",                          "11"                    },
6542   { "df_slope_4.frames",                        "1"                     },
6543
6544   // (these are only defined as elements to support ".PANEL" definitions)
6545   { "graphic_1",                                UNDEFINED_FILENAME      },
6546   { "graphic_2",                                UNDEFINED_FILENAME      },
6547   { "graphic_3",                                UNDEFINED_FILENAME      },
6548   { "graphic_4",                                UNDEFINED_FILENAME      },
6549   { "graphic_5",                                UNDEFINED_FILENAME      },
6550   { "graphic_6",                                UNDEFINED_FILENAME      },
6551   { "graphic_7",                                UNDEFINED_FILENAME      },
6552   { "graphic_8",                                UNDEFINED_FILENAME      },
6553
6554 #include "conf_chr.c"   // include auto-generated data structure definitions
6555 #include "conf_cus.c"   // include auto-generated data structure definitions
6556 #include "conf_grp.c"   // include auto-generated data structure definitions
6557 #include "conf_emp.c"   // include auto-generated data structure definitions
6558
6559
6560   // ==========================================================================
6561   // image definitions not associated with game elements (menu screens etc.)
6562   // ==========================================================================
6563
6564   // keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change!
6565
6566   { "sp_frame_horizontal",                      "RocksSP.png"           },
6567   { "sp_frame_horizontal.xpos",                 "7"                     },
6568   { "sp_frame_horizontal.ypos",                 "14"                    },
6569   { "sp_frame_vertical",                        "RocksSP.png"           },
6570   { "sp_frame_vertical.xpos",                   "6"                     },
6571   { "sp_frame_vertical.ypos",                   "14"                    },
6572   { "sp_frame_corner",                          "RocksSP.png"           },
6573   { "sp_frame_corner.xpos",                     "5"                     },
6574   { "sp_frame_corner.ypos",                     "14"                    },
6575
6576   { "toon_1",                                   "RocksToons.png"        },
6577   { "toon_1.x",                                 "2"                     },
6578   { "toon_1.y",                                 "72"                    },
6579   { "toon_1.width",                             "40"                    },
6580   { "toon_1.height",                            "48"                    },
6581   { "toon_1.frames",                            "8"                     },
6582   { "toon_1.delay",                             "1"                     },
6583   { "toon_1.step_offset",                       "4"                     },
6584   { "toon_1.step_delay",                        "5"                     },
6585   { "toon_1.direction",                         "right"                 },
6586   { "toon_1.position",                          "bottom"                },
6587
6588   { "toon_2",                                   "RocksToons.png"        },
6589   { "toon_2.x",                                 "2"                     },
6590   { "toon_2.y",                                 "186"                   },
6591   { "toon_2.width",                             "40"                    },
6592   { "toon_2.height",                            "48"                    },
6593   { "toon_2.frames",                            "8"                     },
6594   { "toon_2.delay",                             "1"                     },
6595   { "toon_2.step_offset",                       "4"                     },
6596   { "toon_2.step_delay",                        "5"                     },
6597   { "toon_2.direction",                         "left"                  },
6598   { "toon_2.position",                          "bottom"                },
6599
6600   { "toon_3",                                   "RocksToons.png"        },
6601   { "toon_3.x",                                 "2"                     },
6602   { "toon_3.y",                                 "125"                   },
6603   { "toon_3.width",                             "48"                    },
6604   { "toon_3.height",                            "56"                    },
6605   { "toon_3.frames",                            "8"                     },
6606   { "toon_3.delay",                             "1"                     },
6607   { "toon_3.step_offset",                       "4"                     },
6608   { "toon_3.step_delay",                        "5"                     },
6609   { "toon_3.direction",                         "right"                 },
6610   { "toon_3.position",                          "bottom"                },
6611
6612   { "toon_4",                                   "RocksToons.png"        },
6613   { "toon_4.x",                                 "327"                   },
6614   { "toon_4.y",                                 "10"                    },
6615   { "toon_4.width",                             "80"                    },
6616   { "toon_4.height",                            "110"                   },
6617   { "toon_4.frames",                            "1"                     },
6618   { "toon_4.delay",                             "1"                     },
6619   { "toon_4.step_offset",                       "1"                     },
6620   { "toon_4.step_delay",                        "1"                     },
6621   { "toon_4.direction",                         "up"                    },
6622   { "toon_4.position",                          "any"                   },
6623
6624   { "toon_5",                                   "RocksToons.png"        },
6625   { "toon_5.x",                                 "2"                     },
6626   { "toon_5.y",                                 "2"                     },
6627   { "toon_5.width",                             "32"                    },
6628   { "toon_5.height",                            "30"                    },
6629   { "toon_5.frames",                            "8"                     },
6630   { "toon_5.delay",                             "2"                     },
6631   { "toon_5.anim_mode",                         "pingpong2"             },
6632   { "toon_5.step_offset",                       "2"                     },
6633   { "toon_5.step_delay",                        "1"                     },
6634   { "toon_5.direction",                         "right"                 },
6635   { "toon_5.position",                          "upper"                 },
6636
6637   { "toon_6",                                   "RocksToons.png"        },
6638   { "toon_6.x",                                 "2"                     },
6639   { "toon_6.y",                                 "37"                    },
6640   { "toon_6.width",                             "32"                    },
6641   { "toon_6.height",                            "30"                    },
6642   { "toon_6.frames",                            "8"                     },
6643   { "toon_6.delay",                             "2"                     },
6644   { "toon_6.anim_mode",                         "pingpong2"             },
6645   { "toon_6.step_offset",                       "2"                     },
6646   { "toon_6.step_delay",                        "1"                     },
6647   { "toon_6.direction",                         "left"                  },
6648   { "toon_6.position",                          "upper"                 },
6649
6650   { "toon_7",                                   "RocksMore.png"         },
6651   { "toon_7.xpos",                              "0"                     },
6652   { "toon_7.ypos",                              "6"                     },
6653   { "toon_7.frames",                            "16"                    },
6654   { "toon_7.delay",                             "2"                     },
6655   { "toon_7.direction",                         "down"                  },
6656   { "toon_7.position",                          "any"                   },
6657
6658   { "toon_8",                                   "RocksHeroes.png"       },
6659   { "toon_8.xpos",                              "4"                     },
6660   { "toon_8.ypos",                              "1"                     },
6661   { "toon_8.frames",                            "4"                     },
6662   { "toon_8.delay",                             "4"                     },
6663   { "toon_8.direction",                         "right"                 },
6664   { "toon_8.position",                          "bottom"                },
6665
6666   { "toon_9",                                   "RocksHeroes.png"       },
6667   { "toon_9.xpos",                              "8"                     },
6668   { "toon_9.ypos",                              "7"                     },
6669   { "toon_9.frames",                            "4"                     },
6670   { "toon_9.delay",                             "2"                     },
6671   { "toon_9.direction",                         "left"                  },
6672   { "toon_9.position",                          "bottom"                },
6673
6674   { "toon_10",                                  "RocksHeroes.png"       },
6675   { "toon_10.xpos",                             "12"                    },
6676   { "toon_10.ypos",                             "7"                     },
6677   { "toon_10.frames",                           "4"                     },
6678   { "toon_10.delay",                            "2"                     },
6679   { "toon_10.direction",                        "right"                 },
6680   { "toon_10.position",                         "bottom"                },
6681
6682   { "toon_11",                                  "RocksHeroes.png"       },
6683   { "toon_11.xpos",                             "8"                     },
6684   { "toon_11.ypos",                             "5"                     },
6685   { "toon_11.frames",                           "4"                     },
6686   { "toon_11.delay",                            "2"                     },
6687   { "toon_11.direction",                        "left"                  },
6688   { "toon_11.position",                         "bottom"                },
6689
6690   { "toon_12",                                  "RocksHeroes.png"       },
6691   { "toon_12.xpos",                             "12"                    },
6692   { "toon_12.ypos",                             "5"                     },
6693   { "toon_12.frames",                           "4"                     },
6694   { "toon_12.delay",                            "2"                     },
6695   { "toon_12.direction",                        "right"                 },
6696   { "toon_12.position",                         "bottom"                },
6697
6698   { "toon_13",                                  "RocksHeroes.png"       },
6699   { "toon_13.xpos",                             "8"                     },
6700   { "toon_13.ypos",                             "1"                     },
6701   { "toon_13.frames",                           "4"                     },
6702   { "toon_13.delay",                            "2"                     },
6703   { "toon_13.direction",                        "left"                  },
6704   { "toon_13.position",                         "bottom"                },
6705
6706   { "toon_14",                                  "RocksHeroes.png"       },
6707   { "toon_14.xpos",                             "12"                    },
6708   { "toon_14.ypos",                             "1"                     },
6709   { "toon_14.frames",                           "4"                     },
6710   { "toon_14.delay",                            "2"                     },
6711   { "toon_14.direction",                        "right"                 },
6712   { "toon_14.position",                         "bottom"                },
6713
6714   { "toon_15",                                  "RocksHeroes.png"       },
6715   { "toon_15.xpos",                             "8"                     },
6716   { "toon_15.ypos",                             "3"                     },
6717   { "toon_15.frames",                           "4"                     },
6718   { "toon_15.delay",                            "2"                     },
6719   { "toon_15.direction",                        "left"                  },
6720   { "toon_15.position",                         "bottom"                },
6721
6722   { "toon_16",                                  "RocksHeroes.png"       },
6723   { "toon_16.xpos",                             "12"                    },
6724   { "toon_16.ypos",                             "3"                     },
6725   { "toon_16.frames",                           "4"                     },
6726   { "toon_16.delay",                            "2"                     },
6727   { "toon_16.direction",                        "right"                 },
6728   { "toon_16.position",                         "bottom"                },
6729
6730   { "toon_17",                                  "RocksHeroes.png"       },
6731   { "toon_17.xpos",                             "8"                     },
6732   { "toon_17.ypos",                             "9"                     },
6733   { "toon_17.frames",                           "8"                     },
6734   { "toon_17.delay",                            "2"                     },
6735   { "toon_17.direction",                        "left"                  },
6736   { "toon_17.position",                         "any"                   },
6737
6738   { "toon_18",                                  "RocksHeroes.png"       },
6739   { "toon_18.xpos",                             "8"                     },
6740   { "toon_18.ypos",                             "9"                     },
6741   { "toon_18.frames",                           "8"                     },
6742   { "toon_18.delay",                            "2"                     },
6743   { "toon_18.direction",                        "right"                 },
6744   { "toon_18.position",                         "any"                   },
6745
6746   { "toon_19",                                  "RocksElements.png"     },
6747   { "toon_19.xpos",                             "8"                     },
6748   { "toon_19.ypos",                             "0"                     },
6749   { "toon_19.frames",                           "2"                     },
6750   { "toon_19.delay",                            "4"                     },
6751   { "toon_19.direction",                        "down"                  },
6752   { "toon_19.position",                         "any"                   },
6753
6754   { "toon_20",                                  "RocksElements.png"     },
6755   { "toon_20.xpos",                             "10"                    },
6756   { "toon_20.ypos",                             "0"                     },
6757   { "toon_20.frames",                           "2"                     },
6758   { "toon_20.delay",                            "4"                     },
6759   { "toon_20.direction",                        "down"                  },
6760   { "toon_20.position",                         "any"                   },
6761
6762   { "gfx.global.anim_1",                        UNDEFINED_FILENAME      },
6763   { "gfx.global.anim_2",                        UNDEFINED_FILENAME      },
6764   { "gfx.global.anim_3",                        UNDEFINED_FILENAME      },
6765   { "gfx.global.anim_4",                        UNDEFINED_FILENAME      },
6766   { "gfx.global.anim_5",                        UNDEFINED_FILENAME      },
6767   { "gfx.global.anim_6",                        UNDEFINED_FILENAME      },
6768   { "gfx.global.anim_7",                        UNDEFINED_FILENAME      },
6769   { "gfx.global.anim_8",                        UNDEFINED_FILENAME      },
6770   { "gfx.global.anim_9",                        UNDEFINED_FILENAME      },
6771   { "gfx.global.anim_10",                       UNDEFINED_FILENAME      },
6772   { "gfx.global.anim_11",                       UNDEFINED_FILENAME      },
6773   { "gfx.global.anim_12",                       UNDEFINED_FILENAME      },
6774   { "gfx.global.anim_13",                       UNDEFINED_FILENAME      },
6775   { "gfx.global.anim_14",                       UNDEFINED_FILENAME      },
6776   { "gfx.global.anim_15",                       UNDEFINED_FILENAME      },
6777   { "gfx.global.anim_16",                       UNDEFINED_FILENAME      },
6778   { "gfx.global.anim_17",                       UNDEFINED_FILENAME      },
6779   { "gfx.global.anim_18",                       UNDEFINED_FILENAME      },
6780   { "gfx.global.anim_19",                       UNDEFINED_FILENAME      },
6781   { "gfx.global.anim_20",                       UNDEFINED_FILENAME      },
6782   { "gfx.global.anim_21",                       UNDEFINED_FILENAME      },
6783   { "gfx.global.anim_22",                       UNDEFINED_FILENAME      },
6784   { "gfx.global.anim_23",                       UNDEFINED_FILENAME      },
6785   { "gfx.global.anim_24",                       UNDEFINED_FILENAME      },
6786   { "gfx.global.anim_25",                       UNDEFINED_FILENAME      },
6787   { "gfx.global.anim_26",                       UNDEFINED_FILENAME      },
6788   { "gfx.global.anim_27",                       UNDEFINED_FILENAME      },
6789   { "gfx.global.anim_28",                       UNDEFINED_FILENAME      },
6790   { "gfx.global.anim_29",                       UNDEFINED_FILENAME      },
6791   { "gfx.global.anim_30",                       UNDEFINED_FILENAME      },
6792   { "gfx.global.anim_31",                       UNDEFINED_FILENAME      },
6793   { "gfx.global.anim_32",                       UNDEFINED_FILENAME      },
6794
6795   { "global.anim_1",                            UNDEFINED_FILENAME      },
6796   { "global.anim_2",                            UNDEFINED_FILENAME      },
6797   { "global.anim_3",                            UNDEFINED_FILENAME      },
6798   { "global.anim_4",                            UNDEFINED_FILENAME      },
6799   { "global.anim_5",                            UNDEFINED_FILENAME      },
6800   { "global.anim_6",                            UNDEFINED_FILENAME      },
6801   { "global.anim_7",                            UNDEFINED_FILENAME      },
6802   { "global.anim_8",                            UNDEFINED_FILENAME      },
6803   { "global.anim_9",                            UNDEFINED_FILENAME      },
6804   { "global.anim_10",                           UNDEFINED_FILENAME      },
6805   { "global.anim_11",                           UNDEFINED_FILENAME      },
6806   { "global.anim_12",                           UNDEFINED_FILENAME      },
6807   { "global.anim_13",                           UNDEFINED_FILENAME      },
6808   { "global.anim_14",                           UNDEFINED_FILENAME      },
6809   { "global.anim_15",                           UNDEFINED_FILENAME      },
6810   { "global.anim_16",                           UNDEFINED_FILENAME      },
6811   { "global.anim_17",                           UNDEFINED_FILENAME      },
6812   { "global.anim_18",                           UNDEFINED_FILENAME      },
6813   { "global.anim_19",                           UNDEFINED_FILENAME      },
6814   { "global.anim_20",                           UNDEFINED_FILENAME      },
6815   { "global.anim_21",                           UNDEFINED_FILENAME      },
6816   { "global.anim_22",                           UNDEFINED_FILENAME      },
6817   { "global.anim_23",                           UNDEFINED_FILENAME      },
6818   { "global.anim_24",                           UNDEFINED_FILENAME      },
6819   { "global.anim_25",                           UNDEFINED_FILENAME      },
6820   { "global.anim_26",                           UNDEFINED_FILENAME      },
6821   { "global.anim_27",                           UNDEFINED_FILENAME      },
6822   { "global.anim_28",                           UNDEFINED_FILENAME      },
6823   { "global.anim_29",                           UNDEFINED_FILENAME      },
6824   { "global.anim_30",                           UNDEFINED_FILENAME      },
6825   { "global.anim_31",                           UNDEFINED_FILENAME      },
6826   { "global.anim_32",                           UNDEFINED_FILENAME      },
6827
6828   { "internal.global.toon_default",             UNDEFINED_FILENAME      },
6829   { "internal.global.toon_default.anim_mode",   "random"                },
6830
6831   { "internal.global.anim_default",             UNDEFINED_FILENAME      },
6832
6833   { "menu.calibrate_red",                       "RocksElements.png"     },
6834   { "menu.calibrate_red.xpos",                  "12"                    },
6835   { "menu.calibrate_red.ypos",                  "8"                     },
6836   { "menu.calibrate_red.frames",                "1"                     },
6837   { "menu.calibrate_blue",                      "RocksElements.png"     },
6838   { "menu.calibrate_blue.xpos",                 "13"                    },
6839   { "menu.calibrate_blue.ypos",                 "8"                     },
6840   { "menu.calibrate_blue.frames",               "1"                     },
6841   { "menu.calibrate_yellow",                    "RocksElements.png"     },
6842   { "menu.calibrate_yellow.xpos",               "14"                    },
6843   { "menu.calibrate_yellow.ypos",               "8"                     },
6844   { "menu.calibrate_yellow.frames",             "1"                     },
6845
6846   { "menu.button",                              "RocksElements.png"     },
6847   { "menu.button.xpos",                         "13"                    },
6848   { "menu.button.ypos",                         "8"                     },
6849   { "menu.button.frames",                       "1"                     },
6850   { "menu.button.active",                       "RocksElements.png"     },
6851   { "menu.button.active.xpos",                  "12"                    },
6852   { "menu.button.active.ypos",                  "8"                     },
6853   { "menu.button.active.frames",                "1"                     },
6854
6855   { "menu.button_left",                         "RocksDC.png"           },
6856   { "menu.button_left.xpos",                    "8"                     },
6857   { "menu.button_left.ypos",                    "8"                     },
6858   { "menu.button_left.frames",                  "1"                     },
6859   { "menu.button_left.active",                  "RocksDC.png"           },
6860   { "menu.button_left.active.xpos",             "8"                     },
6861   { "menu.button_left.active.ypos",             "9"                     },
6862   { "menu.button_left.active.frames",           "1"                     },
6863   { "menu.button_right",                        "RocksDC.png"           },
6864   { "menu.button_right.xpos",                   "9"                     },
6865   { "menu.button_right.ypos",                   "8"                     },
6866   { "menu.button_right.frames",                 "1"                     },
6867   { "menu.button_right.active",                 "RocksDC.png"           },
6868   { "menu.button_right.active.xpos",            "9"                     },
6869   { "menu.button_right.active.ypos",            "9"                     },
6870   { "menu.button_right.active.frames",          "1"                     },
6871   { "menu.button_up",                           "RocksDC.png"           },
6872   { "menu.button_up.xpos",                      "10"                    },
6873   { "menu.button_up.ypos",                      "8"                     },
6874   { "menu.button_up.frames",                    "1"                     },
6875   { "menu.button_up.active",                    "RocksDC.png"           },
6876   { "menu.button_up.active.xpos",               "10"                    },
6877   { "menu.button_up.active.ypos",               "9"                     },
6878   { "menu.button_up.active.frames",             "1"                     },
6879   { "menu.button_down",                         "RocksDC.png"           },
6880   { "menu.button_down.xpos",                    "11"                    },
6881   { "menu.button_down.ypos",                    "8"                     },
6882   { "menu.button_down.frames",                  "1"                     },
6883   { "menu.button_down.active",                  "RocksDC.png"           },
6884   { "menu.button_down.active.xpos",             "11"                    },
6885   { "menu.button_down.active.ypos",             "9"                     },
6886   { "menu.button_down.active.frames",           "1"                     },
6887
6888   { "menu.button_enter_menu",                   UNDEFINED_FILENAME      },
6889   { "menu.button_enter_menu.clone_from",        "menu.button_right"     },
6890   { "menu.button_enter_menu.active",            UNDEFINED_FILENAME      },
6891   { "menu.button_enter_menu.active.clone_from", "menu.button_right.active" },
6892   { "menu.button_leave_menu",                   UNDEFINED_FILENAME      },
6893   { "menu.button_leave_menu.clone_from",        "menu.button_left"      },
6894   { "menu.button_leave_menu.active",            UNDEFINED_FILENAME      },
6895   { "menu.button_leave_menu.active.clone_from", "menu.button_left.active" },
6896
6897   { "menu.button_next_level",                   UNDEFINED_FILENAME      },
6898   { "menu.button_next_level.clone_from",        "menu.button_right"     },
6899   { "menu.button_next_level.active",            UNDEFINED_FILENAME      },
6900   { "menu.button_next_level.active.clone_from", "menu.button_right.active" },
6901   { "menu.button_prev_level",                   UNDEFINED_FILENAME      },
6902   { "menu.button_prev_level.clone_from",        "menu.button_left"      },
6903   { "menu.button_prev_level.active",            UNDEFINED_FILENAME      },
6904   { "menu.button_prev_level.active.clone_from", "menu.button_left.active" },
6905
6906   { "menu.button_next_level2",                  UNDEFINED_FILENAME      },
6907   { "menu.button_next_level2.clone_from",       "menu.button_right"     },
6908   { "menu.button_next_level2.active",           UNDEFINED_FILENAME      },
6909   { "menu.button_next_level2.active.clone_from", "menu.button_right.active" },
6910   { "menu.button_prev_level2",                  UNDEFINED_FILENAME      },
6911   { "menu.button_prev_level2.clone_from",       "menu.button_left"      },
6912   { "menu.button_prev_level2.active",           UNDEFINED_FILENAME      },
6913   { "menu.button_prev_level2.active.clone_from", "menu.button_left.active" },
6914
6915   { "menu.button_next_score",                   UNDEFINED_FILENAME      },
6916   { "menu.button_next_score.clone_from",        "menu.button_down"      },
6917   { "menu.button_next_score.active",            UNDEFINED_FILENAME      },
6918   { "menu.button_next_score.active.clone_from", "menu.button_down.active" },
6919   { "menu.button_prev_score",                   UNDEFINED_FILENAME      },
6920   { "menu.button_prev_score.clone_from",        "menu.button_up"        },
6921   { "menu.button_prev_score.active",            UNDEFINED_FILENAME      },
6922   { "menu.button_prev_score.active.clone_from", "menu.button_up.active" },
6923
6924   { "menu.button_play_tape",                    UNDEFINED_FILENAME      },
6925   { "menu.button_play_tape.clone_from",         "gfx.tape.button.play"  },
6926
6927   { "menu.button_name",                         UNDEFINED_FILENAME      },
6928   { "menu.button_name.clone_from",              "menu.button"           },
6929   { "menu.button_name.active",                  UNDEFINED_FILENAME      },
6930   { "menu.button_name.active.clone_from",       "menu.button.active"    },
6931   { "menu.button_levels",                       UNDEFINED_FILENAME      },
6932   { "menu.button_levels.clone_from",            "menu.button_right"     },
6933   { "menu.button_levels.active",                UNDEFINED_FILENAME      },
6934   { "menu.button_levels.active.clone_from",     "menu.button_right.active" },
6935   { "menu.button_scores",                       UNDEFINED_FILENAME      },
6936   { "menu.button_scores.clone_from",            "menu.button"           },
6937   { "menu.button_scores.active",                UNDEFINED_FILENAME      },
6938   { "menu.button_scores.active.clone_from",     "menu.button.active"    },
6939   { "menu.button_editor",                       UNDEFINED_FILENAME      },
6940   { "menu.button_editor.clone_from",            "menu.button"           },
6941   { "menu.button_editor.active",                UNDEFINED_FILENAME      },
6942   { "menu.button_editor.active.clone_from",     "menu.button.active"    },
6943   { "menu.button_info",                         UNDEFINED_FILENAME      },
6944   { "menu.button_info.clone_from",              "menu.button_right"     },
6945   { "menu.button_info.active",                  UNDEFINED_FILENAME      },
6946   { "menu.button_info.active.clone_from",       "menu.button_right.active" },
6947   { "menu.button_game",                         UNDEFINED_FILENAME      },
6948   { "menu.button_game.clone_from",              "menu.button"           },
6949   { "menu.button_game.active",                  UNDEFINED_FILENAME      },
6950   { "menu.button_game.active.clone_from",       "menu.button.active"    },
6951   { "menu.button_setup",                        UNDEFINED_FILENAME      },
6952   { "menu.button_setup.clone_from",             "menu.button_right"     },
6953   { "menu.button_setup.active",                 UNDEFINED_FILENAME      },
6954   { "menu.button_setup.active.clone_from",      "menu.button_right.active" },
6955   { "menu.button_quit",                         UNDEFINED_FILENAME      },
6956   { "menu.button_quit.clone_from",              "menu.button"           },
6957   { "menu.button_quit.active",                  UNDEFINED_FILENAME      },
6958   { "menu.button_quit.active.clone_from",       "menu.button.active"    },
6959
6960   { "menu.button_first_level",                  UNDEFINED_FILENAME      },
6961   { "menu.button_first_level.active",           UNDEFINED_FILENAME      },
6962   { "menu.button_last_level",                   UNDEFINED_FILENAME      },
6963   { "menu.button_last_level.active",            UNDEFINED_FILENAME      },
6964   { "menu.button_level_number",                 UNDEFINED_FILENAME      },
6965   { "menu.button_level_number.active",          UNDEFINED_FILENAME      },
6966
6967   { "menu.button_insert_solution",              UNDEFINED_FILENAME      },
6968   { "menu.button_insert_solution.active",       UNDEFINED_FILENAME      },
6969   { "menu.button_play_solution",                UNDEFINED_FILENAME      },
6970   { "menu.button_play_solution.active",         UNDEFINED_FILENAME      },
6971
6972   { "menu.button_levelset_info",                UNDEFINED_FILENAME      },
6973   { "menu.button_levelset_info.clone_from",     "envelope_1"            },
6974   { "menu.button_levelset_info.pressed",        UNDEFINED_FILENAME      },
6975   { "menu.button_levelset_info.pressed.clone_from", "envelope_1.collecting" },
6976   { "menu.button_levelset_info.active",         UNDEFINED_FILENAME      },
6977   { "menu.button_levelset_info.active.clone_from", "envelope_1"         },
6978
6979   { "menu.button_switch_ecs_aga",               UNDEFINED_FILENAME      },
6980   { "menu.button_switch_ecs_aga.active",        UNDEFINED_FILENAME      },
6981
6982   { "menu.button_touch_back",                   "RocksTouch.png"        },
6983   { "menu.button_touch_back.x",                 "210"                   },
6984   { "menu.button_touch_back.y",                 "180"                   },
6985   { "menu.button_touch_back.width",             "60"                    },
6986   { "menu.button_touch_back.height",            "60"                    },
6987   { "menu.button_touch_back.pressed_xoffset",   "-200"                  },
6988   { "menu.button_touch_next",                   "RocksTouch.png"        },
6989   { "menu.button_touch_next.x",                 "330"                   },
6990   { "menu.button_touch_next.y",                 "180"                   },
6991   { "menu.button_touch_next.width",             "60"                    },
6992   { "menu.button_touch_next.height",            "60"                    },
6993   { "menu.button_touch_next.pressed_xoffset",   "-200"                  },
6994   { "menu.button_touch_back2",                  "RocksTouch.png"        },
6995   { "menu.button_touch_back2.x",                "210"                   },
6996   { "menu.button_touch_back2.y",                "180"                   },
6997   { "menu.button_touch_back2.width",            "60"                    },
6998   { "menu.button_touch_back2.height",           "60"                    },
6999   { "menu.button_touch_back2.pressed_xoffset",  "-200"                  },
7000   { "menu.button_touch_next2",                  "RocksTouch.png"        },
7001   { "menu.button_touch_next2.x",                "330"                   },
7002   { "menu.button_touch_next2.y",                "180"                   },
7003   { "menu.button_touch_next2.width",            "60"                    },
7004   { "menu.button_touch_next2.height",           "60"                    },
7005   { "menu.button_touch_next2.pressed_xoffset", "-200"                   },
7006
7007   { "menu.scrollbar",                           "RocksDC.png"           },
7008   { "menu.scrollbar.xpos",                      "8"                     },
7009   { "menu.scrollbar.ypos",                      "10"                    },
7010   { "menu.scrollbar.frames",                    "1"                     },
7011   { "menu.scrollbar.active",                    "RocksDC.png"           },
7012   { "menu.scrollbar.active.xpos",               "9"                     },
7013   { "menu.scrollbar.active.ypos",               "10"                    },
7014   { "menu.scrollbar.active.frames",             "1"                     },
7015
7016   { "gfx.game.panel.time_anim",                 "RocksDoorMM.png"       },
7017   { "gfx.game.panel.time_anim.x",               "5"                     },
7018   { "gfx.game.panel.time_anim.y",               "0"                     },
7019   { "gfx.game.panel.time_anim.width",           "90"                    },
7020   { "gfx.game.panel.time_anim.height",          "35"                    },
7021   { "gfx.game.panel.time_anim.frames",          "1"                     },
7022   { "gfx.game.panel.time_anim.active",          "RocksDoorMM.png"       },
7023   { "gfx.game.panel.time_anim.active.x",        "105"                   },
7024   { "gfx.game.panel.time_anim.active.y",        "0"                     },
7025   { "gfx.game.panel.time_anim.active.width",    "90"                    },
7026   { "gfx.game.panel.time_anim.active.height",   "35"                    },
7027   { "gfx.game.panel.time_anim.active.frames",   "1"                     },
7028
7029   { "gfx.game.panel.health_anim",               "RocksDoorMM.png"       },
7030   { "gfx.game.panel.health_anim.x",             "5"                     },
7031   { "gfx.game.panel.health_anim.y",             "35"                    },
7032   { "gfx.game.panel.health_anim.width",         "90"                    },
7033   { "gfx.game.panel.health_anim.height",        "35"                    },
7034   { "gfx.game.panel.health_anim.frames",        "1"                     },
7035   { "gfx.game.panel.health_anim.active",        "RocksDoorMM.png"       },
7036   { "gfx.game.panel.health_anim.active.x",      "105"                   },
7037   { "gfx.game.panel.health_anim.active.y",      "35"                    },
7038   { "gfx.game.panel.health_anim.active.width",  "90"                    },
7039   { "gfx.game.panel.health_anim.active.height", "35"                    },
7040   { "gfx.game.panel.health_anim.active.frames", "1"                     },
7041
7042   { "gfx.game.button.stop",                     "RocksDoor.png"         },
7043   { "gfx.game.button.stop.x",                   "305"                   },
7044   { "gfx.game.button.stop.y",                   "185"                   },
7045   { "gfx.game.button.stop.width",               "30"                    },
7046   { "gfx.game.button.stop.height",              "30"                    },
7047   { "gfx.game.button.stop.pressed_xoffset",     "-100"                  },
7048   { "gfx.game.button.pause",                    "RocksDoor.png"         },
7049   { "gfx.game.button.pause.x",                  "335"                   },
7050   { "gfx.game.button.pause.y",                  "185"                   },
7051   { "gfx.game.button.pause.width",              "30"                    },
7052   { "gfx.game.button.pause.height",             "30"                    },
7053   { "gfx.game.button.pause.pressed_xoffset",    "-100"                  },
7054   { "gfx.game.button.play",                     "RocksDoor.png"         },
7055   { "gfx.game.button.play.x",                   "365"                   },
7056   { "gfx.game.button.play.y",                   "185"                   },
7057   { "gfx.game.button.play.width",               "30"                    },
7058   { "gfx.game.button.play.height",              "30"                    },
7059   { "gfx.game.button.play.pressed_xoffset",     "-100"                  },
7060
7061   { "gfx.game.button.undo",                     "RocksDoor2.png"        },
7062   { "gfx.game.button.undo.x",                   "105"                   },
7063   { "gfx.game.button.undo.y",                   "20"                    },
7064   { "gfx.game.button.undo.width",               "30"                    },
7065   { "gfx.game.button.undo.height",              "30"                    },
7066   { "gfx.game.button.undo.pressed_xoffset",     "-100"                  },
7067   { "gfx.game.button.redo",                     "RocksDoor2.png"        },
7068   { "gfx.game.button.redo.x",                   "165"                   },
7069   { "gfx.game.button.redo.y",                   "20"                    },
7070   { "gfx.game.button.redo.width",               "30"                    },
7071   { "gfx.game.button.redo.height",              "30"                    },
7072   { "gfx.game.button.redo.pressed_xoffset",     "-100"                  },
7073
7074   { "gfx.game.button.save",                     "RocksDoor2.png"        },
7075   { "gfx.game.button.save.x",                   "105"                   },
7076   { "gfx.game.button.save.y",                   "50"                    },
7077   { "gfx.game.button.save.width",               "30"                    },
7078   { "gfx.game.button.save.height",              "30"                    },
7079   { "gfx.game.button.save.pressed_xoffset",     "-100"                  },
7080   { "gfx.game.button.pause2",                   "RocksDoor2.png"        },
7081   { "gfx.game.button.pause2.x",                 "135"                   },
7082   { "gfx.game.button.pause2.y",                 "50"                    },
7083   { "gfx.game.button.pause2.width",             "30"                    },
7084   { "gfx.game.button.pause2.height",            "30"                    },
7085   { "gfx.game.button.pause2.pressed_xoffset",   "-100"                  },
7086   { "gfx.game.button.pause2.active_yoffset",    "-30"                   },
7087   { "gfx.game.button.load",                     "RocksDoor2.png"        },
7088   { "gfx.game.button.load.x",                   "165"                   },
7089   { "gfx.game.button.load.y",                   "50"                    },
7090   { "gfx.game.button.load.width",               "30"                    },
7091   { "gfx.game.button.load.height",              "30"                    },
7092   { "gfx.game.button.load.pressed_xoffset",     "-100"                  },
7093
7094   { "gfx.game.button.restart",                  "RocksDoor2.png"        },
7095   { "gfx.game.button.restart.x",                "200"                   },
7096   { "gfx.game.button.restart.y",                "50"                    },
7097   { "gfx.game.button.restart.width",            "30"                    },
7098   { "gfx.game.button.restart.height",           "30"                    },
7099   { "gfx.game.button.restart.pressed_xoffset",  "30"                    },
7100
7101   { "gfx.game.button.sound_music",              "RocksDoor.png"         },
7102   { "gfx.game.button.sound_music.x",            "305"                   },
7103   { "gfx.game.button.sound_music.y",            "245"                   },
7104   { "gfx.game.button.sound_music.width",        "30"                    },
7105   { "gfx.game.button.sound_music.height",       "30"                    },
7106   { "gfx.game.button.sound_music.pressed_xoffset", "-100"               },
7107   { "gfx.game.button.sound_music.active_yoffset", "-30"                 },
7108   { "gfx.game.button.sound_loops",              "RocksDoor.png"         },
7109   { "gfx.game.button.sound_loops.x",            "335"                   },
7110   { "gfx.game.button.sound_loops.y",            "245"                   },
7111   { "gfx.game.button.sound_loops.width",        "30"                    },
7112   { "gfx.game.button.sound_loops.height",       "30"                    },
7113   { "gfx.game.button.sound_loops.pressed_xoffset", "-100"               },
7114   { "gfx.game.button.sound_loops.active_yoffset", "-30"                 },
7115   { "gfx.game.button.sound_simple",             "RocksDoor.png"         },
7116   { "gfx.game.button.sound_simple.x",           "365"                   },
7117   { "gfx.game.button.sound_simple.y",           "245"                   },
7118   { "gfx.game.button.sound_simple.width",       "30"                    },
7119   { "gfx.game.button.sound_simple.height",      "30"                    },
7120   { "gfx.game.button.sound_simple.pressed_xoffset", "-100"              },
7121   { "gfx.game.button.sound_simple.active_yoffset", "-30"                },
7122
7123   { "gfx.game.button.panel_stop",               UNDEFINED_FILENAME      },
7124   { "gfx.game.button.panel_pause",              UNDEFINED_FILENAME      },
7125   { "gfx.game.button.panel_play",               UNDEFINED_FILENAME      },
7126   { "gfx.game.button.panel_restart",            UNDEFINED_FILENAME      },
7127
7128   { "gfx.game.button.panel_sound_music",        UNDEFINED_FILENAME      },
7129   { "gfx.game.button.panel_sound_loops",        UNDEFINED_FILENAME      },
7130   { "gfx.game.button.panel_sound_simple",       UNDEFINED_FILENAME      },
7131
7132   { "gfx.game.button.touch_stop",               "RocksTouch.png"        },
7133   { "gfx.game.button.touch_stop.x",             "210"                   },
7134   { "gfx.game.button.touch_stop.y",             "120"                   },
7135   { "gfx.game.button.touch_stop.width",         "60"                    },
7136   { "gfx.game.button.touch_stop.height",        "60"                    },
7137   { "gfx.game.button.touch_stop.pressed_xoffset", "-200"                },
7138   { "gfx.game.button.touch_pause",              "RocksTouch.png"        },
7139   { "gfx.game.button.touch_pause.x",            "270"                   },
7140   { "gfx.game.button.touch_pause.y",            "120"                   },
7141   { "gfx.game.button.touch_pause.width",        "60"                    },
7142   { "gfx.game.button.touch_pause.height",       "60"                    },
7143   { "gfx.game.button.touch_pause.pressed_xoffset", "-200"               },
7144   { "gfx.game.button.touch_pause.active_yoffset", "60"                  },
7145
7146   { "gfx.game.button.touch_restart",            "RocksTouch.png"        },
7147   { "gfx.game.button.touch_restart.x",          "210"                   },
7148   { "gfx.game.button.touch_restart.y",          "240"                   },
7149   { "gfx.game.button.touch_restart.width",      "60"                    },
7150   { "gfx.game.button.touch_restart.height",     "60"                    },
7151   { "gfx.game.button.touch_restart.pressed_xoffset", "-200"             },
7152
7153   { "gfx.tape.button.eject",                    "RocksDoor.png"         },
7154   { "gfx.tape.button.eject.x",                  "305"                   },
7155   { "gfx.tape.button.eject.y",                  "357"                   },
7156   { "gfx.tape.button.eject.width",              "18"                    },
7157   { "gfx.tape.button.eject.height",             "18"                    },
7158   { "gfx.tape.button.eject.pressed_xoffset",    "-100"                  },
7159   { "gfx.tape.button.extra",                    "RocksDoor.png"         },
7160   { "gfx.tape.button.extra.x",                  "505"                   },
7161   { "gfx.tape.button.extra.y",                  "357"                   },
7162   { "gfx.tape.button.extra.width",              "18"                    },
7163   { "gfx.tape.button.extra.height",             "18"                    },
7164   { "gfx.tape.button.extra.pressed_xoffset",    "-100"                  },
7165   { "gfx.tape.button.stop",                     "RocksDoor.png"         },
7166   { "gfx.tape.button.stop.x",                   "323"                   },
7167   { "gfx.tape.button.stop.y",                   "357"                   },
7168   { "gfx.tape.button.stop.width",               "18"                    },
7169   { "gfx.tape.button.stop.height",              "18"                    },
7170   { "gfx.tape.button.stop.pressed_xoffset",     "-100"                  },
7171   { "gfx.tape.button.pause",                    "RocksDoor.png"         },
7172   { "gfx.tape.button.pause.x",                  "341"                   },
7173   { "gfx.tape.button.pause.y",                  "357"                   },
7174   { "gfx.tape.button.pause.width",              "18"                    },
7175   { "gfx.tape.button.pause.height",             "18"                    },
7176   { "gfx.tape.button.pause.pressed_xoffset",    "-100"                  },
7177   { "gfx.tape.button.record",                   "RocksDoor.png"         },
7178   { "gfx.tape.button.record.x",                 "359"                   },
7179   { "gfx.tape.button.record.y",                 "357"                   },
7180   { "gfx.tape.button.record.width",             "18"                    },
7181   { "gfx.tape.button.record.height",            "18"                    },
7182   { "gfx.tape.button.record.pressed_xoffset",   "-100"                  },
7183   { "gfx.tape.button.play",                     "RocksDoor.png"         },
7184   { "gfx.tape.button.play.x",                   "377"                   },
7185   { "gfx.tape.button.play.y",                   "357"                   },
7186   { "gfx.tape.button.play.width",               "18"                    },
7187   { "gfx.tape.button.play.height",              "18"                    },
7188   { "gfx.tape.button.play.pressed_xoffset",     "-100"                  },
7189
7190   { "gfx.tape.button.insert_solution",          UNDEFINED_FILENAME      },
7191   { "gfx.tape.button.play_solution",            UNDEFINED_FILENAME      },
7192
7193   { "gfx.tape.symbol.eject",                    UNDEFINED_FILENAME      },
7194   { "gfx.tape.symbol.stop",                     UNDEFINED_FILENAME      },
7195   { "gfx.tape.symbol.pause",                    "RocksDoor.png"         },
7196   { "gfx.tape.symbol.pause.x",                  "340"                   },
7197   { "gfx.tape.symbol.pause.y",                  "321"                   },
7198   { "gfx.tape.symbol.pause.width",              "17"                    },
7199   { "gfx.tape.symbol.pause.height",             "13"                    },
7200   { "gfx.tape.symbol.record",                   "RocksDoor.png"         },
7201   { "gfx.tape.symbol.record.x",                 "325"                   },
7202   { "gfx.tape.symbol.record.y",                 "321"                   },
7203   { "gfx.tape.symbol.record.width",             "16"                    },
7204   { "gfx.tape.symbol.record.height",            "16"                    },
7205   { "gfx.tape.symbol.play",                     "RocksDoor.png"         },
7206   { "gfx.tape.symbol.play.x",                   "357"                   },
7207   { "gfx.tape.symbol.play.y",                   "321"                   },
7208   { "gfx.tape.symbol.play.width",               "11"                    },
7209   { "gfx.tape.symbol.play.height",              "13"                    },
7210   { "gfx.tape.symbol.fast_forward",             "RocksDoor.png"         },
7211   { "gfx.tape.symbol.fast_forward.x",           "539"                   },
7212   { "gfx.tape.symbol.fast_forward.y",           "193"                   },
7213   { "gfx.tape.symbol.fast_forward.width",       "27"                    },
7214   { "gfx.tape.symbol.fast_forward.height",      "13"                    },
7215   { "gfx.tape.symbol.warp_forward",             "RocksDoor.png"         },
7216   { "gfx.tape.symbol.warp_forward.x",           "539"                   },
7217   { "gfx.tape.symbol.warp_forward.y",           "152"                   },
7218   { "gfx.tape.symbol.warp_forward.width",       "27"                    },
7219   { "gfx.tape.symbol.warp_forward.height",      "13"                    },
7220   { "gfx.tape.symbol.warp_forward_blind",       "RocksDoor.png"         },
7221   { "gfx.tape.symbol.warp_forward_blind.x",     "539"                   },
7222   { "gfx.tape.symbol.warp_forward_blind.y",     "165"                   },
7223   { "gfx.tape.symbol.warp_forward_blind.width", "27"                    },
7224   { "gfx.tape.symbol.warp_forward_blind.height","13"                    },
7225   { "gfx.tape.symbol.pause_before_end",         "RocksDoor.png"         },
7226   { "gfx.tape.symbol.pause_before_end.x",       "539"                   },
7227   { "gfx.tape.symbol.pause_before_end.y",       "221"                   },
7228   { "gfx.tape.symbol.pause_before_end.width",   "27"                    },
7229   { "gfx.tape.symbol.pause_before_end.height",  "13"                    },
7230   { "gfx.tape.symbol.single_step",              UNDEFINED_FILENAME      },
7231
7232   { "gfx.tape.label.eject",                     UNDEFINED_FILENAME      },
7233   { "gfx.tape.label.stop",                      UNDEFINED_FILENAME      },
7234   { "gfx.tape.label.pause",                     "RocksDoor.png"         },
7235   { "gfx.tape.label.pause.x",                   "305"                   },
7236   { "gfx.tape.label.pause.y",                   "341"                   },
7237   { "gfx.tape.label.pause.width",               "35"                    },
7238   { "gfx.tape.label.pause.height",              "8"                     },
7239   { "gfx.tape.label.record",                    "RocksDoor.png"         },
7240   { "gfx.tape.label.record.x",                  "305"                   },
7241   { "gfx.tape.label.record.y",                  "321"                   },
7242   { "gfx.tape.label.record.width",              "20"                    },
7243   { "gfx.tape.label.record.height",             "12"                    },
7244   { "gfx.tape.label.play",                      "RocksDoor.png"         },
7245   { "gfx.tape.label.play.x",                    "370"                   },
7246   { "gfx.tape.label.play.y",                    "321"                   },
7247   { "gfx.tape.label.play.width",                "22"                    },
7248   { "gfx.tape.label.play.height",               "12"                    },
7249   { "gfx.tape.label.fast_forward",              "RocksDoor.png"         },
7250   { "gfx.tape.label.fast_forward.x",            "505"                   },
7251   { "gfx.tape.label.fast_forward.y",            "193"                   },
7252   { "gfx.tape.label.fast_forward.width",        "40"                    },
7253   { "gfx.tape.label.fast_forward.height",       "28"                    },
7254   { "gfx.tape.label.warp_forward",              "RocksDoor.png"         },
7255   { "gfx.tape.label.warp_forward.x",            "505"                   },
7256   { "gfx.tape.label.warp_forward.y",            "165"                   },
7257   { "gfx.tape.label.warp_forward.width",        "40"                    },
7258   { "gfx.tape.label.warp_forward.height",       "28"                    },
7259   { "gfx.tape.label.warp_forward_blind",        "RocksDoor.png"         },
7260   { "gfx.tape.label.warp_forward_blind.x",      "505"                   },
7261   { "gfx.tape.label.warp_forward_blind.y",      "165"                   },
7262   { "gfx.tape.label.warp_forward_blind.width",  "40"                    },
7263   { "gfx.tape.label.warp_forward_blind.height", "28"                    },
7264   { "gfx.tape.label.pause_before_end",          "RocksDoor.png"         },
7265   { "gfx.tape.label.pause_before_end.x",        "505"                   },
7266   { "gfx.tape.label.pause_before_end.y",        "221"                   },
7267   { "gfx.tape.label.pause_before_end.width",    "40"                    },
7268   { "gfx.tape.label.pause_before_end.height",   "28"                    },
7269   { "gfx.tape.label.single_step",               "RocksDoor.png"         },
7270   { "gfx.tape.label.single_step.x",             "557"                   },
7271   { "gfx.tape.label.single_step.y",             "139"                   },
7272   { "gfx.tape.label.single_step.width",         "38"                    },
7273   { "gfx.tape.label.single_step.height",        "13"                    },
7274
7275   { "gfx.tape.label.date",                      "RocksDoor.png"         },
7276   { "gfx.tape.label.date.x",                    "305"                   },
7277   { "gfx.tape.label.date.y",                    "285"                   },
7278   { "gfx.tape.label.date.width",                "90"                    },
7279   { "gfx.tape.label.date.height",               "31"                    },
7280   { "gfx.tape.label.time",                      "RocksDoor.png"         },
7281   { "gfx.tape.label.time.x",                    "346"                   },
7282   { "gfx.tape.label.time.y",                    "335"                   },
7283   { "gfx.tape.label.time.width",                "45"                    },
7284   { "gfx.tape.label.time.height",               "13"                    },
7285
7286   { "gfx.request.button.yes",                   "RocksDoor.png"         },
7287   { "gfx.request.button.yes.x",                 "302"                   },
7288   { "gfx.request.button.yes.y",                 "0"                     },
7289   { "gfx.request.button.yes.width",             "46"                    },
7290   { "gfx.request.button.yes.height",            "28"                    },
7291   { "gfx.request.button.yes.pressed_xoffset",   "-100"                  },
7292   { "gfx.request.button.no",                    "RocksDoor.png"         },
7293   { "gfx.request.button.no.x",                  "352"                   },
7294   { "gfx.request.button.no.y",                  "0"                     },
7295   { "gfx.request.button.no.width",              "46"                    },
7296   { "gfx.request.button.no.height",             "28"                    },
7297   { "gfx.request.button.no.pressed_xoffset",    "-100"                  },
7298   { "gfx.request.button.confirm",               "RocksDoor.png"         },
7299   { "gfx.request.button.confirm.x",             "302"                   },
7300   { "gfx.request.button.confirm.y",             "30"                    },
7301   { "gfx.request.button.confirm.width",         "96"                    },
7302   { "gfx.request.button.confirm.height",        "28"                    },
7303   { "gfx.request.button.confirm.pressed_xoffset", "-100"                },
7304   { "gfx.request.button.player_1",              "RocksDoor.png"         },
7305   { "gfx.request.button.player_1.x",            "305"                   },
7306   { "gfx.request.button.player_1.y",            "185"                   },
7307   { "gfx.request.button.player_1.width",        "30"                    },
7308   { "gfx.request.button.player_1.height",       "30"                    },
7309   { "gfx.request.button.player_1.pressed_xoffset", "-100"               },
7310   { "gfx.request.button.player_2",              UNDEFINED_FILENAME      },
7311   { "gfx.request.button.player_2.clone_from",   "gfx.request.button.player_1" },
7312   { "gfx.request.button.player_3",              UNDEFINED_FILENAME      },
7313   { "gfx.request.button.player_3.clone_from",   "gfx.request.button.player_1" },
7314   { "gfx.request.button.player_4",              UNDEFINED_FILENAME      },
7315   { "gfx.request.button.player_4.clone_from",   "gfx.request.button.player_1" },
7316
7317   { "gfx.request.button.touch_yes",             "RocksTouch.png"        },
7318   { "gfx.request.button.touch_yes.x",           "204"                   },
7319   { "gfx.request.button.touch_yes.y",           "0"                     },
7320   { "gfx.request.button.touch_yes.width",       "92"                    },
7321   { "gfx.request.button.touch_yes.height",      "56"                    },
7322   { "gfx.request.button.touch_yes.pressed_xoffset", "-200"              },
7323   { "gfx.request.button.touch_no",              "RocksTouch.png"        },
7324   { "gfx.request.button.touch_no.x",            "304"                   },
7325   { "gfx.request.button.touch_no.y",            "0"                     },
7326   { "gfx.request.button.touch_no.width",        "92"                    },
7327   { "gfx.request.button.touch_no.height",       "56"                    },
7328   { "gfx.request.button.touch_no.pressed_xoffset", "-200"               },
7329   { "gfx.request.button.touch_confirm",         "RocksTouch.png"        },
7330   { "gfx.request.button.touch_confirm.x",       "204"                   },
7331   { "gfx.request.button.touch_confirm.y",       "60"                    },
7332   { "gfx.request.button.touch_confirm.width",   "192"                   },
7333   { "gfx.request.button.touch_confirm.height",  "56"                    },
7334   { "gfx.request.button.touch_confirm.pressed_xoffset", "-200"          },
7335
7336   { "font.initial_1",                           "RocksFontSmall.png"    },
7337   { "font.initial_1.x",                         "0"                     },
7338   { "font.initial_1.y",                         "0"                     },
7339   { "font.initial_1.width",                     "14"                    },
7340   { "font.initial_1.height",                    "14"                    },
7341   { "font.initial_2",                           "RocksFontSmall.png"    },
7342   { "font.initial_2.x",                         "0"                     },
7343   { "font.initial_2.y",                         "70"                    },
7344   { "font.initial_2.width",                     "14"                    },
7345   { "font.initial_2.height",                    "14"                    },
7346   { "font.initial_3",                           "RocksFontSmall.png"    },
7347   { "font.initial_3.x",                         "0"                     },
7348   { "font.initial_3.y",                         "140"                   },
7349   { "font.initial_3.width",                     "14"                    },
7350   { "font.initial_3.height",                    "14"                    },
7351   { "font.initial_4",                           "RocksFontSmall.png"    },
7352   { "font.initial_4.x",                         "0"                     },
7353   { "font.initial_4.y",                         "210"                   },
7354   { "font.initial_4.width",                     "14"                    },
7355   { "font.initial_4.height",                    "14"                    },
7356
7357   { "font.title_1",                             "RocksFontBig.png"      },
7358   { "font.title_1.x",                           "0"                     },
7359   { "font.title_1.y",                           "480"                   },
7360   { "font.title_1.width",                       "32"                    },
7361   { "font.title_1.height",                      "32"                    },
7362   { "font.title_2",                             "RocksFontSmall.png"    },
7363   { "font.title_2.x",                           "0"                     },
7364   { "font.title_2.y",                           "0"                     },
7365   { "font.title_2.width",                       "14"                    },
7366   { "font.title_2.height",                      "14"                    },
7367   { "font.title_2.SETUP",                       UNDEFINED_FILENAME      },
7368   { "font.title_2.SETUP.clone_from",            "font.text_2"           },
7369
7370   { "font.menu_1",                              "RocksFontBig.png"      },
7371   { "font.menu_1.x",                            "0"                     },
7372   { "font.menu_1.y",                            "320"                   },
7373   { "font.menu_1.width",                        "32"                    },
7374   { "font.menu_1.height",                       "32"                    },
7375   { "font.menu_1.active",                       "RocksFontBig.png"      },
7376   { "font.menu_1.active.x",                     "0"                     },
7377   { "font.menu_1.active.y",                     "480"                   },
7378   { "font.menu_1.active.width",                 "32"                    },
7379   { "font.menu_1.active.height",                "32"                    },
7380   { "font.menu_2",                              "RocksFontMedium.png"   },
7381   { "font.menu_2.x",                            "0"                     },
7382   { "font.menu_2.y",                            "320"                   },
7383   { "font.menu_2.width",                        "16"                    },
7384   { "font.menu_2.height",                       "32"                    },
7385   { "font.menu_2.active",                       "RocksFontMedium.png"   },
7386   { "font.menu_2.active.x",                     "0"                     },
7387   { "font.menu_2.active.y",                     "480"                   },
7388   { "font.menu_2.active.width",                 "16"                    },
7389   { "font.menu_2.active.height",                "32"                    },
7390
7391   { "font.text_1",                              "RocksFontSmall.png"    },
7392   { "font.text_1.x",                            "0"                     },
7393   { "font.text_1.y",                            "140"                   },
7394   { "font.text_1.width",                        "14"                    },
7395   { "font.text_1.height",                       "14"                    },
7396   { "font.text_1.MAIN",                         UNDEFINED_FILENAME      },
7397   { "font.text_1.MAIN.clone_from",              "font.text_1.PREVIEW"   },
7398   { "font.text_1.LEVELS",                       "RocksFontMedium.png"   },
7399   { "font.text_1.LEVELS.x",                     "0"                     },
7400   { "font.text_1.LEVELS.y",                     "0"                     },
7401   { "font.text_1.LEVELS.width",                 "16"                    },
7402   { "font.text_1.LEVELS.height",                "32"                    },
7403   { "font.text_1.LEVELNR",                      UNDEFINED_FILENAME      },
7404   { "font.text_1.LEVELNR.clone_from",           "font.text_1.LEVELS"    },
7405   { "font.text_1.SETUP",                        UNDEFINED_FILENAME      },
7406   { "font.text_1.SETUP.clone_from",             "font.text_1.LEVELS"    },
7407   { "font.text_1.NAMES",                        UNDEFINED_FILENAME      },
7408   { "font.text_1.NAMES.clone_from",             "font.input_1.MAIN"     },
7409   { "font.text_1.PREVIEW",                      "RocksFontEM.png"       },
7410   { "font.text_1.PREVIEW.x",                    "0"                     },
7411   { "font.text_1.PREVIEW.y",                    "160"                   },
7412   { "font.text_1.PREVIEW.width",                "16"                    },
7413   { "font.text_1.PREVIEW.height",               "16"                    },
7414   { "font.text_1.SCORES",                       "RocksFontMedium.png"   },
7415   { "font.text_1.SCORES.x",                     "0"                     },
7416   { "font.text_1.SCORES.y",                     "480"                   },
7417   { "font.text_1.SCORES.width",                 "16"                    },
7418   { "font.text_1.SCORES.height",                "32"                    },
7419   { "font.text_1.active.SCORES",                "RocksFontMedium.png"   },
7420   { "font.text_1.active.SCORES.x",              "0"                     },
7421   { "font.text_1.active.SCORES.y",              "0"                     },
7422   { "font.text_1.active.SCORES.width",          "16"                    },
7423   { "font.text_1.active.SCORES.height",         "32"                    },
7424   { "font.text_1.PANEL",                        UNDEFINED_FILENAME      },
7425   { "font.text_1.PANEL.clone_from",             "font.level_number"     },
7426   { "font.text_1.DOOR",                         UNDEFINED_FILENAME      },
7427   { "font.text_1.DOOR.clone_from",              "font.level_number"     },
7428   { "font.text_2",                              "RocksFontSmall.png"    },
7429   { "font.text_2.x",                            "0"                     },
7430   { "font.text_2.y",                            "210"                   },
7431   { "font.text_2.width",                        "14"                    },
7432   { "font.text_2.height",                       "14"                    },
7433   { "font.text_2.MAIN",                         UNDEFINED_FILENAME      },
7434   { "font.text_2.MAIN.clone_from",              "font.text_2.PREVIEW"   },
7435   { "font.text_2.LEVELS",                       "RocksFontMedium.png"   },
7436   { "font.text_2.LEVELS.x",                     "0"                     },
7437   { "font.text_2.LEVELS.y",                     "160"                   },
7438   { "font.text_2.LEVELS.width",                 "16"                    },
7439   { "font.text_2.LEVELS.height",                "32"                    },
7440   { "font.text_2.LEVELNR",                      UNDEFINED_FILENAME      },
7441   { "font.text_2.LEVELNR.clone_from",           "font.text_2.LEVELS"    },
7442   { "font.text_2.SETUP",                        UNDEFINED_FILENAME      },
7443   { "font.text_2.SETUP.clone_from",             "font.text_2.LEVELS"    },
7444   { "font.text_2.NAMES",                        UNDEFINED_FILENAME      },
7445   { "font.text_2.NAMES.clone_from",             "font.option_off"       },
7446   { "font.text_2.PREVIEW",                      "RocksFontEM.png"       },
7447   { "font.text_2.PREVIEW.x",                    "0"                     },
7448   { "font.text_2.PREVIEW.y",                    "160"                   },
7449   { "font.text_2.PREVIEW.width",                "16"                    },
7450   { "font.text_2.PREVIEW.height",               "16"                    },
7451   { "font.text_2.SCORES",                       "RocksFontBig.png"      },
7452   { "font.text_2.SCORES.x",                     "0"                     },
7453   { "font.text_2.SCORES.y",                     "320"                   },
7454   { "font.text_2.SCORES.width",                 "32"                    },
7455   { "font.text_2.SCORES.height",                "32"                    },
7456   { "font.text_2.active.SCORES",                "RocksFontBig.png"      },
7457   { "font.text_2.active.SCORES.x",              "0"                     },
7458   { "font.text_2.active.SCORES.y",              "0"                     },
7459   { "font.text_2.active.SCORES.width",          "32"                    },
7460   { "font.text_2.active.SCORES.height",         "32"                    },
7461   { "font.text_3",                              "RocksFontSmall.png"    },
7462   { "font.text_3.x",                            "0"                     },
7463   { "font.text_3.y",                            "0"                     },
7464   { "font.text_3.width",                        "14"                    },
7465   { "font.text_3.height",                       "14"                    },
7466   { "font.text_3.LEVELS",                       "RocksFontMedium.png"   },
7467   { "font.text_3.LEVELS.x",                     "0"                     },
7468   { "font.text_3.LEVELS.y",                     "320"                   },
7469   { "font.text_3.LEVELS.width",                 "16"                    },
7470   { "font.text_3.LEVELS.height",                "32"                    },
7471   { "font.text_3.LEVELNR",                      UNDEFINED_FILENAME      },
7472   { "font.text_3.LEVELNR.clone_from",           "font.text_3.LEVELS"    },
7473   { "font.text_3.SETUP",                        UNDEFINED_FILENAME      },
7474   { "font.text_3.SETUP.clone_from",             "font.text_3.LEVELS"    },
7475   { "font.text_3.NAMES",                        UNDEFINED_FILENAME      },
7476   { "font.text_3.NAMES.clone_from",             "font.menu_1"           },
7477   { "font.text_3.PREVIEW",                      "RocksFontEM.png"       },
7478   { "font.text_3.PREVIEW.x",                    "0"                     },
7479   { "font.text_3.PREVIEW.y",                    "160"                   },
7480   { "font.text_3.PREVIEW.width",                "16"                    },
7481   { "font.text_3.PREVIEW.height",               "16"                    },
7482   { "font.text_3.SCORES",                       "RocksFontMedium.png"   },
7483   { "font.text_3.SCORES.x",                     "0"                     },
7484   { "font.text_3.SCORES.y",                     "480"                   },
7485   { "font.text_3.SCORES.width",                 "16"                    },
7486   { "font.text_3.SCORES.height",                "32"                    },
7487   { "font.text_3.active.SCORES",                "RocksFontMedium.png"   },
7488   { "font.text_3.active.SCORES.x",              "0"                     },
7489   { "font.text_3.active.SCORES.y",              "0"                     },
7490   { "font.text_3.active.SCORES.width",          "16"                    },
7491   { "font.text_3.active.SCORES.height",         "32"                    },
7492   { "font.text_4",                              "RocksFontSmall.png"    },
7493   { "font.text_4.x",                            "0"                     },
7494   { "font.text_4.y",                            "70"                    },
7495   { "font.text_4.width",                        "14"                    },
7496   { "font.text_4.height",                       "14"                    },
7497   { "font.text_4.MAIN",                         UNDEFINED_FILENAME      },
7498   { "font.text_4.MAIN.clone_from",              "font.text_3.PREVIEW"   },
7499   { "font.text_4.LEVELS",                       "RocksFontMedium.png"   },
7500   { "font.text_4.LEVELS.x",                     "0"                     },
7501   { "font.text_4.LEVELS.y",                     "480"                   },
7502   { "font.text_4.LEVELS.width",                 "16"                    },
7503   { "font.text_4.LEVELS.height",                "32"                    },
7504   { "font.text_4.LEVELNR",                      UNDEFINED_FILENAME      },
7505   { "font.text_4.LEVELNR.clone_from",           "font.text_4.LEVELS"    },
7506   { "font.text_4.SETUP",                        UNDEFINED_FILENAME      },
7507   { "font.text_4.SETUP.clone_from",             "font.text_4.LEVELS"    },
7508   { "font.text_4.NAMES",                        UNDEFINED_FILENAME      },
7509   { "font.text_4.NAMES.clone_from",             "font.menu_1.active"    },
7510   { "font.text_4.SCORES",                       "RocksFontMedium.png"   },
7511   { "font.text_4.SCORES.x",                     "0"                     },
7512   { "font.text_4.SCORES.y",                     "480"                   },
7513   { "font.text_4.SCORES.width",                 "16"                    },
7514   { "font.text_4.SCORES.height",                "32"                    },
7515   { "font.text_4.active.SCORES",                "RocksFontMedium.png"   },
7516   { "font.text_4.active.SCORES.x",              "0"                     },
7517   { "font.text_4.active.SCORES.y",              "0"                     },
7518   { "font.text_4.active.SCORES.width",          "16"                    },
7519   { "font.text_4.active.SCORES.height",         "32"                    },
7520
7521   { "font.envelope_1",                          "RocksFontEM.png"       },
7522   { "font.envelope_1.x",                        "0"                     },
7523   { "font.envelope_1.y",                        "160"                   },
7524   { "font.envelope_1.width",                    "16"                    },
7525   { "font.envelope_1.height",                   "16"                    },
7526   { "font.envelope_2",                          "RocksFontEM.png"       },
7527   { "font.envelope_2.x",                        "0"                     },
7528   { "font.envelope_2.y",                        "160"                   },
7529   { "font.envelope_2.width",                    "16"                    },
7530   { "font.envelope_2.height",                   "16"                    },
7531   { "font.envelope_3",                          "RocksFontEM.png"       },
7532   { "font.envelope_3.x",                        "0"                     },
7533   { "font.envelope_3.y",                        "160"                   },
7534   { "font.envelope_3.width",                    "16"                    },
7535   { "font.envelope_3.height",                   "16"                    },
7536   { "font.envelope_4",                          "RocksFontEM.png"       },
7537   { "font.envelope_4.x",                        "0"                     },
7538   { "font.envelope_4.y",                        "160"                   },
7539   { "font.envelope_4.width",                    "16"                    },
7540   { "font.envelope_4.height",                   "16"                    },
7541
7542   { "font.request",                             "RocksFontSmall.png"    },
7543   { "font.request.x",                           "0"                     },
7544   { "font.request.y",                           "210"                   },
7545   { "font.request.width",                       "14"                    },
7546   { "font.request.height",                      "14"                    },
7547   { "font.request_narrow",                      UNDEFINED_FILENAME      },
7548   { "font.request_narrow.clone_from",           "font.text_1.DOOR"      },
7549
7550   { "font.input_1",                             "RocksFontSmall.png"    },
7551   { "font.input_1.x",                           "0"                     },
7552   { "font.input_1.y",                           "210"                   },
7553   { "font.input_1.width",                       "14"                    },
7554   { "font.input_1.height",                      "14"                    },
7555   { "font.input_1.MAIN",                        "RocksFontBig.png"      },
7556   { "font.input_1.MAIN.x",                      "0"                     },
7557   { "font.input_1.MAIN.y",                      "0"                     },
7558   { "font.input_1.MAIN.width",                  "32"                    },
7559   { "font.input_1.MAIN.height",                 "32"                    },
7560   { "font.input_1.NAMES",                       UNDEFINED_FILENAME      },
7561   { "font.input_1.NAMES.clone_from",            "font.input_1.MAIN"     },
7562   { "font.input_1.active",                      "RocksFontSmall.png"    },
7563   { "font.input_1.active.x",                    "0"                     },
7564   { "font.input_1.active.y",                    "210"                   },
7565   { "font.input_1.active.width",                "14"                    },
7566   { "font.input_1.active.height",               "14"                    },
7567   { "font.input_1.active.MAIN",                 "RocksFontBig.png"      },
7568   { "font.input_1.active.MAIN.x",               "0"                     },
7569   { "font.input_1.active.MAIN.y",               "480"                   },
7570   { "font.input_1.active.MAIN.width",           "32"                    },
7571   { "font.input_1.active.MAIN.height",          "32"                    },
7572   { "font.input_1.active.NAMES",                UNDEFINED_FILENAME      },
7573   { "font.input_1.active.NAMES.clone_from",     "font.input_1.active.MAIN" },
7574   { "font.input_1.active.SETUP",                "RocksFontBig.png"      },
7575   { "font.input_1.active.SETUP.x",              "0"                     },
7576   { "font.input_1.active.SETUP.y",              "0"                     },
7577   { "font.input_1.active.SETUP.width",          "32"                    },
7578   { "font.input_1.active.SETUP.height",         "32"                    },
7579   { "font.input_2",                             "RocksFontSmall.png"    },
7580   { "font.input_2.x",                           "0"                     },
7581   { "font.input_2.y",                           "210"                   },
7582   { "font.input_2.width",                       "14"                    },
7583   { "font.input_2.height",                      "14"                    },
7584   { "font.input_2.active",                      "RocksFontSmall.png"    },
7585   { "font.input_2.active.x",                    "0"                     },
7586   { "font.input_2.active.y",                    "210"                   },
7587   { "font.input_2.active.width",                "14"                    },
7588   { "font.input_2.active.height",               "14"                    },
7589
7590   { "font.option_off",                          "RocksFontBig.png"      },
7591   { "font.option_off.x",                        "0"                     },
7592   { "font.option_off.y",                        "160"                   },
7593   { "font.option_off.width",                    "32"                    },
7594   { "font.option_off.height",                   "32"                    },
7595   { "font.option_off_narrow",                   UNDEFINED_FILENAME      },
7596   { "font.option_off_narrow.clone_from",        "font.text_2.LEVELS"    },
7597   { "font.option_on",                           "RocksFontBig.png"      },
7598   { "font.option_on.x",                         "0"                     },
7599   { "font.option_on.y",                         "480"                   },
7600   { "font.option_on.width",                     "32"                    },
7601   { "font.option_on.height",                    "32"                    },
7602   { "font.option_on_narrow",                    UNDEFINED_FILENAME      },
7603   { "font.option_on_narrow.clone_from",         "font.text_4.LEVELS"    },
7604
7605   { "font.value_1",                             "RocksFontBig.png"      },
7606   { "font.value_1.x",                           "0"                     },
7607   { "font.value_1.y",                           "480"                   },
7608   { "font.value_1.width",                       "32"                    },
7609   { "font.value_1.height",                      "32"                    },
7610   { "font.value_2",                             "RocksFontMedium.png"   },
7611   { "font.value_2.x",                           "0"                     },
7612   { "font.value_2.y",                           "480"                   },
7613   { "font.value_2.width",                       "16"                    },
7614   { "font.value_2.height",                      "32"                    },
7615   { "font.value_old",                           "RocksFontBig.png"      },
7616   { "font.value_old.x",                         "0"                     },
7617   { "font.value_old.y",                         "160"                   },
7618   { "font.value_old.width",                     "32"                    },
7619   { "font.value_old.height",                    "32"                    },
7620   { "font.value_old_narrow",                    UNDEFINED_FILENAME      },
7621   { "font.value_old_narrow.clone_from",         "font.text_2.LEVELS"    },
7622   { "font.value_narrow",                        UNDEFINED_FILENAME      },
7623   { "font.value_narrow.clone_from",             "font.text_4.LEVELS"    },
7624
7625   { "font.level_number",                        "RocksFontSmall.png"    },
7626   { "font.level_number.x",                      "0"                     },
7627   { "font.level_number.y",                      "350"                   },
7628   { "font.level_number.width",                  "10"                    },
7629   { "font.level_number.height",                 "14"                    },
7630   { "font.level_number.active",                 UNDEFINED_FILENAME      },
7631   { "font.level_number.active.clone_from",      "font.level_number"     },
7632
7633   { "font.tape_recorder",                       "RocksFontSmall.png"    },
7634   { "font.tape_recorder.x",                     "0"                     },
7635   { "font.tape_recorder.y",                     "280"                   },
7636   { "font.tape_recorder.width",                 "11"                    },
7637   { "font.tape_recorder.height",                "14"                    },
7638
7639   { "font.game_info",                           "RocksFontEM.png"       },
7640   { "font.game_info.xpos",                      "0"                     },
7641   { "font.game_info.ypos",                      "0"                     },
7642   { "font.game_info.delay",                     "10"                    },
7643
7644   { "font.info.elements",                       UNDEFINED_FILENAME      },
7645   { "font.info.elements.clone_from",            "font.level_number"     },
7646
7647   { "font.info.levelset",                       UNDEFINED_FILENAME      },
7648   { "font.info.levelset.clone_from",            "font.level_number"     },
7649
7650   { "font.main.network_players",                UNDEFINED_FILENAME      },
7651   { "font.main.network_players.clone_from",     "font.level_number"     },
7652
7653   { "editor.element_border",                    "RocksMore.png"         },
7654   { "editor.element_border.xpos",               "0"                     },
7655   { "editor.element_border.ypos",               "2"                     },
7656   { "editor.element_border.border_size",        "8"                     },
7657
7658   { "editor.element_border_input",              "RocksMore.png"         },
7659   { "editor.element_border_input.xpos",         "10"                    },
7660   { "editor.element_border_input.ypos",         "7"                     },
7661   { "editor.element_border_input.border_size",  "4"                     },
7662
7663   { "editor.counter.down",                      "RocksDoor.png"         },
7664   { "editor.counter.down.x",                    "302"                   },
7665   { "editor.counter.down.y",                    "60"                    },
7666   { "editor.counter.down.width",                "20"                    },
7667   { "editor.counter.down.height",               "20"                    },
7668   { "editor.counter.down.pressed_xoffset",      "-100"                  },
7669
7670   { "editor.counter.up",                        "RocksDoor.png"         },
7671   { "editor.counter.up.x",                      "378"                   },
7672   { "editor.counter.up.y",                      "60"                    },
7673   { "editor.counter.up.width",                  "20"                    },
7674   { "editor.counter.up.height",                 "20"                    },
7675   { "editor.counter.up.pressed_xoffset",        "-100"                  },
7676
7677   { "editor.counter.input",                     "RocksDoor.png"         },
7678   { "editor.counter.input.x",                   "324"                   },
7679   { "editor.counter.input.y",                   "60"                    },
7680   { "editor.counter.input.width",               "52"                    },
7681   { "editor.counter.input.height",              "20"                    },
7682   { "editor.counter.input.active_xoffset",      "-100"                  },
7683   { "editor.counter.input.border_size",         "3"                     },
7684
7685   { "editor.selectbox.input",                   "RocksDoor.png"         },
7686   { "editor.selectbox.input.x",                 "324"                   },
7687   { "editor.selectbox.input.y",                 "82"                    },
7688   { "editor.selectbox.input.width",             "52"                    },
7689   { "editor.selectbox.input.height",            "20"                    },
7690   { "editor.selectbox.input.active_xoffset",    "-100"                  },
7691   { "editor.selectbox.input.border_size",       "3"                     },
7692
7693   { "editor.selectbox.button",                  UNDEFINED_FILENAME      },
7694   { "editor.selectbox.button.width",            "14"                    },
7695
7696   { "editor.checkbox",                          "RocksDoor.png"         },
7697   { "editor.checkbox.x",                        "302"                   },
7698   { "editor.checkbox.y",                        "82"                    },
7699   { "editor.checkbox.width",                    "20"                    },
7700   { "editor.checkbox.height",                   "20"                    },
7701   { "editor.checkbox.pressed_xoffset",          "-100"                  },
7702   { "editor.checkbox.active_xoffset",           "76"                    },
7703
7704   { "editor.radiobutton",                       "RocksDoor.png"         },
7705   { "editor.radiobutton.x",                     "302"                   },
7706   { "editor.radiobutton.y",                     "104"                   },
7707   { "editor.radiobutton.width",                 "20"                    },
7708   { "editor.radiobutton.height",                "20"                    },
7709   { "editor.radiobutton.pressed_xoffset",       "-100"                  },
7710   { "editor.radiobutton.active_xoffset",        "76"                    },
7711
7712   { "editor.stickybutton",                      "RocksDoor.png"         },
7713   { "editor.stickybutton.x",                    "302"                   },
7714   { "editor.stickybutton.y",                    "126"                   },
7715   { "editor.stickybutton.width",                "20"                    },
7716   { "editor.stickybutton.height",               "20"                    },
7717   { "editor.stickybutton.pressed_xoffset",      "-100"                  },
7718   { "editor.stickybutton.active_xoffset",       "76"                    },
7719
7720   { "editor.tabbutton",                         "RocksDoor.png"         },
7721   { "editor.tabbutton.x",                       "324"                   },
7722   { "editor.tabbutton.y",                       "104"                   },
7723   { "editor.tabbutton.width",                   "52"                    },
7724   { "editor.tabbutton.height",                  "20"                    },
7725   { "editor.tabbutton.pressed_xoffset",         "-100"                  },
7726   { "editor.tabbutton.active_yoffset",          "22"                    },
7727   { "editor.tabbutton.border_size",             "3"                     },
7728   { "editor.tabbutton.draw_xoffset",            "2"                     },
7729
7730   { "editor.textbutton",                        "RocksDoor.png"         },
7731   { "editor.textbutton.x",                      "324"                   },
7732   { "editor.textbutton.y",                      "148"                   },
7733   { "editor.textbutton.width",                  "52"                    },
7734   { "editor.textbutton.height",                 "20"                    },
7735   { "editor.textbutton.pressed_xoffset",        "-100"                  },
7736   { "editor.textbutton.border_size",            "3"                     },
7737   { "editor.textbutton.draw_xoffset",           "2"                     },
7738
7739   { "editor.input.text",                        "RocksDoor.png"         },
7740   { "editor.input.text.x",                      "324"                   },
7741   { "editor.input.text.y",                      "60"                    },
7742   { "editor.input.text.width",                  "52"                    },
7743   { "editor.input.text.height",                 "20"                    },
7744   { "editor.input.text.active_xoffset",         "-100"                  },
7745   { "editor.input.text.border_size",            "3"                     },
7746
7747   { "editor.input.textarea",                    "RocksDoor.png"         },
7748   { "editor.input.textarea.x",                  "324"                   },
7749   { "editor.input.textarea.y",                  "60"                    },
7750   { "editor.input.textarea.width",              "52"                    },
7751   { "editor.input.textarea.height",             "20"                    },
7752   { "editor.input.textarea.active_xoffset",     "-100"                  },
7753   { "editor.input.textarea.border_size",        "3"                     },
7754
7755   { "editor.cascade_list",                      "RocksMore.png"         },
7756   { "editor.cascade_list.xpos",                 "9"                     },
7757   { "editor.cascade_list.ypos",                 "8"                     },
7758   { "editor.cascade_list.frames",               "1"                     },
7759   { "editor.cascade_list.active",               "RocksMore.png"         },
7760   { "editor.cascade_list.active.xpos",          "10"                    },
7761   { "editor.cascade_list.active.ypos",          "8"                     },
7762   { "editor.cascade_list.active.frames",        "1"                     },
7763
7764   { "editor.palette.button",                    "RocksDoor.png"         },
7765   { "editor.palette.button.x",                  "525"                   },
7766   { "editor.palette.button.y",                  "30"                    },
7767   { "editor.palette.button.width",              "20"                    },
7768   { "editor.palette.button.height",             "20"                    },
7769   { "editor.palette.button.pressed_xoffset",    "-20"                   },
7770
7771   { "editor.palette.scroll_up",                 "RocksDoor.png"         },
7772   { "editor.palette.scroll_up.x",               "750"                   },
7773   { "editor.palette.scroll_up.y",               "0"                     },
7774   { "editor.palette.scroll_up.width",           "10"                    },
7775   { "editor.palette.scroll_up.height",          "10"                    },
7776   { "editor.palette.scroll_up.pressed_xoffset", "-10"                   },
7777
7778   { "editor.palette.scroll_down",               "RocksDoor.png"         },
7779   { "editor.palette.scroll_down.x",             "750"                   },
7780   { "editor.palette.scroll_down.y",             "10"                    },
7781   { "editor.palette.scroll_down.width",         "10"                    },
7782   { "editor.palette.scroll_down.height",        "10"                    },
7783   { "editor.palette.scroll_down.pressed_xoffset", "-10"                 },
7784
7785   { "editor.palette.scrollbar",                 "RocksDoor.png"         },
7786   { "editor.palette.scrollbar.x",               "750"                   },
7787   { "editor.palette.scrollbar.y",               "20"                    },
7788   { "editor.palette.scrollbar.width",           "10"                    },
7789   { "editor.palette.scrollbar.height",          "10"                    },
7790   { "editor.palette.scrollbar.pressed_xoffset", "-10"                   },
7791   { "editor.palette.scrollbar.border_size",     "3"                     },
7792
7793   { "editor.playfield.scroll_up",               "RocksDoor.png"         },
7794   { "editor.playfield.scroll_up.x",             "724"                   },
7795   { "editor.playfield.scroll_up.y",             "0"                     },
7796   { "editor.playfield.scroll_up.width",         "16"                    },
7797   { "editor.playfield.scroll_up.height",        "16"                    },
7798   { "editor.playfield.scroll_up.pressed_xoffset", "-16"                 },
7799
7800   { "editor.playfield.scroll_down",             "RocksDoor.png"         },
7801   { "editor.playfield.scroll_down.x",           "724"                   },
7802   { "editor.playfield.scroll_down.y",           "16"                    },
7803   { "editor.playfield.scroll_down.width",       "16"                    },
7804   { "editor.playfield.scroll_down.height",      "16"                    },
7805   { "editor.playfield.scroll_down.pressed_xoffset", "-16"               },
7806
7807   { "editor.playfield.scroll_left",             "RocksDoor.png"         },
7808   { "editor.playfield.scroll_left.x",           "724"                   },
7809   { "editor.playfield.scroll_left.y",           "32"                    },
7810   { "editor.playfield.scroll_left.width",       "16"                    },
7811   { "editor.playfield.scroll_left.height",      "16"                    },
7812   { "editor.playfield.scroll_left.pressed_xoffset", "-16"               },
7813
7814   { "editor.playfield.scroll_right",            "RocksDoor.png"         },
7815   { "editor.playfield.scroll_right.x",          "724"                   },
7816   { "editor.playfield.scroll_right.y",          "48"                    },
7817   { "editor.playfield.scroll_right.width",      "16"                    },
7818   { "editor.playfield.scroll_right.height",     "16"                    },
7819   { "editor.playfield.scroll_right.pressed_xoffset", "-16"              },
7820
7821   { "editor.playfield.scrollbar",               "RocksDoor.png"         },
7822   { "editor.playfield.scrollbar.x",             "724"                   },
7823   { "editor.playfield.scrollbar.y",             "64"                    },
7824   { "editor.playfield.scrollbar.width",         "16"                    },
7825   { "editor.playfield.scrollbar.height",        "16"                    },
7826   { "editor.playfield.scrollbar.pressed_xoffset", "-16"                 },
7827   { "editor.playfield.scrollbar.border_size",   "3"                     },
7828
7829   { "gfx.editor.button.prev_level",             "RocksDoor.png"         },
7830   { "gfx.editor.button.prev_level.x",           "724"                   },
7831   { "gfx.editor.button.prev_level.y",           "32"                    },
7832   { "gfx.editor.button.prev_level.width",       "16"                    },
7833   { "gfx.editor.button.prev_level.height",      "16"                    },
7834   { "gfx.editor.button.prev_level.pressed_xoffset", "-16"               },
7835
7836   { "gfx.editor.button.next_level",             "RocksDoor.png"         },
7837   { "gfx.editor.button.next_level.x",           "724"                   },
7838   { "gfx.editor.button.next_level.y",           "48"                    },
7839   { "gfx.editor.button.next_level.width",       "16"                    },
7840   { "gfx.editor.button.next_level.height",      "16"                    },
7841   { "gfx.editor.button.next_level.pressed_xoffset", "-16"               },
7842
7843   { "gfx.editor.button.properties",             "RocksDoor2.png"        },
7844   { "gfx.editor.button.properties.x",           "105"                   },
7845   { "gfx.editor.button.properties.y",           "0"                     },
7846   { "gfx.editor.button.properties.width",       "90"                    },
7847   { "gfx.editor.button.properties.height",      "20"                    },
7848   { "gfx.editor.button.properties.pressed_xoffset", "-100"              },
7849
7850   { "gfx.editor.button.element_left",           "RocksDoor2.png"        },
7851   { "gfx.editor.button.element_left.x",         "368"                   },
7852   { "gfx.editor.button.element_left.y",         "48"                    },
7853   { "gfx.editor.button.element_left.width",     "16"                    },
7854   { "gfx.editor.button.element_left.height",    "16"                    },
7855   { "gfx.editor.button.element_left.pressed_xoffset", "0"               },
7856
7857   { "gfx.editor.button.element_middle",         "RocksDoor2.png"        },
7858   { "gfx.editor.button.element_middle.x",       "368"                   },
7859   { "gfx.editor.button.element_middle.y",       "48"                    },
7860   { "gfx.editor.button.element_middle.width",   "16"                    },
7861   { "gfx.editor.button.element_middle.height",  "16"                    },
7862   { "gfx.editor.button.element_middle.pressed_xoffset", "0"             },
7863
7864   { "gfx.editor.button.element_right",          "RocksDoor2.png"        },
7865   { "gfx.editor.button.element_right.x",        "368"                   },
7866   { "gfx.editor.button.element_right.y",        "48"                    },
7867   { "gfx.editor.button.element_right.width",    "16"                    },
7868   { "gfx.editor.button.element_right.height",   "16"                    },
7869   { "gfx.editor.button.element_right.pressed_xoffset", "0"              },
7870
7871   { "gfx.editor.button.palette",                UNDEFINED_FILENAME      },
7872
7873   { "editor.no_toolbox_button",                 "RocksDoor.png"         },
7874   { "editor.no_toolbox_button.x",               "506"                   },
7875   { "editor.no_toolbox_button.y",               "286"                   },
7876   { "editor.no_toolbox_button.width",           "22"                    },
7877   { "editor.no_toolbox_button.height",          "22"                    },
7878
7879   { "gfx.editor.button.draw_single",            "RocksDoor.png"         },
7880   { "gfx.editor.button.draw_single.x",          "706"                   },
7881   { "gfx.editor.button.draw_single.y",          "242"                   },
7882   { "gfx.editor.button.draw_single.width",      "22"                    },
7883   { "gfx.editor.button.draw_single.height",     "22"                    },
7884   { "gfx.editor.button.draw_single.pressed_xoffset", "-100"             },
7885   { "gfx.editor.button.draw_single.active_yoffset",  "-94"              },
7886
7887   { "gfx.editor.button.draw_connected",         "RocksDoor.png"         },
7888   { "gfx.editor.button.draw_connected.x",       "728"                   },
7889   { "gfx.editor.button.draw_connected.y",       "242"                   },
7890   { "gfx.editor.button.draw_connected.width",   "22"                    },
7891   { "gfx.editor.button.draw_connected.height",  "22"                    },
7892   { "gfx.editor.button.draw_connected.pressed_xoffset", "-100"          },
7893   { "gfx.editor.button.draw_connected.active_yoffset",  "-94"           },
7894
7895   { "gfx.editor.button.draw_line",              "RocksDoor.png"         },
7896   { "gfx.editor.button.draw_line.x",            "750"                   },
7897   { "gfx.editor.button.draw_line.y",            "242"                   },
7898   { "gfx.editor.button.draw_line.width",        "22"                    },
7899   { "gfx.editor.button.draw_line.height",       "22"                    },
7900   { "gfx.editor.button.draw_line.pressed_xoffset", "-100"               },
7901   { "gfx.editor.button.draw_line.active_yoffset",  "-94"                },
7902
7903   { "gfx.editor.button.draw_arc",               "RocksDoor.png"         },
7904   { "gfx.editor.button.draw_arc.x",             "772"                   },
7905   { "gfx.editor.button.draw_arc.y",             "242"                   },
7906   { "gfx.editor.button.draw_arc.width",         "22"                    },
7907   { "gfx.editor.button.draw_arc.height",        "22"                    },
7908   { "gfx.editor.button.draw_arc.pressed_xoffset", "-100"                },
7909   { "gfx.editor.button.draw_arc.active_yoffset",  "-94"                 },
7910
7911   { "gfx.editor.button.draw_rectangle",         "RocksDoor.png"         },
7912   { "gfx.editor.button.draw_rectangle.x",       "706"                   },
7913   { "gfx.editor.button.draw_rectangle.y",       "264"                   },
7914   { "gfx.editor.button.draw_rectangle.width",   "22"                    },
7915   { "gfx.editor.button.draw_rectangle.height",  "22"                    },
7916   { "gfx.editor.button.draw_rectangle.pressed_xoffset", "-100"          },
7917   { "gfx.editor.button.draw_rectangle.active_yoffset",  "-94"           },
7918
7919   { "gfx.editor.button.draw_filled_box",        "RocksDoor.png"         },
7920   { "gfx.editor.button.draw_filled_box.x",      "728"                   },
7921   { "gfx.editor.button.draw_filled_box.y",      "264"                   },
7922   { "gfx.editor.button.draw_filled_box.width",  "22"                    },
7923   { "gfx.editor.button.draw_filled_box.height", "22"                    },
7924   { "gfx.editor.button.draw_filled_box.pressed_xoffset", "-100"         },
7925   { "gfx.editor.button.draw_filled_box.active_yoffset",  "-94"          },
7926
7927   { "gfx.editor.button.rotate_up",              "RocksDoor.png"         },
7928   { "gfx.editor.button.rotate_up.x",            "750"                   },
7929   { "gfx.editor.button.rotate_up.y",            "264"                   },
7930   { "gfx.editor.button.rotate_up.width",        "22"                    },
7931   { "gfx.editor.button.rotate_up.height",       "22"                    },
7932   { "gfx.editor.button.rotate_up.pressed_xoffset", "-100"               },
7933   { "gfx.editor.button.rotate_up.active_yoffset",  "-94"                },
7934
7935   { "gfx.editor.button.draw_text",              "RocksDoor.png"         },
7936   { "gfx.editor.button.draw_text.x",            "772"                   },
7937   { "gfx.editor.button.draw_text.y",            "264"                   },
7938   { "gfx.editor.button.draw_text.width",        "22"                    },
7939   { "gfx.editor.button.draw_text.height",       "22"                    },
7940   { "gfx.editor.button.draw_text.pressed_xoffset", "-100"               },
7941   { "gfx.editor.button.draw_text.active_yoffset",  "-94"                },
7942
7943   { "gfx.editor.button.flood_fill",             "RocksDoor.png"         },
7944   { "gfx.editor.button.flood_fill.x",           "706"                   },
7945   { "gfx.editor.button.flood_fill.y",           "286"                   },
7946   { "gfx.editor.button.flood_fill.width",       "22"                    },
7947   { "gfx.editor.button.flood_fill.height",      "22"                    },
7948   { "gfx.editor.button.flood_fill.pressed_xoffset", "-100"              },
7949   { "gfx.editor.button.flood_fill.active_yoffset",  "-94"               },
7950
7951   { "gfx.editor.button.rotate_left",            "RocksDoor.png"         },
7952   { "gfx.editor.button.rotate_left.x",          "728"                   },
7953   { "gfx.editor.button.rotate_left.y",          "286"                   },
7954   { "gfx.editor.button.rotate_left.width",      "22"                    },
7955   { "gfx.editor.button.rotate_left.height",     "22"                    },
7956   { "gfx.editor.button.rotate_left.pressed_xoffset", "-100"             },
7957   { "gfx.editor.button.rotate_left.active_yoffset",  "-94"              },
7958
7959   { "gfx.editor.button.zoom_level",             "RocksDoor2.png"        },
7960   { "gfx.editor.button.zoom_level.x",           "350"                   },
7961   { "gfx.editor.button.zoom_level.y",           "22"                    },
7962   { "gfx.editor.button.zoom_level.width",       "22"                    },
7963   { "gfx.editor.button.zoom_level.height",      "22"                    },
7964   { "gfx.editor.button.zoom_level.pressed_xoffset", "-100"              },
7965   { "gfx.editor.button.zoom_level.active_yoffset",  "-22"               },
7966
7967   { "gfx.editor.button.rotate_right",           "RocksDoor.png"         },
7968   { "gfx.editor.button.rotate_right.x",         "772"                   },
7969   { "gfx.editor.button.rotate_right.y",         "286"                   },
7970   { "gfx.editor.button.rotate_right.width",     "22"                    },
7971   { "gfx.editor.button.rotate_right.height",    "22"                    },
7972   { "gfx.editor.button.rotate_right.pressed_xoffset", "-100"            },
7973   { "gfx.editor.button.rotate_right.active_yoffset",  "-94"             },
7974
7975   { "gfx.editor.button.draw_random",            "RocksDoor.png"         },
7976   { "gfx.editor.button.draw_random.x",          "706"                   },
7977   { "gfx.editor.button.draw_random.y",          "308"                   },
7978   { "gfx.editor.button.draw_random.width",      "22"                    },
7979   { "gfx.editor.button.draw_random.height",     "22"                    },
7980   { "gfx.editor.button.draw_random.pressed_xoffset", "-100"             },
7981   { "gfx.editor.button.draw_random.active_yoffset",  "-94"              },
7982
7983   { "gfx.editor.button.grab_brush",             "RocksDoor.png"         },
7984   { "gfx.editor.button.grab_brush.x",           "728"                   },
7985   { "gfx.editor.button.grab_brush.y",           "308"                   },
7986   { "gfx.editor.button.grab_brush.width",       "22"                    },
7987   { "gfx.editor.button.grab_brush.height",      "22"                    },
7988   { "gfx.editor.button.grab_brush.pressed_xoffset", "-100"              },
7989   { "gfx.editor.button.grab_brush.active_yoffset",  "-94"               },
7990
7991   { "gfx.editor.button.rotate_down",            "RocksDoor.png"         },
7992   { "gfx.editor.button.rotate_down.x",          "750"                   },
7993   { "gfx.editor.button.rotate_down.y",          "308"                   },
7994   { "gfx.editor.button.rotate_down.width",      "22"                    },
7995   { "gfx.editor.button.rotate_down.height",     "22"                    },
7996   { "gfx.editor.button.rotate_down.pressed_xoffset", "-100"             },
7997   { "gfx.editor.button.rotate_down.active_yoffset",  "-94"              },
7998
7999   { "gfx.editor.button.pick_element",           "RocksDoor.png"         },
8000   { "gfx.editor.button.pick_element.x",         "772"                   },
8001   { "gfx.editor.button.pick_element.y",         "308"                   },
8002   { "gfx.editor.button.pick_element.width",     "22"                    },
8003   { "gfx.editor.button.pick_element.height",    "22"                    },
8004   { "gfx.editor.button.pick_element.pressed_xoffset", "-100"            },
8005   { "gfx.editor.button.pick_element.active_yoffset",  "-94"             },
8006
8007   { "gfx.editor.button.ce_copy_from",           "RocksDoor.png"         },
8008   { "gfx.editor.button.ce_copy_from.x",         "528"                   },
8009   { "gfx.editor.button.ce_copy_from.y",         "330"                   },
8010   { "gfx.editor.button.ce_copy_from.width",     "22"                    },
8011   { "gfx.editor.button.ce_copy_from.height",    "22"                    },
8012   { "gfx.editor.button.ce_copy_from.pressed_xoffset", "-100"            },
8013   { "gfx.editor.button.ce_copy_from.active_yoffset",  "-22"             },
8014
8015   { "gfx.editor.button.ce_copy_to",             "RocksDoor.png"         },
8016   { "gfx.editor.button.ce_copy_to.x",           "550"                   },
8017   { "gfx.editor.button.ce_copy_to.y",           "330"                   },
8018   { "gfx.editor.button.ce_copy_to.width",       "22"                    },
8019   { "gfx.editor.button.ce_copy_to.height",      "22"                    },
8020   { "gfx.editor.button.ce_copy_to.pressed_xoffset", "-100"              },
8021   { "gfx.editor.button.ce_copy_to.active_yoffset",  "-22"               },
8022
8023   { "gfx.editor.button.ce_swap",                "RocksDoor.png"         },
8024   { "gfx.editor.button.ce_swap.x",              "572"                   },
8025   { "gfx.editor.button.ce_swap.y",              "330"                   },
8026   { "gfx.editor.button.ce_swap.width",          "22"                    },
8027   { "gfx.editor.button.ce_swap.height",         "22"                    },
8028   { "gfx.editor.button.ce_swap.pressed_xoffset", "-100"                 },
8029   { "gfx.editor.button.ce_swap.active_yoffset",  "-22"                  },
8030
8031   { "gfx.editor.button.ce_copy",                "RocksDoor.png"         },
8032   { "gfx.editor.button.ce_copy.x",              "550"                   },
8033   { "gfx.editor.button.ce_copy.y",              "286"                   },
8034   { "gfx.editor.button.ce_copy.width",          "22"                    },
8035   { "gfx.editor.button.ce_copy.height",         "22"                    },
8036   { "gfx.editor.button.ce_copy.pressed_xoffset", "-100"                 },
8037
8038   { "gfx.editor.button.ce_paste",               "RocksDoor.png"         },
8039   { "gfx.editor.button.ce_paste.x",             "572"                   },
8040   { "gfx.editor.button.ce_paste.y",             "286"                   },
8041   { "gfx.editor.button.ce_paste.width",         "22"                    },
8042   { "gfx.editor.button.ce_paste.height",        "22"                    },
8043   { "gfx.editor.button.ce_paste.pressed_xoffset", "-100"                },
8044
8045   { "gfx.editor.button.cp_copy",                "RocksDoor.png"         },
8046   { "gfx.editor.button.cp_copy.x",              "525"                   },
8047   { "gfx.editor.button.cp_copy.y",              "50"                    },
8048   { "gfx.editor.button.cp_copy.width",          "20"                    },
8049   { "gfx.editor.button.cp_copy.height",         "20"                    },
8050   { "gfx.editor.button.cp_copy.pressed_xoffset", "-20"                  },
8051
8052   { "gfx.editor.button.cp_paste",               "RocksDoor.png"         },
8053   { "gfx.editor.button.cp_paste.x",             "525"                   },
8054   { "gfx.editor.button.cp_paste.y",             "70"                    },
8055   { "gfx.editor.button.cp_paste.width",         "20"                    },
8056   { "gfx.editor.button.cp_paste.height",        "20"                    },
8057   { "gfx.editor.button.cp_paste.pressed_xoffset", "-20"                 },
8058
8059   { "gfx.editor.button.undo",                   "RocksDoor.png"         },
8060   { "gfx.editor.button.undo.x",                 "705"                   },
8061   { "gfx.editor.button.undo.y",                 "335"                   },
8062   { "gfx.editor.button.undo.width",             "30"                    },
8063   { "gfx.editor.button.undo.height",            "20"                    },
8064   { "gfx.editor.button.undo.pressed_xoffset",   "-100"                  },
8065
8066   { "gfx.editor.button.conf",                   "RocksDoor.png"         },
8067   { "gfx.editor.button.conf.x",                 "735"                   },
8068   { "gfx.editor.button.conf.y",                 "335"                   },
8069   { "gfx.editor.button.conf.width",             "30"                    },
8070   { "gfx.editor.button.conf.height",            "20"                    },
8071   { "gfx.editor.button.conf.pressed_xoffset",   "-100"                  },
8072
8073   { "gfx.editor.button.save",                   "RocksDoor.png"         },
8074   { "gfx.editor.button.save.x",                 "765"                   },
8075   { "gfx.editor.button.save.y",                 "335"                   },
8076   { "gfx.editor.button.save.width",             "30"                    },
8077   { "gfx.editor.button.save.height",            "20"                    },
8078   { "gfx.editor.button.save.pressed_xoffset",   "-100"                  },
8079
8080   { "gfx.editor.button.clear",                  "RocksDoor.png"         },
8081   { "gfx.editor.button.clear.x",                "705"                   },
8082   { "gfx.editor.button.clear.y",                "355"                   },
8083   { "gfx.editor.button.clear.width",            "30"                    },
8084   { "gfx.editor.button.clear.height",           "20"                    },
8085   { "gfx.editor.button.clear.pressed_xoffset",  "-100"                  },
8086
8087   { "gfx.editor.button.test",                   "RocksDoor.png"         },
8088   { "gfx.editor.button.test.x",                 "735"                   },
8089   { "gfx.editor.button.test.y",                 "355"                   },
8090   { "gfx.editor.button.test.width",             "30"                    },
8091   { "gfx.editor.button.test.height",            "20"                    },
8092   { "gfx.editor.button.test.pressed_xoffset",   "-100"                  },
8093
8094   { "gfx.editor.button.exit",                   "RocksDoor.png"         },
8095   { "gfx.editor.button.exit.x",                 "765"                   },
8096   { "gfx.editor.button.exit.y",                 "355"                   },
8097   { "gfx.editor.button.exit.width",             "30"                    },
8098   { "gfx.editor.button.exit.height",            "20"                    },
8099   { "gfx.editor.button.exit.pressed_xoffset",   "-100"                  },
8100
8101   { "gfx.editor.input.level_number",            "RocksDoor.png"         },
8102   { "gfx.editor.input.level_number.x",          "529"                   },
8103   { "gfx.editor.input.level_number.y",          "5"                     },
8104   { "gfx.editor.input.level_number.width",      "42"                    },
8105   { "gfx.editor.input.level_number.height",     "16"                    },
8106   { "gfx.editor.input.level_number.border_size","1"                     },
8107
8108   { "setup.input.text",                         "RocksSP.png"           },
8109   { "setup.input.text.x",                       "0"                     },
8110   { "setup.input.text.y",                       "0"                     },
8111   { "setup.input.text.width",                   "32"                    },
8112   { "setup.input.text.height",                  "32"                    },
8113   { "setup.input.text.active_xoffset",          "0"                     },
8114   { "setup.input.text.border_size",             "0"                     },
8115
8116   { "global.border",                            "RocksScreen.png"       },
8117   { "global.border.MAIN",                       UNDEFINED_FILENAME      },
8118   { "global.border.SCORES",                     UNDEFINED_FILENAME      },
8119   { "global.border.EDITOR",                     UNDEFINED_FILENAME      },
8120   { "global.border.PLAYING",                    UNDEFINED_FILENAME      },
8121
8122   { "global.door",                              "RocksDoor.png"         },
8123
8124   { "global.busy_initial",                      "RocksBusy.png"         },
8125   { "global.busy_initial.x",                    "0"                     },
8126   { "global.busy_initial.y",                    "0"                     },
8127   { "global.busy_initial.width",                "32"                    },
8128   { "global.busy_initial.height",               "32"                    },
8129   { "global.busy_initial.frames",               "28"                    },
8130   { "global.busy_initial.frames_per_line",      "7"                     },
8131   { "global.busy_initial.delay",                "2"                     },
8132   { "global.busy",                              "RocksBusy.png"         },
8133   { "global.busy.x",                            "0"                     },
8134   { "global.busy.y",                            "0"                     },
8135   { "global.busy.width",                        "32"                    },
8136   { "global.busy.height",                       "32"                    },
8137   { "global.busy.frames",                       "28"                    },
8138   { "global.busy.frames_per_line",              "7"                     },
8139   { "global.busy.delay",                        "2"                     },
8140   { "global.busy_playfield",                    "RocksBusy.png"         },
8141   { "global.busy_playfield.x",                  "0"                     },
8142   { "global.busy_playfield.y",                  "0"                     },
8143   { "global.busy_playfield.width",              "32"                    },
8144   { "global.busy_playfield.height",             "32"                    },
8145   { "global.busy_playfield.frames",             "28"                    },
8146   { "global.busy_playfield.frames_per_line",    "7"                     },
8147   { "global.busy_playfield.delay",              "2"                     },
8148
8149   { "global.tile_cursor",                       "RocksMore.png"         },
8150   { "global.tile_cursor.xpos",                  "10"                    },
8151   { "global.tile_cursor.ypos",                  "7"                     },
8152   { "global.tile_cursor.frames",                "1"                     },
8153
8154   { "background",                               UNDEFINED_FILENAME      },
8155   { "background.LOADING_INITIAL",               UNDEFINED_FILENAME      },
8156   { "background.LOADING",                       UNDEFINED_FILENAME      },
8157   { "background.TITLE_INITIAL",                 UNDEFINED_FILENAME      },
8158   { "background.TITLE",                         UNDEFINED_FILENAME      },
8159   { "background.MAIN",                          UNDEFINED_FILENAME      },
8160   { "background.NAMES",                         UNDEFINED_FILENAME      },
8161   { "background.LEVELS",                        UNDEFINED_FILENAME      },
8162   { "background.LEVELNR",                       UNDEFINED_FILENAME      },
8163   { "background.SCORES",                        UNDEFINED_FILENAME      },
8164   { "background.SCOREINFO",                     UNDEFINED_FILENAME      },
8165   { "background.EDITOR",                        UNDEFINED_FILENAME      },
8166   { "background.INFO",                          UNDEFINED_FILENAME      },
8167   { "background.INFO[ELEMENTS]",                UNDEFINED_FILENAME      },
8168   { "background.INFO[MUSIC]",                   UNDEFINED_FILENAME      },
8169   { "background.INFO[CREDITS]",                 UNDEFINED_FILENAME      },
8170   { "background.INFO[PROGRAM]",                 UNDEFINED_FILENAME      },
8171   { "background.INFO[VERSION]",                 UNDEFINED_FILENAME      },
8172   { "background.INFO[LEVELSET]",                UNDEFINED_FILENAME      },
8173   { "background.SETUP",                         UNDEFINED_FILENAME      },
8174   { "background.PLAYING",                       UNDEFINED_FILENAME      },
8175   { "background.DOOR",                          UNDEFINED_FILENAME      },
8176   { "background.TAPE",                          "RocksDoor.png"         },
8177   { "background.TAPE.x",                        "200"                   },
8178   { "background.TAPE.y",                        "280"                   },
8179   { "background.TAPE.width",                    "100"                   },
8180   { "background.TAPE.height",                   "100"                   },
8181   { "background.PANEL",                         "RocksDoor.png"         },
8182   { "background.PANEL.x",                       "400"                   },
8183   { "background.PANEL.y",                       "0"                     },
8184   { "background.PANEL.width",                   "100"                   },
8185   { "background.PANEL.height",                  "280"                   },
8186   { "background.PALETTE",                       "RocksDoor.png"         },
8187   { "background.PALETTE.x",                     "500"                   },
8188   { "background.PALETTE.y",                     "0"                     },
8189   { "background.PALETTE.width",                 "100"                   },
8190   { "background.PALETTE.height",                "280"                   },
8191   { "background.TOOLBOX",                       "RocksDoor.png"         },
8192   { "background.TOOLBOX.x",                     "700"                   },
8193   { "background.TOOLBOX.y",                     "236"                   },
8194   { "background.TOOLBOX.width",                 "100"                   },
8195   { "background.TOOLBOX.height",                "144"                   },
8196
8197   { "background.titlescreen_initial_1",         UNDEFINED_FILENAME      },
8198   { "background.titlescreen_initial_2",         UNDEFINED_FILENAME      },
8199   { "background.titlescreen_initial_3",         UNDEFINED_FILENAME      },
8200   { "background.titlescreen_initial_4",         UNDEFINED_FILENAME      },
8201   { "background.titlescreen_initial_5",         UNDEFINED_FILENAME      },
8202   { "background.titlescreen_1",                 UNDEFINED_FILENAME      },
8203   { "background.titlescreen_2",                 UNDEFINED_FILENAME      },
8204   { "background.titlescreen_3",                 UNDEFINED_FILENAME      },
8205   { "background.titlescreen_4",                 UNDEFINED_FILENAME      },
8206   { "background.titlescreen_5",                 UNDEFINED_FILENAME      },
8207   { "background.titlemessage_initial_1",        UNDEFINED_FILENAME      },
8208   { "background.titlemessage_initial_2",        UNDEFINED_FILENAME      },
8209   { "background.titlemessage_initial_3",        UNDEFINED_FILENAME      },
8210   { "background.titlemessage_initial_4",        UNDEFINED_FILENAME      },
8211   { "background.titlemessage_initial_5",        UNDEFINED_FILENAME      },
8212   { "background.titlemessage_1",                UNDEFINED_FILENAME      },
8213   { "background.titlemessage_2",                UNDEFINED_FILENAME      },
8214   { "background.titlemessage_3",                UNDEFINED_FILENAME      },
8215   { "background.titlemessage_4",                UNDEFINED_FILENAME      },
8216   { "background.titlemessage_5",                UNDEFINED_FILENAME      },
8217
8218   { "background.envelope_1",                    "RocksScreen.png"       },
8219   { "background.envelope_1.x",                  "0"                     },
8220   { "background.envelope_1.y",                  "0"                     },
8221   { "background.envelope_1.width",              "560"                   },
8222   { "background.envelope_1.height",             "560"                   },
8223   { "background.envelope_1.anim_mode",          "default"               },
8224   { "background.envelope_1.draw_masked",        "false"                 },
8225   { "background.envelope_2",                    "RocksScreen.png"       },
8226   { "background.envelope_2.x",                  "0"                     },
8227   { "background.envelope_2.y",                  "0"                     },
8228   { "background.envelope_2.width",              "560"                   },
8229   { "background.envelope_2.height",             "560"                   },
8230   { "background.envelope_2.anim_mode",          "default"               },
8231   { "background.envelope_2.draw_masked",        "false"                 },
8232   { "background.envelope_3",                    "RocksScreen.png"       },
8233   { "background.envelope_3.x",                  "0"                     },
8234   { "background.envelope_3.y",                  "0"                     },
8235   { "background.envelope_3.width",              "560"                   },
8236   { "background.envelope_3.height",             "560"                   },
8237   { "background.envelope_3.anim_mode",          "default"               },
8238   { "background.envelope_3.draw_masked",        "false"                 },
8239   { "background.envelope_4",                    "RocksScreen.png"       },
8240   { "background.envelope_4.x",                  "0"                     },
8241   { "background.envelope_4.y",                  "0"                     },
8242   { "background.envelope_4.width",              "560"                   },
8243   { "background.envelope_4.height",             "560"                   },
8244   { "background.envelope_4.anim_mode",          "default"               },
8245   { "background.envelope_4.draw_masked",        "false"                 },
8246
8247   { "background.request",                       "RocksScreen.png"       },
8248   { "background.request.x",                     "562"                   },
8249   { "background.request.y",                     "56"                    },
8250   { "background.request.width",                 "108"                   },
8251   { "background.request.height",                "288"                   },
8252   { "background.request.anim_mode",             "default"               },
8253   { "background.request.draw_masked",           "false"                 },
8254
8255   { "titlescreen_initial_1",                    UNDEFINED_FILENAME      },
8256   { "titlescreen_initial_2",                    UNDEFINED_FILENAME      },
8257   { "titlescreen_initial_3",                    UNDEFINED_FILENAME      },
8258   { "titlescreen_initial_4",                    UNDEFINED_FILENAME      },
8259   { "titlescreen_initial_5",                    UNDEFINED_FILENAME      },
8260   { "titlescreen_1",                            UNDEFINED_FILENAME      },
8261   { "titlescreen_2",                            UNDEFINED_FILENAME      },
8262   { "titlescreen_3",                            UNDEFINED_FILENAME      },
8263   { "titlescreen_4",                            UNDEFINED_FILENAME      },
8264   { "titlescreen_5",                            UNDEFINED_FILENAME      },
8265
8266   { "gfx.door_1.part_1",                        "RocksDoor.png"         },
8267   { "gfx.door_1.part_1.x",                      "0"                     },
8268   { "gfx.door_1.part_1.y",                      "0"                     },
8269   { "gfx.door_1.part_1.width",                  "100"                   },
8270   { "gfx.door_1.part_1.height",                 "77"                    },
8271   { "gfx.door_1.part_1.frames",                 "1"                     },
8272   { "gfx.door_1.part_2",                        "RocksDoor.png"         },
8273   { "gfx.door_1.part_2.x",                      "0"                     },
8274   { "gfx.door_1.part_2.y",                      "77"                    },
8275   { "gfx.door_1.part_2.width",                  "100"                   },
8276   { "gfx.door_1.part_2.height",                 "63"                    },
8277   { "gfx.door_1.part_2.frames",                 "1"                     },
8278   { "gfx.door_1.part_3",                        "RocksDoor.png"         },
8279   { "gfx.door_1.part_3.x",                      "0"                     },
8280   { "gfx.door_1.part_3.y",                      "140"                   },
8281   { "gfx.door_1.part_3.width",                  "100"                   },
8282   { "gfx.door_1.part_3.height",                 "63"                    },
8283   { "gfx.door_1.part_3.frames",                 "1"                     },
8284   { "gfx.door_1.part_4",                        "RocksDoor.png"         },
8285   { "gfx.door_1.part_4.x",                      "0"                     },
8286   { "gfx.door_1.part_4.y",                      "203"                   },
8287   { "gfx.door_1.part_4.width",                  "100"                   },
8288   { "gfx.door_1.part_4.height",                 "77"                    },
8289   { "gfx.door_1.part_4.frames",                 "1"                     },
8290   { "gfx.door_1.part_5",                        "RocksDoor.png"         },
8291   { "gfx.door_1.part_5.x",                      "100"                   },
8292   { "gfx.door_1.part_5.y",                      "0"                     },
8293   { "gfx.door_1.part_5.width",                  "100"                   },
8294   { "gfx.door_1.part_5.height",                 "77"                    },
8295   { "gfx.door_1.part_5.frames",                 "1"                     },
8296   { "gfx.door_1.part_6",                        "RocksDoor.png"         },
8297   { "gfx.door_1.part_6.x",                      "100"                   },
8298   { "gfx.door_1.part_6.y",                      "77"                    },
8299   { "gfx.door_1.part_6.width",                  "100"                   },
8300   { "gfx.door_1.part_6.height",                 "63"                    },
8301   { "gfx.door_1.part_6.frames",                 "1"                     },
8302   { "gfx.door_1.part_7",                        "RocksDoor.png"         },
8303   { "gfx.door_1.part_7.x",                      "100"                   },
8304   { "gfx.door_1.part_7.y",                      "140"                   },
8305   { "gfx.door_1.part_7.width",                  "100"                   },
8306   { "gfx.door_1.part_7.height",                 "63"                    },
8307   { "gfx.door_1.part_7.frames",                 "1"                     },
8308   { "gfx.door_1.part_8",                        "RocksDoor.png"         },
8309   { "gfx.door_1.part_8.x",                      "100"                   },
8310   { "gfx.door_1.part_8.y",                      "203"                   },
8311   { "gfx.door_1.part_8.width",                  "100"                   },
8312   { "gfx.door_1.part_8.height",                 "77"                    },
8313   { "gfx.door_1.part_8.frames",                 "1"                     },
8314
8315   { "gfx.door_2.part_1",                        "RocksDoor.png"         },
8316   { "gfx.door_2.part_1.x",                      "0"                     },
8317   { "gfx.door_2.part_1.y",                      "280"                   },
8318   { "gfx.door_2.part_1.width",                  "100"                   },
8319   { "gfx.door_2.part_1.height",                 "50"                    },
8320   { "gfx.door_2.part_1.frames",                 "1"                     },
8321   { "gfx.door_2.part_2",                        "RocksDoor.png"         },
8322   { "gfx.door_2.part_2.x",                      "0"                     },
8323   { "gfx.door_2.part_2.y",                      "330"                   },
8324   { "gfx.door_2.part_2.width",                  "100"                   },
8325   { "gfx.door_2.part_2.height",                 "50"                    },
8326   { "gfx.door_2.part_2.frames",                 "1"                     },
8327   { "gfx.door_2.part_3",                        "RocksDoor.png"         },
8328   { "gfx.door_2.part_3.x",                      "100"                   },
8329   { "gfx.door_2.part_3.y",                      "280"                   },
8330   { "gfx.door_2.part_3.width",                  "100"                   },
8331   { "gfx.door_2.part_3.height",                 "50"                    },
8332   { "gfx.door_2.part_3.frames",                 "1"                     },
8333   { "gfx.door_2.part_4",                        "RocksDoor.png"         },
8334   { "gfx.door_2.part_4.x",                      "100"                   },
8335   { "gfx.door_2.part_4.y",                      "330"                   },
8336   { "gfx.door_2.part_4.width",                  "100"                   },
8337   { "gfx.door_2.part_4.height",                 "50"                    },
8338   { "gfx.door_2.part_4.frames",                 "1"                     },
8339   { "gfx.door_2.part_5",                        UNDEFINED_FILENAME      },
8340   { "gfx.door_2.part_6",                        UNDEFINED_FILENAME      },
8341   { "gfx.door_2.part_7",                        UNDEFINED_FILENAME      },
8342   { "gfx.door_2.part_8",                        UNDEFINED_FILENAME      },
8343
8344   { "door_2.top_border_correction",             "RocksDoor.png"         },
8345   { "door_2.top_border_correction.x",           "600"                   },
8346   { "door_2.top_border_correction.y",           "0"                     },
8347   { "door_2.top_border_correction.width",       "108"                   },
8348   { "door_2.top_border_correction.height",      "8"                     },
8349
8350   // the last image entry apparently gets overwritten by very last entry
8351   // of "image_config[]"; so far this bug could not be found and fixed
8352   { "last_image_entry_bug",                     UNDEFINED_FILENAME      },
8353
8354
8355   // ==========================================================================
8356   // non-image definitions
8357   // ==========================================================================
8358
8359   // the following directives are not associated with an image, but
8360   // probably make sense to be defined in "graphicsinfo.conf", too
8361
8362   // keyword to start parser: "CONFIG_VARS_START" <-- do not change!
8363
8364   { "[title_initial].fade_mode",                "fade"                  },
8365   { "[title_initial].fade_delay",               "500"                   },
8366   { "[title_initial].post_delay",               "250"                   },
8367   { "[title_initial].auto_delay",               "-1"                    },
8368   { "[title_initial].auto_delay_unit",          "ms"                    },
8369   { "[title].fade_mode",                        "fade"                  },
8370   { "[title].fade_delay",                       "500"                   },
8371   { "[title].post_delay",                       "250"                   },
8372   { "[title].auto_delay",                       "-1"                    },
8373   { "[title].auto_delay_unit",                  "ms"                    },
8374
8375   { "[titlescreen_initial].sort_priority",      "0"                     },
8376   { "[titlescreen_initial].fade_mode",          ARG_DEFAULT             },
8377   { "[titlescreen_initial].fade_delay",         ARG_DEFAULT             },
8378   { "[titlescreen_initial].post_delay",         ARG_DEFAULT             },
8379   { "[titlescreen_initial].auto_delay",         ARG_DEFAULT             },
8380   { "[titlescreen_initial].auto_delay_unit",    ARG_DEFAULT             },
8381   { "[titlescreen].sort_priority",              "0"                     },
8382   { "[titlescreen].fade_mode",                  ARG_DEFAULT             },
8383   { "[titlescreen].fade_delay",                 ARG_DEFAULT             },
8384   { "[titlescreen].post_delay",                 ARG_DEFAULT             },
8385   { "[titlescreen].auto_delay",                 ARG_DEFAULT             },
8386   { "[titlescreen].auto_delay_unit",            ARG_DEFAULT             },
8387
8388   { "titlescreen_initial_1.sort_priority",      ARG_DEFAULT             },
8389   { "titlescreen_initial_1.fade_mode",          ARG_DEFAULT             },
8390   { "titlescreen_initial_1.fade_delay",         ARG_DEFAULT             },
8391   { "titlescreen_initial_1.post_delay",         ARG_DEFAULT             },
8392   { "titlescreen_initial_1.auto_delay",         ARG_DEFAULT             },
8393   { "titlescreen_initial_1.auto_delay_unit",    ARG_DEFAULT             },
8394   { "titlescreen_initial_2.sort_priority",      ARG_DEFAULT             },
8395   { "titlescreen_initial_2.fade_mode",          ARG_DEFAULT             },
8396   { "titlescreen_initial_2.fade_delay",         ARG_DEFAULT             },
8397   { "titlescreen_initial_2.post_delay",         ARG_DEFAULT             },
8398   { "titlescreen_initial_2.auto_delay",         ARG_DEFAULT             },
8399   { "titlescreen_initial_2.auto_delay_unit",    ARG_DEFAULT             },
8400   { "titlescreen_initial_3.sort_priority",      ARG_DEFAULT             },
8401   { "titlescreen_initial_3.fade_mode",          ARG_DEFAULT             },
8402   { "titlescreen_initial_3.fade_delay",         ARG_DEFAULT             },
8403   { "titlescreen_initial_3.post_delay",         ARG_DEFAULT             },
8404   { "titlescreen_initial_3.auto_delay",         ARG_DEFAULT             },
8405   { "titlescreen_initial_3.auto_delay_unit",    ARG_DEFAULT             },
8406   { "titlescreen_initial_4.sort_priority",      ARG_DEFAULT             },
8407   { "titlescreen_initial_4.fade_mode",          ARG_DEFAULT             },
8408   { "titlescreen_initial_4.fade_delay",         ARG_DEFAULT             },
8409   { "titlescreen_initial_4.post_delay",         ARG_DEFAULT             },
8410   { "titlescreen_initial_4.auto_delay",         ARG_DEFAULT             },
8411   { "titlescreen_initial_4.auto_delay_unit",    ARG_DEFAULT             },
8412   { "titlescreen_initial_5.sort_priority",      ARG_DEFAULT             },
8413   { "titlescreen_initial_5.fade_mode",          ARG_DEFAULT             },
8414   { "titlescreen_initial_5.fade_delay",         ARG_DEFAULT             },
8415   { "titlescreen_initial_5.post_delay",         ARG_DEFAULT             },
8416   { "titlescreen_initial_5.auto_delay",         ARG_DEFAULT             },
8417   { "titlescreen_initial_5.auto_delay_unit",    ARG_DEFAULT             },
8418   { "titlescreen_1.sort_priority",              ARG_DEFAULT             },
8419   { "titlescreen_1.fade_mode",                  ARG_DEFAULT             },
8420   { "titlescreen_1.fade_delay",                 ARG_DEFAULT             },
8421   { "titlescreen_1.post_delay",                 ARG_DEFAULT             },
8422   { "titlescreen_1.auto_delay",                 ARG_DEFAULT             },
8423   { "titlescreen_1.auto_delay_unit",            ARG_DEFAULT             },
8424   { "titlescreen_2.sort_priority",              ARG_DEFAULT             },
8425   { "titlescreen_2.fade_mode",                  ARG_DEFAULT             },
8426   { "titlescreen_2.fade_delay",                 ARG_DEFAULT             },
8427   { "titlescreen_2.post_delay",                 ARG_DEFAULT             },
8428   { "titlescreen_2.auto_delay",                 ARG_DEFAULT             },
8429   { "titlescreen_2.auto_delay_unit",            ARG_DEFAULT             },
8430   { "titlescreen_3.sort_priority",              ARG_DEFAULT             },
8431   { "titlescreen_3.fade_mode",                  ARG_DEFAULT             },
8432   { "titlescreen_3.fade_delay",                 ARG_DEFAULT             },
8433   { "titlescreen_3.post_delay",                 ARG_DEFAULT             },
8434   { "titlescreen_3.auto_delay",                 ARG_DEFAULT             },
8435   { "titlescreen_3.auto_delay_unit",            ARG_DEFAULT             },
8436   { "titlescreen_4.sort_priority",              ARG_DEFAULT             },
8437   { "titlescreen_4.fade_mode",                  ARG_DEFAULT             },
8438   { "titlescreen_4.fade_delay",                 ARG_DEFAULT             },
8439   { "titlescreen_4.post_delay",                 ARG_DEFAULT             },
8440   { "titlescreen_4.auto_delay",                 ARG_DEFAULT             },
8441   { "titlescreen_4.auto_delay_unit",            ARG_DEFAULT             },
8442   { "titlescreen_5.sort_priority",              ARG_DEFAULT             },
8443   { "titlescreen_5.fade_mode",                  ARG_DEFAULT             },
8444   { "titlescreen_5.fade_delay",                 ARG_DEFAULT             },
8445   { "titlescreen_5.post_delay",                 ARG_DEFAULT             },
8446   { "titlescreen_5.auto_delay",                 ARG_DEFAULT             },
8447   { "titlescreen_5.auto_delay_unit",            ARG_DEFAULT             },
8448
8449   { "[titlemessage_initial].x",                 "-1"                    },
8450   { "[titlemessage_initial].y",                 "-1"                    },
8451   { "[titlemessage_initial].width",             "-1"                    },
8452   { "[titlemessage_initial].height",            "-1"                    },
8453   { "[titlemessage_initial].chars",             "-1"                    },
8454   { "[titlemessage_initial].lines",             "-1"                    },
8455   { "[titlemessage_initial].align",             "center"                },
8456   { "[titlemessage_initial].valign",            "middle"                },
8457   { "[titlemessage_initial].font",              "font.text_1"           },
8458   { "[titlemessage_initial].autowrap",          "false"                 },
8459   { "[titlemessage_initial].centered",          "false"                 },
8460   { "[titlemessage_initial].parse_comments",    "false"                 },
8461   { "[titlemessage_initial].sort_priority",     "0"                     },
8462   { "[titlemessage_initial].fade_mode",         ARG_DEFAULT             },
8463   { "[titlemessage_initial].fade_delay",        ARG_DEFAULT             },
8464   { "[titlemessage_initial].post_delay",        ARG_DEFAULT             },
8465   { "[titlemessage_initial].auto_delay",        ARG_DEFAULT             },
8466   { "[titlemessage_initial].auto_delay_unit",   ARG_DEFAULT             },
8467   { "[titlemessage].x",                         "-1"                    },
8468   { "[titlemessage].y",                         "-1"                    },
8469   { "[titlemessage].width",                     "-1"                    },
8470   { "[titlemessage].height",                    "-1"                    },
8471   { "[titlemessage].chars",                     "-1"                    },
8472   { "[titlemessage].lines",                     "-1"                    },
8473   { "[titlemessage].align",                     "center"                },
8474   { "[titlemessage].valign",                    "middle"                },
8475   { "[titlemessage].font",                      "font.text_1"           },
8476   { "[titlemessage].autowrap",                  "false"                 },
8477   { "[titlemessage].centered",                  "false"                 },
8478   { "[titlemessage].parse_comments",            "false"                 },
8479   { "[titlemessage].sort_priority",             "0"                     },
8480   { "[titlemessage].fade_mode",                 ARG_DEFAULT             },
8481   { "[titlemessage].fade_delay",                ARG_DEFAULT             },
8482   { "[titlemessage].post_delay",                ARG_DEFAULT             },
8483   { "[titlemessage].auto_delay",                ARG_DEFAULT             },
8484   { "[titlemessage].auto_delay_unit",           ARG_DEFAULT             },
8485
8486   { "titlemessage_initial_1.x",                 ARG_DEFAULT             },
8487   { "titlemessage_initial_1.y",                 ARG_DEFAULT             },
8488   { "titlemessage_initial_1.width",             ARG_DEFAULT             },
8489   { "titlemessage_initial_1.height",            ARG_DEFAULT             },
8490   { "titlemessage_initial_1.chars",             ARG_DEFAULT             },
8491   { "titlemessage_initial_1.lines",             ARG_DEFAULT             },
8492   { "titlemessage_initial_1.align",             ARG_DEFAULT             },
8493   { "titlemessage_initial_1.valign",            ARG_DEFAULT             },
8494   { "titlemessage_initial_1.font",              ARG_DEFAULT             },
8495   { "titlemessage_initial_1.autowrap",          ARG_DEFAULT             },
8496   { "titlemessage_initial_1.centered",          ARG_DEFAULT             },
8497   { "titlemessage_initial_1.parse_comments",    ARG_DEFAULT             },
8498   { "titlemessage_initial_1.sort_priority",     ARG_DEFAULT             },
8499   { "titlemessage_initial_1.fade_mode",         ARG_DEFAULT             },
8500   { "titlemessage_initial_1.fade_delay",        ARG_DEFAULT             },
8501   { "titlemessage_initial_1.post_delay",        ARG_DEFAULT             },
8502   { "titlemessage_initial_1.auto_delay",        ARG_DEFAULT             },
8503   { "titlemessage_initial_1.auto_delay_unit",   ARG_DEFAULT             },
8504   { "titlemessage_initial_2.x",                 ARG_DEFAULT             },
8505   { "titlemessage_initial_2.y",                 ARG_DEFAULT             },
8506   { "titlemessage_initial_2.width",             ARG_DEFAULT             },
8507   { "titlemessage_initial_2.height",            ARG_DEFAULT             },
8508   { "titlemessage_initial_2.chars",             ARG_DEFAULT             },
8509   { "titlemessage_initial_2.lines",             ARG_DEFAULT             },
8510   { "titlemessage_initial_2.align",             ARG_DEFAULT             },
8511   { "titlemessage_initial_2.valign",            ARG_DEFAULT             },
8512   { "titlemessage_initial_2.font",              ARG_DEFAULT             },
8513   { "titlemessage_initial_2.autowrap",          ARG_DEFAULT             },
8514   { "titlemessage_initial_2.centered",          ARG_DEFAULT             },
8515   { "titlemessage_initial_2.parse_comments",    ARG_DEFAULT             },
8516   { "titlemessage_initial_2.sort_priority",     ARG_DEFAULT             },
8517   { "titlemessage_initial_2.fade_mode",         ARG_DEFAULT             },
8518   { "titlemessage_initial_2.fade_delay",        ARG_DEFAULT             },
8519   { "titlemessage_initial_2.post_delay",        ARG_DEFAULT             },
8520   { "titlemessage_initial_2.auto_delay",        ARG_DEFAULT             },
8521   { "titlemessage_initial_2.auto_delay_unit",   ARG_DEFAULT             },
8522   { "titlemessage_initial_3.x",                 ARG_DEFAULT             },
8523   { "titlemessage_initial_3.y",                 ARG_DEFAULT             },
8524   { "titlemessage_initial_3.width",             ARG_DEFAULT             },
8525   { "titlemessage_initial_3.height",            ARG_DEFAULT             },
8526   { "titlemessage_initial_3.chars",             ARG_DEFAULT             },
8527   { "titlemessage_initial_3.lines",             ARG_DEFAULT             },
8528   { "titlemessage_initial_3.align",             ARG_DEFAULT             },
8529   { "titlemessage_initial_3.valign",            ARG_DEFAULT             },
8530   { "titlemessage_initial_3.font",              ARG_DEFAULT             },
8531   { "titlemessage_initial_3.autowrap",          ARG_DEFAULT             },
8532   { "titlemessage_initial_3.centered",          ARG_DEFAULT             },
8533   { "titlemessage_initial_3.parse_comments",    ARG_DEFAULT             },
8534   { "titlemessage_initial_3.sort_priority",     ARG_DEFAULT             },
8535   { "titlemessage_initial_3.fade_mode",         ARG_DEFAULT             },
8536   { "titlemessage_initial_3.fade_delay",        ARG_DEFAULT             },
8537   { "titlemessage_initial_3.post_delay",        ARG_DEFAULT             },
8538   { "titlemessage_initial_3.auto_delay",        ARG_DEFAULT             },
8539   { "titlemessage_initial_3.auto_delay_unit",   ARG_DEFAULT             },
8540   { "titlemessage_initial_4.x",                 ARG_DEFAULT             },
8541   { "titlemessage_initial_4.y",                 ARG_DEFAULT             },
8542   { "titlemessage_initial_4.width",             ARG_DEFAULT             },
8543   { "titlemessage_initial_4.height",            ARG_DEFAULT             },
8544   { "titlemessage_initial_4.chars",             ARG_DEFAULT             },
8545   { "titlemessage_initial_4.lines",             ARG_DEFAULT             },
8546   { "titlemessage_initial_4.align",             ARG_DEFAULT             },
8547   { "titlemessage_initial_4.valign",            ARG_DEFAULT             },
8548   { "titlemessage_initial_4.font",              ARG_DEFAULT             },
8549   { "titlemessage_initial_4.autowrap",          ARG_DEFAULT             },
8550   { "titlemessage_initial_4.centered",          ARG_DEFAULT             },
8551   { "titlemessage_initial_4.parse_comments",    ARG_DEFAULT             },
8552   { "titlemessage_initial_4.sort_priority",     ARG_DEFAULT             },
8553   { "titlemessage_initial_4.fade_mode",         ARG_DEFAULT             },
8554   { "titlemessage_initial_4.fade_delay",        ARG_DEFAULT             },
8555   { "titlemessage_initial_4.post_delay",        ARG_DEFAULT             },
8556   { "titlemessage_initial_4.auto_delay",        ARG_DEFAULT             },
8557   { "titlemessage_initial_4.auto_delay_unit",   ARG_DEFAULT             },
8558   { "titlemessage_initial_5.x",                 ARG_DEFAULT             },
8559   { "titlemessage_initial_5.y",                 ARG_DEFAULT             },
8560   { "titlemessage_initial_5.width",             ARG_DEFAULT             },
8561   { "titlemessage_initial_5.height",            ARG_DEFAULT             },
8562   { "titlemessage_initial_5.chars",             ARG_DEFAULT             },
8563   { "titlemessage_initial_5.lines",             ARG_DEFAULT             },
8564   { "titlemessage_initial_5.align",             ARG_DEFAULT             },
8565   { "titlemessage_initial_5.valign",            ARG_DEFAULT             },
8566   { "titlemessage_initial_5.font",              ARG_DEFAULT             },
8567   { "titlemessage_initial_5.autowrap",          ARG_DEFAULT             },
8568   { "titlemessage_initial_5.centered",          ARG_DEFAULT             },
8569   { "titlemessage_initial_5.parse_comments",    ARG_DEFAULT             },
8570   { "titlemessage_initial_5.sort_priority",     ARG_DEFAULT             },
8571   { "titlemessage_initial_5.fade_mode",         ARG_DEFAULT             },
8572   { "titlemessage_initial_5.fade_delay",        ARG_DEFAULT             },
8573   { "titlemessage_initial_5.post_delay",        ARG_DEFAULT             },
8574   { "titlemessage_initial_5.auto_delay",        ARG_DEFAULT             },
8575   { "titlemessage_initial_5.auto_delay_unit",   ARG_DEFAULT             },
8576   { "titlemessage_1.x",                         ARG_DEFAULT             },
8577   { "titlemessage_1.y",                         ARG_DEFAULT             },
8578   { "titlemessage_1.width",                     ARG_DEFAULT             },
8579   { "titlemessage_1.height",                    ARG_DEFAULT             },
8580   { "titlemessage_1.chars",                     ARG_DEFAULT             },
8581   { "titlemessage_1.lines",                     ARG_DEFAULT             },
8582   { "titlemessage_1.align",                     ARG_DEFAULT             },
8583   { "titlemessage_1.valign",                    ARG_DEFAULT             },
8584   { "titlemessage_1.font",                      ARG_DEFAULT             },
8585   { "titlemessage_1.autowrap",                  ARG_DEFAULT             },
8586   { "titlemessage_1.centered",                  ARG_DEFAULT             },
8587   { "titlemessage_1.parse_comments",            ARG_DEFAULT             },
8588   { "titlemessage_1.sort_priority",             ARG_DEFAULT             },
8589   { "titlemessage_1.fade_mode",                 ARG_DEFAULT             },
8590   { "titlemessage_1.fade_delay",                ARG_DEFAULT             },
8591   { "titlemessage_1.post_delay",                ARG_DEFAULT             },
8592   { "titlemessage_1.auto_delay",                ARG_DEFAULT             },
8593   { "titlemessage_1.auto_delay_unit",           ARG_DEFAULT             },
8594   { "titlemessage_2.x",                         ARG_DEFAULT             },
8595   { "titlemessage_2.y",                         ARG_DEFAULT             },
8596   { "titlemessage_2.width",                     ARG_DEFAULT             },
8597   { "titlemessage_2.height",                    ARG_DEFAULT             },
8598   { "titlemessage_2.chars",                     ARG_DEFAULT             },
8599   { "titlemessage_2.lines",                     ARG_DEFAULT             },
8600   { "titlemessage_2.align",                     ARG_DEFAULT             },
8601   { "titlemessage_2.valign",                    ARG_DEFAULT             },
8602   { "titlemessage_2.font",                      ARG_DEFAULT             },
8603   { "titlemessage_2.autowrap",                  ARG_DEFAULT             },
8604   { "titlemessage_2.centered",                  ARG_DEFAULT             },
8605   { "titlemessage_2.parse_comments",            ARG_DEFAULT             },
8606   { "titlemessage_2.sort_priority",             ARG_DEFAULT             },
8607   { "titlemessage_2.fade_mode",                 ARG_DEFAULT             },
8608   { "titlemessage_2.fade_delay",                ARG_DEFAULT             },
8609   { "titlemessage_2.post_delay",                ARG_DEFAULT             },
8610   { "titlemessage_2.auto_delay",                ARG_DEFAULT             },
8611   { "titlemessage_2.auto_delay_unit",           ARG_DEFAULT             },
8612   { "titlemessage_3.x",                         ARG_DEFAULT             },
8613   { "titlemessage_3.y",                         ARG_DEFAULT             },
8614   { "titlemessage_3.width",                     ARG_DEFAULT             },
8615   { "titlemessage_3.height",                    ARG_DEFAULT             },
8616   { "titlemessage_3.chars",                     ARG_DEFAULT             },
8617   { "titlemessage_3.lines",                     ARG_DEFAULT             },
8618   { "titlemessage_3.align",                     ARG_DEFAULT             },
8619   { "titlemessage_3.valign",                    ARG_DEFAULT             },
8620   { "titlemessage_3.font",                      ARG_DEFAULT             },
8621   { "titlemessage_3.autowrap",                  ARG_DEFAULT             },
8622   { "titlemessage_3.centered",                  ARG_DEFAULT             },
8623   { "titlemessage_3.parse_comments",            ARG_DEFAULT             },
8624   { "titlemessage_3.sort_priority",             ARG_DEFAULT             },
8625   { "titlemessage_3.fade_mode",                 ARG_DEFAULT             },
8626   { "titlemessage_3.fade_delay",                ARG_DEFAULT             },
8627   { "titlemessage_3.post_delay",                ARG_DEFAULT             },
8628   { "titlemessage_3.auto_delay",                ARG_DEFAULT             },
8629   { "titlemessage_3.auto_delay_unit",           ARG_DEFAULT             },
8630   { "titlemessage_4.x",                         ARG_DEFAULT             },
8631   { "titlemessage_4.y",                         ARG_DEFAULT             },
8632   { "titlemessage_4.width",                     ARG_DEFAULT             },
8633   { "titlemessage_4.height",                    ARG_DEFAULT             },
8634   { "titlemessage_4.chars",                     ARG_DEFAULT             },
8635   { "titlemessage_4.lines",                     ARG_DEFAULT             },
8636   { "titlemessage_4.align",                     ARG_DEFAULT             },
8637   { "titlemessage_4.valign",                    ARG_DEFAULT             },
8638   { "titlemessage_4.font",                      ARG_DEFAULT             },
8639   { "titlemessage_4.autowrap",                  ARG_DEFAULT             },
8640   { "titlemessage_4.centered",                  ARG_DEFAULT             },
8641   { "titlemessage_4.parse_comments",            ARG_DEFAULT             },
8642   { "titlemessage_4.sort_priority",             ARG_DEFAULT             },
8643   { "titlemessage_4.fade_mode",                 ARG_DEFAULT             },
8644   { "titlemessage_4.fade_delay",                ARG_DEFAULT             },
8645   { "titlemessage_4.post_delay",                ARG_DEFAULT             },
8646   { "titlemessage_4.auto_delay",                ARG_DEFAULT             },
8647   { "titlemessage_4.auto_delay_unit",           ARG_DEFAULT             },
8648   { "titlemessage_5.x",                         ARG_DEFAULT             },
8649   { "titlemessage_5.y",                         ARG_DEFAULT             },
8650   { "titlemessage_5.width",                     ARG_DEFAULT             },
8651   { "titlemessage_5.height",                    ARG_DEFAULT             },
8652   { "titlemessage_5.chars",                     ARG_DEFAULT             },
8653   { "titlemessage_5.lines",                     ARG_DEFAULT             },
8654   { "titlemessage_5.align",                     ARG_DEFAULT             },
8655   { "titlemessage_5.valign",                    ARG_DEFAULT             },
8656   { "titlemessage_5.font",                      ARG_DEFAULT             },
8657   { "titlemessage_5.autowrap",                  ARG_DEFAULT             },
8658   { "titlemessage_5.centered",                  ARG_DEFAULT             },
8659   { "titlemessage_5.parse_comments",            ARG_DEFAULT             },
8660   { "titlemessage_5.sort_priority",             ARG_DEFAULT             },
8661   { "titlemessage_5.fade_mode",                 ARG_DEFAULT             },
8662   { "titlemessage_5.fade_delay",                ARG_DEFAULT             },
8663   { "titlemessage_5.post_delay",                ARG_DEFAULT             },
8664   { "titlemessage_5.auto_delay",                ARG_DEFAULT             },
8665   { "titlemessage_5.auto_delay_unit",           ARG_DEFAULT             },
8666
8667   { "readme.x",                                 "-1"                    },
8668   { "readme.y",                                 "-1"                    },
8669   { "readme.width",                             "-1"                    },
8670   { "readme.height",                            "-1"                    },
8671   { "readme.chars",                             "-1"                    },
8672   { "readme.lines",                             "-1"                    },
8673   { "readme.align",                             "center"                },
8674   { "readme.valign",                            "top"                   },
8675   { "readme.font",                              "font.info.levelset"    },
8676   { "readme.autowrap",                          "true"                  },
8677   { "readme.centered",                          "false"                 },
8678   { "readme.parse_comments",                    "true"                  },
8679   { "readme.sort_priority",                     "0"                     },
8680
8681   { "global.num_toons",                         "20"                    },
8682
8683   { "border.draw_masked.TITLE",                 "false"                 },
8684   { "border.draw_masked.MAIN",                  "false"                 },
8685   { "border.draw_masked.NAMES",                 "false"                 },
8686   { "border.draw_masked.LEVELS",                "false"                 },
8687   { "border.draw_masked.LEVELNR",               "false"                 },
8688   { "border.draw_masked.SCORES",                "false"                 },
8689   { "border.draw_masked.SCOREINFO",             "false"                 },
8690   { "border.draw_masked.EDITOR",                "false"                 },
8691   { "border.draw_masked.INFO",                  "false"                 },
8692   { "border.draw_masked.SETUP",                 "false"                 },
8693   { "border.draw_masked.PLAYING",               "false"                 },
8694   { "border.draw_masked.DOOR",                  "false"                 },
8695
8696   { "border.draw_masked_when_fading",           "true"                  },
8697
8698   { "init.busy_initial.x",                      "-1"                    },
8699   { "init.busy_initial.y",                      "-1"                    },
8700   { "init.busy_initial.align",                  "center"                },
8701   { "init.busy_initial.valign",                 "middle"                },
8702   { "init.busy.x",                              "-1"                    },
8703   { "init.busy.y",                              "-1"                    },
8704   { "init.busy.align",                          "center"                },
8705   { "init.busy.valign",                         "middle"                },
8706   { "init.busy_playfield.x",                    "-1"                    },
8707   { "init.busy_playfield.y",                    "-1"                    },
8708   { "init.busy_playfield.align",                "center"                },
8709   { "init.busy_playfield.valign",               "middle"                },
8710
8711   { "menu.enter_menu.fade_mode",                "none"                  },
8712   { "menu.enter_menu.fade_delay",               "250"                   },
8713   { "menu.enter_menu.post_delay",               "125"                   },
8714   { "menu.leave_menu.fade_mode",                "none"                  },
8715   { "menu.leave_menu.fade_delay",               "250"                   },
8716   { "menu.leave_menu.post_delay",               "125"                   },
8717   { "menu.enter_screen.fade_mode",              "fade"                  },
8718   { "menu.enter_screen.fade_delay",             "250"                   },
8719   { "menu.enter_screen.post_delay",             "125"                   },
8720   { "menu.leave_screen.fade_mode",              "fade"                  },
8721   { "menu.leave_screen.fade_delay",             "250"                   },
8722   { "menu.leave_screen.post_delay",             "125"                   },
8723   { "menu.next_screen.fade_mode",               "crossfade"             },
8724   { "menu.next_screen.fade_delay",              "250"                   },
8725   { "menu.next_screen.post_delay",              "125"                   },
8726   { "menu.enter_screen.TITLE.fade_mode",        "fade"                  },
8727   { "menu.enter_screen.TITLE.fade_delay",       "500"                   },
8728   { "menu.enter_screen.TITLE.post_delay",       "250"                   },
8729   { "menu.enter_screen.TITLE.auto_delay",       "-1"                    },
8730   { "menu.enter_screen.TITLE.auto_delay_unit",  "-1"                    },
8731   { "menu.enter_screen.SCORES.fade_mode",       ARG_DEFAULT             },
8732   { "menu.enter_screen.SCORES.fade_delay",      ARG_DEFAULT             },
8733   { "menu.enter_screen.SCORES.post_delay",      ARG_DEFAULT             },
8734   { "menu.enter_screen.SCOREINFO.fade_mode",    ARG_DEFAULT             },
8735   { "menu.enter_screen.SCOREINFO.fade_delay",   ARG_DEFAULT             },
8736   { "menu.enter_screen.SCOREINFO.post_delay",   ARG_DEFAULT             },
8737   { "menu.enter_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
8738   { "menu.enter_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
8739   { "menu.enter_screen.EDITOR.post_delay",      ARG_DEFAULT             },
8740   { "menu.enter_screen.INFO.fade_mode",         ARG_DEFAULT             },
8741   { "menu.enter_screen.INFO.fade_delay",        ARG_DEFAULT             },
8742   { "menu.enter_screen.INFO.post_delay",        ARG_DEFAULT             },
8743   { "menu.enter_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
8744   { "menu.enter_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
8745   { "menu.enter_screen.PLAYING.post_delay",     ARG_DEFAULT             },
8746   { "menu.leave_screen.TITLE.fade_mode",        "fade"                  },
8747   { "menu.leave_screen.TITLE.fade_delay",       "500"                   },
8748   { "menu.leave_screen.TITLE.post_delay",       "250"                   },
8749   { "menu.leave_screen.TITLE.auto_delay",       "-1"                    },
8750   { "menu.leave_screen.TITLE.auto_delay_unit",  "-1"                    },
8751   { "menu.leave_screen.SCORES.fade_mode",       ARG_DEFAULT             },
8752   { "menu.leave_screen.SCORES.fade_delay",      ARG_DEFAULT             },
8753   { "menu.leave_screen.SCORES.post_delay",      ARG_DEFAULT             },
8754   { "menu.leave_screen.SCOREINFO.fade_mode",    ARG_DEFAULT             },
8755   { "menu.leave_screen.SCOREINFO.fade_delay",   ARG_DEFAULT             },
8756   { "menu.leave_screen.SCOREINFO.post_delay",   ARG_DEFAULT             },
8757   { "menu.leave_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
8758   { "menu.leave_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
8759   { "menu.leave_screen.EDITOR.post_delay",      ARG_DEFAULT             },
8760   { "menu.leave_screen.INFO.fade_mode",         ARG_DEFAULT             },
8761   { "menu.leave_screen.INFO.fade_delay",        ARG_DEFAULT             },
8762   { "menu.leave_screen.INFO.post_delay",        ARG_DEFAULT             },
8763   { "menu.leave_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
8764   { "menu.leave_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
8765   { "menu.leave_screen.PLAYING.post_delay",     ARG_DEFAULT             },
8766   { "menu.next_screen.TITLE.fade_mode",         "fade"                  },
8767   { "menu.next_screen.TITLE.fade_delay",        "500"                   },
8768   { "menu.next_screen.TITLE.post_delay",        "250"                   },
8769   { "menu.next_screen.TITLE.auto_delay",        "-1"                    },
8770   { "menu.next_screen.TITLE.auto_delay_unit",   "-1"                    },
8771   { "menu.next_screen.INFO.fade_mode",          ARG_DEFAULT             },
8772   { "menu.next_screen.INFO.fade_delay",         ARG_DEFAULT             },
8773   { "menu.next_screen.INFO.post_delay",         ARG_DEFAULT             },
8774
8775   { "menu.draw_xoffset",                        "0"                     },
8776   { "menu.draw_yoffset",                        "0"                     },
8777   { "menu.draw_xoffset.MAIN",                   "0"                     },
8778   { "menu.draw_yoffset.MAIN",                   "0"                     },
8779   { "menu.draw_xoffset.NAMES",                  "0"                     },
8780   { "menu.draw_yoffset.NAMES",                  "0"                     },
8781   { "menu.draw_xoffset.LEVELS",                 "0"                     },
8782   { "menu.draw_yoffset.LEVELS",                 "0"                     },
8783   { "menu.draw_xoffset.LEVELNR",                "0"                     },
8784   { "menu.draw_yoffset.LEVELNR",                "0"                     },
8785   { "menu.draw_xoffset.SCORES",                 "0"                     },
8786   { "menu.draw_yoffset.SCORES",                 "0"                     },
8787   { "menu.draw_xoffset.SCOREINFO",              "0"                     },
8788   { "menu.draw_yoffset.SCOREINFO",              "0"                     },
8789   { "menu.draw_xoffset.EDITOR",                 "0"                     },
8790   { "menu.draw_yoffset.EDITOR",                 "0"                     },
8791   { "menu.draw_xoffset.INFO",                   "0"                     },
8792   { "menu.draw_yoffset.INFO",                   "0"                     },
8793   { "menu.draw_xoffset.INFO[TITLE]",            "0"                     },
8794   { "menu.draw_yoffset.INFO[TITLE]",            "0"                     },
8795   { "menu.draw_xoffset.INFO[ELEMENTS]",         "0"                     },
8796   { "menu.draw_yoffset.INFO[ELEMENTS]",         "0"                     },
8797   { "menu.draw_xoffset.INFO[MUSIC]",            "0"                     },
8798   { "menu.draw_yoffset.INFO[MUSIC]",            "0"                     },
8799   { "menu.draw_xoffset.INFO[CREDITS]",          "0"                     },
8800   { "menu.draw_yoffset.INFO[CREDITS]",          "0"                     },
8801   { "menu.draw_xoffset.INFO[PROGRAM]",          "0"                     },
8802   { "menu.draw_yoffset.INFO[PROGRAM]",          "0"                     },
8803   { "menu.draw_xoffset.INFO[VERSION]",          "0"                     },
8804   { "menu.draw_yoffset.INFO[VERSION]",          "0"                     },
8805   { "menu.draw_xoffset.INFO[LEVELSET]",         "0"                     },
8806   { "menu.draw_yoffset.INFO[LEVELSET]",         "0"                     },
8807   { "menu.draw_xoffset.SETUP",                  "0"                     },
8808   { "menu.draw_yoffset.SETUP",                  "0"                     },
8809   { "menu.draw_xoffset.SETUP[GAME]",            "0"                     },
8810   { "menu.draw_yoffset.SETUP[GAME]",            "0"                     },
8811   { "menu.draw_xoffset.SETUP[ENGINES]",         "0"                     },
8812   { "menu.draw_yoffset.SETUP[ENGINES]",         "0"                     },
8813   { "menu.draw_xoffset.SETUP[EDITOR]",          "0"                     },
8814   { "menu.draw_yoffset.SETUP[EDITOR]",          "0"                     },
8815   { "menu.draw_xoffset.SETUP[GRAPHICS]",        "0"                     },
8816   { "menu.draw_yoffset.SETUP[GRAPHICS]",        "0"                     },
8817   { "menu.draw_xoffset.SETUP[SOUND]",           "0"                     },
8818   { "menu.draw_yoffset.SETUP[SOUND]",           "0"                     },
8819   { "menu.draw_xoffset.SETUP[ARTWORK]",         "0"                     },
8820   { "menu.draw_yoffset.SETUP[ARTWORK]",         "0"                     },
8821   { "menu.draw_xoffset.SETUP[INPUT]",           "0"                     },
8822   { "menu.draw_yoffset.SETUP[INPUT]",           "0"                     },
8823   { "menu.draw_xoffset.SETUP[TOUCH]",           "0"                     },
8824   { "menu.draw_yoffset.SETUP[TOUCH]",           "0"                     },
8825   { "menu.draw_xoffset.SETUP[SHORTCUTS]",       "0"                     },
8826   { "menu.draw_yoffset.SETUP[SHORTCUTS]",       "0"                     },
8827   { "menu.draw_xoffset.SETUP[SHORTCUTS_1]",     "0"                     },
8828   { "menu.draw_yoffset.SETUP[SHORTCUTS_1]",     "0"                     },
8829   { "menu.draw_xoffset.SETUP[SHORTCUTS_2]",     "0"                     },
8830   { "menu.draw_yoffset.SETUP[SHORTCUTS_2]",     "0"                     },
8831   { "menu.draw_xoffset.SETUP[SHORTCUTS_3]",     "0"                     },
8832   { "menu.draw_yoffset.SETUP[SHORTCUTS_3]",     "0"                     },
8833   { "menu.draw_xoffset.SETUP[SHORTCUTS_4]",     "0"                     },
8834   { "menu.draw_yoffset.SETUP[SHORTCUTS_4]",     "0"                     },
8835   { "menu.draw_xoffset.SETUP[SHORTCUTS_5]",     "0"                     },
8836   { "menu.draw_yoffset.SETUP[SHORTCUTS_5]",     "0"                     },
8837   { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
8838   { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
8839   { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
8840   { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
8841
8842   { "menu.scrollbar_xoffset",                   "0"                     },
8843
8844   { "menu.list.SETUP[CHOOSE_OTHER].align",      "left"                  },
8845   { "menu.list.SETUP[CHOOSE_OTHER].valign",     "top"                   },
8846
8847   { "menu.list_size",                           "-1"                    },
8848   { "menu.list_size.NAMES",                     "-1"                    },
8849   { "menu.list_size.LEVELS",                    "-1"                    },
8850   { "menu.list_size.LEVELNR",                   "-1"                    },
8851   { "menu.list_size.SCORES",                    "-1"                    },
8852   { "menu.list_size.INFO",                      "-1"                    },
8853   { "menu.list_size.INFO[ELEMENTS]",            "-1"                    },
8854   { "menu.list_size.SETUP",                     "-1"                    },
8855
8856   { "menu.list_entry_size.INFO[ELEMENTS]",      "-1"                    },
8857
8858   { "menu.tile_size.INFO[ELEMENTS]",            "-1"                    },
8859
8860   { "menu.left_spacing.SCOREINFO",              "16"                    },
8861   { "menu.left_spacing.INFO",                   "16"                    },
8862   { "menu.left_spacing.INFO[TITLE]",            "16"                    },
8863   { "menu.left_spacing.INFO[ELEMENTS]",         "16"                    },
8864   { "menu.left_spacing.INFO[MUSIC]",            "16"                    },
8865   { "menu.left_spacing.INFO[CREDITS]",          "16"                    },
8866   { "menu.left_spacing.INFO[PROGRAM]",          "16"                    },
8867   { "menu.left_spacing.INFO[VERSION]",          "16"                    },
8868   { "menu.left_spacing.INFO[LEVELSET]",         "16"                    },
8869   { "menu.left_spacing.SETUP[INPUT]",           "16"                    },
8870
8871   { "menu.middle_spacing.INFO[ELEMENTS]",       "16"                    },
8872
8873   { "menu.right_spacing.SCOREINFO",             "16"                    },
8874   { "menu.right_spacing.INFO",                  "16"                    },
8875   { "menu.right_spacing.INFO[TITLE]",           "16"                    },
8876   { "menu.right_spacing.INFO[ELEMENTS]",        "16"                    },
8877   { "menu.right_spacing.INFO[MUSIC]",           "16"                    },
8878   { "menu.right_spacing.INFO[CREDITS]",         "16"                    },
8879   { "menu.right_spacing.INFO[PROGRAM]",         "16"                    },
8880   { "menu.right_spacing.INFO[VERSION]",         "16"                    },
8881   { "menu.right_spacing.INFO[LEVELSET]",        "16"                    },
8882   { "menu.right_spacing.SETUP[INPUT]",          "16"                    },
8883
8884   { "menu.top_spacing.SCOREINFO",               "100"                   },
8885   { "menu.top_spacing.INFO",                    "100"                   },
8886   { "menu.top_spacing.INFO[TITLE]",             "100"                   },
8887   { "menu.top_spacing.INFO[ELEMENTS]",          "100"                   },
8888   { "menu.top_spacing.INFO[MUSIC]",             "100"                   },
8889   { "menu.top_spacing.INFO[CREDITS]",           "100"                   },
8890   { "menu.top_spacing.INFO[PROGRAM]",           "100"                   },
8891   { "menu.top_spacing.INFO[VERSION]",           "100"                   },
8892   { "menu.top_spacing.INFO[LEVELSET]",          "100"                   },
8893   { "menu.top_spacing.SETUP[INPUT]",            "100"                   },
8894
8895   { "menu.bottom_spacing.SCOREINFO",            "20"                    },
8896   { "menu.bottom_spacing.INFO",                 "20"                    },
8897   { "menu.bottom_spacing.INFO[TITLE]",          "20"                    },
8898   { "menu.bottom_spacing.INFO[ELEMENTS]",       "20"                    },
8899   { "menu.bottom_spacing.INFO[MUSIC]",          "20"                    },
8900   { "menu.bottom_spacing.INFO[CREDITS]",        "20"                    },
8901   { "menu.bottom_spacing.INFO[PROGRAM]",        "20"                    },
8902   { "menu.bottom_spacing.INFO[VERSION]",        "20"                    },
8903   { "menu.bottom_spacing.INFO[LEVELSET]",       "20"                    },
8904   { "menu.bottom_spacing.SETUP[INPUT]",         "20"                    },
8905
8906   { "menu.paragraph_spacing.SCOREINFO",         "-2"                    },
8907   { "menu.paragraph_spacing.INFO",              "-3"                    },
8908   { "menu.paragraph_spacing.INFO[TITLE]",       "-3"                    },
8909   { "menu.paragraph_spacing.INFO[ELEMENTS]",    "-3"                    },
8910   { "menu.paragraph_spacing.INFO[MUSIC]",       "-3"                    },
8911   { "menu.paragraph_spacing.INFO[CREDITS]",     "-3"                    },
8912   { "menu.paragraph_spacing.INFO[PROGRAM]",     "-3"                    },
8913   { "menu.paragraph_spacing.INFO[VERSION]",     "-2"                    },
8914   { "menu.paragraph_spacing.INFO[LEVELSET]",    "-3"                    },
8915   { "menu.paragraph_spacing.SETUP[INPUT]",      "-1"                    },
8916
8917   { "menu.headline1_spacing.SCOREINFO",         "-2"                    },
8918   { "menu.headline1_spacing.INFO",              "-2"                    },
8919   { "menu.headline1_spacing.INFO[TITLE]",       "-2"                    },
8920   { "menu.headline1_spacing.INFO[ELEMENTS]",    "-2"                    },
8921   { "menu.headline1_spacing.INFO[MUSIC]",       "-2"                    },
8922   { "menu.headline1_spacing.INFO[CREDITS]",     "-2"                    },
8923   { "menu.headline1_spacing.INFO[PROGRAM]",     "-2"                    },
8924   { "menu.headline1_spacing.INFO[VERSION]",     "-2"                    },
8925   { "menu.headline1_spacing.INFO[LEVELSET]",    "-2"                    },
8926   { "menu.headline1_spacing.SETUP[INPUT]",      "-2"                    },
8927
8928   { "menu.headline2_spacing.SCOREINFO",         "-1"                    },
8929   { "menu.headline2_spacing.INFO",              "-1"                    },
8930   { "menu.headline2_spacing.INFO[TITLE]",       "-1"                    },
8931   { "menu.headline2_spacing.INFO[ELEMENTS]",    "-1"                    },
8932   { "menu.headline2_spacing.INFO[MUSIC]",       "-1"                    },
8933   { "menu.headline2_spacing.INFO[CREDITS]",     "-1"                    },
8934   { "menu.headline2_spacing.INFO[PROGRAM]",     "-1"                    },
8935   { "menu.headline2_spacing.INFO[VERSION]",     "-1"                    },
8936   { "menu.headline2_spacing.INFO[LEVELSET]",    "-1"                    },
8937   { "menu.headline2_spacing.SETUP[INPUT]",      "-1"                    },
8938
8939   { "menu.line_spacing.SCOREINFO",              "0"                     },
8940   { "menu.line_spacing.INFO",                   "0"                     },
8941   { "menu.line_spacing.INFO[TITLE]",            "0"                     },
8942   { "menu.line_spacing.INFO[ELEMENTS]",         "0"                     },
8943   { "menu.line_spacing.INFO[MUSIC]",            "0"                     },
8944   { "menu.line_spacing.INFO[CREDITS]",          "0"                     },
8945   { "menu.line_spacing.INFO[PROGRAM]",          "0"                     },
8946   { "menu.line_spacing.INFO[VERSION]",          "0"                     },
8947   { "menu.line_spacing.INFO[LEVELSET]",         "0"                     },
8948   { "menu.line_spacing.SETUP[INPUT]",           "0"                     },
8949
8950   { "menu.extra_spacing.SCOREINFO",             "2"                     },
8951   { "menu.extra_spacing.INFO",                  "2"                     },
8952   { "menu.extra_spacing.INFO[TITLE]",           "2"                     },
8953   { "menu.extra_spacing.INFO[ELEMENTS]",        "4"                     },
8954   { "menu.extra_spacing.INFO[MUSIC]",           "2"                     },
8955   { "menu.extra_spacing.INFO[CREDITS]",         "2"                     },
8956   { "menu.extra_spacing.INFO[PROGRAM]",         "2"                     },
8957   { "menu.extra_spacing.INFO[VERSION]",         "2"                     },
8958   { "menu.extra_spacing.INFO[LEVELSET]",        "2"                     },
8959   { "menu.extra_spacing.SETUP[INPUT]",          "2"                     },
8960
8961   { "main.button.name.x",                       "0"                     },
8962   { "main.button.name.y",                       "64"                    },
8963   { "main.button.levels.x",                     "0"                     },
8964   { "main.button.levels.y",                     "96"                    },
8965   { "main.button.scores.x",                     "0"                     },
8966   { "main.button.scores.y",                     "128"                   },
8967   { "main.button.editor.x",                     "0"                     },
8968   { "main.button.editor.y",                     "160"                   },
8969   { "main.button.info.x",                       "0"                     },
8970   { "main.button.info.y",                       "192"                   },
8971   { "main.button.game.x",                       "0"                     },
8972   { "main.button.game.y",                       "224"                   },
8973   { "main.button.setup.x",                      "0"                     },
8974   { "main.button.setup.y",                      "256"                   },
8975   { "main.button.quit.x",                       "0"                     },
8976   { "main.button.quit.y",                       "288"                   },
8977
8978   { "main.button.first_level.x",                "-1"                    },
8979   { "main.button.first_level.y",                "-1"                    },
8980   { "main.button.last_level.x",                 "-1"                    },
8981   { "main.button.last_level.y",                 "-1"                    },
8982   { "main.button.level_number.x",               "-1"                    },
8983   { "main.button.level_number.y",               "-1"                    },
8984
8985   { "main.button.prev_level.x",                 "320"                   },
8986   { "main.button.prev_level.y",                 "96"                    },
8987   { "main.button.next_level.x",                 "448"                   },
8988   { "main.button.next_level.y",                 "96"                    },
8989
8990   { "main.button.insert_solution.x",            "-1"                    },
8991   { "main.button.insert_solution.y",            "-1"                    },
8992   { "main.button.play_solution.x",              "-1"                    },
8993   { "main.button.play_solution.y",              "-1"                    },
8994
8995   { "main.button.levelset_info.x",              "-1"                    },
8996   { "main.button.levelset_info.y",              "-1"                    },
8997
8998   { "main.button.switch_ecs_aga.x",             "-1"                    },
8999   { "main.button.switch_ecs_aga.y",             "-1"                    },
9000
9001   { "main.text.name.x",                         "-1"                    },
9002   { "main.text.name.y",                         "-1"                    },
9003   { "main.text.name.width",                     "-1"                    },
9004   { "main.text.name.height",                    "-1"                    },
9005   { "main.text.name.align",                     "left"                  },
9006   { "main.text.name.valign",                    "top"                   },
9007   { "main.text.name.font",                      "font.menu_1"           },
9008   { "main.text.levels.x",                       "-1"                    },
9009   { "main.text.levels.y",                       "-1"                    },
9010   { "main.text.levels.width",                   "-1"                    },
9011   { "main.text.levels.height",                  "-1"                    },
9012   { "main.text.levels.align",                   "left"                  },
9013   { "main.text.levels.valign",                  "top"                   },
9014   { "main.text.levels.font",                    "font.menu_1"           },
9015   { "main.text.scores.x",                       "-1"                    },
9016   { "main.text.scores.y",                       "-1"                    },
9017   { "main.text.scores.width",                   "-1"                    },
9018   { "main.text.scores.height",                  "-1"                    },
9019   { "main.text.scores.align",                   "left"                  },
9020   { "main.text.scores.valign",                  "top"                   },
9021   { "main.text.scores.font",                    "font.menu_1"           },
9022   { "main.text.editor.x",                       "-1"                    },
9023   { "main.text.editor.y",                       "-1"                    },
9024   { "main.text.editor.width",                   "-1"                    },
9025   { "main.text.editor.height",                  "-1"                    },
9026   { "main.text.editor.align",                   "left"                  },
9027   { "main.text.editor.valign",                  "top"                   },
9028   { "main.text.editor.font",                    "font.menu_1"           },
9029   { "main.text.info.x",                         "-1"                    },
9030   { "main.text.info.y",                         "-1"                    },
9031   { "main.text.info.width",                     "-1"                    },
9032   { "main.text.info.height",                    "-1"                    },
9033   { "main.text.info.align",                     "left"                  },
9034   { "main.text.info.valign",                    "top"                   },
9035   { "main.text.info.font",                      "font.menu_1"           },
9036   { "main.text.game.x",                         "-1"                    },
9037   { "main.text.game.y",                         "-1"                    },
9038   { "main.text.game.width",                     "-1"                    },
9039   { "main.text.game.height",                    "-1"                    },
9040   { "main.text.game.align",                     "left"                  },
9041   { "main.text.game.valign",                    "top"                   },
9042   { "main.text.game.font",                      "font.menu_1"           },
9043   { "main.text.setup.x",                        "-1"                    },
9044   { "main.text.setup.y",                        "-1"                    },
9045   { "main.text.setup.width",                    "-1"                    },
9046   { "main.text.setup.height",                   "-1"                    },
9047   { "main.text.setup.align",                    "left"                  },
9048   { "main.text.setup.valign",                   "top"                   },
9049   { "main.text.setup.font",                     "font.menu_1"           },
9050   { "main.text.quit.x",                         "-1"                    },
9051   { "main.text.quit.y",                         "-1"                    },
9052   { "main.text.quit.width",                     "-1"                    },
9053   { "main.text.quit.height",                    "-1"                    },
9054   { "main.text.quit.align",                     "left"                  },
9055   { "main.text.quit.valign",                    "top"                   },
9056   { "main.text.quit.font",                      "font.menu_1"           },
9057
9058   { "main.text.first_level.x",                  "488"                   },
9059   { "main.text.first_level.y",                  "98"                    },
9060   { "main.text.first_level.align",              "left"                  },
9061   { "main.text.first_level.valign",             "top"                   },
9062   { "main.text.first_level.digits",             "3"                     },
9063   { "main.text.first_level.font",               "font.text_3"           },
9064   { "main.text.last_level.x",                   "488"                   },
9065   { "main.text.last_level.y",                   "112"                   },
9066   { "main.text.last_level.align",               "left"                  },
9067   { "main.text.last_level.valign",              "top"                   },
9068   { "main.text.last_level.digits",              "3"                     },
9069   { "main.text.last_level.font",                "font.text_3"           },
9070   { "main.text.level_number.x",                 "352"                   },
9071   { "main.text.level_number.y",                 "96"                    },
9072   { "main.text.level_number.align",             "left"                  },
9073   { "main.text.level_number.valign",            "top"                   },
9074   { "main.text.level_number.digits",            "3"                     },
9075   { "main.text.level_number.font",              "font.value_1"          },
9076   { "main.text.level_info_1.x",                 "272"                   },
9077   { "main.text.level_info_1.y",                 "352"                   },
9078   { "main.text.level_info_1.align",             "center"                },
9079   { "main.text.level_info_1.valign",            "top"                   },
9080   { "main.text.level_info_1.chars",             "-1"                    },
9081   { "main.text.level_info_1.font",              "font.text_1"           },
9082   { "main.text.level_info_2.x",                 "272"                   },
9083   { "main.text.level_info_2.y",                 "523"                   },
9084   { "main.text.level_info_2.align",             "center"                },
9085   { "main.text.level_info_2.valign",            "top"                   },
9086   { "main.text.level_info_2.chars",             "-1"                    },
9087   { "main.text.level_info_2.font",              "font.text_2"           },
9088   { "main.text.level_info_2.font_header",       "font.text_4"           },
9089   { "main.text.level_name.x",                   "-1"                    },
9090   { "main.text.level_name.y",                   "-1"                    },
9091   { "main.text.level_name.align",               "left"                  },
9092   { "main.text.level_name.valign",              "top"                   },
9093   { "main.text.level_name.chars",               "-1"                    },
9094   { "main.text.level_name.font",                "font.text_2"           },
9095   { "main.text.level_author.x",                 "-1"                    },
9096   { "main.text.level_author.y",                 "-1"                    },
9097   { "main.text.level_author.align",             "left"                  },
9098   { "main.text.level_author.valign",            "top"                   },
9099   { "main.text.level_author.chars",             "-1"                    },
9100   { "main.text.level_author.font",              "font.text_2"           },
9101   { "main.text.level_year.x",                   "-1"                    },
9102   { "main.text.level_year.y",                   "-1"                    },
9103   { "main.text.level_year.align",               "left"                  },
9104   { "main.text.level_year.valign",              "top"                   },
9105   { "main.text.level_year.digits",              "-1"                    },
9106   { "main.text.level_year.font",                "font.text_2"           },
9107   { "main.text.level_imported_from.x",          "-1"                    },
9108   { "main.text.level_imported_from.y",          "-1"                    },
9109   { "main.text.level_imported_from.align",      "left"                  },
9110   { "main.text.level_imported_from.valign",     "top"                   },
9111   { "main.text.level_imported_from.chars",      "-1"                    },
9112   { "main.text.level_imported_from.font",       "font.text_2"           },
9113   { "main.text.level_imported_by.x",            "-1"                    },
9114   { "main.text.level_imported_by.y",            "-1"                    },
9115   { "main.text.level_imported_by.align",        "left"                  },
9116   { "main.text.level_imported_by.valign",       "top"                   },
9117   { "main.text.level_imported_by.chars",        "-1"                    },
9118   { "main.text.level_imported_by.font",         "font.text_2"           },
9119   { "main.text.level_tested_by.x",              "-1"                    },
9120   { "main.text.level_tested_by.y",              "-1"                    },
9121   { "main.text.level_tested_by.align",          "left"                  },
9122   { "main.text.level_tested_by.valign",         "top"                   },
9123   { "main.text.level_tested_by.chars",          "-1"                    },
9124   { "main.text.level_tested_by.font",           "font.text_2"           },
9125   { "main.text.title_1.x",                      "272"                   },
9126   { "main.text.title_1.y",                      "8"                     },
9127   { "main.text.title_1.align",                  "center"                },
9128   { "main.text.title_1.valign",                 "top"                   },
9129   { "main.text.title_1.font",                   "font.title_1"          },
9130   { "main.text.title_2.x",                      "272"                   },
9131   { "main.text.title_2.y",                      "46"                    },
9132   { "main.text.title_2.align",                  "center"                },
9133   { "main.text.title_2.valign",                 "top"                   },
9134   { "main.text.title_2.font",                   "font.title_2"          },
9135   { "main.text.title_3.x",                      "272"                   },
9136   { "main.text.title_3.y",                      "326"                   },
9137   { "main.text.title_3.align",                  "center"                },
9138   { "main.text.title_3.valign",                 "top"                   },
9139   { "main.text.title_3.font",                   "font.title_2"          },
9140
9141   { "main.input.name.x",                        "-1"                    },
9142   { "main.input.name.y",                        "-1"                    },
9143   { "main.input.name.align",                    "left"                  },
9144   { "main.input.name.valign",                   "top"                   },
9145   { "main.input.name.font",                     "font.input_1"          },
9146
9147   { "main.network_players.x",                   "68"                    },
9148   { "main.network_players.y",                   "448"                   },
9149   { "main.network_players.align",               "center"                },
9150   { "main.network_players.valign",              "middle"                },
9151   { "main.network_players.font",                "font.main.network_players" },
9152   { "main.network_players.tile_size",           "16"                    },
9153   { "main.network_players.border_size",         "2"                     },
9154
9155   { "main.preview_players.x",                   "474"                   },
9156   { "main.preview_players.y",                   "448"                   },
9157   { "main.preview_players.align",               "center"                },
9158   { "main.preview_players.valign",              "middle"                },
9159   { "main.preview_players.tile_size",           "32"                    },
9160   { "main.preview_players.border_size",         "2"                     },
9161   { "main.preview_players.vertical",            "false"                 },
9162   { "main.preview_players.xoffset",             "-1"                    },
9163   { "main.preview_players.yoffset",             "-1"                    },
9164
9165   { "setup.button.prev_player.x",               "320"                   },
9166   { "setup.button.prev_player.y",               "64"                    },
9167   { "setup.button.next_player.x",               "384"                   },
9168   { "setup.button.next_player.y",               "64"                    },
9169
9170   { "setup.button.touch_back.x",                "0"                     },
9171   { "setup.button.touch_back.y",                "0"                     },
9172   { "setup.button.touch_next.x",                "-60"                   },
9173   { "setup.button.touch_next.y",                "0"                     },
9174   { "setup.button.touch_back2.x",               "0"                     },
9175   { "setup.button.touch_back2.y",               "-60"                   },
9176   { "setup.button.touch_next2.x",               "-60"                   },
9177   { "setup.button.touch_next2.y",               "-60"                   },
9178
9179   { "scores.button.prev_level.x",               "-1"                    },
9180   { "scores.button.prev_level.y",               "-1"                    },
9181   { "scores.button.next_level.x",               "-1"                    },
9182   { "scores.button.next_level.y",               "-1"                    },
9183
9184   { "scores.button.prev_score.x",               "-1"                    },
9185   { "scores.button.prev_score.y",               "-1"                    },
9186   { "scores.button.next_score.x",               "-1"                    },
9187   { "scores.button.next_score.y",               "-1"                    },
9188
9189   { "scores.button.play_tape.x",                "-1"                    },
9190   { "scores.button.play_tape.y",                "-1"                    },
9191
9192   { "preview.x",                                "272"                   },
9193   { "preview.y",                                "380"                   },
9194   { "preview.align",                            "center"                },
9195   { "preview.valign",                           "top"                   },
9196   { "preview.xsize",                            "66"                    },
9197   { "preview.ysize",                            "34"                    },
9198   { "preview.xoffset",                          "0"                     },
9199   { "preview.yoffset",                          "0"                     },
9200   { "preview.tile_size",                        "4"                     },
9201   { "preview.step_offset",                      "1"                     },
9202   { "preview.step_delay",                       "50"                    },
9203   { "preview.anim_mode",                        "default"               },
9204
9205   { "door_1.part_1.x",                          "0"                     },
9206   { "door_1.part_1.y",                          "0"                     },
9207   { "door_1.part_1.step_xoffset",               "3"                     },
9208   { "door_1.part_1.step_yoffset",               "1"                     },
9209   { "door_1.part_1.step_delay",                 "10"                    },
9210   { "door_1.part_1.start_step",                 "0"                     },
9211   { "door_1.part_1.start_step_opening",         "0"                     },
9212   { "door_1.part_1.start_step_closing",         "0"                     },
9213   { "door_1.part_1.draw_masked",                "true"                  },
9214   { "door_1.part_1.draw_order",                 "3"                     },
9215   { "door_1.part_2.x",                          "0"                     },
9216   { "door_1.part_2.y",                          "77"                    },
9217   { "door_1.part_2.step_xoffset",               "3"                     },
9218   { "door_1.part_2.step_yoffset",               "1"                     },
9219   { "door_1.part_2.step_delay",                 "10"                    },
9220   { "door_1.part_2.start_step",                 "0"                     },
9221   { "door_1.part_2.start_step_opening",         "0"                     },
9222   { "door_1.part_2.start_step_closing",         "0"                     },
9223   { "door_1.part_2.draw_masked",                "true"                  },
9224   { "door_1.part_2.draw_order",                 "5"                     },
9225   { "door_1.part_3.x",                          "0"                     },
9226   { "door_1.part_3.y",                          "140"                   },
9227   { "door_1.part_3.step_xoffset",               "3"                     },
9228   { "door_1.part_3.step_yoffset",               "1"                     },
9229   { "door_1.part_3.step_delay",                 "10"                    },
9230   { "door_1.part_3.start_step",                 "0"                     },
9231   { "door_1.part_3.start_step_opening",         "0"                     },
9232   { "door_1.part_3.start_step_closing",         "0"                     },
9233   { "door_1.part_3.draw_masked",                "true"                  },
9234   { "door_1.part_3.draw_order",                 "4"                     },
9235   { "door_1.part_4.x",                          "0"                     },
9236   { "door_1.part_4.y",                          "203"                   },
9237   { "door_1.part_4.step_xoffset",               "3"                     },
9238   { "door_1.part_4.step_yoffset",               "1"                     },
9239   { "door_1.part_4.step_delay",                 "10"                    },
9240   { "door_1.part_4.start_step",                 "0"                     },
9241   { "door_1.part_4.start_step_opening",         "0"                     },
9242   { "door_1.part_4.start_step_closing",         "0"                     },
9243   { "door_1.part_4.draw_masked",                "true"                  },
9244   { "door_1.part_4.draw_order",                 "6"                     },
9245   { "door_1.part_5.x",                          "0"                     },
9246   { "door_1.part_5.y",                          "0"                     },
9247   { "door_1.part_5.step_xoffset",               "-3"                    },
9248   { "door_1.part_5.step_yoffset",               "-1"                    },
9249   { "door_1.part_5.step_delay",                 "10"                    },
9250   { "door_1.part_5.start_step",                 "0"                     },
9251   { "door_1.part_5.start_step_opening",         "0"                     },
9252   { "door_1.part_5.start_step_closing",         "0"                     },
9253   { "door_1.part_5.draw_masked",                "true"                  },
9254   { "door_1.part_5.draw_order",                 "1"                     },
9255   { "door_1.part_6.x",                          "0"                     },
9256   { "door_1.part_6.y",                          "77"                    },
9257   { "door_1.part_6.step_xoffset",               "-3"                    },
9258   { "door_1.part_6.step_yoffset",               "-1"                    },
9259   { "door_1.part_6.step_delay",                 "10"                    },
9260   { "door_1.part_6.start_step",                 "0"                     },
9261   { "door_1.part_6.start_step_opening",         "0"                     },
9262   { "door_1.part_6.start_step_closing",         "0"                     },
9263   { "door_1.part_6.draw_masked",                "true"                  },
9264   { "door_1.part_6.draw_order",                 "7"                     },
9265   { "door_1.part_7.x",                          "0"                     },
9266   { "door_1.part_7.y",                          "140"                   },
9267   { "door_1.part_7.step_xoffset",               "-3"                    },
9268   { "door_1.part_7.step_yoffset",               "-1"                    },
9269   { "door_1.part_7.step_delay",                 "10"                    },
9270   { "door_1.part_7.start_step",                 "0"                     },
9271   { "door_1.part_7.start_step_opening",         "0"                     },
9272   { "door_1.part_7.start_step_closing",         "0"                     },
9273   { "door_1.part_7.draw_masked",                "true"                  },
9274   { "door_1.part_7.draw_order",                 "2"                     },
9275   { "door_1.part_8.x",                          "0"                     },
9276   { "door_1.part_8.y",                          "203"                   },
9277   { "door_1.part_8.step_xoffset",               "-3"                    },
9278   { "door_1.part_8.step_yoffset",               "-1"                    },
9279   { "door_1.part_8.step_delay",                 "10"                    },
9280   { "door_1.part_8.start_step",                 "0"                     },
9281   { "door_1.part_8.start_step_opening",         "0"                     },
9282   { "door_1.part_8.start_step_closing",         "0"                     },
9283   { "door_1.part_8.draw_masked",                "true"                  },
9284   { "door_1.part_8.draw_order",                 "8"                     },
9285
9286   { "door_2.part_1.x",                          "0"                     },
9287   { "door_2.part_1.y",                          "0"                     },
9288   { "door_2.part_1.step_xoffset",               "3"                     },
9289   { "door_2.part_1.step_yoffset",               "1"                     },
9290   { "door_2.part_1.step_delay",                 "10"                    },
9291   { "door_2.part_1.start_step",                 "0"                     },
9292   { "door_2.part_1.start_step_opening",         "0"                     },
9293   { "door_2.part_1.start_step_closing",         "0"                     },
9294   { "door_2.part_1.draw_masked",                "true"                  },
9295   { "door_2.part_1.draw_order",                 "2"                     },
9296   { "door_2.part_2.x",                          "0"                     },
9297   { "door_2.part_2.y",                          "50"                    },
9298   { "door_2.part_2.step_xoffset",               "3"                     },
9299   { "door_2.part_2.step_yoffset",               "1"                     },
9300   { "door_2.part_2.step_delay",                 "10"                    },
9301   { "door_2.part_2.start_step",                 "0"                     },
9302   { "door_2.part_2.start_step_opening",         "0"                     },
9303   { "door_2.part_2.start_step_closing",         "0"                     },
9304   { "door_2.part_2.draw_masked",                "true"                  },
9305   { "door_2.part_2.draw_order",                 "3"                     },
9306   { "door_2.part_3.x",                          "0"                     },
9307   { "door_2.part_3.y",                          "0"                     },
9308   { "door_2.part_3.step_xoffset",               "-3"                    },
9309   { "door_2.part_3.step_yoffset",               "-1"                    },
9310   { "door_2.part_3.step_delay",                 "10"                    },
9311   { "door_2.part_3.start_step",                 "0"                     },
9312   { "door_2.part_3.start_step_opening",         "0"                     },
9313   { "door_2.part_3.start_step_closing",         "0"                     },
9314   { "door_2.part_3.draw_masked",                "true"                  },
9315   { "door_2.part_3.draw_order",                 "1"                     },
9316   { "door_2.part_4.x",                          "0"                     },
9317   { "door_2.part_4.y",                          "50"                    },
9318   { "door_2.part_4.step_xoffset",               "-3"                    },
9319   { "door_2.part_4.step_yoffset",               "-1"                    },
9320   { "door_2.part_4.step_delay",                 "10"                    },
9321   { "door_2.part_4.start_step",                 "0"                     },
9322   { "door_2.part_4.start_step_opening",         "0"                     },
9323   { "door_2.part_4.start_step_closing",         "0"                     },
9324   { "door_2.part_4.draw_masked",                "true"                  },
9325   { "door_2.part_4.draw_order",                 "4"                     },
9326   { "door_2.part_5.x",                          "-1"                    },
9327   { "door_2.part_5.y",                          "-1"                    },
9328   { "door_2.part_5.step_xoffset",               "0"                     },
9329   { "door_2.part_5.step_yoffset",               "0"                     },
9330   { "door_2.part_5.step_delay",                 "0"                     },
9331   { "door_2.part_5.start_step",                 "0"                     },
9332   { "door_2.part_5.start_step_opening",         "0"                     },
9333   { "door_2.part_5.start_step_closing",         "0"                     },
9334   { "door_2.part_5.draw_masked",                "true"                  },
9335   { "door_2.part_5.draw_order",                 "0"                     },
9336   { "door_2.part_6.x",                          "-1"                    },
9337   { "door_2.part_6.y",                          "-1"                    },
9338   { "door_2.part_6.step_xoffset",               "0"                     },
9339   { "door_2.part_6.step_yoffset",               "0"                     },
9340   { "door_2.part_6.step_delay",                 "0"                     },
9341   { "door_2.part_6.start_step",                 "0"                     },
9342   { "door_2.part_6.start_step_opening",         "0"                     },
9343   { "door_2.part_6.start_step_closing",         "0"                     },
9344   { "door_2.part_6.draw_masked",                "true"                  },
9345   { "door_2.part_6.draw_order",                 "0"                     },
9346   { "door_2.part_7.x",                          "-1"                    },
9347   { "door_2.part_7.y",                          "-1"                    },
9348   { "door_2.part_7.step_xoffset",               "0"                     },
9349   { "door_2.part_7.step_yoffset",               "0"                     },
9350   { "door_2.part_7.step_delay",                 "0"                     },
9351   { "door_2.part_7.start_step",                 "0"                     },
9352   { "door_2.part_7.start_step_opening",         "0"                     },
9353   { "door_2.part_7.start_step_closing",         "0"                     },
9354   { "door_2.part_7.draw_masked",                "true"                  },
9355   { "door_2.part_7.draw_order",                 "0"                     },
9356   { "door_2.part_8.x",                          "-1"                    },
9357   { "door_2.part_8.y",                          "-1"                    },
9358   { "door_2.part_8.step_xoffset",               "0"                     },
9359   { "door_2.part_8.step_yoffset",               "0"                     },
9360   { "door_2.part_8.step_delay",                 "0"                     },
9361   { "door_2.part_8.start_step",                 "0"                     },
9362   { "door_2.part_8.start_step_opening",         "0"                     },
9363   { "door_2.part_8.start_step_closing",         "0"                     },
9364   { "door_2.part_8.draw_masked",                "true"                  },
9365   { "door_2.part_8.draw_order",                 "0"                     },
9366
9367   { "door_1.panel.x",                           "0"                     },
9368   { "door_1.panel.y",                           "0"                     },
9369   { "door_1.panel.step_xoffset",                "0"                     },
9370   { "door_1.panel.step_yoffset",                "1"                     },
9371   { "door_1.panel.step_delay",                  "10"                    },
9372   { "door_1.panel.start_step",                  "246"                   },
9373   { "door_1.panel.start_step_opening",          "0"                     },
9374   { "door_1.panel.start_step_closing",          "0"                     },
9375   { "door_1.panel.draw_masked",                 "false"                 },
9376   { "door_1.panel.draw_order",                  "0"                     },
9377
9378   { "door_2.panel.x",                           "0"                     },
9379   { "door_2.panel.y",                           "0"                     },
9380   { "door_2.panel.step_xoffset",                "0"                     },
9381   { "door_2.panel.step_yoffset",                "1"                     },
9382   { "door_2.panel.step_delay",                  "10"                    },
9383   { "door_2.panel.start_step",                  "66"                    },
9384   { "door_2.panel.start_step_opening",          "0"                     },
9385   { "door_2.panel.start_step_closing",          "0"                     },
9386   { "door_2.panel.draw_masked",                 "false"                 },
9387   { "door_2.panel.draw_order",                  "0"                     },
9388
9389   { "door_1.width",                             "-1"                    },
9390   { "door_1.height",                            "-1"                    },
9391   { "door_1.step_offset",                       "2"                     },
9392   { "door_1.step_delay",                        "10"                    },
9393   { "door_1.post_delay",                        "100"                   },
9394   { "door_1.anim_mode",                         "default"               },
9395
9396   { "door_2.width",                             "-1"                    },
9397   { "door_2.height",                            "-1"                    },
9398   { "door_2.step_offset",                       "2"                     },
9399   { "door_2.step_delay",                        "10"                    },
9400   { "door_2.post_delay",                        "100"                   },
9401   { "door_2.anim_mode",                         "default"               },
9402
9403   { "game.panel.level_number.x",                "51"                    },
9404   { "game.panel.level_number.y",                "20"                    },
9405   { "game.panel.level_number.align",            "center"                },
9406   { "game.panel.level_number.valign",           "top"                   },
9407   { "game.panel.level_number.digits",           "-1"                    },
9408   { "game.panel.level_number.font",             "font.text_2"           },
9409   { "game.panel.level_number.font_narrow",      "font.text_1"           },
9410   { "game.panel.level_number.draw_masked",      "true"                  },
9411   { "game.panel.level_number.draw_order",       "0"                     },
9412   { "game.panel.level_number.class",            "none"                  },
9413   { "game.panel.level_number.style",            "none"                  },
9414
9415   { "game.panel.gems.x",                        "50"                    },
9416   { "game.panel.gems.y",                        "54"                    },
9417   { "game.panel.gems.align",                    "center"                },
9418   { "game.panel.gems.valign",                   "top"                   },
9419   { "game.panel.gems.digits",                   "3"                     },
9420   { "game.panel.gems.font",                     "font.text_2"           },
9421   { "game.panel.gems.draw_masked",              "true"                  },
9422   { "game.panel.gems.draw_order",               "0"                     },
9423   { "game.panel.gems.class",                    "none"                  },
9424   { "game.panel.gems.style",                    "none"                  },
9425
9426   { "game.panel.gems_total.x",                  "-1"                    },
9427   { "game.panel.gems_total.y",                  "-1"                    },
9428   { "game.panel.gems_total.align",              "left"                  },
9429   { "game.panel.gems_total.valign",             "top"                   },
9430   { "game.panel.gems_total.digits",             "-1"                    },
9431   { "game.panel.gems_total.font",               "font.text_2"           },
9432   { "game.panel.gems_total.draw_masked",        "true"                  },
9433   { "game.panel.gems_total.draw_order",         "0"                     },
9434   { "game.panel.gems_total.class",              "none"                  },
9435   { "game.panel.gems_total.style",              "none"                  },
9436
9437   { "game.panel.gems_collected.x",              "-1"                    },
9438   { "game.panel.gems_collected.y",              "-1"                    },
9439   { "game.panel.gems_collected.align",          "left"                  },
9440   { "game.panel.gems_collected.valign",         "top"                   },
9441   { "game.panel.gems_collected.digits",         "-1"                    },
9442   { "game.panel.gems_collected.font",           "font.text_2"           },
9443   { "game.panel.gems_collected.draw_masked",    "true"                  },
9444   { "game.panel.gems_collected.draw_order",     "0"                     },
9445   { "game.panel.gems_collected.class",          "none"                  },
9446   { "game.panel.gems_collected.style",          "none"                  },
9447
9448   { "game.panel.gems_score.x",                  "-1"                    },
9449   { "game.panel.gems_score.y",                  "-1"                    },
9450   { "game.panel.gems_score.align",              "left"                  },
9451   { "game.panel.gems_score.valign",             "top"                   },
9452   { "game.panel.gems_score.digits",             "-1"                    },
9453   { "game.panel.gems_score.font",               "font.text_2"           },
9454   { "game.panel.gems_score.draw_masked",        "true"                  },
9455   { "game.panel.gems_score.draw_order",         "0"                     },
9456   { "game.panel.gems_score.class",              "none"                  },
9457   { "game.panel.gems_score.style",              "none"                  },
9458
9459   { "game.panel.inventory_count.x",             "50"                    },
9460   { "game.panel.inventory_count.y",             "89"                    },
9461   { "game.panel.inventory_count.align",         "center"                },
9462   { "game.panel.inventory_count.valign",        "top"                   },
9463   { "game.panel.inventory_count.digits",        "-1"                    },
9464   { "game.panel.inventory_count.font",          "font.text_2"           },
9465   { "game.panel.inventory_count.font_narrow",   "font.text_1"           },
9466   { "game.panel.inventory_count.draw_masked",   "true"                  },
9467   { "game.panel.inventory_count.draw_order",    "0"                     },
9468   { "game.panel.inventory_count.class",         "none"                  },
9469   { "game.panel.inventory_count.style",         "none"                  },
9470
9471   { "game.panel.inventory_first_1.x",           "-1"                    },
9472   { "game.panel.inventory_first_1.y",           "-1"                    },
9473   { "game.panel.inventory_first_1.tile_size",   "16"                    },
9474   { "game.panel.inventory_first_1.draw_masked", "false"                 },
9475   { "game.panel.inventory_first_1.draw_order",  "0"                     },
9476   { "game.panel.inventory_first_1.class",       "none"                  },
9477   { "game.panel.inventory_first_1.style",       "none"                  },
9478   { "game.panel.inventory_first_2.x",           "-1"                    },
9479   { "game.panel.inventory_first_2.y",           "-1"                    },
9480   { "game.panel.inventory_first_2.tile_size",   "16"                    },
9481   { "game.panel.inventory_first_2.draw_masked", "false"                 },
9482   { "game.panel.inventory_first_2.draw_order",  "0"                     },
9483   { "game.panel.inventory_first_2.class",       "none"                  },
9484   { "game.panel.inventory_first_2.style",       "none"                  },
9485   { "game.panel.inventory_first_3.x",           "-1"                    },
9486   { "game.panel.inventory_first_3.y",           "-1"                    },
9487   { "game.panel.inventory_first_3.tile_size",   "16"                    },
9488   { "game.panel.inventory_first_3.draw_masked", "false"                 },
9489   { "game.panel.inventory_first_3.draw_order",  "0"                     },
9490   { "game.panel.inventory_first_3.class",       "none"                  },
9491   { "game.panel.inventory_first_3.style",       "none"                  },
9492   { "game.panel.inventory_first_4.x",           "-1"                    },
9493   { "game.panel.inventory_first_4.y",           "-1"                    },
9494   { "game.panel.inventory_first_4.tile_size",   "16"                    },
9495   { "game.panel.inventory_first_4.draw_masked", "false"                 },
9496   { "game.panel.inventory_first_4.draw_order",  "0"                     },
9497   { "game.panel.inventory_first_4.class",       "none"                  },
9498   { "game.panel.inventory_first_4.style",       "none"                  },
9499   { "game.panel.inventory_first_5.x",           "-1"                    },
9500   { "game.panel.inventory_first_5.y",           "-1"                    },
9501   { "game.panel.inventory_first_5.tile_size",   "16"                    },
9502   { "game.panel.inventory_first_5.draw_masked", "false"                 },
9503   { "game.panel.inventory_first_5.draw_order",  "0"                     },
9504   { "game.panel.inventory_first_5.class",       "none"                  },
9505   { "game.panel.inventory_first_5.style",       "none"                  },
9506   { "game.panel.inventory_first_6.x",           "-1"                    },
9507   { "game.panel.inventory_first_6.y",           "-1"                    },
9508   { "game.panel.inventory_first_6.tile_size",   "16"                    },
9509   { "game.panel.inventory_first_6.draw_masked", "false"                 },
9510   { "game.panel.inventory_first_6.draw_order",  "0"                     },
9511   { "game.panel.inventory_first_6.class",       "none"                  },
9512   { "game.panel.inventory_first_6.style",       "none"                  },
9513   { "game.panel.inventory_first_7.x",           "-1"                    },
9514   { "game.panel.inventory_first_7.y",           "-1"                    },
9515   { "game.panel.inventory_first_7.tile_size",   "16"                    },
9516   { "game.panel.inventory_first_7.draw_masked", "false"                 },
9517   { "game.panel.inventory_first_7.draw_order",  "0"                     },
9518   { "game.panel.inventory_first_7.class",       "none"                  },
9519   { "game.panel.inventory_first_7.style",       "none"                  },
9520   { "game.panel.inventory_first_8.x",           "-1"                    },
9521   { "game.panel.inventory_first_8.y",           "-1"                    },
9522   { "game.panel.inventory_first_8.tile_size",   "16"                    },
9523   { "game.panel.inventory_first_8.draw_masked", "false"                 },
9524   { "game.panel.inventory_first_8.draw_order",  "0"                     },
9525   { "game.panel.inventory_first_8.class",       "none"                  },
9526   { "game.panel.inventory_first_8.style",       "none"                  },
9527
9528   { "game.panel.inventory_last_1.x",            "-1"                    },
9529   { "game.panel.inventory_last_1.y",            "-1"                    },
9530   { "game.panel.inventory_last_1.tile_size",    "16"                    },
9531   { "game.panel.inventory_last_1.draw_masked",  "false"                 },
9532   { "game.panel.inventory_last_1.draw_order",   "0"                     },
9533   { "game.panel.inventory_last_1.class",        "none"                  },
9534   { "game.panel.inventory_last_1.style",        "none"                  },
9535   { "game.panel.inventory_last_2.x",            "-1"                    },
9536   { "game.panel.inventory_last_2.y",            "-1"                    },
9537   { "game.panel.inventory_last_2.tile_size",    "16"                    },
9538   { "game.panel.inventory_last_2.draw_masked",  "false"                 },
9539   { "game.panel.inventory_last_2.draw_order",   "0"                     },
9540   { "game.panel.inventory_last_2.class",        "none"                  },
9541   { "game.panel.inventory_last_2.style",        "none"                  },
9542   { "game.panel.inventory_last_3.x",            "-1"                    },
9543   { "game.panel.inventory_last_3.y",            "-1"                    },
9544   { "game.panel.inventory_last_3.tile_size",    "16"                    },
9545   { "game.panel.inventory_last_3.draw_masked",  "false"                 },
9546   { "game.panel.inventory_last_3.draw_order",   "0"                     },
9547   { "game.panel.inventory_last_3.class",        "none"                  },
9548   { "game.panel.inventory_last_3.style",        "none"                  },
9549   { "game.panel.inventory_last_4.x",            "-1"                    },
9550   { "game.panel.inventory_last_4.y",            "-1"                    },
9551   { "game.panel.inventory_last_4.tile_size",    "16"                    },
9552   { "game.panel.inventory_last_4.draw_masked",  "false"                 },
9553   { "game.panel.inventory_last_4.draw_order",   "0"                     },
9554   { "game.panel.inventory_last_4.class",        "none"                  },
9555   { "game.panel.inventory_last_4.style",        "none"                  },
9556   { "game.panel.inventory_last_5.x",            "-1"                    },
9557   { "game.panel.inventory_last_5.y",            "-1"                    },
9558   { "game.panel.inventory_last_5.tile_size",    "16"                    },
9559   { "game.panel.inventory_last_5.draw_masked",  "false"                 },
9560   { "game.panel.inventory_last_5.draw_order",   "0"                     },
9561   { "game.panel.inventory_last_5.class",        "none"                  },
9562   { "game.panel.inventory_last_5.style",        "none"                  },
9563   { "game.panel.inventory_last_6.x",            "-1"                    },
9564   { "game.panel.inventory_last_6.y",            "-1"                    },
9565   { "game.panel.inventory_last_6.tile_size",    "16"                    },
9566   { "game.panel.inventory_last_6.draw_masked",  "false"                 },
9567   { "game.panel.inventory_last_6.draw_order",   "0"                     },
9568   { "game.panel.inventory_last_6.class",        "none"                  },
9569   { "game.panel.inventory_last_6.style",        "none"                  },
9570   { "game.panel.inventory_last_7.x",            "-1"                    },
9571   { "game.panel.inventory_last_7.y",            "-1"                    },
9572   { "game.panel.inventory_last_7.tile_size",    "16"                    },
9573   { "game.panel.inventory_last_7.draw_masked",  "false"                 },
9574   { "game.panel.inventory_last_7.draw_order",   "0"                     },
9575   { "game.panel.inventory_last_7.class",        "none"                  },
9576   { "game.panel.inventory_last_7.style",        "none"                  },
9577   { "game.panel.inventory_last_8.x",            "-1"                    },
9578   { "game.panel.inventory_last_8.y",            "-1"                    },
9579   { "game.panel.inventory_last_8.tile_size",    "16"                    },
9580   { "game.panel.inventory_last_8.draw_masked",  "false"                 },
9581   { "game.panel.inventory_last_8.draw_order",   "0"                     },
9582   { "game.panel.inventory_last_8.class",        "none"                  },
9583   { "game.panel.inventory_last_8.style",        "none"                  },
9584
9585   { "game.panel.key_1.x",                       "18"                    },
9586   { "game.panel.key_1.y",                       "123"                   },
9587   { "game.panel.key_1.tile_size",               "16"                    },
9588   { "game.panel.key_1.draw_masked",             "false"                 },
9589   { "game.panel.key_1.draw_order",              "0"                     },
9590   { "game.panel.key_1.class",                   "none"                  },
9591   { "game.panel.key_1.style",                   "none"                  },
9592   { "game.panel.key_2.x",                       "34"                    },
9593   { "game.panel.key_2.y",                       "123"                   },
9594   { "game.panel.key_2.tile_size",               "16"                    },
9595   { "game.panel.key_2.draw_masked",             "false"                 },
9596   { "game.panel.key_2.draw_order",              "0"                     },
9597   { "game.panel.key_2.class",                   "none"                  },
9598   { "game.panel.key_2.style",                   "none"                  },
9599   { "game.panel.key_3.x",                       "50"                    },
9600   { "game.panel.key_3.y",                       "123"                   },
9601   { "game.panel.key_3.tile_size",               "16"                    },
9602   { "game.panel.key_3.draw_masked",             "false"                 },
9603   { "game.panel.key_3.draw_order",              "0"                     },
9604   { "game.panel.key_3.class",                   "none"                  },
9605   { "game.panel.key_3.style",                   "none"                  },
9606   { "game.panel.key_4.x",                       "66"                    },
9607   { "game.panel.key_4.y",                       "123"                   },
9608   { "game.panel.key_4.tile_size",               "16"                    },
9609   { "game.panel.key_4.draw_masked",             "false"                 },
9610   { "game.panel.key_4.draw_order",              "0"                     },
9611   { "game.panel.key_4.class",                   "none"                  },
9612   { "game.panel.key_4.style",                   "none"                  },
9613   { "game.panel.key_5.x",                       "-1"                    },
9614   { "game.panel.key_5.y",                       "-1"                    },
9615   { "game.panel.key_5.tile_size",               "16"                    },
9616   { "game.panel.key_5.draw_masked",             "false"                 },
9617   { "game.panel.key_5.draw_order",              "0"                     },
9618   { "game.panel.key_5.class",                   "none"                  },
9619   { "game.panel.key_5.style",                   "none"                  },
9620   { "game.panel.key_6.x",                       "-1"                    },
9621   { "game.panel.key_6.y",                       "-1"                    },
9622   { "game.panel.key_6.tile_size",               "16"                    },
9623   { "game.panel.key_6.draw_masked",             "false"                 },
9624   { "game.panel.key_6.draw_order",              "0"                     },
9625   { "game.panel.key_6.class",                   "none"                  },
9626   { "game.panel.key_6.style",                   "none"                  },
9627   { "game.panel.key_7.x",                       "-1"                    },
9628   { "game.panel.key_7.y",                       "-1"                    },
9629   { "game.panel.key_7.tile_size",               "16"                    },
9630   { "game.panel.key_7.draw_masked",             "false"                 },
9631   { "game.panel.key_7.draw_order",              "0"                     },
9632   { "game.panel.key_7.class",                   "none"                  },
9633   { "game.panel.key_7.style",                   "none"                  },
9634   { "game.panel.key_8.x",                       "-1"                    },
9635   { "game.panel.key_8.y",                       "-1"                    },
9636   { "game.panel.key_8.tile_size",               "16"                    },
9637   { "game.panel.key_8.draw_masked",             "false"                 },
9638   { "game.panel.key_8.draw_order",              "0"                     },
9639   { "game.panel.key_8.class",                   "none"                  },
9640   { "game.panel.key_8.style",                   "none"                  },
9641   { "game.panel.key_white.x",                   "-1"                    },
9642   { "game.panel.key_white.y",                   "-1"                    },
9643   { "game.panel.key_white.tile_size",           "16"                    },
9644   { "game.panel.key_white.draw_masked",         "false"                 },
9645   { "game.panel.key_white.draw_order",          "0"                     },
9646   { "game.panel.key_white.class",               "none"                  },
9647   { "game.panel.key_white.style",               "none"                  },
9648   { "game.panel.key_white_count.x",             "-1"                    },
9649   { "game.panel.key_white_count.y",             "-1"                    },
9650   { "game.panel.key_white_count.align",         "left"                  },
9651   { "game.panel.key_white_count.valign",        "top"                   },
9652   { "game.panel.key_white_count.digits",        "-1"                    },
9653   { "game.panel.key_white_count.font",          "font.text_2"           },
9654   { "game.panel.key_white_count.draw_masked",   "true"                  },
9655   { "game.panel.key_white_count.draw_order",    "0"                     },
9656   { "game.panel.key_white_count.class",         "none"                  },
9657   { "game.panel.key_white_count.style",         "none"                  },
9658
9659   { "game.panel.score.x",                       "50"                    },
9660   { "game.panel.score.y",                       "159"                   },
9661   { "game.panel.score.align",                   "center"                },
9662   { "game.panel.score.valign",                  "top"                   },
9663   { "game.panel.score.digits",                  "-1"                    },
9664   { "game.panel.score.font",                    "font.text_2"           },
9665   { "game.panel.score.font_narrow",             "font.text_1"           },
9666   { "game.panel.score.draw_masked",             "true"                  },
9667   { "game.panel.score.draw_order",              "0"                     },
9668   { "game.panel.score.class",                   "none"                  },
9669   { "game.panel.score.style",                   "none"                  },
9670
9671   { "game.panel.highscore.x",                   "-1"                    },
9672   { "game.panel.highscore.y",                   "-1"                    },
9673   { "game.panel.highscore.align",               "left"                  },
9674   { "game.panel.highscore.valign",              "top"                   },
9675   { "game.panel.highscore.digits",              "-1"                    },
9676   { "game.panel.highscore.font",                "font.text_2"           },
9677   { "game.panel.highscore.font_narrow",         "font.text_1"           },
9678   { "game.panel.highscore.draw_masked",         "true"                  },
9679   { "game.panel.highscore.draw_order",          "0"                     },
9680   { "game.panel.highscore.class",               "none"                  },
9681   { "game.panel.highscore.style",               "none"                  },
9682
9683   { "game.panel.time.x",                        "50"                    },
9684   { "game.panel.time.y",                        "194"                   },
9685   { "game.panel.time.align",                    "center"                },
9686   { "game.panel.time.valign",                   "top"                   },
9687   { "game.panel.time.digits",                   "-1"                    },
9688   { "game.panel.time.font",                     "font.text_2"           },
9689   { "game.panel.time.font_narrow",              "font.text_1"           },
9690   { "game.panel.time.draw_masked",              "true"                  },
9691   { "game.panel.time.draw_order",               "0"                     },
9692   { "game.panel.time.class",                    "none"                  },
9693   { "game.panel.time.style",                    "none"                  },
9694
9695   { "game.panel.time_hh.x",                     "-1"                    },
9696   { "game.panel.time_hh.y",                     "-1"                    },
9697   { "game.panel.time_hh.align",                 "left"                  },
9698   { "game.panel.time_hh.valign",                "top"                   },
9699   { "game.panel.time_hh.digits",                "2"                     },
9700   { "game.panel.time_hh.font",                  "font.text_2"           },
9701   { "game.panel.time_hh.draw_masked",           "true"                  },
9702   { "game.panel.time_hh.draw_order",            "0"                     },
9703   { "game.panel.time_hh.class",                 "none"                  },
9704   { "game.panel.time_hh.style",                 "none"                  },
9705   { "game.panel.time_mm.x",                     "-1"                    },
9706   { "game.panel.time_mm.y",                     "-1"                    },
9707   { "game.panel.time_mm.align",                 "left"                  },
9708   { "game.panel.time_mm.valign",                "top"                   },
9709   { "game.panel.time_mm.digits",                "2"                     },
9710   { "game.panel.time_mm.font",                  "font.text_2"           },
9711   { "game.panel.time_mm.draw_masked",           "true"                  },
9712   { "game.panel.time_mm.draw_order",            "0"                     },
9713   { "game.panel.time_mm.class",                 "none"                  },
9714   { "game.panel.time_mm.style",                 "none"                  },
9715   { "game.panel.time_ss.x",                     "-1"                    },
9716   { "game.panel.time_ss.y",                     "-1"                    },
9717   { "game.panel.time_ss.align",                 "left"                  },
9718   { "game.panel.time_ss.valign",                "top"                   },
9719   { "game.panel.time_ss.digits",                "2"                     },
9720   { "game.panel.time_ss.font",                  "font.text_2"           },
9721   { "game.panel.time_ss.draw_masked",           "true"                  },
9722   { "game.panel.time_ss.draw_order",            "0"                     },
9723   { "game.panel.time_ss.class",                 "none"                  },
9724   { "game.panel.time_ss.style",                 "none"                  },
9725
9726   { "game.panel.time_anim.x",                   "5"                     },
9727   { "game.panel.time_anim.y",                   "72"                    },
9728   { "game.panel.time_anim.direction",           "right"                 },
9729   { "game.panel.time_anim.class",               "mm_engine_only"        },
9730   { "game.panel.time_anim.style",               "none"                  },
9731
9732   { "game.panel.health.x",                      "-1"                    },
9733   { "game.panel.health.y",                      "-1"                    },
9734   { "game.panel.health.align",                  "center"                },
9735   { "game.panel.health.valign",                 "top"                   },
9736   { "game.panel.health.digits",                 "-1"                    },
9737   { "game.panel.health.font",                   "font.text_2"           },
9738   { "game.panel.health.font_narrow",            "font.text_1"           },
9739   { "game.panel.health.draw_masked",            "true"                  },
9740   { "game.panel.health.draw_order",             "0"                     },
9741   { "game.panel.health.class",                  "none"                  },
9742   { "game.panel.health.style",                  "none"                  },
9743
9744   { "game.panel.health_anim.x",                 "5"                     },
9745   { "game.panel.health_anim.y",                 "107"                   },
9746   { "game.panel.health_anim.direction",         "right"                 },
9747   { "game.panel.health_anim.class",             "mm_engine_only"        },
9748   { "game.panel.health_anim.style",             "reverse"               },
9749
9750   { "game.panel.frame.x",                       "-1"                    },
9751   { "game.panel.frame.y",                       "-1"                    },
9752   { "game.panel.frame.align",                   "left"                  },
9753   { "game.panel.frame.valign",                  "top"                   },
9754   { "game.panel.frame.digits",                  "-1"                    },
9755   { "game.panel.frame.font",                    "font.text_2"           },
9756   { "game.panel.frame.draw_masked",             "true"                  },
9757   { "game.panel.frame.draw_order",              "0"                     },
9758   { "game.panel.frame.class",                   "none"                  },
9759   { "game.panel.frame.style",                   "none"                  },
9760
9761   { "game.panel.shield_normal.x",               "-1"                    },
9762   { "game.panel.shield_normal.y",               "-1"                    },
9763   { "game.panel.shield_normal.tile_size",       "16"                    },
9764   { "game.panel.shield_normal.draw_masked",     "false"                 },
9765   { "game.panel.shield_normal.draw_order",      "0"                     },
9766   { "game.panel.shield_normal_time.x",          "-1"                    },
9767   { "game.panel.shield_normal_time.y",          "-1"                    },
9768   { "game.panel.shield_normal_time.align",      "left"                  },
9769   { "game.panel.shield_normal_time.valign",     "top"                   },
9770   { "game.panel.shield_normal_time.digits",     "-1"                    },
9771   { "game.panel.shield_normal_time.font",       "font.text_2"           },
9772   { "game.panel.shield_normal_time.draw_masked", "true"                 },
9773   { "game.panel.shield_normal_time.draw_order", "0"                     },
9774   { "game.panel.shield_normal_time.class",      "none"                  },
9775   { "game.panel.shield_normal_time.style",      "none"                  },
9776   { "game.panel.shield_deadly.x",               "-1"                    },
9777   { "game.panel.shield_deadly.y",               "-1"                    },
9778   { "game.panel.shield_deadly.tile_size",       "16"                    },
9779   { "game.panel.shield_deadly.draw_masked",     "false"                 },
9780   { "game.panel.shield_deadly.draw_order",      "0"                     },
9781   { "game.panel.shield_deadly_time.x",          "-1"                    },
9782   { "game.panel.shield_deadly_time.y",          "-1"                    },
9783   { "game.panel.shield_deadly_time.align",      "left"                  },
9784   { "game.panel.shield_deadly_time.valign",     "top"                   },
9785   { "game.panel.shield_deadly_time.digits",     "-1"                    },
9786   { "game.panel.shield_deadly_time.font",       "font.text_2"           },
9787   { "game.panel.shield_deadly_time.draw_masked","true"                  },
9788   { "game.panel.shield_deadly_time.draw_order", "0"                     },
9789   { "game.panel.shield_deadly_time.class",      "none"                  },
9790   { "game.panel.shield_deadly_time.style",      "none"                  },
9791
9792   { "game.panel.exit.x",                        "-1"                    },
9793   { "game.panel.exit.y",                        "-1"                    },
9794   { "game.panel.exit.tile_size",                "16"                    },
9795   { "game.panel.exit.draw_masked",              "false"                 },
9796   { "game.panel.exit.draw_order",               "0"                     },
9797   { "game.panel.exit.class",                    "none"                  },
9798   { "game.panel.exit.style",                    "none"                  },
9799
9800   { "game.panel.emc_magic_ball.x",              "-1"                    },
9801   { "game.panel.emc_magic_ball.y",              "-1"                    },
9802   { "game.panel.emc_magic_ball.tile_size",      "16"                    },
9803   { "game.panel.emc_magic_ball.draw_masked",    "false"                 },
9804   { "game.panel.emc_magic_ball.draw_order",     "0"                     },
9805   { "game.panel.emc_magic_ball_switch.x",       "-1"                    },
9806   { "game.panel.emc_magic_ball_switch.y",       "-1"                    },
9807   { "game.panel.emc_magic_ball_switch.tile_size", "16"                  },
9808   { "game.panel.emc_magic_ball_switch.draw_masked", "true"              },
9809   { "game.panel.emc_magic_ball_switch.draw_order", "0"                  },
9810   { "game.panel.emc_magic_ball_switch.class",   "none"                  },
9811   { "game.panel.emc_magic_ball_switch.style",   "none"                  },
9812
9813   { "game.panel.light_switch.x",                "-1"                    },
9814   { "game.panel.light_switch.y",                "-1"                    },
9815   { "game.panel.light_switch.tile_size",        "16"                    },
9816   { "game.panel.light_switch.draw_masked",      "false"                 },
9817   { "game.panel.light_switch.draw_order",       "0"                     },
9818   { "game.panel.light_switch_time.x",           "-1"                    },
9819   { "game.panel.light_switch_time.y",           "-1"                    },
9820   { "game.panel.light_switch_time.align",       "left"                  },
9821   { "game.panel.light_switch_time.valign",      "top"                   },
9822   { "game.panel.light_switch_time.digits",      "-1"                    },
9823   { "game.panel.light_switch_time.font",        "font.text_2"           },
9824   { "game.panel.light_switch_time.draw_masked", "true"                  },
9825   { "game.panel.light_switch_time.draw_order",  "0"                     },
9826   { "game.panel.light_switch_time.class",       "none"                  },
9827   { "game.panel.light_switch_time.style",       "none"                  },
9828
9829   { "game.panel.timegate_switch.x",             "-1"                    },
9830   { "game.panel.timegate_switch.y",             "-1"                    },
9831   { "game.panel.timegate_switch.tile_size",     "16"                    },
9832   { "game.panel.timegate_switch.draw_masked",   "false"                 },
9833   { "game.panel.timegate_switch.draw_order",    "0"                     },
9834   { "game.panel.timegate_switch_time.x",        "-1"                    },
9835   { "game.panel.timegate_switch_time.y",        "-1"                    },
9836   { "game.panel.timegate_switch_time.align",    "left"                  },
9837   { "game.panel.timegate_switch_time.valign",   "top"                   },
9838   { "game.panel.timegate_switch_time.digits",   "-1"                    },
9839   { "game.panel.timegate_switch_time.font",     "font.text_2"           },
9840   { "game.panel.timegate_switch_time.draw_masked", "true"               },
9841   { "game.panel.timegate_switch_time.draw_order", "0"                   },
9842   { "game.panel.timegate_switch_time.class",    "none"                  },
9843   { "game.panel.timegate_switch_time.style",    "none"                  },
9844
9845   { "game.panel.switchgate_switch.x",           "-1"                    },
9846   { "game.panel.switchgate_switch.y",           "-1"                    },
9847   { "game.panel.switchgate_switch.tile_size",   "16"                    },
9848   { "game.panel.switchgate_switch.draw_masked", "false"                 },
9849   { "game.panel.switchgate_switch.draw_order",  "0"                     },
9850   { "game.panel.switchgate_switch.class",       "none"                  },
9851   { "game.panel.switchgate_switch.style",       "none"                  },
9852
9853   { "game.panel.emc_lenses.x",                  "-1"                    },
9854   { "game.panel.emc_lenses.y",                  "-1"                    },
9855   { "game.panel.emc_lenses.tile_size",          "16"                    },
9856   { "game.panel.emc_lenses.draw_masked",        "false"                 },
9857   { "game.panel.emc_lenses.draw_order",         "0"                     },
9858   { "game.panel.emc_lenses.class",              "none"                  },
9859   { "game.panel.emc_lenses.style",              "none"                  },
9860   { "game.panel.emc_lenses_time.x",             "-1"                    },
9861   { "game.panel.emc_lenses_time.y",             "-1"                    },
9862   { "game.panel.emc_lenses_time.align",         "left"                  },
9863   { "game.panel.emc_lenses_time.valign",        "top"                   },
9864   { "game.panel.emc_lenses_time.digits",        "-1"                    },
9865   { "game.panel.emc_lenses_time.font",          "font.text_2"           },
9866   { "game.panel.emc_lenses_time.draw_masked",   "true"                  },
9867   { "game.panel.emc_lenses_time.draw_order",    "0"                     },
9868   { "game.panel.emc_lenses_time.class",         "none"                  },
9869   { "game.panel.emc_lenses_time.style",         "none"                  },
9870
9871   { "game.panel.emc_magnifier.x",               "-1"                    },
9872   { "game.panel.emc_magnifier.y",               "-1"                    },
9873   { "game.panel.emc_magnifier.tile_size",       "16"                    },
9874   { "game.panel.emc_magnifier.draw_masked",     "false"                 },
9875   { "game.panel.emc_magnifier.draw_order",      "0"                     },
9876   { "game.panel.emc_magnifier.class",           "none"                  },
9877   { "game.panel.emc_magnifier.style",           "none"                  },
9878   { "game.panel.emc_magnifier_time.x",          "-1"                    },
9879   { "game.panel.emc_magnifier_time.y",          "-1"                    },
9880   { "game.panel.emc_magnifier_time.align",      "left"                  },
9881   { "game.panel.emc_magnifier_time.valign",     "top"                   },
9882   { "game.panel.emc_magnifier_time.digits",     "-1"                    },
9883   { "game.panel.emc_magnifier_time.font",       "font.text_2"           },
9884   { "game.panel.emc_magnifier_time.draw_masked","true"                  },
9885   { "game.panel.emc_magnifier_time.draw_order", "0"                     },
9886   { "game.panel.emc_magnifier_time.class",      "none"                  },
9887   { "game.panel.emc_magnifier_time.style",      "none"                  },
9888
9889   { "game.panel.balloon_switch.x",              "-1"                    },
9890   { "game.panel.balloon_switch.y",              "-1"                    },
9891   { "game.panel.balloon_switch.tile_size",      "16"                    },
9892   { "game.panel.balloon_switch.draw_masked",    "false"                 },
9893   { "game.panel.balloon_switch.draw_order",     "0"                     },
9894   { "game.panel.balloon_switch.class",          "none"                  },
9895   { "game.panel.balloon_switch.style",          "none"                  },
9896
9897   { "game.panel.dynabomb_number.x",             "-1"                    },
9898   { "game.panel.dynabomb_number.y",             "-1"                    },
9899   { "game.panel.dynabomb_number.align",         "left"                  },
9900   { "game.panel.dynabomb_number.valign",        "top"                   },
9901   { "game.panel.dynabomb_number.digits",        "-1"                    },
9902   { "game.panel.dynabomb_number.font",          "font.text_2"           },
9903   { "game.panel.dynabomb_number.draw_masked",   "true"                  },
9904   { "game.panel.dynabomb_number.draw_order",    "0"                     },
9905   { "game.panel.dynabomb_number.class",         "none"                  },
9906   { "game.panel.dynabomb_number.style",         "none"                  },
9907   { "game.panel.dynabomb_size.x",               "-1"                    },
9908   { "game.panel.dynabomb_size.y",               "-1"                    },
9909   { "game.panel.dynabomb_size.align",           "left"                  },
9910   { "game.panel.dynabomb_size.valign",          "top"                   },
9911   { "game.panel.dynabomb_size.digits",          "-1"                    },
9912   { "game.panel.dynabomb_size.font",            "font.text_2"           },
9913   { "game.panel.dynabomb_size.draw_masked",     "true"                  },
9914   { "game.panel.dynabomb_size.draw_order",      "0"                     },
9915   { "game.panel.dynabomb_size.class",           "none"                  },
9916   { "game.panel.dynabomb_size.style",           "none"                  },
9917   { "game.panel.dynabomb_power.x",              "-1"                    },
9918   { "game.panel.dynabomb_power.y",              "-1"                    },
9919   { "game.panel.dynabomb_power.tile_size",      "16"                    },
9920   { "game.panel.dynabomb_power.draw_masked",    "false"                 },
9921   { "game.panel.dynabomb_power.draw_order",     "0"                     },
9922   { "game.panel.dynabomb_power.class",          "none"                  },
9923   { "game.panel.dynabomb_power.style",          "none"                  },
9924
9925   { "game.panel.penguins.x",                    "-1"                    },
9926   { "game.panel.penguins.y",                    "-1"                    },
9927   { "game.panel.penguins.align",                "left"                  },
9928   { "game.panel.penguins.valign",               "top"                   },
9929   { "game.panel.penguins.digits",               "-1"                    },
9930   { "game.panel.penguins.font",                 "font.text_2"           },
9931   { "game.panel.penguins.draw_masked",          "true"                  },
9932   { "game.panel.penguins.draw_order",           "0"                     },
9933   { "game.panel.penguins.class",                "none"                  },
9934   { "game.panel.penguins.style",                "none"                  },
9935
9936   { "game.panel.sokoban_objects.x",             "-1"                    },
9937   { "game.panel.sokoban_objects.y",             "-1"                    },
9938   { "game.panel.sokoban_objects.align",         "left"                  },
9939   { "game.panel.sokoban_objects.valign",        "top"                   },
9940   { "game.panel.sokoban_objects.digits",        "-1"                    },
9941   { "game.panel.sokoban_objects.font",          "font.text_2"           },
9942   { "game.panel.sokoban_objects.draw_masked",   "true"                  },
9943   { "game.panel.sokoban_objects.draw_order",    "0"                     },
9944   { "game.panel.sokoban_objects.class",         "none"                  },
9945   { "game.panel.sokoban_objects.style",         "none"                  },
9946   { "game.panel.sokoban_fields.x",              "-1"                    },
9947   { "game.panel.sokoban_fields.y",              "-1"                    },
9948   { "game.panel.sokoban_fields.align",          "left"                  },
9949   { "game.panel.sokoban_fields.valign",         "top"                   },
9950   { "game.panel.sokoban_fields.digits",         "-1"                    },
9951   { "game.panel.sokoban_fields.font",           "font.text_2"           },
9952   { "game.panel.sokoban_fields.draw_masked",    "true"                  },
9953   { "game.panel.sokoban_fields.draw_order",     "0"                     },
9954   { "game.panel.sokoban_fields.class",          "none"                  },
9955   { "game.panel.sokoban_fields.style",          "none"                  },
9956
9957   { "game.panel.robot_wheel.x",                 "-1"                    },
9958   { "game.panel.robot_wheel.y",                 "-1"                    },
9959   { "game.panel.robot_wheel.tile_size",         "16"                    },
9960   { "game.panel.robot_wheel.draw_masked",       "false"                 },
9961   { "game.panel.robot_wheel.draw_order",        "0"                     },
9962   { "game.panel.robot_wheel.class",             "none"                  },
9963   { "game.panel.robot_wheel.style",             "none"                  },
9964
9965   { "game.panel.conveyor_belt_1.x",             "-1"                    },
9966   { "game.panel.conveyor_belt_1.y",             "-1"                    },
9967   { "game.panel.conveyor_belt_1.tile_size",     "16"                    },
9968   { "game.panel.conveyor_belt_1.draw_masked",   "false"                 },
9969   { "game.panel.conveyor_belt_1.draw_order",    "0"                     },
9970   { "game.panel.conveyor_belt_1.class",         "none"                  },
9971   { "game.panel.conveyor_belt_1.style",         "none"                  },
9972   { "game.panel.conveyor_belt_1_switch.x",      "-1"                    },
9973   { "game.panel.conveyor_belt_1_switch.y",      "-1"                    },
9974   { "game.panel.conveyor_belt_1_switch.tile_size", "16"                 },
9975   { "game.panel.conveyor_belt_1_switch.draw_masked", "false"            },
9976   { "game.panel.conveyor_belt_1_switch.draw_order", "0"                 },
9977   { "game.panel.conveyor_belt_1_switch.class",  "none"                  },
9978   { "game.panel.conveyor_belt_1_switch.style",  "none"                  },
9979   { "game.panel.conveyor_belt_2.x",             "-1"                    },
9980   { "game.panel.conveyor_belt_2.y",             "-1"                    },
9981   { "game.panel.conveyor_belt_2.tile_size",     "16"                    },
9982   { "game.panel.conveyor_belt_2.draw_masked",   "false"                 },
9983   { "game.panel.conveyor_belt_2.draw_order",    "0"                     },
9984   { "game.panel.conveyor_belt_2.class",         "none"                  },
9985   { "game.panel.conveyor_belt_2.style",         "none"                  },
9986   { "game.panel.conveyor_belt_2_switch.x",      "-1"                    },
9987   { "game.panel.conveyor_belt_2_switch.y",      "-1"                    },
9988   { "game.panel.conveyor_belt_2_switch.tile_size", "16"                 },
9989   { "game.panel.conveyor_belt_2_switch.draw_masked", "false"            },
9990   { "game.panel.conveyor_belt_2_switch.draw_order", "0"                 },
9991   { "game.panel.conveyor_belt_2_switch.class",  "none"                  },
9992   { "game.panel.conveyor_belt_2_switch.style",  "none"                  },
9993   { "game.panel.conveyor_belt_3.x",             "-1"                    },
9994   { "game.panel.conveyor_belt_3.y",             "-1"                    },
9995   { "game.panel.conveyor_belt_3.tile_size",     "16"                    },
9996   { "game.panel.conveyor_belt_3.draw_masked",   "false"                 },
9997   { "game.panel.conveyor_belt_3.draw_order",    "0"                     },
9998   { "game.panel.conveyor_belt_3.class",         "none"                  },
9999   { "game.panel.conveyor_belt_3.style",         "none"                  },
10000   { "game.panel.conveyor_belt_3_switch.x",      "-1"                    },
10001   { "game.panel.conveyor_belt_3_switch.y",      "-1"                    },
10002   { "game.panel.conveyor_belt_3_switch.tile_size", "16"                 },
10003   { "game.panel.conveyor_belt_3_switch.draw_masked", "false"            },
10004   { "game.panel.conveyor_belt_3_switch.draw_order", "0"                 },
10005   { "game.panel.conveyor_belt_3_switch.class",  "none"                  },
10006   { "game.panel.conveyor_belt_3_switch.style",  "none"                  },
10007   { "game.panel.conveyor_belt_4.x",             "-1"                    },
10008   { "game.panel.conveyor_belt_4.y",             "-1"                    },
10009   { "game.panel.conveyor_belt_4.tile_size",     "16"                    },
10010   { "game.panel.conveyor_belt_4.draw_masked",   "false"                 },
10011   { "game.panel.conveyor_belt_4.draw_order",    "0"                     },
10012   { "game.panel.conveyor_belt_4.class",         "none"                  },
10013   { "game.panel.conveyor_belt_4.style",         "none"                  },
10014   { "game.panel.conveyor_belt_4_switch.x",      "-1"                    },
10015   { "game.panel.conveyor_belt_4_switch.y",      "-1"                    },
10016   { "game.panel.conveyor_belt_4_switch.tile_size", "16"                 },
10017   { "game.panel.conveyor_belt_4_switch.draw_masked", "false"            },
10018   { "game.panel.conveyor_belt_4_switch.draw_order", "0"                 },
10019   { "game.panel.conveyor_belt_4_switch.class",  "none"                  },
10020   { "game.panel.conveyor_belt_4_switch.style",  "none"                  },
10021
10022   { "game.panel.magic_wall.x",                  "-1"                    },
10023   { "game.panel.magic_wall.y",                  "-1"                    },
10024   { "game.panel.magic_wall.tile_size",          "16"                    },
10025   { "game.panel.magic_wall.draw_masked",        "false"                 },
10026   { "game.panel.magic_wall.draw_order",         "0"                     },
10027   { "game.panel.magic_wall.class",              "none"                  },
10028   { "game.panel.magic_wall.style",              "none"                  },
10029   { "game.panel.magic_wall_time.x",             "-1"                    },
10030   { "game.panel.magic_wall_time.y",             "-1"                    },
10031   { "game.panel.magic_wall_time.align",         "left"                  },
10032   { "game.panel.magic_wall_time.valign",        "top"                   },
10033   { "game.panel.magic_wall_time.digits",        "-1"                    },
10034   { "game.panel.magic_wall_time.font",          "font.text_2"           },
10035   { "game.panel.magic_wall_time.draw_masked",   "true"                  },
10036   { "game.panel.magic_wall_time.draw_order",    "0"                     },
10037   { "game.panel.magic_wall_time.class",         "none"                  },
10038   { "game.panel.magic_wall_time.style",         "none"                  },
10039
10040   { "game.panel.gravity_state.x",               "-1"                    },
10041   { "game.panel.gravity_state.y",               "-1"                    },
10042   { "game.panel.gravity_state.align",           "left"                  },
10043   { "game.panel.gravity_state.valign",          "top"                   },
10044   { "game.panel.gravity_state.chars",           "-1"                    },
10045   { "game.panel.gravity_state.font",            "font.text_1"           },
10046   { "game.panel.gravity_state.font_active",     "font.text_2"           },
10047   { "game.panel.gravity_state.draw_masked",     "true"                  },
10048   { "game.panel.gravity_state.draw_order",      "0"                     },
10049   { "game.panel.gravity_state.class",           "none"                  },
10050   { "game.panel.gravity_state.style",           "none"                  },
10051
10052   { "game.panel.graphic_1.x",                   "-1"                    },
10053   { "game.panel.graphic_1.y",                   "-1"                    },
10054   { "game.panel.graphic_1.draw_masked",         "true"                  },
10055   { "game.panel.graphic_1.draw_order",          "0"                     },
10056   { "game.panel.graphic_1.class",               "none"                  },
10057   { "game.panel.graphic_1.style",               "none"                  },
10058   { "game.panel.graphic_2.x",                   "-1"                    },
10059   { "game.panel.graphic_2.y",                   "-1"                    },
10060   { "game.panel.graphic_2.draw_masked",         "true"                  },
10061   { "game.panel.graphic_2.draw_order",          "0"                     },
10062   { "game.panel.graphic_2.class",               "none"                  },
10063   { "game.panel.graphic_2.style",               "none"                  },
10064   { "game.panel.graphic_3.x",                   "-1"                    },
10065   { "game.panel.graphic_3.y",                   "-1"                    },
10066   { "game.panel.graphic_3.draw_masked",         "true"                  },
10067   { "game.panel.graphic_3.draw_order",          "0"                     },
10068   { "game.panel.graphic_3.class",               "none"                  },
10069   { "game.panel.graphic_3.style",               "none"                  },
10070   { "game.panel.graphic_4.x",                   "-1"                    },
10071   { "game.panel.graphic_4.y",                   "-1"                    },
10072   { "game.panel.graphic_4.draw_masked",         "true"                  },
10073   { "game.panel.graphic_4.draw_order",          "0"                     },
10074   { "game.panel.graphic_4.class",               "none"                  },
10075   { "game.panel.graphic_4.style",               "none"                  },
10076   { "game.panel.graphic_5.x",                   "-1"                    },
10077   { "game.panel.graphic_5.y",                   "-1"                    },
10078   { "game.panel.graphic_5.draw_masked",         "true"                  },
10079   { "game.panel.graphic_5.draw_order",          "0"                     },
10080   { "game.panel.graphic_5.class",               "none"                  },
10081   { "game.panel.graphic_5.style",               "none"                  },
10082   { "game.panel.graphic_6.x",                   "-1"                    },
10083   { "game.panel.graphic_6.y",                   "-1"                    },
10084   { "game.panel.graphic_6.draw_masked",         "true"                  },
10085   { "game.panel.graphic_6.draw_order",          "0"                     },
10086   { "game.panel.graphic_6.class",               "none"                  },
10087   { "game.panel.graphic_6.style",               "none"                  },
10088   { "game.panel.graphic_7.x",                   "-1"                    },
10089   { "game.panel.graphic_7.y",                   "-1"                    },
10090   { "game.panel.graphic_7.draw_masked",         "true"                  },
10091   { "game.panel.graphic_7.draw_order",          "0"                     },
10092   { "game.panel.graphic_7.class",               "none"                  },
10093   { "game.panel.graphic_7.style",               "none"                  },
10094   { "game.panel.graphic_8.x",                   "-1"                    },
10095   { "game.panel.graphic_8.y",                   "-1"                    },
10096   { "game.panel.graphic_8.draw_masked",         "true"                  },
10097   { "game.panel.graphic_8.draw_order",          "0"                     },
10098   { "game.panel.graphic_8.class",               "none"                  },
10099   { "game.panel.graphic_8.style",               "none"                  },
10100
10101   { "game.panel.element_1.x",                   "-1"                    },
10102   { "game.panel.element_1.y",                   "-1"                    },
10103   { "game.panel.element_1.tile_size",           "16"                    },
10104   { "game.panel.element_1.element",             "empty_space"           },
10105   { "game.panel.element_1.draw_masked",         "false"                 },
10106   { "game.panel.element_1.draw_order",          "0"                     },
10107   { "game.panel.element_1.class",               "none"                  },
10108   { "game.panel.element_1.style",               "none"                  },
10109   { "game.panel.element_1_count.x",             "-1"                    },
10110   { "game.panel.element_1_count.y",             "-1"                    },
10111   { "game.panel.element_1_count.align",         "left"                  },
10112   { "game.panel.element_1_count.valign",        "top"                   },
10113   { "game.panel.element_1_count.digits",        "-1"                    },
10114   { "game.panel.element_1_count.font",          "font.text_2"           },
10115   { "game.panel.element_1_count.element",       "empty_space"           },
10116   { "game.panel.element_1_count.draw_masked",   "true"                  },
10117   { "game.panel.element_1_count.draw_order",    "0"                     },
10118   { "game.panel.element_1_count.class",         "none"                  },
10119   { "game.panel.element_1_count.style",         "none"                  },
10120   { "game.panel.element_2.x",                   "-1"                    },
10121   { "game.panel.element_2.y",                   "-1"                    },
10122   { "game.panel.element_2.tile_size",           "16"                    },
10123   { "game.panel.element_2.element",             "empty_space"           },
10124   { "game.panel.element_2.draw_masked",         "false"                 },
10125   { "game.panel.element_2.draw_order",          "0"                     },
10126   { "game.panel.element_2.class",               "none"                  },
10127   { "game.panel.element_2.style",               "none"                  },
10128   { "game.panel.element_2_count.x",             "-1"                    },
10129   { "game.panel.element_2_count.y",             "-1"                    },
10130   { "game.panel.element_2_count.align",         "left"                  },
10131   { "game.panel.element_2_count.valign",        "top"                   },
10132   { "game.panel.element_2_count.digits",        "-1"                    },
10133   { "game.panel.element_2_count.font",          "font.text_2"           },
10134   { "game.panel.element_2_count.element",       "empty_space"           },
10135   { "game.panel.element_2_count.draw_masked",   "true"                  },
10136   { "game.panel.element_2_count.draw_order",    "0"                     },
10137   { "game.panel.element_2_count.class",         "none"                  },
10138   { "game.panel.element_2_count.style",         "none"                  },
10139   { "game.panel.element_3.x",                   "-1"                    },
10140   { "game.panel.element_3.y",                   "-1"                    },
10141   { "game.panel.element_3.tile_size",           "16"                    },
10142   { "game.panel.element_3.element",             "empty_space"           },
10143   { "game.panel.element_3.draw_masked",         "false"                 },
10144   { "game.panel.element_3.draw_order",          "0"                     },
10145   { "game.panel.element_3.class",               "none"                  },
10146   { "game.panel.element_3.style",               "none"                  },
10147   { "game.panel.element_3_count.x",             "-1"                    },
10148   { "game.panel.element_3_count.y",             "-1"                    },
10149   { "game.panel.element_3_count.align",         "left"                  },
10150   { "game.panel.element_3_count.valign",        "top"                   },
10151   { "game.panel.element_3_count.digits",        "-1"                    },
10152   { "game.panel.element_3_count.font",          "font.text_2"           },
10153   { "game.panel.element_3_count.element",       "empty_space"           },
10154   { "game.panel.element_3_count.draw_masked",   "true"                  },
10155   { "game.panel.element_3_count.draw_order",    "0"                     },
10156   { "game.panel.element_3_count.class",         "none"                  },
10157   { "game.panel.element_3_count.style",         "none"                  },
10158   { "game.panel.element_4.x",                   "-1"                    },
10159   { "game.panel.element_4.y",                   "-1"                    },
10160   { "game.panel.element_4.tile_size",           "16"                    },
10161   { "game.panel.element_4.element",             "empty_space"           },
10162   { "game.panel.element_4.draw_masked",         "false"                 },
10163   { "game.panel.element_4.draw_order",          "0"                     },
10164   { "game.panel.element_4.class",               "none"                  },
10165   { "game.panel.element_4.style",               "none"                  },
10166   { "game.panel.element_4_count.x",             "-1"                    },
10167   { "game.panel.element_4_count.y",             "-1"                    },
10168   { "game.panel.element_4_count.align",         "left"                  },
10169   { "game.panel.element_4_count.valign",        "top"                   },
10170   { "game.panel.element_4_count.digits",        "-1"                    },
10171   { "game.panel.element_4_count.font",          "font.text_2"           },
10172   { "game.panel.element_4_count.element",       "empty_space"           },
10173   { "game.panel.element_4_count.draw_masked",   "true"                  },
10174   { "game.panel.element_4_count.draw_order",    "0"                     },
10175   { "game.panel.element_4_count.class",         "none"                  },
10176   { "game.panel.element_4_count.style",         "none"                  },
10177   { "game.panel.element_5.x",                   "-1"                    },
10178   { "game.panel.element_5.y",                   "-1"                    },
10179   { "game.panel.element_5.tile_size",           "16"                    },
10180   { "game.panel.element_5.element",             "empty_space"           },
10181   { "game.panel.element_5.draw_masked",         "false"                 },
10182   { "game.panel.element_5.draw_order",          "0"                     },
10183   { "game.panel.element_5.class",               "none"                  },
10184   { "game.panel.element_5.style",               "none"                  },
10185   { "game.panel.element_5_count.x",             "-1"                    },
10186   { "game.panel.element_5_count.y",             "-1"                    },
10187   { "game.panel.element_5_count.align",         "left"                  },
10188   { "game.panel.element_5_count.valign",        "top"                   },
10189   { "game.panel.element_5_count.digits",        "-1"                    },
10190   { "game.panel.element_5_count.font",          "font.text_2"           },
10191   { "game.panel.element_5_count.element",       "empty_space"           },
10192   { "game.panel.element_5_count.draw_masked",   "true"                  },
10193   { "game.panel.element_5_count.draw_order",    "0"                     },
10194   { "game.panel.element_5_count.class",         "none"                  },
10195   { "game.panel.element_5_count.style",         "none"                  },
10196   { "game.panel.element_6.x",                   "-1"                    },
10197   { "game.panel.element_6.y",                   "-1"                    },
10198   { "game.panel.element_6.tile_size",           "16"                    },
10199   { "game.panel.element_6.element",             "empty_space"           },
10200   { "game.panel.element_6.draw_masked",         "false"                 },
10201   { "game.panel.element_6.draw_order",          "0"                     },
10202   { "game.panel.element_6.class",               "none"                  },
10203   { "game.panel.element_6.style",               "none"                  },
10204   { "game.panel.element_6_count.x",             "-1"                    },
10205   { "game.panel.element_6_count.y",             "-1"                    },
10206   { "game.panel.element_6_count.align",         "left"                  },
10207   { "game.panel.element_6_count.valign",        "top"                   },
10208   { "game.panel.element_6_count.digits",        "-1"                    },
10209   { "game.panel.element_6_count.font",          "font.text_2"           },
10210   { "game.panel.element_6_count.element",       "empty_space"           },
10211   { "game.panel.element_6_count.draw_masked",   "true"                  },
10212   { "game.panel.element_6_count.draw_order",    "0"                     },
10213   { "game.panel.element_6_count.class",         "none"                  },
10214   { "game.panel.element_6_count.style",         "none"                  },
10215   { "game.panel.element_7.x",                   "-1"                    },
10216   { "game.panel.element_7.y",                   "-1"                    },
10217   { "game.panel.element_7.tile_size",           "16"                    },
10218   { "game.panel.element_7.element",             "empty_space"           },
10219   { "game.panel.element_7.draw_masked",         "false"                 },
10220   { "game.panel.element_7.draw_order",          "0"                     },
10221   { "game.panel.element_7.class",               "none"                  },
10222   { "game.panel.element_7.style",               "none"                  },
10223   { "game.panel.element_7_count.x",             "-1"                    },
10224   { "game.panel.element_7_count.y",             "-1"                    },
10225   { "game.panel.element_7_count.align",         "left"                  },
10226   { "game.panel.element_7_count.valign",        "top"                   },
10227   { "game.panel.element_7_count.digits",        "-1"                    },
10228   { "game.panel.element_7_count.font",          "font.text_2"           },
10229   { "game.panel.element_7_count.element",       "empty_space"           },
10230   { "game.panel.element_7_count.draw_masked",   "true"                  },
10231   { "game.panel.element_7_count.draw_order",    "0"                     },
10232   { "game.panel.element_7_count.class",         "none"                  },
10233   { "game.panel.element_7_count.style",         "none"                  },
10234   { "game.panel.element_8.x",                   "-1"                    },
10235   { "game.panel.element_8.y",                   "-1"                    },
10236   { "game.panel.element_8.tile_size",           "16"                    },
10237   { "game.panel.element_8.element",             "empty_space"           },
10238   { "game.panel.element_8.draw_masked",         "false"                 },
10239   { "game.panel.element_8.draw_order",          "0"                     },
10240   { "game.panel.element_8.class",               "none"                  },
10241   { "game.panel.element_8.style",               "none"                  },
10242   { "game.panel.element_8_count.x",             "-1"                    },
10243   { "game.panel.element_8_count.y",             "-1"                    },
10244   { "game.panel.element_8_count.align",         "left"                  },
10245   { "game.panel.element_8_count.valign",        "top"                   },
10246   { "game.panel.element_8_count.digits",        "-1"                    },
10247   { "game.panel.element_8_count.font",          "font.text_2"           },
10248   { "game.panel.element_8_count.element",       "empty_space"           },
10249   { "game.panel.element_8_count.draw_masked",   "true"                  },
10250   { "game.panel.element_8_count.draw_order",    "0"                     },
10251   { "game.panel.element_8_count.class",         "none"                  },
10252   { "game.panel.element_8_count.style",         "none"                  },
10253
10254   { "game.panel.ce_score_1.x",                  "-1"                    },
10255   { "game.panel.ce_score_1.y",                  "-1"                    },
10256   { "game.panel.ce_score_1.align",              "left"                  },
10257   { "game.panel.ce_score_1.valign",             "top"                   },
10258   { "game.panel.ce_score_1.digits",             "-1"                    },
10259   { "game.panel.ce_score_1.font",               "font.text_2"           },
10260   { "game.panel.ce_score_1.element",            "empty_space"           },
10261   { "game.panel.ce_score_1.draw_masked",        "true"                  },
10262   { "game.panel.ce_score_1.draw_order",         "0"                     },
10263   { "game.panel.ce_score_1.class",              "none"                  },
10264   { "game.panel.ce_score_1.style",              "none"                  },
10265   { "game.panel.ce_score_1_element.x",          "-1"                    },
10266   { "game.panel.ce_score_1_element.y",          "-1"                    },
10267   { "game.panel.ce_score_1_element.tile_size",  "16"                    },
10268   { "game.panel.ce_score_1_element.element",    "empty_space"           },
10269   { "game.panel.ce_score_1_element.draw_masked","false"                 },
10270   { "game.panel.ce_score_1_element.draw_order", "0"                     },
10271   { "game.panel.ce_score_1_element.class",      "none"                  },
10272   { "game.panel.ce_score_1_element.style",      "none"                  },
10273   { "game.panel.ce_score_2.x",                  "-1"                    },
10274   { "game.panel.ce_score_2.y",                  "-1"                    },
10275   { "game.panel.ce_score_2.align",              "left"                  },
10276   { "game.panel.ce_score_2.valign",             "top"                   },
10277   { "game.panel.ce_score_2.digits",             "-1"                    },
10278   { "game.panel.ce_score_2.font",               "font.text_2"           },
10279   { "game.panel.ce_score_2.element",            "empty_space"           },
10280   { "game.panel.ce_score_2.draw_masked",        "true"                  },
10281   { "game.panel.ce_score_2.draw_order",         "0"                     },
10282   { "game.panel.ce_score_2.class",              "none"                  },
10283   { "game.panel.ce_score_2.style",              "none"                  },
10284   { "game.panel.ce_score_2_element.x",          "-1"                    },
10285   { "game.panel.ce_score_2_element.y",          "-1"                    },
10286   { "game.panel.ce_score_2_element.tile_size",  "16"                    },
10287   { "game.panel.ce_score_2_element.element",    "empty_space"           },
10288   { "game.panel.ce_score_2_element.draw_masked","false"                 },
10289   { "game.panel.ce_score_2_element.draw_order", "0"                     },
10290   { "game.panel.ce_score_2_element.class",      "none"                  },
10291   { "game.panel.ce_score_2_element.style",      "none"                  },
10292   { "game.panel.ce_score_3.x",                  "-1"                    },
10293   { "game.panel.ce_score_3.y",                  "-1"                    },
10294   { "game.panel.ce_score_3.align",              "left"                  },
10295   { "game.panel.ce_score_3.valign",             "top"                   },
10296   { "game.panel.ce_score_3.digits",             "-1"                    },
10297   { "game.panel.ce_score_3.font",               "font.text_2"           },
10298   { "game.panel.ce_score_3.element",            "empty_space"           },
10299   { "game.panel.ce_score_3.draw_masked",        "true"                  },
10300   { "game.panel.ce_score_3.draw_order",         "0"                     },
10301   { "game.panel.ce_score_3.class",              "none"                  },
10302   { "game.panel.ce_score_3.style",              "none"                  },
10303   { "game.panel.ce_score_3_element.x",          "-1"                    },
10304   { "game.panel.ce_score_3_element.y",          "-1"                    },
10305   { "game.panel.ce_score_3_element.tile_size",  "16"                    },
10306   { "game.panel.ce_score_3_element.element",    "empty_space"           },
10307   { "game.panel.ce_score_3_element.draw_masked","false"                 },
10308   { "game.panel.ce_score_3_element.draw_order", "0"                     },
10309   { "game.panel.ce_score_3_element.class",      "none"                  },
10310   { "game.panel.ce_score_3_element.style",      "none"                  },
10311   { "game.panel.ce_score_4.x",                  "-1"                    },
10312   { "game.panel.ce_score_4.y",                  "-1"                    },
10313   { "game.panel.ce_score_4.align",              "left"                  },
10314   { "game.panel.ce_score_4.valign",             "top"                   },
10315   { "game.panel.ce_score_4.digits",             "-1"                    },
10316   { "game.panel.ce_score_4.font",               "font.text_2"           },
10317   { "game.panel.ce_score_4.element",            "empty_space"           },
10318   { "game.panel.ce_score_4.draw_masked",        "true"                  },
10319   { "game.panel.ce_score_4.draw_order",         "0"                     },
10320   { "game.panel.ce_score_4.class",              "none"                  },
10321   { "game.panel.ce_score_4.style",              "none"                  },
10322   { "game.panel.ce_score_4_element.x",          "-1"                    },
10323   { "game.panel.ce_score_4_element.y",          "-1"                    },
10324   { "game.panel.ce_score_4_element.tile_size",  "16"                    },
10325   { "game.panel.ce_score_4_element.element",    "empty_space"           },
10326   { "game.panel.ce_score_4_element.draw_masked","false"                 },
10327   { "game.panel.ce_score_4_element.draw_order", "0"                     },
10328   { "game.panel.ce_score_4_element.class",      "none"                  },
10329   { "game.panel.ce_score_4_element.style",      "none"                  },
10330   { "game.panel.ce_score_5.x",                  "-1"                    },
10331   { "game.panel.ce_score_5.y",                  "-1"                    },
10332   { "game.panel.ce_score_5.align",              "left"                  },
10333   { "game.panel.ce_score_5.valign",             "top"                   },
10334   { "game.panel.ce_score_5.digits",             "-1"                    },
10335   { "game.panel.ce_score_5.font",               "font.text_2"           },
10336   { "game.panel.ce_score_5.element",            "empty_space"           },
10337   { "game.panel.ce_score_5.draw_masked",        "true"                  },
10338   { "game.panel.ce_score_5.draw_order",         "0"                     },
10339   { "game.panel.ce_score_5.class",              "none"                  },
10340   { "game.panel.ce_score_5.style",              "none"                  },
10341   { "game.panel.ce_score_5_element.x",          "-1"                    },
10342   { "game.panel.ce_score_5_element.y",          "-1"                    },
10343   { "game.panel.ce_score_5_element.tile_size",  "16"                    },
10344   { "game.panel.ce_score_5_element.element",    "empty_space"           },
10345   { "game.panel.ce_score_5_element.draw_masked","false"                 },
10346   { "game.panel.ce_score_5_element.draw_order", "0"                     },
10347   { "game.panel.ce_score_5_element.class",      "none"                  },
10348   { "game.panel.ce_score_5_element.style",      "none"                  },
10349   { "game.panel.ce_score_6.x",                  "-1"                    },
10350   { "game.panel.ce_score_6.y",                  "-1"                    },
10351   { "game.panel.ce_score_6.align",              "left"                  },
10352   { "game.panel.ce_score_6.valign",             "top"                   },
10353   { "game.panel.ce_score_6.digits",             "-1"                    },
10354   { "game.panel.ce_score_6.font",               "font.text_2"           },
10355   { "game.panel.ce_score_6.element",            "empty_space"           },
10356   { "game.panel.ce_score_6.draw_masked",        "true"                  },
10357   { "game.panel.ce_score_6.draw_order",         "0"                     },
10358   { "game.panel.ce_score_6.class",              "none"                  },
10359   { "game.panel.ce_score_6.style",              "none"                  },
10360   { "game.panel.ce_score_6_element.x",          "-1"                    },
10361   { "game.panel.ce_score_6_element.y",          "-1"                    },
10362   { "game.panel.ce_score_6_element.tile_size",  "16"                    },
10363   { "game.panel.ce_score_6_element.element",    "empty_space"           },
10364   { "game.panel.ce_score_6_element.draw_masked","false"                 },
10365   { "game.panel.ce_score_6_element.draw_order", "0"                     },
10366   { "game.panel.ce_score_6_element.class",      "none"                  },
10367   { "game.panel.ce_score_6_element.style",      "none"                  },
10368   { "game.panel.ce_score_7.x",                  "-1"                    },
10369   { "game.panel.ce_score_7.y",                  "-1"                    },
10370   { "game.panel.ce_score_7.align",              "left"                  },
10371   { "game.panel.ce_score_7.valign",             "top"                   },
10372   { "game.panel.ce_score_7.digits",             "-1"                    },
10373   { "game.panel.ce_score_7.font",               "font.text_2"           },
10374   { "game.panel.ce_score_7.element",            "empty_space"           },
10375   { "game.panel.ce_score_7.draw_masked",        "true"                  },
10376   { "game.panel.ce_score_7.draw_order",         "0"                     },
10377   { "game.panel.ce_score_7.class",              "none"                  },
10378   { "game.panel.ce_score_7.style",              "none"                  },
10379   { "game.panel.ce_score_7_element.x",          "-1"                    },
10380   { "game.panel.ce_score_7_element.y",          "-1"                    },
10381   { "game.panel.ce_score_7_element.tile_size",  "16"                    },
10382   { "game.panel.ce_score_7_element.element",    "empty_space"           },
10383   { "game.panel.ce_score_7_element.draw_masked","false"                 },
10384   { "game.panel.ce_score_7_element.draw_order", "0"                     },
10385   { "game.panel.ce_score_7_element.class",      "none"                  },
10386   { "game.panel.ce_score_7_element.style",      "none"                  },
10387   { "game.panel.ce_score_8.x",                  "-1"                    },
10388   { "game.panel.ce_score_8.y",                  "-1"                    },
10389   { "game.panel.ce_score_8.align",              "left"                  },
10390   { "game.panel.ce_score_8.valign",             "top"                   },
10391   { "game.panel.ce_score_8.digits",             "-1"                    },
10392   { "game.panel.ce_score_8.font",               "font.text_2"           },
10393   { "game.panel.ce_score_8.element",            "empty_space"           },
10394   { "game.panel.ce_score_8.draw_masked",        "true"                  },
10395   { "game.panel.ce_score_8.draw_order",         "0"                     },
10396   { "game.panel.ce_score_8.class",              "none"                  },
10397   { "game.panel.ce_score_8.style",              "none"                  },
10398   { "game.panel.ce_score_8_element.x",          "-1"                    },
10399   { "game.panel.ce_score_8_element.y",          "-1"                    },
10400   { "game.panel.ce_score_8_element.tile_size",  "16"                    },
10401   { "game.panel.ce_score_8_element.element",    "empty_space"           },
10402   { "game.panel.ce_score_8_element.draw_masked","false"                 },
10403   { "game.panel.ce_score_8_element.draw_order", "0"                     },
10404   { "game.panel.ce_score_8_element.class",      "none"                  },
10405   { "game.panel.ce_score_8_element.style",      "none"                  },
10406
10407   { "game.panel.player_name.x",                 "-1"                    },
10408   { "game.panel.player_name.y",                 "-1"                    },
10409   { "game.panel.player_name.align",             "left"                  },
10410   { "game.panel.player_name.valign",            "top"                   },
10411   { "game.panel.player_name.chars",             "-1"                    },
10412   { "game.panel.player_name.font",              "font.text_2"           },
10413   { "game.panel.player_name.draw_masked",       "true"                  },
10414   { "game.panel.player_name.draw_order",        "0"                     },
10415   { "game.panel.player_name.class",             "none"                  },
10416   { "game.panel.player_name.style",             "none"                  },
10417
10418   { "game.panel.level_name.x",                  "-1"                    },
10419   { "game.panel.level_name.y",                  "-1"                    },
10420   { "game.panel.level_name.align",              "left"                  },
10421   { "game.panel.level_name.valign",             "top"                   },
10422   { "game.panel.level_name.chars",              "-1"                    },
10423   { "game.panel.level_name.font",               "font.text_2"           },
10424   { "game.panel.level_name.draw_masked",        "true"                  },
10425   { "game.panel.level_name.draw_order",         "0"                     },
10426   { "game.panel.level_name.class",              "none"                  },
10427   { "game.panel.level_name.style",              "none"                  },
10428   { "game.panel.level_author.x",                "-1"                    },
10429   { "game.panel.level_author.y",                "-1"                    },
10430   { "game.panel.level_author.align",            "left"                  },
10431   { "game.panel.level_author.valign",           "top"                   },
10432   { "game.panel.level_author.chars",            "-1"                    },
10433   { "game.panel.level_author.font",             "font.text_2"           },
10434   { "game.panel.level_author.draw_masked",      "true"                  },
10435   { "game.panel.level_author.draw_order",       "0"                     },
10436   { "game.panel.level_author.class",            "none"                  },
10437   { "game.panel.level_author.style",            "none"                  },
10438
10439   { "game.button.stop.x",                       "5"                     },
10440   { "game.button.stop.y",                       "215"                   },
10441   { "game.button.pause.x",                      "35"                    },
10442   { "game.button.pause.y",                      "215"                   },
10443   { "game.button.play.x",                       "65"                    },
10444   { "game.button.play.y",                       "215"                   },
10445   { "game.button.undo.x",                       "-1"                    },
10446   { "game.button.undo.y",                       "-1"                    },
10447   { "game.button.redo.x",                       "-1"                    },
10448   { "game.button.redo.y",                       "-1"                    },
10449   { "game.button.save.x",                       "-1"                    },
10450   { "game.button.save.y",                       "-1"                    },
10451   { "game.button.pause2.x",                     "-1"                    },
10452   { "game.button.pause2.y",                     "-1"                    },
10453   { "game.button.load.x",                       "-1"                    },
10454   { "game.button.load.y",                       "-1"                    },
10455   { "game.button.restart.x",                    "-1"                    },
10456   { "game.button.restart.y",                    "-1"                    },
10457   { "game.button.sound_music.x",                "5"                     },
10458   { "game.button.sound_music.y",                "245"                   },
10459   { "game.button.sound_loops.x",                "35"                    },
10460   { "game.button.sound_loops.y",                "245"                   },
10461   { "game.button.sound_simple.x",               "65"                    },
10462   { "game.button.sound_simple.y",               "245"                   },
10463
10464   { "game.button.panel_stop.x",                 "-1"                    },
10465   { "game.button.panel_stop.y",                 "-1"                    },
10466   { "game.button.panel_pause.x",                "-1"                    },
10467   { "game.button.panel_pause.y",                "-1"                    },
10468   { "game.button.panel_play.x",                 "-1"                    },
10469   { "game.button.panel_play.y",                 "-1"                    },
10470   { "game.button.panel_restart.x",              "-1"                    },
10471   { "game.button.panel_restart.y",              "-1"                    },
10472   { "game.button.panel_sound_music.x",          "-1"                    },
10473   { "game.button.panel_sound_music.y",          "-1"                    },
10474   { "game.button.panel_sound_loops.x",          "-1"                    },
10475   { "game.button.panel_sound_loops.y",          "-1"                    },
10476   { "game.button.panel_sound_simple.x",         "-1"                    },
10477   { "game.button.panel_sound_simple.y",         "-1"                    },
10478
10479   { "game.button.touch_stop.x",                 "0"                     },
10480   { "game.button.touch_stop.y",                 "0"                     },
10481   { "game.button.touch_pause.x",                "-60"                   },
10482   { "game.button.touch_pause.y",                "0"                     },
10483   { "game.button.touch_restart.x",              "-1"                    },
10484   { "game.button.touch_restart.y",              "-1"                    },
10485
10486   { "tape.button.eject.x",                      "5"                     },
10487   { "tape.button.eject.y",                      "77"                    },
10488   { "tape.button.stop.x",                       "23"                    },
10489   { "tape.button.stop.y",                       "77"                    },
10490   { "tape.button.pause.x",                      "41"                    },
10491   { "tape.button.pause.y",                      "77"                    },
10492   { "tape.button.record.x",                     "59"                    },
10493   { "tape.button.record.y",                     "77"                    },
10494   { "tape.button.play.x",                       "77"                    },
10495   { "tape.button.play.y",                       "77"                    },
10496
10497   { "tape.button.insert_solution.x",            "-1"                    },
10498   { "tape.button.insert_solution.y",            "-1"                    },
10499   { "tape.button.play_solution.x",              "-1"                    },
10500   { "tape.button.play_solution.y",              "-1"                    },
10501
10502   { "tape.symbol.eject.x",                      "-1"                    },
10503   { "tape.symbol.eject.y",                      "-1"                    },
10504   { "tape.symbol.stop.x",                       "-1"                    },
10505   { "tape.symbol.stop.y",                       "-1"                    },
10506   { "tape.symbol.pause.x",                      "40"                    },
10507   { "tape.symbol.pause.y",                      "41"                    },
10508   { "tape.symbol.record.x",                     "25"                    },
10509   { "tape.symbol.record.y",                     "41"                    },
10510   { "tape.symbol.play.x",                       "57"                    },
10511   { "tape.symbol.play.y",                       "41"                    },
10512   { "tape.symbol.fast_forward.x",               "39"                    },
10513   { "tape.symbol.fast_forward.y",               "42"                    },
10514   { "tape.symbol.warp_forward.x",               "39"                    },
10515   { "tape.symbol.warp_forward.y",               "42"                    },
10516   { "tape.symbol.warp_forward_blind.x",         "39"                    },
10517   { "tape.symbol.warp_forward_blind.y",         "42"                    },
10518   { "tape.symbol.pause_before_end.x",           "-1"                    },
10519   { "tape.symbol.pause_before_end.y",           "-1"                    },
10520   { "tape.symbol.single_step.x",                "-1"                    },
10521   { "tape.symbol.single_step.y",                "-1"                    },
10522
10523   { "tape.label.eject.x",                       "-1"                    },
10524   { "tape.label.eject.y",                       "-1"                    },
10525   { "tape.label.stop.x",                        "-1"                    },
10526   { "tape.label.stop.y",                        "-1"                    },
10527   { "tape.label.pause.x",                       "5"                     },
10528   { "tape.label.pause.y",                       "61"                    },
10529   { "tape.label.record.x",                      "5"                     },
10530   { "tape.label.record.y",                      "41"                    },
10531   { "tape.label.play.x",                        "70"                    },
10532   { "tape.label.play.y",                        "41"                    },
10533   { "tape.label.fast_forward.x",                "5"                     },
10534   { "tape.label.fast_forward.y",                "42"                    },
10535   { "tape.label.warp_forward.x",                "5"                     },
10536   { "tape.label.warp_forward.y",                "42"                    },
10537   { "tape.label.warp_forward_blind.x",          "5"                     },
10538   { "tape.label.warp_forward_blind.y",          "42"                    },
10539   { "tape.label.pause_before_end.x",            "5"                     },
10540   { "tape.label.pause_before_end.y",            "42"                    },
10541   { "tape.label.single_step.x",                 "57"                    },
10542   { "tape.label.single_step.y",                 "42"                    },
10543
10544   { "tape.label.date.x",                        "5"                     },
10545   { "tape.label.date.y",                        "5"                     },
10546   { "tape.label.time.x",                        "46"                    },
10547   { "tape.label.time.y",                        "55"                    },
10548
10549   { "tape.text.date.x",                         "7"                     },
10550   { "tape.text.date.y",                         "19"                    },
10551   { "tape.text.date.align",                     "left"                  },
10552   { "tape.text.date.valign",                    "top"                   },
10553   { "tape.text.date.digits",                    "-1"                    },
10554   { "tape.text.date.xoffset",                   "27"                    },
10555   { "tape.text.date.2nd_xoffset",               "64"                    },
10556   { "tape.text.date.font",                      "font.tape_recorder"    },
10557   { "tape.text.date.draw_masked",               "false"                 },
10558
10559   { "tape.text.date_yyyy.x",                    "-1"                    },
10560   { "tape.text.date_yyyy.y",                    "-1"                    },
10561   { "tape.text.date_yyyy.align",                "left"                  },
10562   { "tape.text.date_yyyy.valign",               "top"                   },
10563   { "tape.text.date_yyyy.digits",               "4"                     },
10564   { "tape.text.date_yyyy.font",                 "font.tape_recorder"    },
10565   { "tape.text.date_yyyy.draw_masked",          "false"                 },
10566   { "tape.text.date_yy.x",                      "-1"                    },
10567   { "tape.text.date_yy.y",                      "-1"                    },
10568   { "tape.text.date_yy.align",                  "left"                  },
10569   { "tape.text.date_yy.valign",                 "top"                   },
10570   { "tape.text.date_yy.digits",                 "2"                     },
10571   { "tape.text.date_yy.font",                   "font.tape_recorder"    },
10572   { "tape.text.date_yy.draw_masked",            "false"                 },
10573   { "tape.text.date_mon.x",                     "-1"                    },
10574   { "tape.text.date_mon.y",                     "-1"                    },
10575   { "tape.text.date_mon.align",                 "left"                  },
10576   { "tape.text.date_mon.valign",                "top"                   },
10577   { "tape.text.date_mon.chars",                 "3"                     },
10578   { "tape.text.date_mon.font",                  "font.tape_recorder"    },
10579   { "tape.text.date_mon.draw_masked",           "false"                 },
10580   { "tape.text.date_mm.x",                      "-1"                    },
10581   { "tape.text.date_mm.y",                      "-1"                    },
10582   { "tape.text.date_mm.align",                  "left"                  },
10583   { "tape.text.date_mm.valign",                 "top"                   },
10584   { "tape.text.date_mm.digits",                 "2"                     },
10585   { "tape.text.date_mm.font",                   "font.tape_recorder"    },
10586   { "tape.text.date_mm.draw_masked",            "false"                 },
10587   { "tape.text.date_dd.x",                      "-1"                    },
10588   { "tape.text.date_dd.y",                      "-1"                    },
10589   { "tape.text.date_dd.align",                  "left"                  },
10590   { "tape.text.date_dd.valign",                 "top"                   },
10591   { "tape.text.date_dd.digits",                 "2"                     },
10592   { "tape.text.date_dd.font",                   "font.tape_recorder"    },
10593   { "tape.text.date_dd.draw_masked",            "false"                 },
10594
10595   { "tape.text.time.x",                         "44"                    },
10596   { "tape.text.time.y",                         "55"                    },
10597   { "tape.text.time.align",                     "left"                  },
10598   { "tape.text.time.valign",                    "top"                   },
10599   { "tape.text.time.digits",                    "-1"                    },
10600   { "tape.text.time.xoffset",                   "27"                    },
10601   { "tape.text.time.font",                      "font.tape_recorder"    },
10602   { "tape.text.time.draw_masked",               "false"                 },
10603
10604   { "tape.text.time_hh.x",                      "-1"                    },
10605   { "tape.text.time_hh.y",                      "-1"                    },
10606   { "tape.text.time_hh.align",                  "left"                  },
10607   { "tape.text.time_hh.valign",                 "top"                   },
10608   { "tape.text.time_hh.digits",                 "2"                     },
10609   { "tape.text.time_hh.font",                   "font.tape_recorder"    },
10610   { "tape.text.time_hh.draw_masked",            "false"                 },
10611   { "tape.text.time_mm.x",                      "-1"                    },
10612   { "tape.text.time_mm.y",                      "-1"                    },
10613   { "tape.text.time_mm.align",                  "left"                  },
10614   { "tape.text.time_mm.valign",                 "top"                   },
10615   { "tape.text.time_mm.digits",                 "2"                     },
10616   { "tape.text.time_mm.font",                   "font.tape_recorder"    },
10617   { "tape.text.time_mm.draw_masked",            "false"                 },
10618   { "tape.text.time_ss.x",                      "-1"                    },
10619   { "tape.text.time_ss.y",                      "-1"                    },
10620   { "tape.text.time_ss.align",                  "left"                  },
10621   { "tape.text.time_ss.valign",                 "top"                   },
10622   { "tape.text.time_ss.digits",                 "2"                     },
10623   { "tape.text.time_ss.font",                   "font.tape_recorder"    },
10624   { "tape.text.time_ss.draw_masked",            "false"                 },
10625
10626   { "tape.text.frame.x",                        "-1"                    },
10627   { "tape.text.frame.y",                        "-1"                    },
10628   { "tape.text.frame.align",                    "left"                  },
10629   { "tape.text.frame.valign",                   "top"                   },
10630   { "tape.text.frame.digits",                   "-1"                    },
10631   { "tape.text.frame.font",                     "font.tape_recorder"    },
10632   { "tape.text.frame.draw_masked",              "false"                 },
10633
10634   { "tape.show_game_buttons",                   "false"                 },
10635
10636   { "editor.button.prev_level.x",               "5"                     },
10637   { "editor.button.prev_level.y",               "5"                     },
10638   { "editor.button.next_level.x",               "79"                    },
10639   { "editor.button.next_level.y",               "5"                     },
10640
10641   { "editor.button.properties.x",               "5"                     },
10642   { "editor.button.properties.y",               "230"                   },
10643
10644   { "editor.button.element_left.x",             "-1"                    },
10645   { "editor.button.element_left.y",             "-1"                    },
10646   { "editor.button.element_left.tile_size",     "-1"                    },
10647   { "editor.button.element_middle.x",           "-1"                    },
10648   { "editor.button.element_middle.y",           "-1"                    },
10649   { "editor.button.element_middle.tile_size",   "-1"                    },
10650   { "editor.button.element_right.x",            "-1"                    },
10651   { "editor.button.element_right.y",            "-1"                    },
10652   { "editor.button.element_right.tile_size",    "-1"                    },
10653
10654   { "editor.button.palette.x",                  "-1"                    },
10655   { "editor.button.palette.y",                  "-1"                    },
10656
10657   { "editor.button.draw_single.x",              "6"                     },
10658   { "editor.button.draw_single.y",              "6"                     },
10659   { "editor.button.draw_connected.x",           "28"                    },
10660   { "editor.button.draw_connected.y",           "6"                     },
10661   { "editor.button.draw_line.x",                "50"                    },
10662   { "editor.button.draw_line.y",                "6"                     },
10663   { "editor.button.draw_arc.x",                 "72"                    },
10664   { "editor.button.draw_arc.y",                 "6"                     },
10665   { "editor.button.draw_rectangle.x",           "6"                     },
10666   { "editor.button.draw_rectangle.y",           "28"                    },
10667   { "editor.button.draw_filled_box.x",          "28"                    },
10668   { "editor.button.draw_filled_box.y",          "28"                    },
10669   { "editor.button.rotate_up.x",                "50"                    },
10670   { "editor.button.rotate_up.y",                "28"                    },
10671   { "editor.button.draw_text.x",                "72"                    },
10672   { "editor.button.draw_text.y",                "28"                    },
10673   { "editor.button.flood_fill.x",               "6"                     },
10674   { "editor.button.flood_fill.y",               "50"                    },
10675   { "editor.button.rotate_left.x",              "28"                    },
10676   { "editor.button.rotate_left.y",              "50"                    },
10677   { "editor.button.zoom_level.x",               "50"                    },
10678   { "editor.button.zoom_level.y",               "50"                    },
10679   { "editor.button.rotate_right.x",             "72"                    },
10680   { "editor.button.rotate_right.y",             "50"                    },
10681   { "editor.button.draw_random.x",              "6"                     },
10682   { "editor.button.draw_random.y",              "72"                    },
10683   { "editor.button.grab_brush.x",               "28"                    },
10684   { "editor.button.grab_brush.y",               "72"                    },
10685   { "editor.button.rotate_down.x",              "50"                    },
10686   { "editor.button.rotate_down.y",              "72"                    },
10687   { "editor.button.pick_element.x",             "72"                    },
10688   { "editor.button.pick_element.y",             "72"                    },
10689
10690   { "editor.button.ce_copy_from.x",             "28"                    },
10691   { "editor.button.ce_copy_from.y",             "6"                     },
10692   { "editor.button.ce_copy_to.x",               "50"                    },
10693   { "editor.button.ce_copy_to.y",               "6"                     },
10694   { "editor.button.ce_swap.x",                  "72"                    },
10695   { "editor.button.ce_swap.y",                  "6"                     },
10696   { "editor.button.ce_copy.x",                  "6"                     },
10697   { "editor.button.ce_copy.y",                  "72"                    },
10698   { "editor.button.ce_paste.x",                 "28"                    },
10699   { "editor.button.ce_paste.y",                 "72"                    },
10700
10701   { "editor.button.undo.x",                     "5"                     },
10702   { "editor.button.undo.y",                     "99"                    },
10703   { "editor.button.conf.x",                     "35"                    },
10704   { "editor.button.conf.y",                     "99"                    },
10705   { "editor.button.save.x",                     "65"                    },
10706   { "editor.button.save.y",                     "99"                    },
10707   { "editor.button.clear.x",                    "5"                     },
10708   { "editor.button.clear.y",                    "119"                   },
10709   { "editor.button.test.x",                     "35"                    },
10710   { "editor.button.test.y",                     "119"                   },
10711   { "editor.button.exit.x",                     "65"                    },
10712   { "editor.button.exit.y",                     "119"                   },
10713
10714   { "editor.input.level_number.x",              "29"                    },
10715   { "editor.input.level_number.y",              "5"                     },
10716
10717   { "editor.palette.x",                         "5"                     },
10718   { "editor.palette.y",                         "30"                    },
10719   { "editor.palette.cols",                      "4"                     },
10720   { "editor.palette.rows",                      "10"                    },
10721   { "editor.palette.tile_size",                 "16"                    },
10722   { "editor.palette.show_as_separate_screen",   "false"                 },
10723   { "editor.palette.show_on_element_buttons",   "false"                 },
10724
10725   { "editor.palette.element_left.x",            "6"                     },
10726   { "editor.palette.element_left.y",            "258"                   },
10727   { "editor.palette.element_left.tile_size",    "16"                    },
10728   { "editor.palette.element_middle.x",          "42"                    },
10729   { "editor.palette.element_middle.y",          "258"                   },
10730   { "editor.palette.element_middle.tile_size",  "16"                    },
10731   { "editor.palette.element_right.x",           "78"                    },
10732   { "editor.palette.element_right.y",           "258"                   },
10733   { "editor.palette.element_right.tile_size",   "16"                    },
10734
10735   { "editor.drawingarea.tile_size",             "16"                    },
10736
10737   { "editor.settings.headline.x",               "272"                   },
10738   { "editor.settings.headline.y",               "16"                    },
10739   { "editor.settings.headline.align",           "center"                },
10740   { "editor.settings.element_graphic.x",        "24"                    },
10741   { "editor.settings.element_graphic.y",        "64"                    },
10742   { "editor.settings.element_name.x",           "-1"                    },
10743   { "editor.settings.element_name.y",           "-1"                    },
10744   { "editor.settings.tabs.x",                   "24"                    },
10745   { "editor.settings.tabs.y",                   "64"                    },
10746   { "editor.settings.tabs.2nd_yoffset",         "64"                    },
10747   { "editor.settings.tabs.draw_xoffset",        "0"                     },
10748   { "editor.settings.tabs.draw_yoffset",        "8"                     },
10749   { "editor.settings.tooltip.x",                "-1"                    },
10750   { "editor.settings.tooltip.y",                "-1"                    },
10751
10752   { "editor.gadget.normal_spacing",             "4"                     },
10753   { "editor.gadget.small_spacing",              "2"                     },
10754   { "editor.gadget.tiny_spacing",               "1"                     },
10755   { "editor.gadget.line_spacing",               "4"                     },
10756   { "editor.gadget.text_spacing",               "4"                     },
10757   { "editor.gadget.separator_line.height",      "2"                     },
10758
10759   { "request.button.yes.x",                     "2"                     },
10760   { "request.button.yes.y",                     "250"                   },
10761   { "request.button.no.x",                      "52"                    },
10762   { "request.button.no.y",                      "250"                   },
10763   { "request.button.confirm.x",                 "2"                     },
10764   { "request.button.confirm.y",                 "250"                   },
10765   { "request.button.player_1.x",                "35"                    },
10766   { "request.button.player_1.y",                "185"                   },
10767   { "request.button.player_1.draw_player",      "true"                  },
10768   { "request.button.player_1.tile_size",        "16"                    },
10769   { "request.button.player_2.x",                "65"                    },
10770   { "request.button.player_2.y",                "215"                   },
10771   { "request.button.player_2.draw_player",      "true"                  },
10772   { "request.button.player_2.tile_size",        "16"                    },
10773   { "request.button.player_3.x",                "35"                    },
10774   { "request.button.player_3.y",                "245"                   },
10775   { "request.button.player_3.draw_player",      "true"                  },
10776   { "request.button.player_3.tile_size",        "16"                    },
10777   { "request.button.player_4.x",                "5"                     },
10778   { "request.button.player_4.y",                "215"                   },
10779   { "request.button.player_4.draw_player",      "true"                  },
10780   { "request.button.player_4.tile_size",        "16"                    },
10781
10782   { "request.button.touch_yes.x",               "0"                     },
10783   { "request.button.touch_yes.y",               "-56"                   },
10784   { "request.button.touch_no.x",                "-92"                   },
10785   { "request.button.touch_no.y",                "-56"                   },
10786   { "request.button.touch_confirm.x",           "0"                     },
10787   { "request.button.touch_confirm.y",           "-56"                   },
10788
10789   { "request.x",                                "-1"                    },
10790   { "request.y",                                "-1"                    },
10791   { "request.width",                            "120"                   },
10792   { "request.height",                           "300"                   },
10793   { "request.border_size",                      "10"                    },
10794   { "request.line_spacing",                     "2"                     },
10795   { "request.step_offset",                      "10"                    },
10796   { "request.step_delay",                       "20"                    },
10797   { "request.anim_mode",                        "default"               },
10798   { "request.align",                            "center"                },
10799   { "request.valign",                           "middle"                },
10800   { "request.autowrap",                         "false"                 },
10801   { "request.centered",                         "true"                  },
10802   { "request.wrap_single_words",                "true"                  },
10803   { "request.draw_order",                       "-1"                    },
10804
10805   { "global.use_envelope_request",              "false"                 },
10806
10807   { "game.graphics_engine_version",             "-1"                    },
10808   { "game.forced_scroll_delay_value",           "-1"                    },
10809   { "game.forced_scroll_x",                     ARG_UNDEFINED           },
10810   { "game.forced_scroll_y",                     ARG_UNDEFINED           },
10811   { "game.use_native_bd_graphics_engine",       "false"                 },
10812   { "game.use_native_emc_graphics_engine",      "false"                 },
10813   { "game.use_native_sp_graphics_engine",       "true"                  },
10814   { "game.use_masked_pushing",                  "false"                 },
10815   { "game.use_masked_elements",                 "false"                 },
10816   { "game.tile_size",                           "32"                    },
10817
10818   { "[player].boring_delay_fixed",              "1000"                  },
10819   { "[player].boring_delay_random",             "1000"                  },
10820   { "[player].sleeping_delay_fixed",            "2000"                  },
10821   { "[player].sleeping_delay_random",           "2000"                  },
10822
10823   { "viewport.window.width",                    "672"                   },
10824   { "viewport.window.height",                   "560"                   },
10825   { "viewport.window.min_width",                "-1"                    },
10826   { "viewport.window.min_height",               "-1"                    },
10827   { "viewport.window.max_width",                "-1"                    },
10828   { "viewport.window.max_height",               "-1"                    },
10829   { "viewport.window.TITLE.width",              ARG_DEFAULT             },
10830   { "viewport.window.TITLE.height",             ARG_DEFAULT             },
10831
10832   { "viewport.playfield.x",                     "6"                     },
10833   { "viewport.playfield.y",                     "6"                     },
10834   { "viewport.playfield.width",                 "548"                   },
10835   { "viewport.playfield.height",                "548"                   },
10836   { "viewport.playfield.min_width",             "-1"                    },
10837   { "viewport.playfield.min_height",            "-1"                    },
10838   { "viewport.playfield.max_width",             "-1"                    },
10839   { "viewport.playfield.max_height",            "-1"                    },
10840   { "viewport.playfield.margin_left",           "0"                     },
10841   { "viewport.playfield.margin_right",          "0"                     },
10842   { "viewport.playfield.margin_top",            "0"                     },
10843   { "viewport.playfield.margin_bottom",         "0"                     },
10844   { "viewport.playfield.border_left",           "-1"                    },
10845   { "viewport.playfield.border_right",          "-1"                    },
10846   { "viewport.playfield.border_top",            "-1"                    },
10847   { "viewport.playfield.border_bottom",         "-1"                    },
10848   { "viewport.playfield.border_size",           "2"                     },
10849   { "viewport.playfield.align_size",            "16"                    },
10850   { "viewport.playfield.align",                 "left"                  },
10851   { "viewport.playfield.valign",                "top"                   },
10852   { "viewport.playfield.MAIN.x",                ARG_DEFAULT             },
10853   { "viewport.playfield.MAIN.y",                ARG_DEFAULT             },
10854   { "viewport.playfield.MAIN.width",            ARG_DEFAULT             },
10855   { "viewport.playfield.MAIN.height",           ARG_DEFAULT             },
10856   { "viewport.playfield.MAIN.min_width",        ARG_DEFAULT             },
10857   { "viewport.playfield.MAIN.min_height",       ARG_DEFAULT             },
10858   { "viewport.playfield.MAIN.max_width",        ARG_DEFAULT             },
10859   { "viewport.playfield.MAIN.max_height",       ARG_DEFAULT             },
10860   { "viewport.playfield.MAIN.margin_left",      ARG_DEFAULT             },
10861   { "viewport.playfield.MAIN.margin_right",     ARG_DEFAULT             },
10862   { "viewport.playfield.MAIN.margin_top",       ARG_DEFAULT             },
10863   { "viewport.playfield.MAIN.margin_bottom",    ARG_DEFAULT             },
10864   { "viewport.playfield.MAIN.border_left",      ARG_DEFAULT             },
10865   { "viewport.playfield.MAIN.border_right",     ARG_DEFAULT             },
10866   { "viewport.playfield.MAIN.border_top",       ARG_DEFAULT             },
10867   { "viewport.playfield.MAIN.border_bottom",    ARG_DEFAULT             },
10868   { "viewport.playfield.MAIN.border_size",      ARG_DEFAULT             },
10869   { "viewport.playfield.MAIN.align_size",       ARG_DEFAULT             },
10870   { "viewport.playfield.MAIN.align",            ARG_DEFAULT             },
10871   { "viewport.playfield.MAIN.valign",           ARG_DEFAULT             },
10872   { "viewport.playfield.SCORES.x",              ARG_DEFAULT             },
10873   { "viewport.playfield.SCORES.y",              ARG_DEFAULT             },
10874   { "viewport.playfield.SCORES.width",          ARG_DEFAULT             },
10875   { "viewport.playfield.SCORES.height",         ARG_DEFAULT             },
10876   { "viewport.playfield.SCORES.min_width",      ARG_DEFAULT             },
10877   { "viewport.playfield.SCORES.min_height",     ARG_DEFAULT             },
10878   { "viewport.playfield.SCORES.max_width",      ARG_DEFAULT             },
10879   { "viewport.playfield.SCORES.max_height",     ARG_DEFAULT             },
10880   { "viewport.playfield.SCORES.margin_left",    ARG_DEFAULT             },
10881   { "viewport.playfield.SCORES.margin_right",   ARG_DEFAULT             },
10882   { "viewport.playfield.SCORES.margin_top",     ARG_DEFAULT             },
10883   { "viewport.playfield.SCORES.margin_bottom",  ARG_DEFAULT             },
10884   { "viewport.playfield.SCORES.border_left",    ARG_DEFAULT             },
10885   { "viewport.playfield.SCORES.border_right",   ARG_DEFAULT             },
10886   { "viewport.playfield.SCORES.border_top",     ARG_DEFAULT             },
10887   { "viewport.playfield.SCORES.border_bottom",  ARG_DEFAULT             },
10888   { "viewport.playfield.SCORES.border_size",    ARG_DEFAULT             },
10889   { "viewport.playfield.SCORES.align_size",     ARG_DEFAULT             },
10890   { "viewport.playfield.SCORES.align",          ARG_DEFAULT             },
10891   { "viewport.playfield.SCORES.valign",         ARG_DEFAULT             },
10892   { "viewport.playfield.EDITOR.x",              ARG_DEFAULT             },
10893   { "viewport.playfield.EDITOR.y",              ARG_DEFAULT             },
10894   { "viewport.playfield.EDITOR.width",          ARG_DEFAULT             },
10895   { "viewport.playfield.EDITOR.height",         ARG_DEFAULT             },
10896   { "viewport.playfield.EDITOR.min_width",      ARG_DEFAULT             },
10897   { "viewport.playfield.EDITOR.min_height",     ARG_DEFAULT             },
10898   { "viewport.playfield.EDITOR.max_width",      ARG_DEFAULT             },
10899   { "viewport.playfield.EDITOR.max_height",     ARG_DEFAULT             },
10900   { "viewport.playfield.EDITOR.margin_left",    ARG_DEFAULT             },
10901   { "viewport.playfield.EDITOR.margin_right",   ARG_DEFAULT             },
10902   { "viewport.playfield.EDITOR.margin_top",     ARG_DEFAULT             },
10903   { "viewport.playfield.EDITOR.margin_bottom",  ARG_DEFAULT             },
10904   { "viewport.playfield.EDITOR.border_left",    ARG_DEFAULT             },
10905   { "viewport.playfield.EDITOR.border_right",   ARG_DEFAULT             },
10906   { "viewport.playfield.EDITOR.border_top",     ARG_DEFAULT             },
10907   { "viewport.playfield.EDITOR.border_bottom",  ARG_DEFAULT             },
10908   { "viewport.playfield.EDITOR.border_size",    ARG_DEFAULT             },
10909   { "viewport.playfield.EDITOR.align_size",     ARG_DEFAULT             },
10910   { "viewport.playfield.EDITOR.align",          ARG_DEFAULT             },
10911   { "viewport.playfield.EDITOR.valign",         ARG_DEFAULT             },
10912   { "viewport.playfield.PLAYING.x",             ARG_DEFAULT             },
10913   { "viewport.playfield.PLAYING.y",             ARG_DEFAULT             },
10914   { "viewport.playfield.PLAYING.width",         ARG_DEFAULT             },
10915   { "viewport.playfield.PLAYING.height",        ARG_DEFAULT             },
10916   { "viewport.playfield.PLAYING.min_width",     ARG_DEFAULT             },
10917   { "viewport.playfield.PLAYING.min_height",    ARG_DEFAULT             },
10918   { "viewport.playfield.PLAYING.max_width",     ARG_DEFAULT             },
10919   { "viewport.playfield.PLAYING.max_height",    ARG_DEFAULT             },
10920   { "viewport.playfield.PLAYING.margin_left",   ARG_DEFAULT             },
10921   { "viewport.playfield.PLAYING.margin_right",  ARG_DEFAULT             },
10922   { "viewport.playfield.PLAYING.margin_top",    ARG_DEFAULT             },
10923   { "viewport.playfield.PLAYING.margin_bottom", ARG_DEFAULT             },
10924   { "viewport.playfield.PLAYING.border_left",   ARG_DEFAULT             },
10925   { "viewport.playfield.PLAYING.border_right",  ARG_DEFAULT             },
10926   { "viewport.playfield.PLAYING.border_top",    ARG_DEFAULT             },
10927   { "viewport.playfield.PLAYING.border_bottom", ARG_DEFAULT             },
10928   { "viewport.playfield.PLAYING.border_size",   ARG_DEFAULT             },
10929   { "viewport.playfield.PLAYING.align_size",    ARG_DEFAULT             },
10930   { "viewport.playfield.PLAYING.align",         ARG_DEFAULT             },
10931   { "viewport.playfield.PLAYING.valign",        ARG_DEFAULT             },
10932
10933   { "viewport.door_1.x",                        "566"                   },
10934   { "viewport.door_1.y",                        "60"                    },
10935   { "viewport.door_1.width",                    "100"                   },
10936   { "viewport.door_1.height",                   "280"                   },
10937   { "viewport.door_1.border_size",              "4"                     },
10938   { "viewport.door_1.align",                    "left"                  },
10939   { "viewport.door_1.valign",                   "top"                   },
10940   { "viewport.door_1.MAIN.x",                   ARG_DEFAULT             },
10941   { "viewport.door_1.MAIN.y",                   ARG_DEFAULT             },
10942   { "viewport.door_1.MAIN.width",               ARG_DEFAULT             },
10943   { "viewport.door_1.MAIN.height",              ARG_DEFAULT             },
10944   { "viewport.door_1.MAIN.border_size",         ARG_DEFAULT             },
10945   { "viewport.door_1.MAIN.align",               ARG_DEFAULT             },
10946   { "viewport.door_1.MAIN.valign",              ARG_DEFAULT             },
10947   { "viewport.door_1.SCORES.x",                 ARG_DEFAULT             },
10948   { "viewport.door_1.SCORES.y",                 ARG_DEFAULT             },
10949   { "viewport.door_1.SCORES.width",             ARG_DEFAULT             },
10950   { "viewport.door_1.SCORES.height",            ARG_DEFAULT             },
10951   { "viewport.door_1.SCORES.border_size",       ARG_DEFAULT             },
10952   { "viewport.door_1.SCORES.align",             ARG_DEFAULT             },
10953   { "viewport.door_1.SCORES.valign",            ARG_DEFAULT             },
10954   { "viewport.door_1.EDITOR.x",                 ARG_DEFAULT             },
10955   { "viewport.door_1.EDITOR.y",                 ARG_DEFAULT             },
10956   { "viewport.door_1.EDITOR.width",             ARG_DEFAULT             },
10957   { "viewport.door_1.EDITOR.height",            ARG_DEFAULT             },
10958   { "viewport.door_1.EDITOR.border_size",       ARG_DEFAULT             },
10959   { "viewport.door_1.EDITOR.align",             ARG_DEFAULT             },
10960   { "viewport.door_1.EDITOR.valign",            ARG_DEFAULT             },
10961   { "viewport.door_1.PLAYING.x",                ARG_DEFAULT             },
10962   { "viewport.door_1.PLAYING.y",                ARG_DEFAULT             },
10963   { "viewport.door_1.PLAYING.width",            ARG_DEFAULT             },
10964   { "viewport.door_1.PLAYING.height",           ARG_DEFAULT             },
10965   { "viewport.door_1.PLAYING.border_size",      ARG_DEFAULT             },
10966   { "viewport.door_1.PLAYING.align",            ARG_DEFAULT             },
10967   { "viewport.door_1.PLAYING.valign",           ARG_DEFAULT             },
10968
10969   { "viewport.door_2.x",                        "566"                   },
10970   { "viewport.door_2.y",                        "400"                   },
10971   { "viewport.door_2.width",                    "100"                   },
10972   { "viewport.door_2.height",                   "100"                   },
10973   { "viewport.door_2.border_size",              "4"                     },
10974   { "viewport.door_2.align",                    "left"                  },
10975   { "viewport.door_2.valign",                   "top"                   },
10976   { "viewport.door_2.MAIN.x",                   ARG_DEFAULT             },
10977   { "viewport.door_2.MAIN.y",                   ARG_DEFAULT             },
10978   { "viewport.door_2.MAIN.width",               ARG_DEFAULT             },
10979   { "viewport.door_2.MAIN.height",              ARG_DEFAULT             },
10980   { "viewport.door_2.MAIN.border_size",         ARG_DEFAULT             },
10981   { "viewport.door_2.MAIN.align",               ARG_DEFAULT             },
10982   { "viewport.door_2.MAIN.valign",              ARG_DEFAULT             },
10983   { "viewport.door_2.SCORES.x",                 ARG_DEFAULT             },
10984   { "viewport.door_2.SCORES.y",                 ARG_DEFAULT             },
10985   { "viewport.door_2.SCORES.width",             ARG_DEFAULT             },
10986   { "viewport.door_2.SCORES.height",            ARG_DEFAULT             },
10987   { "viewport.door_2.SCORES.border_size",       ARG_DEFAULT             },
10988   { "viewport.door_2.SCORES.align",             ARG_DEFAULT             },
10989   { "viewport.door_2.SCORES.valign",            ARG_DEFAULT             },
10990   { "viewport.door_2.EDITOR.x",                 "566"                   },
10991   { "viewport.door_2.EDITOR.y",                 "356"                   },
10992   { "viewport.door_2.EDITOR.width",             "100"                   },
10993   { "viewport.door_2.EDITOR.height",            "144"                   },
10994   { "viewport.door_2.EDITOR.border_size",       "4"                     },
10995   { "viewport.door_2.EDITOR.align",             "left"                  },
10996   { "viewport.door_2.EDITOR.valign",            "top"                   },
10997   { "viewport.door_2.PLAYING.x",                ARG_DEFAULT             },
10998   { "viewport.door_2.PLAYING.y",                ARG_DEFAULT             },
10999   { "viewport.door_2.PLAYING.width",            ARG_DEFAULT             },
11000   { "viewport.door_2.PLAYING.height",           ARG_DEFAULT             },
11001   { "viewport.door_2.PLAYING.border_size",      ARG_DEFAULT             },
11002   { "viewport.door_2.PLAYING.align",            ARG_DEFAULT             },
11003   { "viewport.door_2.PLAYING.valign",           ARG_DEFAULT             },
11004
11005   { NULL,                                       NULL                    }
11006 };