added support for BD game engine to Makefile for Android
[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_wall",                                          "RocksDC.png"                   },
107   { "bd_wall.xpos",                                     "12"                            },
108   { "bd_wall.ypos",                                     "9"                             },
109   { "bd_wall.frames",                                   "1"                             },
110   { "bd_wall.EDITOR",                                   "RocksDC.png"                   },
111   { "bd_wall.EDITOR.xpos",                              "14"                            },
112   { "bd_wall.EDITOR.ypos",                              "13"                            },
113
114   { "bd_rock",                                          "RocksDC.png"                   },
115   { "bd_rock.xpos",                                     "12"                            },
116   { "bd_rock.ypos",                                     "10"                            },
117   { "bd_rock.frames",                                   "1"                             },
118   { "bd_rock.EDITOR",                                   "RocksDC.png"                   },
119   { "bd_rock.EDITOR.xpos",                              "14"                            },
120   { "bd_rock.EDITOR.ypos",                              "14"                            },
121   { "bd_rock.moving.left",                              "RocksDC.png"                   },
122   { "bd_rock.moving.left.xpos",                         "12"                            },
123   { "bd_rock.moving.left.ypos",                         "10"                            },
124   { "bd_rock.moving.left.frames",                       "4"                             },
125   { "bd_rock.moving.left.delay",                        "2"                             },
126   { "bd_rock.moving.left.anim_mode",                    "reverse"                       },
127   { "bd_rock.moving.right",                             "RocksDC.png"                   },
128   { "bd_rock.moving.right.xpos",                        "12"                            },
129   { "bd_rock.moving.right.ypos",                        "10"                            },
130   { "bd_rock.moving.right.frames",                      "4"                             },
131   { "bd_rock.moving.right.start_frame",                 "1"                             },
132   { "bd_rock.moving.right.delay",                       "2"                             },
133   { "bd_rock.pushing.left",                             "RocksDC.png"                   },
134   { "bd_rock.pushing.left.xpos",                        "12"                            },
135   { "bd_rock.pushing.left.ypos",                        "10"                            },
136   { "bd_rock.pushing.left.frames",                      "4"                             },
137   { "bd_rock.pushing.left.delay",                       "2"                             },
138   { "bd_rock.pushing.left.anim_mode",                   "reverse"                       },
139   { "bd_rock.pushing.right",                            "RocksDC.png"                   },
140   { "bd_rock.pushing.right.xpos",                       "12"                            },
141   { "bd_rock.pushing.right.ypos",                       "10"                            },
142   { "bd_rock.pushing.right.frames",                     "4"                             },
143   { "bd_rock.pushing.right.start_frame",                "1"                             },
144   { "bd_rock.pushing.right.delay",                      "2"                             },
145
146   { "bd_diamond",                                       "RocksElements.png"             },
147   { "bd_diamond.xpos",                                  "0"                             },
148   { "bd_diamond.ypos",                                  "10"                            },
149   { "bd_diamond.frames",                                "4"                             },
150   { "bd_diamond.delay",                                 "4"                             },
151   { "bd_diamond.anim_mode",                             "reverse"                       },
152   { "bd_diamond.moving",                                "RocksElements.png"             },
153   { "bd_diamond.moving.xpos",                           "3"                             },
154   { "bd_diamond.moving.ypos",                           "10"                            },
155   { "bd_diamond.moving.frames",                         "2"                             },
156   { "bd_diamond.moving.delay",                          "4"                             },
157   { "bd_diamond.falling",                               "RocksElements.png"             },
158   { "bd_diamond.falling.xpos",                          "3"                             },
159   { "bd_diamond.falling.ypos",                          "10"                            },
160   { "bd_diamond.falling.frames",                        "2"                             },
161   { "bd_diamond.falling.delay",                         "4"                             },
162   { "bd_diamond.collecting",                            "RocksCollect.png"              },
163   { "bd_diamond.collecting.xpos",                       "0"                             },
164   { "bd_diamond.collecting.ypos",                       "8"                             },
165   { "bd_diamond.collecting.frames",                     "7"                             },
166   { "bd_diamond.collecting.anim_mode",                  "linear"                        },
167
168   { "bd_magic_wall",                                    "RocksElements.png"             },
169   { "bd_magic_wall.xpos",                               "12"                            },
170   { "bd_magic_wall.ypos",                               "10"                            },
171   { "bd_magic_wall.frames",                             "1"                             },
172   { "bd_magic_wall.active",                             "RocksElements.png"             },
173   { "bd_magic_wall.active.xpos",                        "12"                            },
174   { "bd_magic_wall.active.ypos",                        "10"                            },
175   { "bd_magic_wall.active.frames",                      "4"                             },
176   { "bd_magic_wall.active.anim_mode",                   "reverse"                       },
177   { "bd_magic_wall.active.delay",                       "4"                             },
178   { "bd_magic_wall.active.global_sync",                 "true"                          },
179   { "bd_magic_wall.filling",                            "RocksElements.png"             },
180   { "bd_magic_wall.filling.xpos",                       "12"                            },
181   { "bd_magic_wall.filling.ypos",                       "10"                            },
182   { "bd_magic_wall.filling.frames",                     "4"                             },
183   { "bd_magic_wall.filling.anim_mode",                  "reverse"                       },
184   { "bd_magic_wall.filling.delay",                      "4"                             },
185   { "bd_magic_wall.filling.global_sync",                "true"                          },
186   { "bd_magic_wall_full",                               "RocksElements.png"             },
187   { "bd_magic_wall_full.xpos",                          "12"                            },
188   { "bd_magic_wall_full.ypos",                          "10"                            },
189   { "bd_magic_wall_full.frames",                        "4"                             },
190   { "bd_magic_wall_full.anim_mode",                     "reverse"                       },
191   { "bd_magic_wall_full.delay",                         "4"                             },
192   { "bd_magic_wall_full.global_sync",                   "true"                          },
193   { "bd_magic_wall.emptying",                           "RocksElements.png"             },
194   { "bd_magic_wall.emptying.xpos",                      "12"                            },
195   { "bd_magic_wall.emptying.ypos",                      "10"                            },
196   { "bd_magic_wall.emptying.frames",                    "4"                             },
197   { "bd_magic_wall.emptying.anim_mode",                 "reverse"                       },
198   { "bd_magic_wall.emptying.delay",                     "4"                             },
199   { "bd_magic_wall.emptying.global_sync",               "true"                          },
200   { "bd_magic_wall_dead",                               "RocksElements.png"             },
201   { "bd_magic_wall_dead.xpos",                          "12"                            },
202   { "bd_magic_wall_dead.ypos",                          "10"                            },
203   { "bd_magic_wall_dead.frames",                        "1"                             },
204
205   { "bd_amoeba",                                        "RocksElements.png"             },
206   { "bd_amoeba.xpos",                                   "8"                             },
207   { "bd_amoeba.ypos",                                   "6"                             },
208   { "bd_amoeba.frames",                                 "4"                             },
209   { "bd_amoeba.anim_mode",                              "random_static"                 },
210   { "bd_amoeba.EDITOR",                                 "RocksElements.png"             },
211   { "bd_amoeba.EDITOR.xpos",                            "8"                             },
212   { "bd_amoeba.EDITOR.ypos",                            "7"                             },
213
214   { "bd_butterfly",                                     "RocksElements.png"             },
215   { "bd_butterfly.xpos",                                "4"                             },
216   { "bd_butterfly.ypos",                                "12"                            },
217   { "bd_butterfly.frames",                              "2"                             },
218   { "bd_butterfly.anim_mode",                           "pingpong"                      },
219   { "bd_butterfly.delay",                               "4"                             },
220   { "bd_butterfly.global_sync",                         "true"                          },
221   { "bd_butterfly.right",                               "RocksElements.png"             },
222   { "bd_butterfly.right.xpos",                          "4"                             },
223   { "bd_butterfly.right.ypos",                          "12"                            },
224   { "bd_butterfly.right.frames",                        "2"                             },
225   { "bd_butterfly.right.anim_mode",                     "pingpong"                      },
226   { "bd_butterfly.right.delay",                         "4"                             },
227   { "bd_butterfly.right.global_sync",                   "true"                          },
228   { "bd_butterfly.right.EDITOR",                        "RocksElements.png"             },
229   { "bd_butterfly.right.EDITOR.xpos",                   "8"                             },
230   { "bd_butterfly.right.EDITOR.ypos",                   "12"                            },
231   { "bd_butterfly.up",                                  "RocksElements.png"             },
232   { "bd_butterfly.up.xpos",                             "4"                             },
233   { "bd_butterfly.up.ypos",                             "12"                            },
234   { "bd_butterfly.up.frames",                           "2"                             },
235   { "bd_butterfly.up.anim_mode",                        "pingpong"                      },
236   { "bd_butterfly.up.delay",                            "4"                             },
237   { "bd_butterfly.up.global_sync",                      "true"                          },
238   { "bd_butterfly.up.EDITOR",                           "RocksElements.png"             },
239   { "bd_butterfly.up.EDITOR.xpos",                      "9"                             },
240   { "bd_butterfly.up.EDITOR.ypos",                      "12"                            },
241   { "bd_butterfly.left",                                "RocksElements.png"             },
242   { "bd_butterfly.left.xpos",                           "4"                             },
243   { "bd_butterfly.left.ypos",                           "12"                            },
244   { "bd_butterfly.left.frames",                         "2"                             },
245   { "bd_butterfly.left.anim_mode",                      "pingpong"                      },
246   { "bd_butterfly.left.delay",                          "4"                             },
247   { "bd_butterfly.left.global_sync",                    "true"                          },
248   { "bd_butterfly.left.EDITOR",                         "RocksElements.png"             },
249   { "bd_butterfly.left.EDITOR.xpos",                    "10"                            },
250   { "bd_butterfly.left.EDITOR.ypos",                    "12"                            },
251   { "bd_butterfly.down",                                "RocksElements.png"             },
252   { "bd_butterfly.down.xpos",                           "4"                             },
253   { "bd_butterfly.down.ypos",                           "12"                            },
254   { "bd_butterfly.down.frames",                         "2"                             },
255   { "bd_butterfly.down.anim_mode",                      "pingpong"                      },
256   { "bd_butterfly.down.delay",                          "4"                             },
257   { "bd_butterfly.down.global_sync",                    "true"                          },
258   { "bd_butterfly.down.EDITOR",                         "RocksElements.png"             },
259   { "bd_butterfly.down.EDITOR.xpos",                    "11"                            },
260   { "bd_butterfly.down.EDITOR.ypos",                    "12"                            },
261
262   { "bd_firefly",                                       "RocksElements.png"             },
263   { "bd_firefly.xpos",                                  "6"                             },
264   { "bd_firefly.ypos",                                  "12"                            },
265   { "bd_firefly.frames",                                "2"                             },
266   { "bd_firefly.anim_mode",                             "pingpong"                      },
267   { "bd_firefly.delay",                                 "4"                             },
268   { "bd_firefly.global_sync",                           "true"                          },
269   { "bd_firefly.right",                                 "RocksElements.png"             },
270   { "bd_firefly.right.xpos",                            "6"                             },
271   { "bd_firefly.right.ypos",                            "12"                            },
272   { "bd_firefly.right.frames",                          "2"                             },
273   { "bd_firefly.right.anim_mode",                       "pingpong"                      },
274   { "bd_firefly.right.delay",                           "4"                             },
275   { "bd_firefly.right.global_sync",                     "true"                          },
276   { "bd_firefly.right.EDITOR",                          "RocksElements.png"             },
277   { "bd_firefly.right.EDITOR.xpos",                     "12"                            },
278   { "bd_firefly.right.EDITOR.ypos",                     "12"                            },
279   { "bd_firefly.up",                                    "RocksElements.png"             },
280   { "bd_firefly.up.xpos",                               "6"                             },
281   { "bd_firefly.up.ypos",                               "12"                            },
282   { "bd_firefly.up.frames",                             "2"                             },
283   { "bd_firefly.up.anim_mode",                          "pingpong"                      },
284   { "bd_firefly.up.delay",                              "4"                             },
285   { "bd_firefly.up.global_sync",                        "true"                          },
286   { "bd_firefly.up.EDITOR",                             "RocksElements.png"             },
287   { "bd_firefly.up.EDITOR.xpos",                        "13"                            },
288   { "bd_firefly.up.EDITOR.ypos",                        "12"                            },
289   { "bd_firefly.left",                                  "RocksElements.png"             },
290   { "bd_firefly.left.xpos",                             "6"                             },
291   { "bd_firefly.left.ypos",                             "12"                            },
292   { "bd_firefly.left.frames",                           "2"                             },
293   { "bd_firefly.left.anim_mode",                        "pingpong"                      },
294   { "bd_firefly.left.delay",                            "4"                             },
295   { "bd_firefly.left.global_sync",                      "true"                          },
296   { "bd_firefly.left.EDITOR",                           "RocksElements.png"             },
297   { "bd_firefly.left.EDITOR.xpos",                      "14"                            },
298   { "bd_firefly.left.EDITOR.ypos",                      "12"                            },
299   { "bd_firefly.down",                                  "RocksElements.png"             },
300   { "bd_firefly.down.xpos",                             "6"                             },
301   { "bd_firefly.down.ypos",                             "12"                            },
302   { "bd_firefly.down.frames",                           "2"                             },
303   { "bd_firefly.down.anim_mode",                        "pingpong"                      },
304   { "bd_firefly.down.delay",                            "4"                             },
305   { "bd_firefly.down.global_sync",                      "true"                          },
306   { "bd_firefly.down.EDITOR",                           "RocksElements.png"             },
307   { "bd_firefly.down.EDITOR.xpos",                      "15"                            },
308   { "bd_firefly.down.EDITOR.ypos",                      "12"                            },
309
310   { "bd_expandable_wall",                               "RocksElements.png"             },
311   { "bd_expandable_wall.xpos",                          "5"                             },
312   { "bd_expandable_wall.ypos",                          "9"                             },
313   { "bd_expandable_wall.frames",                        "1"                             },
314   { "bd_expandable_wall.EDITOR",                        "RocksDC.png"                   },
315   { "bd_expandable_wall.EDITOR.xpos",                   "15"                            },
316   { "bd_expandable_wall.EDITOR.ypos",                   "15"                            },
317
318   // images for Boulder Dash style elements and actions (native game engine)
319
320   { "[bdx_default].exploding",                          "RocksElements.png"             },
321   { "[bdx_default].exploding.xpos",                     "0"                             },
322   { "[bdx_default].exploding.ypos",                     "4"                             },
323   { "[bdx_default].exploding.frames",                   "8"                             },
324   { "[bdx_default].exploding.delay",                    "5"                             },
325   { "[bdx_default].exploding.anim_mode",                "linear"                        },
326
327   { "[bdx_default].growing",                            "RocksElements.png"             },
328   { "[bdx_default].growing.xpos",                       "0"                             },
329   { "[bdx_default].growing.ypos",                       "4"                             },
330   { "[bdx_default].growing.frames",                     "8"                             },
331   { "[bdx_default].growing.delay",                      "4"                             },
332   { "[bdx_default].growing.anim_mode",                  "linear"                        },
333
334   { "bdx_player",                                       UNDEFINED_FILENAME              },
335   { "bdx_player.clone_from",                            "player_1"                      },
336   { "bdx_player.down",                                  UNDEFINED_FILENAME              },
337   { "bdx_player.down.clone_from",                       "player_1.down"                 },
338   { "bdx_player.up",                                    UNDEFINED_FILENAME              },
339   { "bdx_player.up.clone_from",                         "player_1.up"                   },
340   { "bdx_player.left",                                  UNDEFINED_FILENAME              },
341   { "bdx_player.left.clone_from",                       "player_1.left"                 },
342   { "bdx_player.right",                                 UNDEFINED_FILENAME              },
343   { "bdx_player.right.clone_from",                      "player_1.right"                },
344   { "bdx_player.moving.down",                           UNDEFINED_FILENAME              },
345   { "bdx_player.moving.down.clone_from",                "player_1.moving.down"          },
346   { "bdx_player.moving.up",                             UNDEFINED_FILENAME              },
347   { "bdx_player.moving.up.clone_from",                  "player_1.moving.up"            },
348   { "bdx_player.moving.left",                           UNDEFINED_FILENAME              },
349   { "bdx_player.moving.left.clone_from",                "player_1.moving.left"          },
350   { "bdx_player.moving.right",                          UNDEFINED_FILENAME              },
351   { "bdx_player.moving.right.clone_from",               "player_1.moving.right"         },
352   { "bdx_player.digging.down",                          UNDEFINED_FILENAME              },
353   { "bdx_player.digging.down.clone_from",               "player_1.digging.down"         },
354   { "bdx_player.digging.up",                            UNDEFINED_FILENAME              },
355   { "bdx_player.digging.up.clone_from",                 "player_1.digging.up"           },
356   { "bdx_player.digging.left",                          UNDEFINED_FILENAME              },
357   { "bdx_player.digging.left.clone_from",               "player_1.digging.left"         },
358   { "bdx_player.digging.right",                         UNDEFINED_FILENAME              },
359   { "bdx_player.digging.right.clone_from",              "player_1.digging.right"        },
360   { "bdx_player.collecting.down",                       UNDEFINED_FILENAME              },
361   { "bdx_player.collecting.down.clone_from",            "player_1.collecting.down"      },
362   { "bdx_player.collecting.up",                         UNDEFINED_FILENAME              },
363   { "bdx_player.collecting.up.clone_from",              "player_1.collecting.up"        },
364   { "bdx_player.collecting.left",                       UNDEFINED_FILENAME              },
365   { "bdx_player.collecting.left.clone_from",            "player_1.collecting.left"      },
366   { "bdx_player.collecting.right",                      UNDEFINED_FILENAME              },
367   { "bdx_player.collecting.right.clone_from",           "player_1.collecting.right"     },
368   { "bdx_player.pushing.down",                          UNDEFINED_FILENAME              },
369   { "bdx_player.pushing.down.clone_from",               "player_1.pushing.down"         },
370   { "bdx_player.pushing.up",                            UNDEFINED_FILENAME              },
371   { "bdx_player.pushing.up.clone_from",                 "player_1.pushing.up"           },
372   { "bdx_player.pushing.left",                          UNDEFINED_FILENAME              },
373   { "bdx_player.pushing.left.clone_from",               "player_1.pushing.left"         },
374   { "bdx_player.pushing.right",                         UNDEFINED_FILENAME              },
375   { "bdx_player.pushing.right.clone_from",              "player_1.pushing.right"        },
376   { "bdx_player.snapping.down",                         UNDEFINED_FILENAME              },
377   { "bdx_player.snapping.down.clone_from",              "player_1.snapping.down"        },
378   { "bdx_player.snapping.up",                           UNDEFINED_FILENAME              },
379   { "bdx_player.snapping.up.clone_from",                "player_1.snapping.up"          },
380   { "bdx_player.snapping.left",                         UNDEFINED_FILENAME              },
381   { "bdx_player.snapping.left.clone_from",              "player_1.snapping.left"        },
382   { "bdx_player.snapping.right",                        UNDEFINED_FILENAME              },
383   { "bdx_player.snapping.right.clone_from",             "player_1.snapping.right"       },
384
385   { "bdx_player_glued",                                 UNDEFINED_FILENAME              },
386   { "bdx_player_glued.clone_from",                      "bdx_player"                    },
387   { "bdx_player_glued.EDITOR",                          "RocksBD2.png"                  },
388   { "bdx_player_glued.EDITOR.xpos",                     "1"                             },
389   { "bdx_player_glued.EDITOR.ypos",                     "0"                             },
390
391   { "bdx_player_with_bomb",                             "RocksBD.png"                   },
392   { "bdx_player_with_bomb.xpos",                        "8"                             },
393   { "bdx_player_with_bomb.ypos",                        "7"                             },
394   { "bdx_player_with_bomb.frames",                      "1"                             },
395
396   { "bdx_player_with_rocket_launcher",                  "RocksBD.png"                   },
397   { "bdx_player_with_rocket_launcher.xpos",             "10"                            },
398   { "bdx_player_with_rocket_launcher.ypos",             "7"                             },
399   { "bdx_player_with_rocket_launcher.frames",           "1"                             },
400
401   { "bdx_player_stirring",                              "RocksBD.png"                   },
402   { "bdx_player_stirring.xpos",                         "8"                             },
403   { "bdx_player_stirring.ypos",                         "8"                             },
404   { "bdx_player_stirring.frames",                       "4"                             },
405   { "bdx_player_stirring.delay",                        "4"                             },
406
407   { "bdx_wall",                                         UNDEFINED_FILENAME              },
408   { "bdx_wall.clone_from",                              "bd_wall"                       },
409   { "bdx_wall.EDITOR",                                  UNDEFINED_FILENAME              },
410   { "bdx_wall.EDITOR.clone_from",                       "bd_wall.EDITOR"                },
411
412   { "bdx_rock",                                         UNDEFINED_FILENAME              },
413   { "bdx_rock.clone_from",                              "bd_rock"                       },
414   { "bdx_rock.EDITOR",                                  UNDEFINED_FILENAME              },
415   { "bdx_rock.EDITOR.clone_from",                       "bd_rock.EDITOR"                },
416   { "bdx_rock.moving.left",                             UNDEFINED_FILENAME              },
417   { "bdx_rock.moving.left.clone_from",                  "bd_rock.moving.left"           },
418   { "bdx_rock.moving.right",                            UNDEFINED_FILENAME              },
419   { "bdx_rock.moving.right.clone_from",                 "bd_rock.moving.right"          },
420   { "bdx_rock.pushing.left",                            UNDEFINED_FILENAME              },
421   { "bdx_rock.pushing.left.clone_from",                 "bd_rock.pushing.left"          },
422   { "bdx_rock.pushing.right",                           UNDEFINED_FILENAME              },
423   { "bdx_rock.pushing.right.clone_from",                "bd_rock.pushing.right"         },
424   { "bdx_rock.falling.EDITOR",                          "RocksBD2.png"                  },
425   { "bdx_rock.falling.EDITOR.xpos",                     "1"                             },
426   { "bdx_rock.falling.EDITOR.ypos",                     "3"                             },
427
428   { "bdx_diamond",                                      UNDEFINED_FILENAME              },
429   { "bdx_diamond.clone_from",                           "bd_diamond"                    },
430   { "bdx_diamond.moving",                               UNDEFINED_FILENAME              },
431   { "bdx_diamond.moving.clone_from",                    "bd_diamond.moving"             },
432   { "bdx_diamond.falling",                              UNDEFINED_FILENAME              },
433   { "bdx_diamond.falling.clone_from",                   "bd_diamond.falling"            },
434   { "bdx_diamond.collecting",                           UNDEFINED_FILENAME              },
435   { "bdx_diamond.collecting.clone_from",                "bd_diamond.collecting"         },
436   { "bdx_diamond.falling.EDITOR",                       "RocksBD2.png"                  },
437   { "bdx_diamond.falling.EDITOR.xpos",                  "0"                             },
438   { "bdx_diamond.falling.EDITOR.ypos",                  "3"                             },
439
440   { "bdx_magic_wall",                                   UNDEFINED_FILENAME              },
441   { "bdx_magic_wall.clone_from",                        "bd_magic_wall"                 },
442   { "bdx_magic_wall.active",                            UNDEFINED_FILENAME              },
443   { "bdx_magic_wall.active.clone_from",                 "bd_magic_wall.active"          },
444
445   { "bdx_amoeba_1",                                     "RocksBD.png"                   },
446   { "bdx_amoeba_1.xpos",                                "4"                             },
447   { "bdx_amoeba_1.ypos",                                "11"                            },
448   { "bdx_amoeba_1.frames",                              "4"                             },
449   { "bdx_amoeba_1.delay",                               "4"                             },
450   { "bdx_amoeba_1.anim_mode",                           "pingpong2"                     },
451
452   { "bdx_amoeba_2",                                     "RocksBD.png"                   },
453   { "bdx_amoeba_2.xpos",                                "8"                             },
454   { "bdx_amoeba_2.ypos",                                "11"                            },
455   { "bdx_amoeba_2.frames",                              "4"                             },
456   { "bdx_amoeba_2.delay",                               "4"                             },
457   { "bdx_amoeba_2.anim_mode",                           "pingpong2"                     },
458
459   { "bdx_butterfly_1",                                  UNDEFINED_FILENAME              },
460   { "bdx_butterfly_1.clone_from",                       "bd_butterfly"                  },
461   { "bdx_butterfly_1.right",                            UNDEFINED_FILENAME              },
462   { "bdx_butterfly_1.right.clone_from",                 "bd_butterfly.right"            },
463   { "bdx_butterfly_1.up",                               UNDEFINED_FILENAME              },
464   { "bdx_butterfly_1.up.clone_from",                    "bd_butterfly.up"               },
465   { "bdx_butterfly_1.left",                             UNDEFINED_FILENAME              },
466   { "bdx_butterfly_1.left.clone_from",                  "bd_butterfly.left"             },
467   { "bdx_butterfly_1.down",                             UNDEFINED_FILENAME              },
468   { "bdx_butterfly_1.down.clone_from",                  "bd_butterfly.down"             },
469
470   { "bdx_butterfly_2",                                  "RocksBD.png"                   },
471   { "bdx_butterfly_2.xpos",                             "0"                             },
472   { "bdx_butterfly_2.ypos",                             "0"                             },
473   { "bdx_butterfly_2.frames",                           "2"                             },
474   { "bdx_butterfly_2.anim_mode",                        "pingpong"                      },
475   { "bdx_butterfly_2.delay",                            "4"                             },
476   { "bdx_butterfly_2.global_sync",                      "true"                          },
477   { "bdx_butterfly_2.right",                            "RocksBD.png"                   },
478   { "bdx_butterfly_2.right.xpos",                       "0"                             },
479   { "bdx_butterfly_2.right.ypos",                       "0"                             },
480   { "bdx_butterfly_2.right.frames",                     "2"                             },
481   { "bdx_butterfly_2.right.anim_mode",                  "pingpong"                      },
482   { "bdx_butterfly_2.right.delay",                      "4"                             },
483   { "bdx_butterfly_2.right.global_sync",                "true"                          },
484   { "bdx_butterfly_2.right.EDITOR",                     "RocksBD.png"                   },
485   { "bdx_butterfly_2.right.EDITOR.xpos",                "4"                             },
486   { "bdx_butterfly_2.right.EDITOR.ypos",                "0"                             },
487   { "bdx_butterfly_2.up",                               "RocksBD.png"                   },
488   { "bdx_butterfly_2.up.xpos",                          "0"                             },
489   { "bdx_butterfly_2.up.ypos",                          "0"                             },
490   { "bdx_butterfly_2.up.frames",                        "2"                             },
491   { "bdx_butterfly_2.up.anim_mode",                     "pingpong"                      },
492   { "bdx_butterfly_2.up.delay",                         "4"                             },
493   { "bdx_butterfly_2.up.global_sync",                   "true"                          },
494   { "bdx_butterfly_2.up.EDITOR",                        "RocksBD.png"                   },
495   { "bdx_butterfly_2.up.EDITOR.xpos",                   "5"                             },
496   { "bdx_butterfly_2.up.EDITOR.ypos",                   "0"                             },
497   { "bdx_butterfly_2.left",                             "RocksBD.png"                   },
498   { "bdx_butterfly_2.left.xpos",                        "0"                             },
499   { "bdx_butterfly_2.left.ypos",                        "0"                             },
500   { "bdx_butterfly_2.left.frames",                      "2"                             },
501   { "bdx_butterfly_2.left.anim_mode",                   "pingpong"                      },
502   { "bdx_butterfly_2.left.delay",                       "4"                             },
503   { "bdx_butterfly_2.left.global_sync",                 "true"                          },
504   { "bdx_butterfly_2.left.EDITOR",                      "RocksBD.png"                   },
505   { "bdx_butterfly_2.left.EDITOR.xpos",                 "6"                             },
506   { "bdx_butterfly_2.left.EDITOR.ypos",                 "0"                             },
507   { "bdx_butterfly_2.down",                             "RocksBD.png"                   },
508   { "bdx_butterfly_2.down.xpos",                        "0"                             },
509   { "bdx_butterfly_2.down.ypos",                        "0"                             },
510   { "bdx_butterfly_2.down.frames",                      "2"                             },
511   { "bdx_butterfly_2.down.anim_mode",                   "pingpong"                      },
512   { "bdx_butterfly_2.down.delay",                       "4"                             },
513   { "bdx_butterfly_2.down.global_sync",                 "true"                          },
514   { "bdx_butterfly_2.down.EDITOR",                      "RocksBD.png"                   },
515   { "bdx_butterfly_2.down.EDITOR.xpos",                 "7"                             },
516   { "bdx_butterfly_2.down.EDITOR.ypos",                 "0"                             },
517
518   { "bdx_firefly_1",                                    UNDEFINED_FILENAME              },
519   { "bdx_firefly_1.clone_from",                         "bd_firefly"                    },
520   { "bdx_firefly_1.right",                              UNDEFINED_FILENAME              },
521   { "bdx_firefly_1.right.clone_from",                   "bd_firefly.right"              },
522   { "bdx_firefly_1.up",                                 UNDEFINED_FILENAME              },
523   { "bdx_firefly_1.up.clone_from",                      "bd_firefly.up"                 },
524   { "bdx_firefly_1.left",                               UNDEFINED_FILENAME              },
525   { "bdx_firefly_1.left.clone_from",                    "bd_firefly.left"               },
526   { "bdx_firefly_1.down",                               UNDEFINED_FILENAME              },
527   { "bdx_firefly_1.down.clone_from",                    "bd_firefly.down"               },
528
529   { "bdx_firefly_2",                                    "RocksBD.png"                   },
530   { "bdx_firefly_2.xpos",                               "2"                             },
531   { "bdx_firefly_2.ypos",                               "0"                             },
532   { "bdx_firefly_2.frames",                             "2"                             },
533   { "bdx_firefly_2.anim_mode",                          "pingpong"                      },
534   { "bdx_firefly_2.delay",                              "4"                             },
535   { "bdx_firefly_2.global_sync",                        "true"                          },
536   { "bdx_firefly_2.right",                              "RocksBD.png"                   },
537   { "bdx_firefly_2.right.xpos",                         "2"                             },
538   { "bdx_firefly_2.right.ypos",                         "0"                             },
539   { "bdx_firefly_2.right.frames",                       "2"                             },
540   { "bdx_firefly_2.right.anim_mode",                    "pingpong"                      },
541   { "bdx_firefly_2.right.delay",                        "4"                             },
542   { "bdx_firefly_2.right.global_sync",                  "true"                          },
543   { "bdx_firefly_2.right.EDITOR",                       "RocksBD.png"                   },
544   { "bdx_firefly_2.right.EDITOR.xpos",                  "8"                             },
545   { "bdx_firefly_2.right.EDITOR.ypos",                  "0"                             },
546   { "bdx_firefly_2.up",                                 "RocksBD.png"                   },
547   { "bdx_firefly_2.up.xpos",                            "2"                             },
548   { "bdx_firefly_2.up.ypos",                            "0"                             },
549   { "bdx_firefly_2.up.frames",                          "2"                             },
550   { "bdx_firefly_2.up.anim_mode",                       "pingpong"                      },
551   { "bdx_firefly_2.up.delay",                           "4"                             },
552   { "bdx_firefly_2.up.global_sync",                     "true"                          },
553   { "bdx_firefly_2.up.EDITOR",                          "RocksBD.png"                   },
554   { "bdx_firefly_2.up.EDITOR.xpos",                     "9"                             },
555   { "bdx_firefly_2.up.EDITOR.ypos",                     "0"                             },
556   { "bdx_firefly_2.left",                               "RocksBD.png"                   },
557   { "bdx_firefly_2.left.xpos",                          "2"                             },
558   { "bdx_firefly_2.left.ypos",                          "0"                             },
559   { "bdx_firefly_2.left.frames",                        "2"                             },
560   { "bdx_firefly_2.left.anim_mode",                     "pingpong"                      },
561   { "bdx_firefly_2.left.delay",                         "4"                             },
562   { "bdx_firefly_2.left.global_sync",                   "true"                          },
563   { "bdx_firefly_2.left.EDITOR",                        "RocksBD.png"                   },
564   { "bdx_firefly_2.left.EDITOR.xpos",                   "10"                            },
565   { "bdx_firefly_2.left.EDITOR.ypos",                   "0"                             },
566   { "bdx_firefly_2.down",                               "RocksBD.png"                   },
567   { "bdx_firefly_2.down.xpos",                          "2"                             },
568   { "bdx_firefly_2.down.ypos",                          "0"                             },
569   { "bdx_firefly_2.down.frames",                        "2"                             },
570   { "bdx_firefly_2.down.anim_mode",                     "pingpong"                      },
571   { "bdx_firefly_2.down.delay",                         "4"                             },
572   { "bdx_firefly_2.down.global_sync",                   "true"                          },
573   { "bdx_firefly_2.down.EDITOR",                        "RocksBD.png"                   },
574   { "bdx_firefly_2.down.EDITOR.xpos",                   "11"                            },
575   { "bdx_firefly_2.down.EDITOR.ypos",                   "0"                             },
576
577   { "bdx_sand_1",                                       UNDEFINED_FILENAME              },
578   { "bdx_sand_1.clone_from",                            "sand"                          },
579
580   { "bdx_sand_2",                                       UNDEFINED_FILENAME              },
581   { "bdx_sand_2.clone_from",                            "emc_grass"                     },
582
583   { "bdx_sand_ball",                                    "RocksBD.png"                   },
584   { "bdx_sand_ball.xpos",                               "9"                             },
585   { "bdx_sand_ball.ypos",                               "4"                             },
586   { "bdx_sand_ball.frames",                             "1"                             },
587
588   { "bdx_sand_loose",                                   "RocksBD.png"                   },
589   { "bdx_sand_loose.xpos",                              "10"                            },
590   { "bdx_sand_loose.ypos",                              "4"                             },
591   { "bdx_sand_loose.frames",                            "1"                             },
592
593   { "bdx_sand_sloped_up_left",                          "RocksBD.png"                   },
594   { "bdx_sand_sloped_up_left.xpos",                     "8"                             },
595   { "bdx_sand_sloped_up_left.ypos",                     "5"                             },
596   { "bdx_sand_sloped_up_left.frames",                   "1"                             },
597   { "bdx_sand_sloped_up_right",                         "RocksBD.png"                   },
598   { "bdx_sand_sloped_up_right.xpos",                    "9"                             },
599   { "bdx_sand_sloped_up_right.ypos",                    "5"                             },
600   { "bdx_sand_sloped_up_right.frames",                  "1"                             },
601   { "bdx_sand_sloped_down_left",                        "RocksBD.png"                   },
602   { "bdx_sand_sloped_down_left.xpos",                   "10"                            },
603   { "bdx_sand_sloped_down_left.ypos",                   "5"                             },
604   { "bdx_sand_sloped_down_left.frames",                 "1"                             },
605   { "bdx_sand_sloped_down_right",                       "RocksBD.png"                   },
606   { "bdx_sand_sloped_down_right.xpos",                  "11"                            },
607   { "bdx_sand_sloped_down_right.ypos",                  "5"                             },
608   { "bdx_sand_sloped_down_right.frames",                "1"                             },
609
610   { "bdx_sand_glued",                                   UNDEFINED_FILENAME              },
611   { "bdx_sand_glued.clone_from",                        "bdx_sand_1"                    },
612   { "bdx_sand_glued.EDITOR",                            "RocksBD2.png"                  },
613   { "bdx_sand_glued.EDITOR.xpos",                       "2"                             },
614   { "bdx_sand_glued.EDITOR.ypos",                       "4"                             },
615
616   { "bdx_wall_sloped_up_left",                          "RocksBD.png"                   },
617   { "bdx_wall_sloped_up_left.xpos",                     "4"                             },
618   { "bdx_wall_sloped_up_left.ypos",                     "5"                             },
619   { "bdx_wall_sloped_up_left.frames",                   "1"                             },
620   { "bdx_wall_sloped_up_right",                         "RocksBD.png"                   },
621   { "bdx_wall_sloped_up_right.xpos",                    "5"                             },
622   { "bdx_wall_sloped_up_right.ypos",                    "5"                             },
623   { "bdx_wall_sloped_up_right.frames",                  "1"                             },
624   { "bdx_wall_sloped_down_left",                        "RocksBD.png"                   },
625   { "bdx_wall_sloped_down_left.xpos",                   "6"                             },
626   { "bdx_wall_sloped_down_left.ypos",                   "5"                             },
627   { "bdx_wall_sloped_down_left.frames",                 "1"                             },
628   { "bdx_wall_sloped_down_right",                       "RocksBD.png"                   },
629   { "bdx_wall_sloped_down_right.xpos",                  "7"                             },
630   { "bdx_wall_sloped_down_right.ypos",                  "5"                             },
631   { "bdx_wall_sloped_down_right.frames",                "1"                             },
632
633   { "bdx_wall_non_sloped",                              UNDEFINED_FILENAME              },
634   { "bdx_wall_non_sloped.clone_from",                   "wall"                          },
635
636   { "bdx_wall_diggable",                                UNDEFINED_FILENAME              },
637   { "bdx_wall_diggable.clone_from",                     "bdx_wall"                      },
638   { "bdx_wall_diggable.EDITOR",                         "RocksBD2.png"                  },
639   { "bdx_wall_diggable.EDITOR.xpos",                    "7"                             },
640   { "bdx_wall_diggable.EDITOR.ypos",                    "0"                             },
641
642   { "bdx_wall_diamond",                                 UNDEFINED_FILENAME              },
643   { "bdx_wall_diamond.clone_from",                      "bdx_wall"                      },
644   { "bdx_wall_diamond.EDITOR",                          "RocksBD2.png"                  },
645   { "bdx_wall_diamond.EDITOR.xpos",                     "3"                             },
646   { "bdx_wall_diamond.EDITOR.ypos",                     "2"                             },
647
648   { "bdx_wall_key_1",                                   UNDEFINED_FILENAME              },
649   { "bdx_wall_key_1.clone_from",                        "bdx_wall"                      },
650   { "bdx_wall_key_1.EDITOR",                            "RocksBD2.png"                  },
651   { "bdx_wall_key_1.EDITOR.xpos",                       "0"                             },
652   { "bdx_wall_key_1.EDITOR.ypos",                       "2"                             },
653
654   { "bdx_wall_key_2",                                   UNDEFINED_FILENAME              },
655   { "bdx_wall_key_2.clone_from",                        "bdx_wall"                      },
656   { "bdx_wall_key_2.EDITOR",                            "RocksBD2.png"                  },
657   { "bdx_wall_key_2.EDITOR.xpos",                       "1"                             },
658   { "bdx_wall_key_2.EDITOR.ypos",                       "2"                             },
659
660   { "bdx_wall_key_3",                                   UNDEFINED_FILENAME              },
661   { "bdx_wall_key_3.clone_from",                        "bdx_wall"                      },
662   { "bdx_wall_key_3.EDITOR",                            "RocksBD2.png"                  },
663   { "bdx_wall_key_3.EDITOR.xpos",                       "2"                             },
664   { "bdx_wall_key_3.EDITOR.ypos",                       "2"                             },
665
666   { "bdx_falling_wall",                                 UNDEFINED_FILENAME              },
667   { "bdx_falling_wall.clone_from",                      "bdx_wall"                      },
668   { "bdx_falling_wall.EDITOR",                          "RocksBD2.png"                  },
669   { "bdx_falling_wall.EDITOR.xpos",                     "6"                             },
670   { "bdx_falling_wall.EDITOR.ypos",                     "1"                             },
671   { "bdx_falling_wall.falling.EDITOR",                  "RocksBD2.png"                  },
672   { "bdx_falling_wall.falling.EDITOR.xpos",             "7"                             },
673   { "bdx_falling_wall.falling.EDITOR.ypos",             "1"                             },
674
675   { "bdx_steelwall",                                    "RocksBD.png"                   },
676   { "bdx_steelwall.xpos",                               "8"                             },
677   { "bdx_steelwall.ypos",                               "3"                             },
678   { "bdx_steelwall.frames",                             "1"                             },
679
680   { "bdx_steelwall_sloped_up_left",                     "RocksBD.png"                   },
681   { "bdx_steelwall_sloped_up_left.xpos",                "0"                             },
682   { "bdx_steelwall_sloped_up_left.ypos",                "5"                             },
683   { "bdx_steelwall_sloped_up_left.frames",              "1"                             },
684   { "bdx_steelwall_sloped_up_right",                    "RocksBD.png"                   },
685   { "bdx_steelwall_sloped_up_right.xpos",               "1"                             },
686   { "bdx_steelwall_sloped_up_right.ypos",               "5"                             },
687   { "bdx_steelwall_sloped_up_right.frames",             "1"                             },
688   { "bdx_steelwall_sloped_down_left",                   "RocksBD.png"                   },
689   { "bdx_steelwall_sloped_down_left.xpos",              "2"                             },
690   { "bdx_steelwall_sloped_down_left.ypos",              "5"                             },
691   { "bdx_steelwall_sloped_down_left.frames",            "1"                             },
692   { "bdx_steelwall_sloped_down_right",                  "RocksBD.png"                   },
693   { "bdx_steelwall_sloped_down_right.xpos",             "3"                             },
694   { "bdx_steelwall_sloped_down_right.ypos",             "5"                             },
695   { "bdx_steelwall_sloped_down_right.frames",           "1"                             },
696
697   { "bdx_steelwall_explodable",                         UNDEFINED_FILENAME              },
698   { "bdx_steelwall_explodable.clone_from",              "bd_steelwall"                  },
699
700   { "bdx_steelwall_diggable",                           UNDEFINED_FILENAME              },
701   { "bdx_steelwall_diggable.clone_from",                "bd_steelwall"                  },
702   { "bdx_steelwall_diggable.EDITOR",                    "RocksBD2.png"                  },
703   { "bdx_steelwall_diggable.EDITOR.xpos",               "6"                             },
704   { "bdx_steelwall_diggable.EDITOR.ypos",               "0"                             },
705
706   { "bdx_expandable_wall_horizontal",                   UNDEFINED_FILENAME              },
707   { "bdx_expandable_wall_horizontal.clone_from",        "bd_wall"                       },
708   { "bdx_expandable_wall_horizontal.EDITOR",            "RocksBD2.png"                  },
709   { "bdx_expandable_wall_horizontal.EDITOR.xpos",       "3"                             },
710   { "bdx_expandable_wall_horizontal.EDITOR.ypos",       "1"                             },
711
712   { "bdx_expandable_wall_vertical",                     UNDEFINED_FILENAME              },
713   { "bdx_expandable_wall_vertical.clone_from",          "bd_wall"                       },
714   { "bdx_expandable_wall_vertical.EDITOR",              "RocksBD2.png"                  },
715   { "bdx_expandable_wall_vertical.EDITOR.xpos",         "4"                             },
716   { "bdx_expandable_wall_vertical.EDITOR.ypos",         "1"                             },
717
718   { "bdx_expandable_wall_any",                          UNDEFINED_FILENAME              },
719   { "bdx_expandable_wall_any.clone_from",               "bd_wall"                       },
720   { "bdx_expandable_wall_any.EDITOR",                   "RocksBD2.png"                  },
721   { "bdx_expandable_wall_any.EDITOR.xpos",              "5"                             },
722   { "bdx_expandable_wall_any.EDITOR.ypos",              "1"                             },
723
724   { "bdx_expandable_steelwall_horizontal",              UNDEFINED_FILENAME              },
725   { "bdx_expandable_steelwall_horizontal.clone_from",   "bd_steelwall"                  },
726   { "bdx_expandable_steelwall_horizontal.EDITOR",       "RocksBD2.png"                  },
727   { "bdx_expandable_steelwall_horizontal.EDITOR.xpos",  "0"                             },
728   { "bdx_expandable_steelwall_horizontal.EDITOR.ypos",  "1"                             },
729
730   { "bdx_expandable_steelwall_vertical",                UNDEFINED_FILENAME              },
731   { "bdx_expandable_steelwall_vertical.clone_from",     "bd_steelwall"                  },
732   { "bdx_expandable_steelwall_vertical.EDITOR",         "RocksBD2.png"                  },
733   { "bdx_expandable_steelwall_vertical.EDITOR.xpos",    "1"                             },
734   { "bdx_expandable_steelwall_vertical.EDITOR.ypos",    "1"                             },
735
736   { "bdx_expandable_steelwall_any",                     UNDEFINED_FILENAME              },
737   { "bdx_expandable_steelwall_any.clone_from",          "bd_steelwall"                  },
738   { "bdx_expandable_steelwall_any.EDITOR",              "RocksBD2.png"                  },
739   { "bdx_expandable_steelwall_any.EDITOR.xpos",         "2"                             },
740   { "bdx_expandable_steelwall_any.EDITOR.ypos",         "1"                             },
741
742   { "bdx_expandable_wall_switch",                       "RocksBD.png"                   },
743   { "bdx_expandable_wall_switch.xpos",                  "10"                            },
744   { "bdx_expandable_wall_switch.ypos",                  "3"                             },
745   { "bdx_expandable_wall_switch.frames",                "1"                             },
746
747   { "bdx_expandable_wall_switch.active",                "RocksBD.png"                   },
748   { "bdx_expandable_wall_switch.active.xpos",           "11"                            },
749   { "bdx_expandable_wall_switch.active.ypos",           "3"                             },
750   { "bdx_expandable_wall_switch.active.frames",         "1"                             },
751
752   { "bdx_inbox",                                        "RocksBD.png"                   },
753   { "bdx_inbox.xpos",                                   "8"                             },
754   { "bdx_inbox.ypos",                                   "3"                             },
755   { "bdx_inbox.frames",                                 "1"                             },
756   { "bdx_inbox.opening",                                "RocksBD.png"                   },
757   { "bdx_inbox.opening.xpos",                           "8"                             },
758   { "bdx_inbox.opening.ypos",                           "3"                             },
759   { "bdx_inbox.opening.frames",                         "2"                             },
760   { "bdx_inbox.opening.delay",                          "8"                             },
761   { "bdx_inbox.opening.anim_mode",                      "reverse"                       },
762   { "bdx_inbox.EDITOR",                                 "RocksBD2.png"                  },
763   { "bdx_inbox.EDITOR.xpos",                            "0"                             },
764   { "bdx_inbox.EDITOR.ypos",                            "0"                             },
765
766   { "bdx_exit_closed",                                  "RocksBD.png"                   },
767   { "bdx_exit_closed.xpos",                             "8"                             },
768   { "bdx_exit_closed.ypos",                             "3"                             },
769   { "bdx_exit_closed.frames",                           "1"                             },
770   { "bdx_exit_closed.EDITOR",                           "RocksBD2.png"                  },
771   { "bdx_exit_closed.EDITOR.xpos",                      "5"                             },
772   { "bdx_exit_closed.EDITOR.ypos",                      "0"                             },
773
774   { "bdx_exit_open",                                    "RocksBD.png"                   },
775   { "bdx_exit_open.xpos",                               "8"                             },
776   { "bdx_exit_open.ypos",                               "3"                             },
777   { "bdx_exit_open.frames",                             "2"                             },
778   { "bdx_exit_open.delay",                              "8"                             },
779   { "bdx_exit_open.anim_mode",                          "reverse"                       },
780   { "bdx_exit_open.EDITOR",                             "RocksBD2.png"                  },
781   { "bdx_exit_open.EDITOR.xpos",                        "3"                             },
782   { "bdx_exit_open.EDITOR.ypos",                        "0"                             },
783
784   { "bdx_invisible_exit_closed",                        UNDEFINED_FILENAME              },
785   { "bdx_invisible_exit_closed.clone_from",             "bd_steelwall"                  },
786   { "bdx_invisible_exit_closed.EDITOR",                 "RocksBD2.png"                  },
787   { "bdx_invisible_exit_closed.EDITOR.xpos",            "4"                             },
788   { "bdx_invisible_exit_closed.EDITOR.ypos",            "0"                             },
789
790   { "bdx_invisible_exit_open",                          UNDEFINED_FILENAME              },
791   { "bdx_invisible_exit_open.clone_from",               "bd_steelwall"                  },
792   { "bdx_invisible_exit_open.EDITOR",                   "RocksBD2.png"                  },
793   { "bdx_invisible_exit_open.EDITOR.xpos",              "2"                             },
794   { "bdx_invisible_exit_open.EDITOR.ypos",              "0"                             },
795
796   { "bdx_flying_rock",                                  "RocksBD.png"                   },
797   { "bdx_flying_rock.xpos",                             "1"                             },
798   { "bdx_flying_rock.ypos",                             "4"                             },
799   { "bdx_flying_rock.frames",                           "1"                             },
800   { "bdx_flying_rock.flying.EDITOR",                    "RocksBD2.png"                  },
801   { "bdx_flying_rock.flying.EDITOR.xpos",               "4"                             },
802   { "bdx_flying_rock.flying.EDITOR.ypos",               "3"                             },
803
804   { "bdx_mega_rock",                                    "RocksBD.png"                   },
805   { "bdx_mega_rock.xpos",                               "2"                             },
806   { "bdx_mega_rock.ypos",                               "4"                             },
807   { "bdx_mega_rock.frames",                             "1"                             },
808   { "bdx_mega_rock.falling.EDITOR",                     "RocksBD2.png"                  },
809   { "bdx_mega_rock.falling.EDITOR.xpos",                "2"                             },
810   { "bdx_mega_rock.falling.EDITOR.ypos",                "3"                             },
811
812   { "bdx_rock_glued",                                   UNDEFINED_FILENAME              },
813   { "bdx_rock_glued.clone_from",                        "bd_rock"                       },
814   { "bdx_rock_glued.EDITOR",                            "RocksBD2.png"                  },
815   { "bdx_rock_glued.EDITOR.xpos",                       "1"                             },
816   { "bdx_rock_glued.EDITOR.ypos",                       "4"                             },
817
818   { "bdx_flying_diamond",                               "RocksBD.png"                   },
819   { "bdx_flying_diamond.xpos",                          "0"                             },
820   { "bdx_flying_diamond.ypos",                          "3"                             },
821   { "bdx_flying_diamond.frames",                        "4"                             },
822   { "bdx_flying_diamond.delay",                         "4"                             },
823   { "bdx_flying_diamond.moving",                        "RocksBD.png"                   },
824   { "bdx_flying_diamond.moving.xpos",                   "3"                             },
825   { "bdx_flying_diamond.moving.ypos",                   "3"                             },
826   { "bdx_flying_diamond.moving.frames",                 "2"                             },
827   { "bdx_flying_diamond.moving.delay",                  "4"                             },
828   { "bdx_flying_diamond.flying",                        "RocksBD.png"                   },
829   { "bdx_flying_diamond.flying.xpos",                   "3"                             },
830   { "bdx_flying_diamond.flying.ypos",                   "3"                             },
831   { "bdx_flying_diamond.flying.frames",                 "2"                             },
832   { "bdx_flying_diamond.flying.delay",                  "4"                             },
833   { "bdx_flying_diamond.flying.EDITOR",                 "RocksBD2.png"                  },
834   { "bdx_flying_diamond.flying.EDITOR.xpos",            "3"                             },
835   { "bdx_flying_diamond.flying.EDITOR.ypos",            "3"                             },
836
837   { "bdx_diamond_glued",                                UNDEFINED_FILENAME              },
838   { "bdx_diamond_glued.clone_from",                     "bd_diamond"                    },
839   { "bdx_diamond_glued.EDITOR",                         "RocksBD2.png"                  },
840   { "bdx_diamond_glued.EDITOR.xpos",                    "0"                             },
841   { "bdx_diamond_glued.EDITOR.ypos",                    "4"                             },
842
843   { "bdx_diamond_key",                                  "RocksBD.png"                   },
844   { "bdx_diamond_key.xpos",                             "1"                             },
845   { "bdx_diamond_key.ypos",                             "6"                             },
846   { "bdx_diamond_key.frames",                           "1"                             },
847
848   { "bdx_trapped_diamond",                              "RocksBD.png"                   },
849   { "bdx_trapped_diamond.xpos",                         "0"                             },
850   { "bdx_trapped_diamond.ypos",                         "6"                             },
851   { "bdx_trapped_diamond.frames",                       "1"                             },
852
853   { "bdx_nut",                                          UNDEFINED_FILENAME              },
854   { "bdx_nut.clone_from",                               "nut"                           },
855   { "bdx_nut.falling.EDITOR",                           "RocksBD2.png"                  },
856   { "bdx_nut.falling.EDITOR.xpos",                      "5"                             },
857   { "bdx_nut.falling.EDITOR.ypos",                      "2"                             },
858
859   { "bdx_bladder",                                      "RocksBD.png"                   },
860   { "bdx_bladder.xpos",                                 "8"                             },
861   { "bdx_bladder.ypos",                                 "12"                            },
862   { "bdx_bladder.frames",                               "4"                             },
863   { "bdx_bladder.delay",                                "4"                             },
864   { "bdx_bladder.anim_mode",                            "pingpong2"                     },
865
866   { "bdx_bladder_spender",                              "RocksBD.png"                   },
867   { "bdx_bladder_spender.xpos",                         "11"                            },
868   { "bdx_bladder_spender.ypos",                         "10"                            },
869   { "bdx_bladder_spender.frames",                       "1"                             },
870
871   { "bdx_creature_switch",                              "RocksBD.png"                   },
872   { "bdx_creature_switch.xpos",                         "9"                             },
873   { "bdx_creature_switch.ypos",                         "9"                             },
874   { "bdx_creature_switch.frames",                       "1"                             },
875   { "bdx_creature_switch.active",                       "RocksBD.png"                   },
876   { "bdx_creature_switch.active.xpos",                  "10"                            },
877   { "bdx_creature_switch.active.ypos",                  "9"                             },
878   { "bdx_creature_switch.active.frames",                "1"                             },
879
880   { "bdx_biter_switch_1",                               "RocksBD.png"                   },
881   { "bdx_biter_switch_1.xpos",                          "4"                             },
882   { "bdx_biter_switch_1.ypos",                          "4"                             },
883   { "bdx_biter_switch_1.frames",                        "1"                             },
884
885   { "bdx_biter_switch_2",                               "RocksBD.png"                   },
886   { "bdx_biter_switch_2.xpos",                          "5"                             },
887   { "bdx_biter_switch_2.ypos",                          "4"                             },
888   { "bdx_biter_switch_2.frames",                        "1"                             },
889
890   { "bdx_biter_switch_3",                               "RocksBD.png"                   },
891   { "bdx_biter_switch_3.xpos",                          "6"                             },
892   { "bdx_biter_switch_3.ypos",                          "4"                             },
893   { "bdx_biter_switch_3.frames",                        "1"                             },
894
895   { "bdx_biter_switch_4",                               "RocksBD.png"                   },
896   { "bdx_biter_switch_4.xpos",                          "7"                             },
897   { "bdx_biter_switch_4.ypos",                          "4"                             },
898   { "bdx_biter_switch_4.frames",                        "1"                             },
899
900   { "bdx_replicator",                                   UNDEFINED_FILENAME              },
901   { "bdx_replicator.clone_from",                        "emc_magic_ball"                },
902   { "bdx_replicator.active",                            UNDEFINED_FILENAME              },
903   { "bdx_replicator.active.clone_from",                 "emc_magic_ball.active"         },
904
905   { "bdx_replicator_switch",                            UNDEFINED_FILENAME              },
906   { "bdx_replicator_switch.clone_from",                 "emc_magic_ball_switch"         },
907   { "bdx_replicator_switch.active",                     UNDEFINED_FILENAME              },
908   { "bdx_replicator_switch.active.clone_from",          "emc_magic_ball_switch.active"  },
909
910   { "bdx_conveyor_left",                                "RocksDC.png"                   },
911   { "bdx_conveyor_left.xpos",                           "0"                             },
912   { "bdx_conveyor_left.ypos",                           "3"                             },
913   { "bdx_conveyor_left.frames",                         "1"                             },
914   { "bdx_conveyor_left.EDITOR",                         "RocksBD2.png"                  },
915   { "bdx_conveyor_left.EDITOR.xpos",                    "6"                             },
916   { "bdx_conveyor_left.EDITOR.ypos",                    "3"                             },
917   { "bdx_conveyor_left.active",                         "RocksDC.png"                   },
918   { "bdx_conveyor_left.active.xpos",                    "0"                             },
919   { "bdx_conveyor_left.active.ypos",                    "3"                             },
920   { "bdx_conveyor_left.active.frames",                  "8"                             },
921   { "bdx_conveyor_left.active.delay",                   "2"                             },
922
923   { "bdx_conveyor_right",                               "RocksDC.png"                   },
924   { "bdx_conveyor_right.xpos",                          "0"                             },
925   { "bdx_conveyor_right.ypos",                          "3"                             },
926   { "bdx_conveyor_right.frames",                        "1"                             },
927   { "bdx_conveyor_right.EDITOR",                        "RocksBD2.png"                  },
928   { "bdx_conveyor_right.EDITOR.xpos",                   "7"                             },
929   { "bdx_conveyor_right.EDITOR.ypos",                   "3"                             },
930   { "bdx_conveyor_right.active",                        "RocksDC.png"                   },
931   { "bdx_conveyor_right.active.xpos",                   "0"                             },
932   { "bdx_conveyor_right.active.ypos",                   "3"                             },
933   { "bdx_conveyor_right.active.frames",                 "8"                             },
934   { "bdx_conveyor_right.active.delay",                  "2"                             },
935   { "bdx_conveyor_right.active.anim_mode",              "reverse"                       },
936
937   { "bdx_conveyor_switch",                              "RocksBD.png"                   },
938   { "bdx_conveyor_switch.xpos",                         "8"                             },
939   { "bdx_conveyor_switch.ypos",                         "2"                             },
940   { "bdx_conveyor_switch.frames",                       "1"                             },
941   { "bdx_conveyor_switch.active",                       "RocksBD.png"                   },
942   { "bdx_conveyor_switch.active.xpos",                  "9"                             },
943   { "bdx_conveyor_switch.active.ypos",                  "2"                             },
944   { "bdx_conveyor_switch.active.frames",                "1"                             },
945
946   { "bdx_conveyor_dir_switch",                          "RocksBD.png"                   },
947   { "bdx_conveyor_dir_switch.xpos",                     "10"                            },
948   { "bdx_conveyor_dir_switch.ypos",                     "2"                             },
949   { "bdx_conveyor_dir_switch.frames",                   "1"                             },
950   { "bdx_conveyor_dir_switch.active",                   "RocksBD.png"                   },
951   { "bdx_conveyor_dir_switch.active.xpos",              "11"                            },
952   { "bdx_conveyor_dir_switch.active.ypos",              "2"                             },
953   { "bdx_conveyor_dir_switch.active.frames",            "1"                             },
954
955   { "bdx_gravity_switch",                               "RocksBD.png"                   },
956   { "bdx_gravity_switch.xpos",                          "8"                             },
957   { "bdx_gravity_switch.ypos",                          "10"                            },
958   { "bdx_gravity_switch.frames",                        "1"                             },
959   { "bdx_gravity_switch.active",                        "RocksBD.png"                   },
960   { "bdx_gravity_switch.active.xpos",                   "9"                             },
961   { "bdx_gravity_switch.active.ypos",                   "10"                            },
962   { "bdx_gravity_switch.active.frames",                 "1"                             },
963
964   { "bdx_acid",                                         UNDEFINED_FILENAME              },
965   { "bdx_acid.clone_from",                              "amoeba_dead"                   },
966
967   { "bdx_box",                                          "RocksBD.png"                   },
968   { "bdx_box.xpos",                                     "8"                             },
969   { "bdx_box.ypos",                                     "9"                             },
970   { "bdx_box.frames",                                   "1"                             },
971
972   { "bdx_time_penalty",                                 "RocksBD.png"                   },
973   { "bdx_time_penalty.xpos",                            "3"                             },
974   { "bdx_time_penalty.ypos",                            "6"                             },
975   { "bdx_time_penalty.frames",                          "1"                             },
976
977   { "bdx_gravestone",                                   "RocksBD.png"                   },
978   { "bdx_gravestone.xpos",                              "3"                             },
979   { "bdx_gravestone.ypos",                              "6"                             },
980   { "bdx_gravestone.frames",                            "1"                             },
981
982   { "bdx_clock",                                        "RocksBD.png"                   },
983   { "bdx_clock.xpos",                                   "4"                             },
984   { "bdx_clock.ypos",                                   "6"                             },
985   { "bdx_clock.frames",                                 "1"                             },
986
987   { "bdx_pot",                                          "RocksBD.png"                   },
988   { "bdx_pot.xpos",                                     "6"                             },
989   { "bdx_pot.ypos",                                     "6"                             },
990   { "bdx_pot.frames",                                   "1"                             },
991
992   { "bdx_pneumatic_hammer",                             "RocksBD.png"                   },
993   { "bdx_pneumatic_hammer.xpos",                        "11"                            },
994   { "bdx_pneumatic_hammer.ypos",                        "9"                             },
995   { "bdx_pneumatic_hammer.frames",                      "1"                             },
996   { "bdx_pneumatic_hammer.hitting.left",                "RocksBD.png"                   },
997   { "bdx_pneumatic_hammer.hitting.left.xpos",           "4"                             },
998   { "bdx_pneumatic_hammer.hitting.left.ypos",           "12"                            },
999   { "bdx_pneumatic_hammer.hitting.left.frames",         "2"                             },
1000   { "bdx_pneumatic_hammer.hitting.left.delay",          "4"                             },
1001   { "bdx_pneumatic_hammer.hitting.left.offset",         "64"                            },
1002   { "bdx_pneumatic_hammer.hitting.right",               "RocksBD.png"                   },
1003   { "bdx_pneumatic_hammer.hitting.right.xpos",          "1"                             },
1004   { "bdx_pneumatic_hammer.hitting.right.ypos",          "12"                            },
1005   { "bdx_pneumatic_hammer.hitting.right.frames",        "2"                             },
1006   { "bdx_pneumatic_hammer.hitting.right.delay",         "4"                             },
1007   { "bdx_pneumatic_hammer.hitting.right.offset",        "64"                            },
1008
1009   { "bdx_player.hitting.left",                          "RocksBD.png"                   },
1010   { "bdx_player.hitting.left.xpos",                     "5"                             },
1011   { "bdx_player.hitting.left.ypos",                     "12"                            },
1012   { "bdx_player.hitting.left.frames",                   "2"                             },
1013   { "bdx_player.hitting.left.delay",                    "4"                             },
1014   { "bdx_player.hitting.left.offset",                   "64"                            },
1015   { "bdx_player.hitting.right",                         "RocksBD.png"                   },
1016   { "bdx_player.hitting.right.xpos",                    "0"                             },
1017   { "bdx_player.hitting.right.ypos",                    "12"                            },
1018   { "bdx_player.hitting.right.frames",                  "2"                             },
1019   { "bdx_player.hitting.right.delay",                   "4"                             },
1020   { "bdx_player.hitting.right.offset",                  "64"                            },
1021
1022   { "bdx_teleporter",                                   "RocksBD.png"                   },
1023   { "bdx_teleporter.xpos",                              "2"                             },
1024   { "bdx_teleporter.ypos",                              "6"                             },
1025   { "bdx_teleporter.frames",                            "1"                             },
1026
1027   { "bdx_skeleton",                                     "RocksBD.png"                   },
1028   { "bdx_skeleton.xpos",                                "7"                             },
1029   { "bdx_skeleton.ypos",                                "6"                             },
1030   { "bdx_skeleton.frames",                              "1"                             },
1031
1032   { "bdx_water",                                        "RocksBD.png"                   },
1033   { "bdx_water.xpos",                                   "0"                             },
1034   { "bdx_water.ypos",                                   "9"                             },
1035   { "bdx_water.frames",                                 "8"                             },
1036   { "bdx_water.delay",                                  "2"                             },
1037
1038   { "bdx_key_1",                                        UNDEFINED_FILENAME              },
1039   { "bdx_key_1.clone_from",                             "key_2"                         },
1040
1041   { "bdx_key_2",                                        UNDEFINED_FILENAME              },
1042   { "bdx_key_2.clone_from",                             "key_3"                         },
1043
1044   { "bdx_key_3",                                        UNDEFINED_FILENAME              },
1045   { "bdx_key_3.clone_from",                             "key_1"                         },
1046
1047   { "bdx_gate_1",                                       "RocksBD.png"                   },
1048   { "bdx_gate_1.xpos",                                  "5"                             },
1049   { "bdx_gate_1.ypos",                                  "3"                             },
1050   { "bdx_gate_1.frames",                                "1"                             },
1051
1052   { "bdx_gate_2",                                       "RocksBD.png"                   },
1053   { "bdx_gate_2.xpos",                                  "6"                             },
1054   { "bdx_gate_2.ypos",                                  "3"                             },
1055   { "bdx_gate_2.frames",                                "1"                             },
1056
1057   { "bdx_gate_3",                                       "RocksBD.png"                   },
1058   { "bdx_gate_3.xpos",                                  "7"                             },
1059   { "bdx_gate_3.ypos",                                  "3"                             },
1060   { "bdx_gate_3.frames",                                "1"                             },
1061
1062   { "bdx_lava",                                         UNDEFINED_FILENAME              },
1063   { "bdx_lava.clone_from",                              "acid"                          },
1064
1065   { "bdx_sweet",                                        "RocksBD.png"                   },
1066   { "bdx_sweet.xpos",                                   "5"                             },
1067   { "bdx_sweet.ypos",                                   "6"                             },
1068   { "bdx_sweet.frames",                                 "1"                             },
1069
1070   { "bdx_voodoo_doll",                                  "RocksBD.png"                   },
1071   { "bdx_voodoo_doll.xpos",                             "11"                            },
1072   { "bdx_voodoo_doll.ypos",                             "7"                             },
1073   { "bdx_voodoo_doll.frames",                           "1"                             },
1074
1075   { "bdx_slime",                                        "RocksBD.png"                   },
1076   { "bdx_slime.xpos",                                   "0"                             },
1077   { "bdx_slime.ypos",                                   "11"                            },
1078   { "bdx_slime.frames",                                 "4"                             },
1079   { "bdx_slime.delay",                                  "4"                             },
1080   { "bdx_slime.anim_mode",                              "pingpong2"                     },
1081
1082   { "bdx_waiting_rock",                                 UNDEFINED_FILENAME              },
1083   { "bdx_waiting_rock.clone_from",                      "bdx_rock"                      },
1084   { "bdx_waiting_rock.EDITOR",                          "RocksBD2.png"                  },
1085   { "bdx_waiting_rock.EDITOR.xpos",                     "4"                             },
1086   { "bdx_waiting_rock.EDITOR.ypos",                     "2"                             },
1087
1088   { "bdx_chasing_rock",                                 UNDEFINED_FILENAME              },
1089   { "bdx_chasing_rock.clone_from",                      "bdx_rock"                      },
1090
1091   { "bdx_ghost",                                        "RocksBD.png"                   },
1092   { "bdx_ghost.xpos",                                   "0"                             },
1093   { "bdx_ghost.ypos",                                   "10"                            },
1094   { "bdx_ghost.frames",                                 "8"                             },
1095   { "bdx_ghost.delay",                                  "2"                             },
1096
1097   { "bdx_cow",                                          "RocksBD.png"                   },
1098   { "bdx_cow.xpos",                                     "4"                             },
1099   { "bdx_cow.ypos",                                     "8"                             },
1100   { "bdx_cow.frames",                                   "4"                             },
1101   { "bdx_cow.delay",                                    "2"                             },
1102   { "bdx_cow.left",                                     "RocksBD.png"                   },
1103   { "bdx_cow.left.xpos",                                "4"                             },
1104   { "bdx_cow.left.ypos",                                "8"                             },
1105   { "bdx_cow.left.frames",                              "4"                             },
1106   { "bdx_cow.left.delay",                               "2"                             },
1107   { "bdx_cow.left.EDITOR",                              "RocksBD2.png"                  },
1108   { "bdx_cow.left.EDITOR.xpos",                         "6"                             },
1109   { "bdx_cow.left.EDITOR.ypos",                         "4"                             },
1110   { "bdx_cow.up",                                       "RocksBD.png"                   },
1111   { "bdx_cow.up.xpos",                                  "4"                             },
1112   { "bdx_cow.up.ypos",                                  "8"                             },
1113   { "bdx_cow.up.frames",                                "4"                             },
1114   { "bdx_cow.up.delay",                                 "2"                             },
1115   { "bdx_cow.up.EDITOR",                                "RocksBD2.png"                  },
1116   { "bdx_cow.up.EDITOR.xpos",                           "4"                             },
1117   { "bdx_cow.up.EDITOR.ypos",                           "4"                             },
1118   { "bdx_cow.right",                                    "RocksBD.png"                   },
1119   { "bdx_cow.right.xpos",                               "4"                             },
1120   { "bdx_cow.right.ypos",                               "8"                             },
1121   { "bdx_cow.right.frames",                             "4"                             },
1122   { "bdx_cow.right.delay",                              "2"                             },
1123   { "bdx_cow.right.EDITOR",                             "RocksBD2.png"                  },
1124   { "bdx_cow.right.EDITOR.xpos",                        "7"                             },
1125   { "bdx_cow.right.EDITOR.ypos",                        "4"                             },
1126   { "bdx_cow.down",                                     "RocksBD.png"                   },
1127   { "bdx_cow.down.xpos",                                "4"                             },
1128   { "bdx_cow.down.ypos",                                "8"                             },
1129   { "bdx_cow.down.frames",                              "4"                             },
1130   { "bdx_cow.down.delay",                               "2"                             },
1131   { "bdx_cow.down.EDITOR",                              "RocksBD2.png"                  },
1132   { "bdx_cow.down.EDITOR.xpos",                         "5"                             },
1133   { "bdx_cow.down.EDITOR.ypos",                         "4"                             },
1134
1135   { "bdx_cow_enclosed_1.EDITOR",                        "RocksBD2.png"                  },
1136   { "bdx_cow_enclosed_1.EDITOR.xpos",                   "3"                             },
1137   { "bdx_cow_enclosed_1.EDITOR.ypos",                   "4"                             },
1138   { "bdx_cow_enclosed_2.EDITOR",                        "RocksBD2.png"                  },
1139   { "bdx_cow_enclosed_2.EDITOR.xpos",                   "3"                             },
1140   { "bdx_cow_enclosed_2.EDITOR.ypos",                   "4"                             },
1141   { "bdx_cow_enclosed_3.EDITOR",                        "RocksBD2.png"                  },
1142   { "bdx_cow_enclosed_3.EDITOR.xpos",                   "3"                             },
1143   { "bdx_cow_enclosed_3.EDITOR.ypos",                   "4"                             },
1144   { "bdx_cow_enclosed_4.EDITOR",                        "RocksBD2.png"                  },
1145   { "bdx_cow_enclosed_4.EDITOR.xpos",                   "3"                             },
1146   { "bdx_cow_enclosed_4.EDITOR.ypos",                   "4"                             },
1147   { "bdx_cow_enclosed_5.EDITOR",                        "RocksBD2.png"                  },
1148   { "bdx_cow_enclosed_5.EDITOR.xpos",                   "3"                             },
1149   { "bdx_cow_enclosed_5.EDITOR.ypos",                   "4"                             },
1150   { "bdx_cow_enclosed_6.EDITOR",                        "RocksBD2.png"                  },
1151   { "bdx_cow_enclosed_6.EDITOR.xpos",                   "3"                             },
1152   { "bdx_cow_enclosed_6.EDITOR.ypos",                   "4"                             },
1153   { "bdx_cow_enclosed_7.EDITOR",                        "RocksBD2.png"                  },
1154   { "bdx_cow_enclosed_7.EDITOR.xpos",                   "3"                             },
1155   { "bdx_cow_enclosed_7.EDITOR.ypos",                   "4"                             },
1156
1157   { "bdx_stonefly",                                     "RocksBD.png"                   },
1158   { "bdx_stonefly.xpos",                                "0"                             },
1159   { "bdx_stonefly.ypos",                                "1"                             },
1160   { "bdx_stonefly.frames",                              "2"                             },
1161   { "bdx_stonefly.anim_mode",                           "pingpong"                      },
1162   { "bdx_stonefly.delay",                               "4"                             },
1163   { "bdx_stonefly.global_sync",                         "true"                          },
1164   { "bdx_stonefly.right",                               "RocksBD.png"                   },
1165   { "bdx_stonefly.right.xpos",                          "0"                             },
1166   { "bdx_stonefly.right.ypos",                          "1"                             },
1167   { "bdx_stonefly.right.frames",                        "2"                             },
1168   { "bdx_stonefly.right.anim_mode",                     "pingpong"                      },
1169   { "bdx_stonefly.right.delay",                         "4"                             },
1170   { "bdx_stonefly.right.global_sync",                   "true"                          },
1171   { "bdx_stonefly.right.EDITOR",                        "RocksBD.png"                   },
1172   { "bdx_stonefly.right.EDITOR.xpos",                   "4"                             },
1173   { "bdx_stonefly.right.EDITOR.ypos",                   "1"                             },
1174   { "bdx_stonefly.up",                                  "RocksBD.png"                   },
1175   { "bdx_stonefly.up.xpos",                             "0"                             },
1176   { "bdx_stonefly.up.ypos",                             "1"                             },
1177   { "bdx_stonefly.up.frames",                           "2"                             },
1178   { "bdx_stonefly.up.anim_mode",                        "pingpong"                      },
1179   { "bdx_stonefly.up.delay",                            "4"                             },
1180   { "bdx_stonefly.up.global_sync",                      "true"                          },
1181   { "bdx_stonefly.up.EDITOR",                           "RocksBD.png"                   },
1182   { "bdx_stonefly.up.EDITOR.xpos",                      "5"                             },
1183   { "bdx_stonefly.up.EDITOR.ypos",                      "1"                             },
1184   { "bdx_stonefly.left",                                "RocksBD.png"                   },
1185   { "bdx_stonefly.left.xpos",                           "0"                             },
1186   { "bdx_stonefly.left.ypos",                           "1"                             },
1187   { "bdx_stonefly.left.frames",                         "2"                             },
1188   { "bdx_stonefly.left.anim_mode",                      "pingpong"                      },
1189   { "bdx_stonefly.left.delay",                          "4"                             },
1190   { "bdx_stonefly.left.global_sync",                    "true"                          },
1191   { "bdx_stonefly.left.EDITOR",                         "RocksBD.png"                   },
1192   { "bdx_stonefly.left.EDITOR.xpos",                    "6"                             },
1193   { "bdx_stonefly.left.EDITOR.ypos",                    "1"                             },
1194   { "bdx_stonefly.down",                                "RocksBD.png"                   },
1195   { "bdx_stonefly.down.xpos",                           "0"                             },
1196   { "bdx_stonefly.down.ypos",                           "1"                             },
1197   { "bdx_stonefly.down.frames",                         "2"                             },
1198   { "bdx_stonefly.down.anim_mode",                      "pingpong"                      },
1199   { "bdx_stonefly.down.delay",                          "4"                             },
1200   { "bdx_stonefly.down.global_sync",                    "true"                          },
1201   { "bdx_stonefly.down.EDITOR",                         "RocksBD.png"                   },
1202   { "bdx_stonefly.down.EDITOR.xpos",                    "7"                             },
1203   { "bdx_stonefly.down.EDITOR.ypos",                    "1"                             },
1204
1205   { "bdx_biter",                                        "RocksBD.png"                   },
1206   { "bdx_biter.xpos",                                   "0"                             },
1207   { "bdx_biter.ypos",                                   "2"                             },
1208   { "bdx_biter.frames",                                 "4"                             },
1209   { "bdx_biter.anim_mode",                              "pingpong2"                     },
1210   { "bdx_biter.left",                                   "RocksBD.png"                   },
1211   { "bdx_biter.left.xpos",                              "0"                             },
1212   { "bdx_biter.left.ypos",                              "2"                             },
1213   { "bdx_biter.left.frames",                            "4"                             },
1214   { "bdx_biter.left.anim_mode",                         "pingpong2"                     },
1215   { "bdx_biter.left.EDITOR",                            "RocksBD.png"                   },
1216   { "bdx_biter.left.EDITOR.xpos",                       "6"                             },
1217   { "bdx_biter.left.EDITOR.ypos",                       "2"                             },
1218   { "bdx_biter.right",                                  "RocksBD.png"                   },
1219   { "bdx_biter.right.xpos",                             "0"                             },
1220   { "bdx_biter.right.ypos",                             "2"                             },
1221   { "bdx_biter.right.frames",                           "4"                             },
1222   { "bdx_biter.right.anim_mode",                        "pingpong2"                     },
1223   { "bdx_biter.right.EDITOR",                           "RocksBD.png"                   },
1224   { "bdx_biter.right.EDITOR.xpos",                      "7"                             },
1225   { "bdx_biter.right.EDITOR.ypos",                      "2"                             },
1226   { "bdx_biter.up",                                     "RocksBD.png"                   },
1227   { "bdx_biter.up.xpos",                                "0"                             },
1228   { "bdx_biter.up.ypos",                                "2"                             },
1229   { "bdx_biter.up.frames",                              "4"                             },
1230   { "bdx_biter.up.anim_mode",                           "pingpong2"                     },
1231   { "bdx_biter.up.EDITOR",                              "RocksBD.png"                   },
1232   { "bdx_biter.up.EDITOR.xpos",                         "4"                             },
1233   { "bdx_biter.up.EDITOR.ypos",                         "2"                             },
1234   { "bdx_biter.down",                                   "RocksBD.png"                   },
1235   { "bdx_biter.down.xpos",                              "0"                             },
1236   { "bdx_biter.down.ypos",                              "2"                             },
1237   { "bdx_biter.down.frames",                            "4"                             },
1238   { "bdx_biter.down.anim_mode",                         "pingpong2"                     },
1239   { "bdx_biter.down.EDITOR",                            "RocksBD.png"                   },
1240   { "bdx_biter.down.EDITOR.xpos",                       "5"                             },
1241   { "bdx_biter.down.EDITOR.ypos",                       "2"                             },
1242   { "bdx_biter.moving",                                 "RocksBD.png"                   },
1243   { "bdx_biter.moving.xpos",                            "0"                             },
1244   { "bdx_biter.moving.ypos",                            "2"                             },
1245   { "bdx_biter.moving.frames",                          "1"                             },
1246
1247   { "bdx_dragonfly",                                    "RocksBD.png"                   },
1248   { "bdx_dragonfly.xpos",                               "2"                             },
1249   { "bdx_dragonfly.ypos",                               "1"                             },
1250   { "bdx_dragonfly.frames",                             "2"                             },
1251   { "bdx_dragonfly.anim_mode",                          "pingpong"                      },
1252   { "bdx_dragonfly.delay",                              "4"                             },
1253   { "bdx_dragonfly.global_sync",                        "true"                          },
1254   { "bdx_dragonfly.right",                              "RocksBD.png"                   },
1255   { "bdx_dragonfly.right.xpos",                         "2"                             },
1256   { "bdx_dragonfly.right.ypos",                         "1"                             },
1257   { "bdx_dragonfly.right.frames",                       "2"                             },
1258   { "bdx_dragonfly.right.anim_mode",                    "pingpong"                      },
1259   { "bdx_dragonfly.right.delay",                        "4"                             },
1260   { "bdx_dragonfly.right.global_sync",                  "true"                          },
1261   { "bdx_dragonfly.right.EDITOR",                       "RocksBD.png"                   },
1262   { "bdx_dragonfly.right.EDITOR.xpos",                  "8"                             },
1263   { "bdx_dragonfly.right.EDITOR.ypos",                  "1"                             },
1264   { "bdx_dragonfly.up",                                 "RocksBD.png"                   },
1265   { "bdx_dragonfly.up.xpos",                            "2"                             },
1266   { "bdx_dragonfly.up.ypos",                            "1"                             },
1267   { "bdx_dragonfly.up.frames",                          "2"                             },
1268   { "bdx_dragonfly.up.anim_mode",                       "pingpong"                      },
1269   { "bdx_dragonfly.up.delay",                           "4"                             },
1270   { "bdx_dragonfly.up.global_sync",                     "true"                          },
1271   { "bdx_dragonfly.up.EDITOR",                          "RocksBD.png"                   },
1272   { "bdx_dragonfly.up.EDITOR.xpos",                     "9"                             },
1273   { "bdx_dragonfly.up.EDITOR.ypos",                     "1"                             },
1274   { "bdx_dragonfly.left",                               "RocksBD.png"                   },
1275   { "bdx_dragonfly.left.xpos",                          "2"                             },
1276   { "bdx_dragonfly.left.ypos",                          "1"                             },
1277   { "bdx_dragonfly.left.frames",                        "2"                             },
1278   { "bdx_dragonfly.left.anim_mode",                     "pingpong"                      },
1279   { "bdx_dragonfly.left.delay",                         "4"                             },
1280   { "bdx_dragonfly.left.global_sync",                   "true"                          },
1281   { "bdx_dragonfly.left.EDITOR",                        "RocksBD.png"                   },
1282   { "bdx_dragonfly.left.EDITOR.xpos",                   "10"                            },
1283   { "bdx_dragonfly.left.EDITOR.ypos",                   "1"                             },
1284   { "bdx_dragonfly.down",                               "RocksBD.png"                   },
1285   { "bdx_dragonfly.down.xpos",                          "2"                             },
1286   { "bdx_dragonfly.down.ypos",                          "1"                             },
1287   { "bdx_dragonfly.down.frames",                        "2"                             },
1288   { "bdx_dragonfly.down.anim_mode",                     "pingpong"                      },
1289   { "bdx_dragonfly.down.delay",                         "4"                             },
1290   { "bdx_dragonfly.down.global_sync",                   "true"                          },
1291   { "bdx_dragonfly.down.EDITOR",                        "RocksBD.png"                   },
1292   { "bdx_dragonfly.down.EDITOR.xpos",                   "11"                            },
1293   { "bdx_dragonfly.down.EDITOR.ypos",                   "1"                             },
1294
1295   { "bdx_bomb",                                         "RocksBD.png"                   },
1296   { "bdx_bomb.xpos",                                    "0"                             },
1297   { "bdx_bomb.ypos",                                    "7"                             },
1298   { "bdx_bomb.frames",                                  "1"                             },
1299   { "bdx_bomb.active",                                  "RocksBD.png"                   },
1300   { "bdx_bomb.active.xpos",                             "1"                             },
1301   { "bdx_bomb.active.ypos",                             "7"                             },
1302   { "bdx_bomb.active.frames",                           "7"                             },
1303   { "bdx_bomb.active.delay",                            "8"                             },
1304   { "bdx_bomb.active.anim_mode",                        "linear"                        },
1305
1306   { "bdx_rocket_launcher",                              "RocksBD.png"                   },
1307   { "bdx_rocket_launcher.xpos",                         "9"                             },
1308   { "bdx_rocket_launcher.ypos",                         "7"                             },
1309   { "bdx_rocket_launcher.frames",                       "1"                             },
1310
1311   { "bdx_rocket",                                       "RocksBD.png"                   },
1312   { "bdx_rocket.xpos",                                  "9"                             },
1313   { "bdx_rocket.ypos",                                  "6"                             },
1314   { "bdx_rocket.frames",                                "1"                             },
1315   { "bdx_rocket.right",                                 "RocksBD.png"                   },
1316   { "bdx_rocket.right.xpos",                            "8"                             },
1317   { "bdx_rocket.right.ypos",                            "6"                             },
1318   { "bdx_rocket.right.frames",                          "1"                             },
1319   { "bdx_rocket.up",                                    "RocksBD.png"                   },
1320   { "bdx_rocket.up.xpos",                               "9"                             },
1321   { "bdx_rocket.up.ypos",                               "6"                             },
1322   { "bdx_rocket.up.frames",                             "1"                             },
1323   { "bdx_rocket.left",                                  "RocksBD.png"                   },
1324   { "bdx_rocket.left.xpos",                             "10"                            },
1325   { "bdx_rocket.left.ypos",                             "6"                             },
1326   { "bdx_rocket.left.frames",                           "1"                             },
1327   { "bdx_rocket.down",                                  "RocksBD.png"                   },
1328   { "bdx_rocket.down.xpos",                             "11"                            },
1329   { "bdx_rocket.down.ypos",                             "6"                             },
1330   { "bdx_rocket.down.frames",                           "1"                             },
1331
1332   { "bdx_nitro_pack",                                   "RocksBD.png"                   },
1333   { "bdx_nitro_pack.xpos",                              "3"                             },
1334   { "bdx_nitro_pack.ypos",                              "4"                             },
1335   { "bdx_nitro_pack.frames",                            "1"                             },
1336   { "bdx_nitro_pack.falling.EDITOR",                    "RocksBD2.png"                  },
1337   { "bdx_nitro_pack.falling.EDITOR.xpos",               "7"                             },
1338   { "bdx_nitro_pack.falling.EDITOR.ypos",               "2"                             },
1339   { "bdx_nitro_pack.exploding.EDITOR",                  "RocksBD2.png"                  },
1340   { "bdx_nitro_pack.exploding.EDITOR.xpos",             "6"                             },
1341   { "bdx_nitro_pack.exploding.EDITOR.ypos",             "2"                             },
1342
1343   { "bdx_fake_bonus",                                   "RocksBD.png"                   },
1344   { "bdx_fake_bonus.xpos",                              "0"                             },
1345   { "bdx_fake_bonus.ypos",                              "8"                             },
1346   { "bdx_fake_bonus.frames",                            "4"                             },
1347   { "bdx_fake_bonus.delay",                             "2"                             },
1348
1349   { "bdx_covered",                                      "RocksBD.png"                   },
1350   { "bdx_covered.xpos",                                 "8"                             },
1351   { "bdx_covered.ypos",                                 "3"                             },
1352   { "bdx_covered.frames",                               "8"                             },
1353   { "bdx_covered.delay",                                "2"                             },
1354   { "bdx_covered.vertical",                             "true"                          },
1355   { "bdx_covered.offset",                               "2"                             },
1356
1357   // images for Supaplex style elements and actions
1358
1359   { "[sp_default].exploding",                           "RocksSP.png"                   },
1360   { "[sp_default].exploding.xpos",                      "8"                             },
1361   { "[sp_default].exploding.ypos",                      "3"                             },
1362   { "[sp_default].exploding.frames",                    "8"                             },
1363   { "[sp_default].exploding.delay",                     "4"                             },
1364   { "[sp_default].exploding.anim_mode",                 "linear"                        },
1365
1366   { "sp_zonk",                                          "RocksSP.png"                   },
1367   { "sp_zonk.xpos",                                     "1"                             },
1368   { "sp_zonk.ypos",                                     "0"                             },
1369   { "sp_zonk.frames",                                   "1"                             },
1370   { "sp_zonk.moving.left",                              "RocksSP.png"                   },
1371   { "sp_zonk.moving.left.xpos",                         "0"                             },
1372   { "sp_zonk.moving.left.ypos",                         "6"                             },
1373   { "sp_zonk.moving.left.frames",                       "4"                             },
1374   { "sp_zonk.moving.left.delay",                        "1"                             },
1375   { "sp_zonk.moving.left.anim_mode",                    "reverse"                       },
1376   { "sp_zonk.moving.right",                             "RocksSP.png"                   },
1377   { "sp_zonk.moving.right.xpos",                        "0"                             },
1378   { "sp_zonk.moving.right.ypos",                        "6"                             },
1379   { "sp_zonk.moving.right.frames",                      "4"                             },
1380   { "sp_zonk.moving.right.start_frame",                 "1"                             },
1381   { "sp_zonk.moving.right.delay",                       "1"                             },
1382   { "sp_zonk.pushing.left",                             "RocksSP.png"                   },
1383   { "sp_zonk.pushing.left.xpos",                        "0"                             },
1384   { "sp_zonk.pushing.left.ypos",                        "6"                             },
1385   { "sp_zonk.pushing.left.frames",                      "4"                             },
1386   { "sp_zonk.pushing.left.delay",                       "1"                             },
1387   { "sp_zonk.pushing.left.anim_mode",                   "reverse"                       },
1388   { "sp_zonk.pushing.right",                            "RocksSP.png"                   },
1389   { "sp_zonk.pushing.right.xpos",                       "0"                             },
1390   { "sp_zonk.pushing.right.ypos",                       "6"                             },
1391   { "sp_zonk.pushing.right.frames",                     "4"                             },
1392   { "sp_zonk.pushing.right.start_frame",                "1"                             },
1393   { "sp_zonk.pushing.right.delay",                      "1"                             },
1394
1395   { "sp_base",                                          "RocksSP.png"                   },
1396   { "sp_base.xpos",                                     "2"                             },
1397   { "sp_base.ypos",                                     "0"                             },
1398   { "sp_base.frames",                                   "1"                             },
1399   { "sp_base.digging",                                  "RocksSP.png"                   },
1400   { "sp_base.digging.xpos",                             "2"                             },
1401   { "sp_base.digging.ypos",                             "0"                             },
1402   { "sp_base.digging.frames",                           "1"                             },
1403   { "sp_base.digging.anim_mode",                        "opaque_player"                 },
1404   { "sp_base.snapping",                                 "RocksSP.png"                   },
1405   { "sp_base.snapping.xpos",                            "8"                             },
1406   { "sp_base.snapping.ypos",                            "2"                             },
1407   { "sp_base.snapping.frames",                          "7"                             },
1408   { "sp_base.snapping.anim_mode",                       "linear"                        },
1409
1410   { "sp_murphy",                                        "RocksSP.png"                   },
1411   { "sp_murphy.xpos",                                   "3"                             },
1412   { "sp_murphy.ypos",                                   "0"                             },
1413   { "sp_murphy.frames",                                 "1"                             },
1414   { "sp_murphy.moving.left",                            "RocksSP.png"                   },
1415   { "sp_murphy.moving.left.xpos",                       "8"                             },
1416   { "sp_murphy.moving.left.ypos",                       "0"                             },
1417   { "sp_murphy.moving.left.frames",                     "3"                             },
1418   { "sp_murphy.moving.left.anim_mode",                  "pingpong"                      },
1419   { "sp_murphy.moving.left.delay",                      "2"                             },
1420   { "sp_murphy.moving.left.start_frame",                "1"                             },
1421   { "sp_murphy.moving.right",                           "RocksSP.png"                   },
1422   { "sp_murphy.moving.right.xpos",                      "11"                            },
1423   { "sp_murphy.moving.right.ypos",                      "0"                             },
1424   { "sp_murphy.moving.right.frames",                    "3"                             },
1425   { "sp_murphy.moving.right.anim_mode",                 "pingpong"                      },
1426   { "sp_murphy.moving.right.delay",                     "2"                             },
1427   { "sp_murphy.moving.right.start_frame",               "1"                             },
1428   { "sp_murphy.digging.left",                           "RocksSP.png"                   },
1429   { "sp_murphy.digging.left.xpos",                      "8"                             },
1430   { "sp_murphy.digging.left.ypos",                      "0"                             },
1431   { "sp_murphy.digging.left.frames",                    "3"                             },
1432   { "sp_murphy.digging.left.anim_mode",                 "pingpong"                      },
1433   { "sp_murphy.digging.left.delay",                     "2"                             },
1434   { "sp_murphy.digging.left.start_frame",               "1"                             },
1435   { "sp_murphy.digging.right",                          "RocksSP.png"                   },
1436   { "sp_murphy.digging.right.xpos",                     "11"                            },
1437   { "sp_murphy.digging.right.ypos",                     "0"                             },
1438   { "sp_murphy.digging.right.frames",                   "3"                             },
1439   { "sp_murphy.digging.right.anim_mode",                "pingpong"                      },
1440   { "sp_murphy.digging.right.delay",                    "2"                             },
1441   { "sp_murphy.digging.right.start_frame",              "1"                             },
1442   { "sp_murphy.collecting.left",                        "RocksSP.png"                   },
1443   { "sp_murphy.collecting.left.xpos",                   "8"                             },
1444   { "sp_murphy.collecting.left.ypos",                   "0"                             },
1445   { "sp_murphy.collecting.left.frames",                 "3"                             },
1446   { "sp_murphy.collecting.left.anim_mode",              "pingpong"                      },
1447   { "sp_murphy.collecting.left.delay",                  "2"                             },
1448   { "sp_murphy.collecting.left.start_frame",            "1"                             },
1449   { "sp_murphy.collecting.right",                       "RocksSP.png"                   },
1450   { "sp_murphy.collecting.right.xpos",                  "11"                            },
1451   { "sp_murphy.collecting.right.ypos",                  "0"                             },
1452   { "sp_murphy.collecting.right.frames",                "3"                             },
1453   { "sp_murphy.collecting.right.anim_mode",             "pingpong"                      },
1454   { "sp_murphy.collecting.right.delay",                 "2"                             },
1455   { "sp_murphy.collecting.right.start_frame",           "1"                             },
1456   { "sp_murphy.pushing.left",                           "RocksSP.png"                   },
1457   { "sp_murphy.pushing.left.xpos",                      "11"                            },
1458   { "sp_murphy.pushing.left.ypos",                      "1"                             },
1459   { "sp_murphy.pushing.left.frames",                    "1"                             },
1460   { "sp_murphy.pushing.right",                          "RocksSP.png"                   },
1461   { "sp_murphy.pushing.right.xpos",                     "10"                            },
1462   { "sp_murphy.pushing.right.ypos",                     "1"                             },
1463   { "sp_murphy.pushing.right.frames",                   "1"                             },
1464   { "sp_murphy.snapping.left",                          "RocksSP.png"                   },
1465   { "sp_murphy.snapping.left.xpos",                     "9"                             },
1466   { "sp_murphy.snapping.left.ypos",                     "1"                             },
1467   { "sp_murphy.snapping.left.frames",                   "1"                             },
1468   { "sp_murphy.snapping.right",                         "RocksSP.png"                   },
1469   { "sp_murphy.snapping.right.xpos",                    "8"                             },
1470   { "sp_murphy.snapping.right.ypos",                    "1"                             },
1471   { "sp_murphy.snapping.right.frames",                  "1"                             },
1472   { "sp_murphy.snapping.up",                            "RocksSP.png"                   },
1473   { "sp_murphy.snapping.up.xpos",                       "14"                            },
1474   { "sp_murphy.snapping.up.ypos",                       "0"                             },
1475   { "sp_murphy.snapping.up.frames",                     "1"                             },
1476   { "sp_murphy.snapping.down",                          "RocksSP.png"                   },
1477   { "sp_murphy.snapping.down.xpos",                     "15"                            },
1478   { "sp_murphy.snapping.down.ypos",                     "0"                             },
1479   { "sp_murphy.snapping.down.frames",                   "1"                             },
1480   { "sp_murphy.boring",                                 "RocksSP.png"                   },
1481   { "sp_murphy.boring.xpos",                            "11"                            },
1482   { "sp_murphy.boring.ypos",                            "12"                            },
1483   { "sp_murphy.boring.frames",                          "1"                             },
1484   { "sp_murphy.boring[1]",                              "RocksSP.png"                   },
1485   { "sp_murphy.boring[1].xpos",                         "0"                             },
1486   { "sp_murphy.boring[1].ypos",                         "12"                            },
1487   { "sp_murphy.boring[1].frames",                       "12"                            },
1488   { "sp_murphy.boring[1].delay",                        "10"                            },
1489   { "sp_murphy.boring[1].anim_mode",                    "linear"                        },
1490   { "sp_murphy.boring[1].anim_delay_fixed",             "120"                           },
1491   { "sp_murphy.boring[1].anim_delay_random",            "0"                             },
1492   { "sp_murphy.boring[1].post_delay_fixed",             "500"                           },
1493   { "sp_murphy.boring[1].post_delay_random",            "500"                           },
1494   { "sp_murphy.sleeping.left",                          "RocksSP.png"                   },
1495   { "sp_murphy.sleeping.left.xpos",                     "4"                             },
1496   { "sp_murphy.sleeping.left.ypos",                     "9"                             },
1497   { "sp_murphy.sleeping.left.frames",                   "3"                             },
1498   { "sp_murphy.sleeping.left.delay",                    "100"                           },
1499   { "sp_murphy.sleeping.left.anim_mode",                "linear,reverse"                },
1500   { "sp_murphy.sleeping.right",                         "RocksSP.png"                   },
1501   { "sp_murphy.sleeping.right.xpos",                    "13"                            },
1502   { "sp_murphy.sleeping.right.ypos",                    "12"                            },
1503   { "sp_murphy.sleeping.right.frames",                  "3"                             },
1504   { "sp_murphy.sleeping.right.delay",                   "100"                           },
1505   { "sp_murphy.sleeping.right.anim_mode",               "linear"                        },
1506   { "sp_murphy.dropping",                               "RocksSP.png"                   },
1507   { "sp_murphy.dropping.xpos",                          "11"                            },
1508   { "sp_murphy.dropping.ypos",                          "12"                            },
1509   { "sp_murphy.dropping.frames",                        "1"                             },
1510   { "sp_murphy.shrinking",                              "RocksSP.png"                   },
1511   { "sp_murphy.shrinking.xpos",                         "8"                             },
1512   { "sp_murphy.shrinking.ypos",                         "14"                            },
1513   { "sp_murphy.shrinking.frames",                       "8"                             },
1514   { "sp_murphy.shrinking.delay",                        "4"                             },
1515   { "sp_murphy.shrinking.anim_mode",                    "linear"                        },
1516
1517   { "sp_murphy_clone",                                  "RocksSP.png"                   },
1518   { "sp_murphy_clone.xpos",                             "3"                             },
1519   { "sp_murphy_clone.ypos",                             "0"                             },
1520   { "sp_murphy_clone.frames",                           "1"                             },
1521
1522   { "sp_infotron",                                      "RocksSP.png"                   },
1523   { "sp_infotron.xpos",                                 "4"                             },
1524   { "sp_infotron.ypos",                                 "0"                             },
1525   { "sp_infotron.frames",                               "1"                             },
1526   { "sp_infotron.EDITOR",                               "RocksSP.png"                   },
1527   { "sp_infotron.EDITOR.xpos",                          "8"                             },
1528   { "sp_infotron.EDITOR.ypos",                          "11"                            },
1529   { "sp_infotron.moving.left",                          "RocksSP.png"                   },
1530   { "sp_infotron.moving.left.xpos",                     "8"                             },
1531   { "sp_infotron.moving.left.ypos",                     "13"                            },
1532   { "sp_infotron.moving.left.frames",                   "8"                             },
1533   { "sp_infotron.moving.right",                         "RocksSP.png"                   },
1534   { "sp_infotron.moving.right.xpos",                    "8"                             },
1535   { "sp_infotron.moving.right.ypos",                    "13"                            },
1536   { "sp_infotron.moving.right.frames",                  "8"                             },
1537   { "sp_infotron.moving.right.start_frame",             "6"                             },
1538   { "sp_infotron.moving.right.anim_mode",               "reverse"                       },
1539   { "sp_infotron.collecting",                           "RocksSP.png"                   },
1540   { "sp_infotron.collecting.xpos",                      "8"                             },
1541   { "sp_infotron.collecting.ypos",                      "7"                             },
1542   { "sp_infotron.collecting.frames",                    "8"                             },
1543   { "sp_infotron.collecting.anim_mode",                 "linear"                        },
1544
1545   { "sp_chip_single",                                   "RocksSP.png"                   },
1546   { "sp_chip_single.xpos",                              "5"                             },
1547   { "sp_chip_single.ypos",                              "0"                             },
1548   { "sp_chip_single.frames",                            "1"                             },
1549   { "sp_chip_left",                                     "RocksSP.png"                   },
1550   { "sp_chip_left.xpos",                                "2"                             },
1551   { "sp_chip_left.ypos",                                "3"                             },
1552   { "sp_chip_left.frames",                              "1"                             },
1553   { "sp_chip_right",                                    "RocksSP.png"                   },
1554   { "sp_chip_right.xpos",                               "3"                             },
1555   { "sp_chip_right.ypos",                               "3"                             },
1556   { "sp_chip_right.frames",                             "1"                             },
1557   { "sp_chip_top",                                      "RocksSP.png"                   },
1558   { "sp_chip_top.xpos",                                 "6"                             },
1559   { "sp_chip_top.ypos",                                 "4"                             },
1560   { "sp_chip_top.frames",                               "1"                             },
1561   { "sp_chip_bottom",                                   "RocksSP.png"                   },
1562   { "sp_chip_bottom.xpos",                              "7"                             },
1563   { "sp_chip_bottom.ypos",                              "4"                             },
1564   { "sp_chip_bottom.frames",                            "1"                             },
1565
1566   { "sp_hardware_gray",                                 "RocksSP.png"                   },
1567   { "sp_hardware_gray.xpos",                            "6"                             },
1568   { "sp_hardware_gray.ypos",                            "0"                             },
1569   { "sp_hardware_gray.frames",                          "1"                             },
1570   { "sp_hardware_green",                                "RocksSP.png"                   },
1571   { "sp_hardware_green.xpos",                           "5"                             },
1572   { "sp_hardware_green.ypos",                           "3"                             },
1573   { "sp_hardware_green.frames",                         "1"                             },
1574   { "sp_hardware_blue",                                 "RocksSP.png"                   },
1575   { "sp_hardware_blue.xpos",                            "6"                             },
1576   { "sp_hardware_blue.ypos",                            "3"                             },
1577   { "sp_hardware_blue.frames",                          "1"                             },
1578   { "sp_hardware_red",                                  "RocksSP.png"                   },
1579   { "sp_hardware_red.xpos",                             "7"                             },
1580   { "sp_hardware_red.ypos",                             "3"                             },
1581   { "sp_hardware_red.frames",                           "1"                             },
1582   { "sp_hardware_yellow",                               "RocksSP.png"                   },
1583   { "sp_hardware_yellow.xpos",                          "0"                             },
1584   { "sp_hardware_yellow.ypos",                          "4"                             },
1585   { "sp_hardware_yellow.frames",                        "1"                             },
1586
1587   { "sp_exit_closed",                                   "RocksSP.png"                   },
1588   { "sp_exit_closed.xpos",                              "7"                             },
1589   { "sp_exit_closed.ypos",                              "0"                             },
1590   { "sp_exit_closed.frames",                            "1"                             },
1591   { "sp_exit.opening",                                  "RocksSP.png"                   },
1592   { "sp_exit.opening.xpos",                             "7"                             },
1593   { "sp_exit.opening.ypos",                             "0"                             },
1594   { "sp_exit.opening.frames",                           "1"                             },
1595   { "sp_exit_open",                                     "RocksSP.png"                   },
1596   { "sp_exit_open.xpos",                                "7"                             },
1597   { "sp_exit_open.ypos",                                "0"                             },
1598   { "sp_exit_open.frames",                              "1"                             },
1599   { "sp_exit.closing",                                  "RocksSP.png"                   },
1600   { "sp_exit.closing.xpos",                             "7"                             },
1601   { "sp_exit.closing.ypos",                             "0"                             },
1602   { "sp_exit.closing.frames",                           "1"                             },
1603
1604   { "sp_disk_orange",                                   "RocksSP.png"                   },
1605   { "sp_disk_orange.xpos",                              "0"                             },
1606   { "sp_disk_orange.ypos",                              "1"                             },
1607   { "sp_disk_orange.frames",                            "1"                             },
1608
1609   { "sp_disk_yellow",                                   "RocksSP.png"                   },
1610   { "sp_disk_yellow.xpos",                              "2"                             },
1611   { "sp_disk_yellow.ypos",                              "2"                             },
1612   { "sp_disk_yellow.frames",                            "1"                             },
1613
1614   { "sp_disk_red",                                      "RocksSP.png"                   },
1615   { "sp_disk_red.xpos",                                 "4"                             },
1616   { "sp_disk_red.ypos",                                 "2"                             },
1617   { "sp_disk_red.frames",                               "1"                             },
1618   { "sp_disk_red.collecting",                           "RocksSP.png"                   },
1619   { "sp_disk_red.collecting.xpos",                      "9"                             },
1620   { "sp_disk_red.collecting.ypos",                      "5"                             },
1621   { "sp_disk_red.collecting.frames",                    "7"                             },
1622   { "sp_disk_red.collecting.anim_mode",                 "linear"                        },
1623   { "sp_disk_red.active",                               "RocksSP.png"                   },
1624   { "sp_disk_red.active.xpos",                          "4"                             },
1625   { "sp_disk_red.active.ypos",                          "2"                             },
1626   { "sp_disk_red.active.frames",                        "1"                             },
1627
1628   { "sp_port_right",                                    "RocksSP.png"                   },
1629   { "sp_port_right.xpos",                               "1"                             },
1630   { "sp_port_right.ypos",                               "1"                             },
1631   { "sp_port_right.frames",                             "1"                             },
1632   { "sp_port_down",                                     "RocksSP.png"                   },
1633   { "sp_port_down.xpos",                                "2"                             },
1634   { "sp_port_down.ypos",                                "1"                             },
1635   { "sp_port_down.frames",                              "1"                             },
1636   { "sp_port_left",                                     "RocksSP.png"                   },
1637   { "sp_port_left.xpos",                                "3"                             },
1638   { "sp_port_left.ypos",                                "1"                             },
1639   { "sp_port_left.frames",                              "1"                             },
1640   { "sp_port_up",                                       "RocksSP.png"                   },
1641   { "sp_port_up.xpos",                                  "4"                             },
1642   { "sp_port_up.ypos",                                  "1"                             },
1643   { "sp_port_up.frames",                                "1"                             },
1644   { "sp_port_horizontal",                               "RocksSP.png"                   },
1645   { "sp_port_horizontal.xpos",                          "6"                             },
1646   { "sp_port_horizontal.ypos",                          "2"                             },
1647   { "sp_port_horizontal.frames",                        "1"                             },
1648   { "sp_port_vertical",                                 "RocksSP.png"                   },
1649   { "sp_port_vertical.xpos",                            "5"                             },
1650   { "sp_port_vertical.ypos",                            "2"                             },
1651   { "sp_port_vertical.frames",                          "1"                             },
1652   { "sp_port_any",                                      "RocksSP.png"                   },
1653   { "sp_port_any.xpos",                                 "7"                             },
1654   { "sp_port_any.ypos",                                 "2"                             },
1655   { "sp_port_any.frames",                               "1"                             },
1656   { "sp_gravity_port_right",                            "RocksSP.png"                   },
1657   { "sp_gravity_port_right.xpos",                       "1"                             },
1658   { "sp_gravity_port_right.ypos",                       "1"                             },
1659   { "sp_gravity_port_right.frames",                     "1"                             },
1660   { "sp_gravity_port_right.EDITOR",                     "RocksSP.png"                   },
1661   { "sp_gravity_port_right.EDITOR.xpos",                "0"                             },
1662   { "sp_gravity_port_right.EDITOR.ypos",                "14"                            },
1663   { "sp_gravity_port_down",                             "RocksSP.png"                   },
1664   { "sp_gravity_port_down.xpos",                        "2"                             },
1665   { "sp_gravity_port_down.ypos",                        "1"                             },
1666   { "sp_gravity_port_down.frames",                      "1"                             },
1667   { "sp_gravity_port_down.EDITOR",                      "RocksSP.png"                   },
1668   { "sp_gravity_port_down.EDITOR.xpos",                 "1"                             },
1669   { "sp_gravity_port_down.EDITOR.ypos",                 "14"                            },
1670   { "sp_gravity_port_left",                             "RocksSP.png"                   },
1671   { "sp_gravity_port_left.xpos",                        "3"                             },
1672   { "sp_gravity_port_left.ypos",                        "1"                             },
1673   { "sp_gravity_port_left.frames",                      "1"                             },
1674   { "sp_gravity_port_left.EDITOR",                      "RocksSP.png"                   },
1675   { "sp_gravity_port_left.EDITOR.xpos",                 "2"                             },
1676   { "sp_gravity_port_left.EDITOR.ypos",                 "14"                            },
1677   { "sp_gravity_port_up",                               "RocksSP.png"                   },
1678   { "sp_gravity_port_up.xpos",                          "4"                             },
1679   { "sp_gravity_port_up.ypos",                          "1"                             },
1680   { "sp_gravity_port_up.frames",                        "1"                             },
1681   { "sp_gravity_port_up.EDITOR",                        "RocksSP.png"                   },
1682   { "sp_gravity_port_up.EDITOR.xpos",                   "3"                             },
1683   { "sp_gravity_port_up.EDITOR.ypos",                   "14"                            },
1684   { "sp_gravity_on_port_right",                         "RocksSP.png"                   },
1685   { "sp_gravity_on_port_right.xpos",                    "1"                             },
1686   { "sp_gravity_on_port_right.ypos",                    "1"                             },
1687   { "sp_gravity_on_port_right.frames",                  "1"                             },
1688   { "sp_gravity_on_port_right.EDITOR",                  "RocksSP.png"                   },
1689   { "sp_gravity_on_port_right.EDITOR.xpos",             "0"                             },
1690   { "sp_gravity_on_port_right.EDITOR.ypos",             "13"                            },
1691   { "sp_gravity_on_port_down",                          "RocksSP.png"                   },
1692   { "sp_gravity_on_port_down.xpos",                     "2"                             },
1693   { "sp_gravity_on_port_down.ypos",                     "1"                             },
1694   { "sp_gravity_on_port_down.frames",                   "1"                             },
1695   { "sp_gravity_on_port_down.EDITOR",                   "RocksSP.png"                   },
1696   { "sp_gravity_on_port_down.EDITOR.xpos",              "1"                             },
1697   { "sp_gravity_on_port_down.EDITOR.ypos",              "13"                            },
1698   { "sp_gravity_on_port_left",                          "RocksSP.png"                   },
1699   { "sp_gravity_on_port_left.xpos",                     "3"                             },
1700   { "sp_gravity_on_port_left.ypos",                     "1"                             },
1701   { "sp_gravity_on_port_left.frames",                   "1"                             },
1702   { "sp_gravity_on_port_left.EDITOR",                   "RocksSP.png"                   },
1703   { "sp_gravity_on_port_left.EDITOR.xpos",              "2"                             },
1704   { "sp_gravity_on_port_left.EDITOR.ypos",              "13"                            },
1705   { "sp_gravity_on_port_up",                            "RocksSP.png"                   },
1706   { "sp_gravity_on_port_up.xpos",                       "4"                             },
1707   { "sp_gravity_on_port_up.ypos",                       "1"                             },
1708   { "sp_gravity_on_port_up.frames",                     "1"                             },
1709   { "sp_gravity_on_port_up.EDITOR",                     "RocksSP.png"                   },
1710   { "sp_gravity_on_port_up.EDITOR.xpos",                "3"                             },
1711   { "sp_gravity_on_port_up.EDITOR.ypos",                "13"                            },
1712   { "sp_gravity_off_port_right",                        "RocksSP.png"                   },
1713   { "sp_gravity_off_port_right.xpos",                   "1"                             },
1714   { "sp_gravity_off_port_right.ypos",                   "1"                             },
1715   { "sp_gravity_off_port_right.frames",                 "1"                             },
1716   { "sp_gravity_off_port_right.EDITOR",                 "RocksSP.png"                   },
1717   { "sp_gravity_off_port_right.EDITOR.xpos",            "4"                             },
1718   { "sp_gravity_off_port_right.EDITOR.ypos",            "13"                            },
1719   { "sp_gravity_off_port_down",                         "RocksSP.png"                   },
1720   { "sp_gravity_off_port_down.xpos",                    "2"                             },
1721   { "sp_gravity_off_port_down.ypos",                    "1"                             },
1722   { "sp_gravity_off_port_down.frames",                  "1"                             },
1723   { "sp_gravity_off_port_down.EDITOR",                  "RocksSP.png"                   },
1724   { "sp_gravity_off_port_down.EDITOR.xpos",             "5"                             },
1725   { "sp_gravity_off_port_down.EDITOR.ypos",             "13"                            },
1726   { "sp_gravity_off_port_left",                         "RocksSP.png"                   },
1727   { "sp_gravity_off_port_left.xpos",                    "3"                             },
1728   { "sp_gravity_off_port_left.ypos",                    "1"                             },
1729   { "sp_gravity_off_port_left.frames",                  "1"                             },
1730   { "sp_gravity_off_port_left.EDITOR",                  "RocksSP.png"                   },
1731   { "sp_gravity_off_port_left.EDITOR.xpos",             "6"                             },
1732   { "sp_gravity_off_port_left.EDITOR.ypos",             "13"                            },
1733   { "sp_gravity_off_port_up",                           "RocksSP.png"                   },
1734   { "sp_gravity_off_port_up.xpos",                      "4"                             },
1735   { "sp_gravity_off_port_up.ypos",                      "1"                             },
1736   { "sp_gravity_off_port_up.frames",                    "1"                             },
1737   { "sp_gravity_off_port_up.EDITOR",                    "RocksSP.png"                   },
1738   { "sp_gravity_off_port_up.EDITOR.xpos",               "7"                             },
1739   { "sp_gravity_off_port_up.EDITOR.ypos",               "13"                            },
1740
1741   { "sp_sniksnak",                                      "RocksSP.png"                   },
1742   { "sp_sniksnak.xpos",                                 "1"                             },
1743   { "sp_sniksnak.ypos",                                 "2"                             },
1744   { "sp_sniksnak.frames",                               "1"                             },
1745   { "sp_sniksnak.left",                                 "RocksSP.png"                   },
1746   { "sp_sniksnak.left.xpos",                            "8"                             },
1747   { "sp_sniksnak.left.ypos",                            "8"                             },
1748   { "sp_sniksnak.left.frames",                          "4"                             },
1749   { "sp_sniksnak.left.anim_mode",                       "pingpong2"                     },
1750   { "sp_sniksnak.right",                                "RocksSP.png"                   },
1751   { "sp_sniksnak.right.xpos",                           "12"                            },
1752   { "sp_sniksnak.right.ypos",                           "8"                             },
1753   { "sp_sniksnak.right.frames",                         "4"                             },
1754   { "sp_sniksnak.right.anim_mode",                      "pingpong2"                     },
1755   { "sp_sniksnak.up",                                   "RocksSP.png"                   },
1756   { "sp_sniksnak.up.xpos",                              "8"                             },
1757   { "sp_sniksnak.up.ypos",                              "9"                             },
1758   { "sp_sniksnak.up.frames",                            "4"                             },
1759   { "sp_sniksnak.up.anim_mode",                         "pingpong2"                     },
1760   { "sp_sniksnak.down",                                 "RocksSP.png"                   },
1761   { "sp_sniksnak.down.xpos",                            "12"                            },
1762   { "sp_sniksnak.down.ypos",                            "9"                             },
1763   { "sp_sniksnak.down.frames",                          "4"                             },
1764   { "sp_sniksnak.down.anim_mode",                       "pingpong2"                     },
1765   { "sp_sniksnak.turning_from_left.up",                 "RocksSP.png"                   },
1766   { "sp_sniksnak.turning_from_left.up.xpos",            "12"                            },
1767   { "sp_sniksnak.turning_from_left.up.ypos",            "6"                             },
1768   { "sp_sniksnak.turning_from_left.up.frames",          "2"                             },
1769   { "sp_sniksnak.turning_from_left.up.delay",           "4"                             },
1770   { "sp_sniksnak.turning_from_left.up.offset",          "1408"                          },
1771   { "sp_sniksnak.turning_from_left.up.anim_mode",       "linear"                        },
1772   { "sp_sniksnak.turning_from_left.down",               "RocksSP.png"                   },
1773   { "sp_sniksnak.turning_from_left.down.xpos",          "13"                            },
1774   { "sp_sniksnak.turning_from_left.down.ypos",          "6"                             },
1775   { "sp_sniksnak.turning_from_left.down.frames",        "2"                             },
1776   { "sp_sniksnak.turning_from_left.down.delay",         "4"                             },
1777   { "sp_sniksnak.turning_from_left.down.offset",        "1504"                          },
1778   { "sp_sniksnak.turning_from_left.down.anim_mode",     "linear"                        },
1779   { "sp_sniksnak.turning_from_right.up",                "RocksSP.png"                   },
1780   { "sp_sniksnak.turning_from_right.up.xpos",           "15"                            },
1781   { "sp_sniksnak.turning_from_right.up.ypos",           "6"                             },
1782   { "sp_sniksnak.turning_from_right.up.frames",         "2"                             },
1783   { "sp_sniksnak.turning_from_right.up.delay",          "4"                             },
1784   { "sp_sniksnak.turning_from_right.up.offset",         "1312"                          },
1785   { "sp_sniksnak.turning_from_right.up.anim_mode",      "linear"                        },
1786   { "sp_sniksnak.turning_from_right.down",              "RocksSP.png"                   },
1787   { "sp_sniksnak.turning_from_right.down.xpos",         "14"                            },
1788   { "sp_sniksnak.turning_from_right.down.ypos",         "6"                             },
1789   { "sp_sniksnak.turning_from_right.down.frames",       "2"                             },
1790   { "sp_sniksnak.turning_from_right.down.delay",        "4"                             },
1791   { "sp_sniksnak.turning_from_right.down.offset",       "1472"                          },
1792   { "sp_sniksnak.turning_from_right.down.anim_mode",    "linear"                        },
1793   { "sp_sniksnak.turning_from_up.left",                 "RocksSP.png"                   },
1794   { "sp_sniksnak.turning_from_up.left.xpos",            "12"                            },
1795   { "sp_sniksnak.turning_from_up.left.ypos",            "6"                             },
1796   { "sp_sniksnak.turning_from_up.left.frames",          "2"                             },
1797   { "sp_sniksnak.turning_from_up.left.delay",           "4"                             },
1798   { "sp_sniksnak.turning_from_up.left.offset",          "896"                           },
1799   { "sp_sniksnak.turning_from_up.left.anim_mode",       "linear"                        },
1800   { "sp_sniksnak.turning_from_up.right",                "RocksSP.png"                   },
1801   { "sp_sniksnak.turning_from_up.right.xpos",           "15"                            },
1802   { "sp_sniksnak.turning_from_up.right.ypos",           "6"                             },
1803   { "sp_sniksnak.turning_from_up.right.frames",         "2"                             },
1804   { "sp_sniksnak.turning_from_up.right.delay",          "4"                             },
1805   { "sp_sniksnak.turning_from_up.right.offset",         "928"                           },
1806   { "sp_sniksnak.turning_from_up.right.anim_mode",      "linear"                        },
1807   { "sp_sniksnak.turning_from_down.left",               "RocksSP.png"                   },
1808   { "sp_sniksnak.turning_from_down.left.xpos",          "13"                            },
1809   { "sp_sniksnak.turning_from_down.left.ypos",          "6"                             },
1810   { "sp_sniksnak.turning_from_down.left.frames",        "2"                             },
1811   { "sp_sniksnak.turning_from_down.left.delay",         "4"                             },
1812   { "sp_sniksnak.turning_from_down.left.offset",        "864"                           },
1813   { "sp_sniksnak.turning_from_down.left.anim_mode",     "linear"                        },
1814   { "sp_sniksnak.turning_from_down.right",              "RocksSP.png"                   },
1815   { "sp_sniksnak.turning_from_down.right.xpos",         "14"                            },
1816   { "sp_sniksnak.turning_from_down.right.ypos",         "6"                             },
1817   { "sp_sniksnak.turning_from_down.right.frames",       "2"                             },
1818   { "sp_sniksnak.turning_from_down.right.delay",        "4"                             },
1819   { "sp_sniksnak.turning_from_down.right.offset",       "960"                           },
1820   { "sp_sniksnak.turning_from_down.right.anim_mode",    "linear"                        },
1821
1822   { "sp_electron",                                      "RocksSP.png"                   },
1823   { "sp_electron.xpos",                                 "8"                             },
1824   { "sp_electron.ypos",                                 "10"                            },
1825   { "sp_electron.frames",                               "8"                             },
1826   { "sp_electron.delay",                                "4"                             },
1827   { "sp_electron.global_sync",                          "true"                          },
1828   { "sp_electron.EDITOR",                               "RocksSP.png"                   },
1829   { "sp_electron.EDITOR.xpos",                          "10"                            },
1830   { "sp_electron.EDITOR.ypos",                          "11"                            },
1831   { "sp_electron.exploding",                            "RocksSP.png"                   },
1832   { "sp_electron.exploding.xpos",                       "8"                             },
1833   { "sp_electron.exploding.ypos",                       "4"                             },
1834   { "sp_electron.exploding.frames",                     "8"                             },
1835   { "sp_electron.exploding.delay",                      "4"                             },
1836   { "sp_electron.exploding.anim_mode",                  "linear"                        },
1837
1838   { "sp_terminal",                                      "RocksSP.png"                   },
1839   { "sp_terminal.xpos",                                 "0"                             },
1840   { "sp_terminal.ypos",                                 "10"                            },
1841   { "sp_terminal.frames",                               "7"                             },
1842   { "sp_terminal.delay",                                "12"                            },
1843   { "sp_terminal.EDITOR",                               "RocksSP.png"                   },
1844   { "sp_terminal.EDITOR.xpos",                          "9"                             },
1845   { "sp_terminal.EDITOR.ypos",                          "11"                            },
1846   { "sp_terminal.active",                               "RocksSP.png"                   },
1847   { "sp_terminal.active.xpos",                          "0"                             },
1848   { "sp_terminal.active.ypos",                          "11"                            },
1849   { "sp_terminal.active.frames",                        "7"                             },
1850   { "sp_terminal.active.delay",                         "4"                             },
1851
1852   { "sp_buggy_base",                                    "RocksSP.png"                   },
1853   { "sp_buggy_base.xpos",                               "1"                             },
1854   { "sp_buggy_base.ypos",                               "3"                             },
1855   { "sp_buggy_base.frames",                             "1"                             },
1856   { "sp_buggy_base.EDITOR",                             "RocksSP.png"                   },
1857   { "sp_buggy_base.EDITOR.xpos",                        "9"                             },
1858   { "sp_buggy_base.EDITOR.ypos",                        "6"                             },
1859   { "sp_buggy_base.activating",                         "RocksSP.png"                   },
1860   { "sp_buggy_base.activating.xpos",                    "15"                            },
1861   { "sp_buggy_base.activating.ypos",                    "2"                             },
1862   { "sp_buggy_base.activating.frames",                  "1"                             },
1863   { "sp_buggy_base.active",                             "RocksSP.png"                   },
1864   { "sp_buggy_base.active.xpos",                        "8"                             },
1865   { "sp_buggy_base.active.ypos",                        "6"                             },
1866   { "sp_buggy_base.active.frames",                      "4"                             },
1867   { "sp_buggy_base.active.delay",                       "4"                             },
1868   { "sp_buggy_base.active.anim_mode",                   "pingpong"                      },
1869
1870   { "sp_hardware_base_1",                               "RocksSP.png"                   },
1871   { "sp_hardware_base_1.xpos",                          "4"                             },
1872   { "sp_hardware_base_1.ypos",                          "3"                             },
1873   { "sp_hardware_base_1.frames",                        "1"                             },
1874   { "sp_hardware_base_2",                               "RocksSP.png"                   },
1875   { "sp_hardware_base_2.xpos",                          "1"                             },
1876   { "sp_hardware_base_2.ypos",                          "4"                             },
1877   { "sp_hardware_base_2.frames",                        "1"                             },
1878   { "sp_hardware_base_3",                               "RocksSP.png"                   },
1879   { "sp_hardware_base_3.xpos",                          "2"                             },
1880   { "sp_hardware_base_3.ypos",                          "4"                             },
1881   { "sp_hardware_base_3.frames",                        "1"                             },
1882   { "sp_hardware_base_4",                               "RocksSP.png"                   },
1883   { "sp_hardware_base_4.xpos",                          "3"                             },
1884   { "sp_hardware_base_4.ypos",                          "4"                             },
1885   { "sp_hardware_base_4.frames",                        "1"                             },
1886   { "sp_hardware_base_5",                               "RocksSP.png"                   },
1887   { "sp_hardware_base_5.xpos",                          "4"                             },
1888   { "sp_hardware_base_5.ypos",                          "4"                             },
1889   { "sp_hardware_base_5.frames",                        "1"                             },
1890   { "sp_hardware_base_6",                               "RocksSP.png"                   },
1891   { "sp_hardware_base_6.xpos",                          "5"                             },
1892   { "sp_hardware_base_6.ypos",                          "4"                             },
1893   { "sp_hardware_base_6.frames",                        "1"                             },
1894
1895   // images for Sokoban style elements and actions
1896
1897   { "sokoban_object",                                   "RocksElements.png"             },
1898   { "sokoban_object.xpos",                              "9"                             },
1899   { "sokoban_object.ypos",                              "7"                             },
1900   { "sokoban_object.frames",                            "1"                             },
1901
1902   { "sokoban_field_empty",                              "RocksElements.png"             },
1903   { "sokoban_field_empty.xpos",                         "10"                            },
1904   { "sokoban_field_empty.ypos",                         "7"                             },
1905   { "sokoban_field_empty.frames",                       "1"                             },
1906
1907   { "sokoban_field_full",                               "RocksElements.png"             },
1908   { "sokoban_field_full.xpos",                          "11"                            },
1909   { "sokoban_field_full.ypos",                          "7"                             },
1910   { "sokoban_field_full.frames",                        "1"                             },
1911
1912   { "sokoban_field_player",                             "RocksHeroes.png"               },
1913   { "sokoban_field_player.xpos",                        "0"                             },
1914   { "sokoban_field_player.ypos",                        "15"                            },
1915   { "sokoban_field_player.frames",                      "1"                             },
1916
1917   // images for Emerald Mine style elements and actions
1918
1919   { "empty_space",                                      "RocksSP.png"                   },
1920   { "empty_space.xpos",                                 "0"                             },
1921   { "empty_space.ypos",                                 "0"                             },
1922   { "empty_space.frames",                               "1"                             },
1923
1924   { "sand",                                             "RocksElements.png"             },
1925   { "sand.xpos",                                        "0"                             },
1926   { "sand.ypos",                                        "0"                             },
1927   { "sand.frames",                                      "1"                             },
1928   { "sand.CRUMBLED",                                    "RocksElements.png"             },
1929   { "sand.CRUMBLED.xpos",                               "1"                             },
1930   { "sand.CRUMBLED.ypos",                               "0"                             },
1931   { "sand.CRUMBLED.frames",                             "1"                             },
1932   { "sand.digging.left",                                "RocksMore.png"                 },
1933   { "sand.digging.left.xpos",                           "6"                             },
1934   { "sand.digging.left.ypos",                           "3"                             },
1935   { "sand.digging.left.frames",                         "3"                             },
1936   { "sand.digging.left.delay",                          "2"                             },
1937   { "sand.digging.left.anim_mode",                      "linear"                        },
1938   { "sand.digging.right",                               "RocksMore.png"                 },
1939   { "sand.digging.right.xpos",                          "9"                             },
1940   { "sand.digging.right.ypos",                          "3"                             },
1941   { "sand.digging.right.frames",                        "3"                             },
1942   { "sand.digging.right.delay",                         "2"                             },
1943   { "sand.digging.right.anim_mode",                     "linear"                        },
1944   { "sand.digging.up",                                  "RocksMore.png"                 },
1945   { "sand.digging.up.xpos",                             "0"                             },
1946   { "sand.digging.up.ypos",                             "3"                             },
1947   { "sand.digging.up.frames",                           "3"                             },
1948   { "sand.digging.up.delay",                            "2"                             },
1949   { "sand.digging.up.anim_mode",                        "linear"                        },
1950   { "sand.digging.down",                                "RocksMore.png"                 },
1951   { "sand.digging.down.xpos",                           "3"                             },
1952   { "sand.digging.down.ypos",                           "3"                             },
1953   { "sand.digging.down.frames",                         "3"                             },
1954   { "sand.digging.down.delay",                          "2"                             },
1955   { "sand.digging.down.anim_mode",                      "linear"                        },
1956   { "sand.digging.left.CRUMBLED",                       "RocksMore.png"                 },
1957   { "sand.digging.left.CRUMBLED.xpos",                  "6"                             },
1958   { "sand.digging.left.CRUMBLED.ypos",                  "0"                             },
1959   { "sand.digging.left.CRUMBLED.frames",                "3"                             },
1960   { "sand.digging.left.CRUMBLED.delay",                 "2"                             },
1961   { "sand.digging.left.CRUMBLED.anim_mode",             "linear"                        },
1962   { "sand.digging.right.CRUMBLED",                      "RocksMore.png"                 },
1963   { "sand.digging.right.CRUMBLED.xpos",                 "9"                             },
1964   { "sand.digging.right.CRUMBLED.ypos",                 "0"                             },
1965   { "sand.digging.right.CRUMBLED.frames",               "3"                             },
1966   { "sand.digging.right.CRUMBLED.delay",                "2"                             },
1967   { "sand.digging.right.CRUMBLED.anim_mode",            "linear"                        },
1968   { "sand.digging.up.CRUMBLED",                         "RocksMore.png"                 },
1969   { "sand.digging.up.CRUMBLED.xpos",                    "0"                             },
1970   { "sand.digging.up.CRUMBLED.ypos",                    "0"                             },
1971   { "sand.digging.up.CRUMBLED.frames",                  "3"                             },
1972   { "sand.digging.up.CRUMBLED.delay",                   "2"                             },
1973   { "sand.digging.up.CRUMBLED.anim_mode",               "linear"                        },
1974   { "sand.digging.down.CRUMBLED",                       "RocksMore.png"                 },
1975   { "sand.digging.down.CRUMBLED.xpos",                  "3"                             },
1976   { "sand.digging.down.CRUMBLED.ypos",                  "0"                             },
1977   { "sand.digging.down.CRUMBLED.frames",                "3"                             },
1978   { "sand.digging.down.CRUMBLED.delay",                 "2"                             },
1979   { "sand.digging.down.CRUMBLED.anim_mode",             "linear"                        },
1980
1981   { "wall",                                             "RocksElements.png"             },
1982   { "wall.xpos",                                        "5"                             },
1983   { "wall.ypos",                                        "0"                             },
1984   { "wall.frames",                                      "1"                             },
1985
1986   { "wall_slippery",                                    "RocksElements.png"             },
1987   { "wall_slippery.xpos",                               "6"                             },
1988   { "wall_slippery.ypos",                               "0"                             },
1989   { "wall_slippery.frames",                             "1"                             },
1990
1991   { "steelwall",                                        "RocksElements.png"             },
1992   { "steelwall.xpos",                                   "4"                             },
1993   { "steelwall.ypos",                                   "0"                             },
1994   { "steelwall.frames",                                 "1"                             },
1995
1996   { "rock",                                             "RocksElements.png"             },
1997   { "rock.xpos",                                        "12"                            },
1998   { "rock.ypos",                                        "0"                             },
1999   { "rock.frames",                                      "1"                             },
2000   { "rock.moving.left",                                 "RocksElements.png"             },
2001   { "rock.moving.left.xpos",                            "12"                            },
2002   { "rock.moving.left.ypos",                            "0"                             },
2003   { "rock.moving.left.frames",                          "4"                             },
2004   { "rock.moving.left.delay",                           "2"                             },
2005   { "rock.moving.left.anim_mode",                       "reverse"                       },
2006   { "rock.moving.right",                                "RocksElements.png"             },
2007   { "rock.moving.right.xpos",                           "12"                            },
2008   { "rock.moving.right.ypos",                           "0"                             },
2009   { "rock.moving.right.frames",                         "4"                             },
2010   { "rock.moving.right.start_frame",                    "1"                             },
2011   { "rock.moving.right.delay",                          "2"                             },
2012   { "rock.pushing.left",                                "RocksElements.png"             },
2013   { "rock.pushing.left.xpos",                           "12"                            },
2014   { "rock.pushing.left.ypos",                           "0"                             },
2015   { "rock.pushing.left.frames",                         "4"                             },
2016   { "rock.pushing.left.delay",                          "2"                             },
2017   { "rock.pushing.left.anim_mode",                      "reverse"                       },
2018   { "rock.pushing.right",                               "RocksElements.png"             },
2019   { "rock.pushing.right.xpos",                          "12"                            },
2020   { "rock.pushing.right.ypos",                          "0"                             },
2021   { "rock.pushing.right.frames",                        "4"                             },
2022   { "rock.pushing.right.start_frame",                   "1"                             },
2023   { "rock.pushing.right.delay",                         "2"                             },
2024
2025   { "emerald",                                          "RocksElements.png"             },
2026   { "emerald.xpos",                                     "8"                             },
2027   { "emerald.ypos",                                     "0"                             },
2028   { "emerald.frames",                                   "1"                             },
2029   { "emerald.moving",                                   "RocksElements.png"             },
2030   { "emerald.moving.xpos",                              "8"                             },
2031   { "emerald.moving.ypos",                              "0"                             },
2032   { "emerald.moving.frames",                            "2"                             },
2033   { "emerald.moving.delay",                             "4"                             },
2034   { "emerald.falling",                                  "RocksElements.png"             },
2035   { "emerald.falling.xpos",                             "8"                             },
2036   { "emerald.falling.ypos",                             "0"                             },
2037   { "emerald.falling.frames",                           "2"                             },
2038   { "emerald.falling.delay",                            "4"                             },
2039   { "emerald.collecting",                               "RocksCollect.png"              },
2040   { "emerald.collecting.xpos",                          "0"                             },
2041   { "emerald.collecting.ypos",                          "0"                             },
2042   { "emerald.collecting.frames",                        "7"                             },
2043   { "emerald.collecting.anim_mode",                     "linear"                        },
2044
2045   { "diamond",                                          "RocksElements.png"             },
2046   { "diamond.xpos",                                     "10"                            },
2047   { "diamond.ypos",                                     "0"                             },
2048   { "diamond.frames",                                   "1"                             },
2049   { "diamond.moving",                                   "RocksElements.png"             },
2050   { "diamond.moving.xpos",                              "10"                            },
2051   { "diamond.moving.ypos",                              "0"                             },
2052   { "diamond.moving.frames",                            "2"                             },
2053   { "diamond.moving.delay",                             "4"                             },
2054   { "diamond.falling",                                  "RocksElements.png"             },
2055   { "diamond.falling.xpos",                             "10"                            },
2056   { "diamond.falling.ypos",                             "0"                             },
2057   { "diamond.falling.frames",                           "2"                             },
2058   { "diamond.falling.delay",                            "4"                             },
2059   { "diamond.collecting",                               "RocksCollect.png"              },
2060   { "diamond.collecting.xpos",                          "0"                             },
2061   { "diamond.collecting.ypos",                          "1"                             },
2062   { "diamond.collecting.frames",                        "7"                             },
2063   { "diamond.collecting.anim_mode",                     "linear"                        },
2064
2065   { "bomb",                                             "RocksElements.png"             },
2066   { "bomb.xpos",                                        "11"                            },
2067   { "bomb.ypos",                                        "1"                             },
2068   { "bomb.frames",                                      "1"                             },
2069
2070   { "nut",                                              "RocksElements.png"             },
2071   { "nut.xpos",                                         "12"                            },
2072   { "nut.ypos",                                         "1"                             },
2073   { "nut.frames",                                       "1"                             },
2074   { "nut.breaking",                                     "RocksElements.png"             },
2075   { "nut.breaking.xpos",                                "13"                            },
2076   { "nut.breaking.ypos",                                "1"                             },
2077   { "nut.breaking.frames",                              "3"                             },
2078   { "nut.breaking.delay",                               "2"                             },
2079   { "nut.breaking.anim_mode",                           "linear"                        },
2080
2081   { "dynamite",                                         "RocksElements.png"             },
2082   { "dynamite.xpos",                                    "0"                             },
2083   { "dynamite.ypos",                                    "3"                             },
2084   { "dynamite.frames",                                  "1"                             },
2085   { "dynamite.active",                                  "RocksElements.png"             },
2086   { "dynamite.active.xpos",                             "1"                             },
2087   { "dynamite.active.ypos",                             "3"                             },
2088   { "dynamite.active.frames",                           "7"                             },
2089   { "dynamite.active.delay",                            "12"                            },
2090   { "dynamite.active.anim_mode",                        "linear"                        },
2091   { "dynamite.collecting",                              "RocksCollect.png"              },
2092   { "dynamite.collecting.xpos",                         "0"                             },
2093   { "dynamite.collecting.ypos",                         "7"                             },
2094   { "dynamite.collecting.frames",                       "7"                             },
2095   { "dynamite.collecting.anim_mode",                    "linear"                        },
2096
2097   { "em_dynamite",                                      "RocksEMC.png"                  },
2098   { "em_dynamite.xpos",                                 "0"                             },
2099   { "em_dynamite.ypos",                                 "15"                            },
2100   { "em_dynamite.frames",                               "1"                             },
2101   { "em_dynamite.active",                               "RocksEMC.png"                  },
2102   { "em_dynamite.active.xpos",                          "1"                             },
2103   { "em_dynamite.active.ypos",                          "15"                            },
2104   { "em_dynamite.active.frames",                        "4"                             },
2105   { "em_dynamite.active.delay",                         "8"                             },
2106   { "em_dynamite.active.anim_mode",                     "linear"                        },
2107   { "em_dynamite.active.EDITOR",                        "RocksEMC.png"                  },
2108   { "em_dynamite.active.EDITOR.xpos",                   "2"                             },
2109   { "em_dynamite.active.EDITOR.ypos",                   "15"                            },
2110   { "em_dynamite.collecting",                           "RocksCollect.png"              },
2111   { "em_dynamite.collecting.xpos",                      "0"                             },
2112   { "em_dynamite.collecting.ypos",                      "15"                            },
2113   { "em_dynamite.collecting.frames",                    "7"                             },
2114   { "em_dynamite.collecting.anim_mode",                 "linear"                        },
2115
2116   { "wall_emerald",                                     "RocksElements.png"             },
2117   { "wall_emerald.xpos",                                "4"                             },
2118   { "wall_emerald.ypos",                                "8"                             },
2119   { "wall_emerald.frames",                              "1"                             },
2120
2121   { "wall_diamond",                                     "RocksElements.png"             },
2122   { "wall_diamond.xpos",                                "5"                             },
2123   { "wall_diamond.ypos",                                "8"                             },
2124   { "wall_diamond.frames",                              "1"                             },
2125
2126   { "bug",                                              "RocksElements.png"             },
2127   { "bug.xpos",                                         "8"                             },
2128   { "bug.ypos",                                         "4"                             },
2129   { "bug.frames",                                       "4"                             },
2130   { "bug.delay",                                        "8"                             },
2131   { "bug.right",                                        "RocksElements.png"             },
2132   { "bug.right.xpos",                                   "8"                             },
2133   { "bug.right.ypos",                                   "4"                             },
2134   { "bug.right.frames",                                 "1"                             },
2135   { "bug.up",                                           "RocksElements.png"             },
2136   { "bug.up.xpos",                                      "9"                             },
2137   { "bug.up.ypos",                                      "4"                             },
2138   { "bug.up.frames",                                    "1"                             },
2139   { "bug.left",                                         "RocksElements.png"             },
2140   { "bug.left.xpos",                                    "10"                            },
2141   { "bug.left.ypos",                                    "4"                             },
2142   { "bug.left.frames",                                  "1"                             },
2143   { "bug.down",                                         "RocksElements.png"             },
2144   { "bug.down.xpos",                                    "11"                            },
2145   { "bug.down.ypos",                                    "4"                             },
2146   { "bug.down.frames",                                  "1"                             },
2147   { "bug.moving.right",                                 "RocksElements.png"             },
2148   { "bug.moving.right.xpos",                            "8"                             },
2149   { "bug.moving.right.ypos",                            "4"                             },
2150   { "bug.moving.right.frames",                          "2"                             },
2151   { "bug.moving.right.delay",                           "4"                             },
2152   { "bug.moving.right.offset",                          "128"                           },
2153   { "bug.moving.up",                                    "RocksElements.png"             },
2154   { "bug.moving.up.xpos",                               "9"                             },
2155   { "bug.moving.up.ypos",                               "4"                             },
2156   { "bug.moving.up.frames",                             "2"                             },
2157   { "bug.moving.up.delay",                              "4"                             },
2158   { "bug.moving.up.offset",                             "128"                           },
2159   { "bug.moving.left",                                  "RocksElements.png"             },
2160   { "bug.moving.left.xpos",                             "10"                            },
2161   { "bug.moving.left.ypos",                             "4"                             },
2162   { "bug.moving.left.frames",                           "2"                             },
2163   { "bug.moving.left.delay",                            "4"                             },
2164   { "bug.moving.left.offset",                           "128"                           },
2165   { "bug.moving.down",                                  "RocksElements.png"             },
2166   { "bug.moving.down.xpos",                             "11"                            },
2167   { "bug.moving.down.ypos",                             "4"                             },
2168   { "bug.moving.down.frames",                           "2"                             },
2169   { "bug.moving.down.delay",                            "4"                             },
2170   { "bug.moving.down.offset",                           "128"                           },
2171   { "bug.turning_from_right.up",                        "RocksMore.png"                 },
2172   { "bug.turning_from_right.up.xpos",                   "0"                             },
2173   { "bug.turning_from_right.up.ypos",                   "6"                             },
2174   { "bug.turning_from_right.up.frames",                 "4"                             },
2175   { "bug.turning_from_right.up.delay",                  "2"                             },
2176   { "bug.turning_from_right.up.anim_mode",              "linear,reverse"                },
2177   { "bug.turning_from_up.left",                         "RocksMore.png"                 },
2178   { "bug.turning_from_up.left.xpos",                    "12"                            },
2179   { "bug.turning_from_up.left.ypos",                    "6"                             },
2180   { "bug.turning_from_up.left.frames",                  "4"                             },
2181   { "bug.turning_from_up.left.delay",                   "2"                             },
2182   { "bug.turning_from_up.left.anim_mode",               "linear,reverse"                },
2183   { "bug.turning_from_left.down",                       "RocksMore.png"                 },
2184   { "bug.turning_from_left.down.xpos",                  "8"                             },
2185   { "bug.turning_from_left.down.ypos",                  "6"                             },
2186   { "bug.turning_from_left.down.frames",                "4"                             },
2187   { "bug.turning_from_left.down.delay",                 "2"                             },
2188   { "bug.turning_from_left.down.anim_mode",             "linear,reverse"                },
2189   { "bug.turning_from_down.right",                      "RocksMore.png"                 },
2190   { "bug.turning_from_down.right.xpos",                 "4"                             },
2191   { "bug.turning_from_down.right.ypos",                 "6"                             },
2192   { "bug.turning_from_down.right.frames",               "4"                             },
2193   { "bug.turning_from_down.right.delay",                "2"                             },
2194   { "bug.turning_from_down.right.anim_mode",            "linear,reverse"                },
2195   { "bug.turning_from_right.down",                      "RocksMore.png"                 },
2196   { "bug.turning_from_right.down.xpos",                 "5"                             },
2197   { "bug.turning_from_right.down.ypos",                 "6"                             },
2198   { "bug.turning_from_right.down.frames",               "4"                             },
2199   { "bug.turning_from_right.down.delay",                "2"                             },
2200   { "bug.turning_from_right.down.anim_mode",            "linear"                        },
2201   { "bug.turning_from_up.right",                        "RocksMore.png"                 },
2202   { "bug.turning_from_up.right.xpos",                   "1"                             },
2203   { "bug.turning_from_up.right.ypos",                   "6"                             },
2204   { "bug.turning_from_up.right.frames",                 "4"                             },
2205   { "bug.turning_from_up.right.delay",                  "2"                             },
2206   { "bug.turning_from_up.right.anim_mode",              "linear"                        },
2207   { "bug.turning_from_left.up",                         "RocksMore.png"                 },
2208   { "bug.turning_from_left.up.xpos",                    "13"                            },
2209   { "bug.turning_from_left.up.ypos",                    "6"                             },
2210   { "bug.turning_from_left.up.frames",                  "4"                             },
2211   { "bug.turning_from_left.up.delay",                   "2"                             },
2212   { "bug.turning_from_left.up.anim_mode",               "linear"                        },
2213   { "bug.turning_from_down.left",                       "RocksMore.png"                 },
2214   { "bug.turning_from_down.left.xpos",                  "9"                             },
2215   { "bug.turning_from_down.left.ypos",                  "6"                             },
2216   { "bug.turning_from_down.left.frames",                "4"                             },
2217   { "bug.turning_from_down.left.delay",                 "2"                             },
2218   { "bug.turning_from_down.left.anim_mode",             "linear"                        },
2219
2220   { "spaceship",                                        "RocksElements.png"             },
2221   { "spaceship.xpos",                                   "8"                             },
2222   { "spaceship.ypos",                                   "3"                             },
2223   { "spaceship.frames",                                 "4"                             },
2224   { "spaceship.delay",                                  "8"                             },
2225   { "spaceship.right",                                  "RocksElements.png"             },
2226   { "spaceship.right.xpos",                             "8"                             },
2227   { "spaceship.right.ypos",                             "3"                             },
2228   { "spaceship.right.frames",                           "1"                             },
2229   { "spaceship.up",                                     "RocksElements.png"             },
2230   { "spaceship.up.xpos",                                "9"                             },
2231   { "spaceship.up.ypos",                                "3"                             },
2232   { "spaceship.up.frames",                              "1"                             },
2233   { "spaceship.left",                                   "RocksElements.png"             },
2234   { "spaceship.left.xpos",                              "10"                            },
2235   { "spaceship.left.ypos",                              "3"                             },
2236   { "spaceship.left.frames",                            "1"                             },
2237   { "spaceship.down",                                   "RocksElements.png"             },
2238   { "spaceship.down.xpos",                              "11"                            },
2239   { "spaceship.down.ypos",                              "3"                             },
2240   { "spaceship.down.frames",                            "1"                             },
2241   { "spaceship.moving.right",                           "RocksElements.png"             },
2242   { "spaceship.moving.right.xpos",                      "8"                             },
2243   { "spaceship.moving.right.ypos",                      "3"                             },
2244   { "spaceship.moving.right.frames",                    "2"                             },
2245   { "spaceship.moving.right.delay",                     "4"                             },
2246   { "spaceship.moving.right.offset",                    "128"                           },
2247   { "spaceship.moving.up",                              "RocksElements.png"             },
2248   { "spaceship.moving.up.xpos",                         "9"                             },
2249   { "spaceship.moving.up.ypos",                         "3"                             },
2250   { "spaceship.moving.up.frames",                       "2"                             },
2251   { "spaceship.moving.up.delay",                        "4"                             },
2252   { "spaceship.moving.up.offset",                       "128"                           },
2253   { "spaceship.moving.left",                            "RocksElements.png"             },
2254   { "spaceship.moving.left.xpos",                       "10"                            },
2255   { "spaceship.moving.left.ypos",                       "3"                             },
2256   { "spaceship.moving.left.frames",                     "2"                             },
2257   { "spaceship.moving.left.delay",                      "4"                             },
2258   { "spaceship.moving.left.offset",                     "128"                           },
2259   { "spaceship.moving.down",                            "RocksElements.png"             },
2260   { "spaceship.moving.down.xpos",                       "11"                            },
2261   { "spaceship.moving.down.ypos",                       "3"                             },
2262   { "spaceship.moving.down.frames",                     "2"                             },
2263   { "spaceship.moving.down.delay",                      "4"                             },
2264   { "spaceship.moving.down.offset",                     "128"                           },
2265   { "spaceship.turning_from_right.up",                  "RocksMore.png"                 },
2266   { "spaceship.turning_from_right.up.xpos",             "0"                             },
2267   { "spaceship.turning_from_right.up.ypos",             "5"                             },
2268   { "spaceship.turning_from_right.up.frames",           "4"                             },
2269   { "spaceship.turning_from_right.up.delay",            "2"                             },
2270   { "spaceship.turning_from_right.up.anim_mode",        "linear,reverse"                },
2271   { "spaceship.turning_from_up.left",                   "RocksMore.png"                 },
2272   { "spaceship.turning_from_up.left.xpos",              "12"                            },
2273   { "spaceship.turning_from_up.left.ypos",              "5"                             },
2274   { "spaceship.turning_from_up.left.frames",            "4"                             },
2275   { "spaceship.turning_from_up.left.delay",             "2"                             },
2276   { "spaceship.turning_from_up.left.anim_mode",         "linear,reverse"                },
2277   { "spaceship.turning_from_left.down",                 "RocksMore.png"                 },
2278   { "spaceship.turning_from_left.down.xpos",            "8"                             },
2279   { "spaceship.turning_from_left.down.ypos",            "5"                             },
2280   { "spaceship.turning_from_left.down.frames",          "4"                             },
2281   { "spaceship.turning_from_left.down.delay",           "2"                             },
2282   { "spaceship.turning_from_left.down.anim_mode",       "linear,reverse"                },
2283   { "spaceship.turning_from_down.right",                "RocksMore.png"                 },
2284   { "spaceship.turning_from_down.right.xpos",           "4"                             },
2285   { "spaceship.turning_from_down.right.ypos",           "5"                             },
2286   { "spaceship.turning_from_down.right.frames",         "4"                             },
2287   { "spaceship.turning_from_down.right.delay",          "2"                             },
2288   { "spaceship.turning_from_down.right.anim_mode",      "linear,reverse"                },
2289   { "spaceship.turning_from_right.down",                "RocksMore.png"                 },
2290   { "spaceship.turning_from_right.down.xpos",           "5"                             },
2291   { "spaceship.turning_from_right.down.ypos",           "5"                             },
2292   { "spaceship.turning_from_right.down.frames",         "4"                             },
2293   { "spaceship.turning_from_right.down.delay",          "2"                             },
2294   { "spaceship.turning_from_right.down.anim_mode",      "linear"                        },
2295   { "spaceship.turning_from_up.right",                  "RocksMore.png"                 },
2296   { "spaceship.turning_from_up.right.xpos",             "1"                             },
2297   { "spaceship.turning_from_up.right.ypos",             "5"                             },
2298   { "spaceship.turning_from_up.right.frames",           "4"                             },
2299   { "spaceship.turning_from_up.right.delay",            "2"                             },
2300   { "spaceship.turning_from_up.right.anim_mode",        "linear"                        },
2301   { "spaceship.turning_from_left.up",                   "RocksMore.png"                 },
2302   { "spaceship.turning_from_left.up.xpos",              "13"                            },
2303   { "spaceship.turning_from_left.up.ypos",              "5"                             },
2304   { "spaceship.turning_from_left.up.frames",            "4"                             },
2305   { "spaceship.turning_from_left.up.delay",             "2"                             },
2306   { "spaceship.turning_from_left.up.anim_mode",         "linear"                        },
2307   { "spaceship.turning_from_down.left",                 "RocksMore.png"                 },
2308   { "spaceship.turning_from_down.left.xpos",            "9"                             },
2309   { "spaceship.turning_from_down.left.ypos",            "5"                             },
2310   { "spaceship.turning_from_down.left.frames",          "4"                             },
2311   { "spaceship.turning_from_down.left.delay",           "2"                             },
2312   { "spaceship.turning_from_down.left.anim_mode",       "linear"                        },
2313
2314   { "yamyam",                                           "RocksElements.png"             },
2315   { "yamyam.xpos",                                      "0"                             },
2316   { "yamyam.ypos",                                      "5"                             },
2317   { "yamyam.frames",                                    "4"                             },
2318   { "yamyam.anim_mode",                                 "pingpong2"                     },
2319   { "yamyam.left",                                      "RocksElements.png"             },
2320   { "yamyam.left.xpos",                                 "0"                             },
2321   { "yamyam.left.ypos",                                 "5"                             },
2322   { "yamyam.left.frames",                               "4"                             },
2323   { "yamyam.left.anim_mode",                            "pingpong2"                     },
2324   { "yamyam.left.EDITOR",                               "RocksEMC.png"                  },
2325   { "yamyam.left.EDITOR.xpos",                          "7"                             },
2326   { "yamyam.left.EDITOR.ypos",                          "15"                            },
2327   { "yamyam.right",                                     "RocksElements.png"             },
2328   { "yamyam.right.xpos",                                "0"                             },
2329   { "yamyam.right.ypos",                                "5"                             },
2330   { "yamyam.right.frames",                              "4"                             },
2331   { "yamyam.right.anim_mode",                           "pingpong2"                     },
2332   { "yamyam.right.EDITOR",                              "RocksEMC.png"                  },
2333   { "yamyam.right.EDITOR.xpos",                         "8"                             },
2334   { "yamyam.right.EDITOR.ypos",                         "15"                            },
2335   { "yamyam.up",                                        "RocksElements.png"             },
2336   { "yamyam.up.xpos",                                   "0"                             },
2337   { "yamyam.up.ypos",                                   "5"                             },
2338   { "yamyam.up.frames",                                 "4"                             },
2339   { "yamyam.up.anim_mode",                              "pingpong2"                     },
2340   { "yamyam.up.EDITOR",                                 "RocksEMC.png"                  },
2341   { "yamyam.up.EDITOR.xpos",                            "5"                             },
2342   { "yamyam.up.EDITOR.ypos",                            "15"                            },
2343   { "yamyam.down",                                      "RocksElements.png"             },
2344   { "yamyam.down.xpos",                                 "0"                             },
2345   { "yamyam.down.ypos",                                 "5"                             },
2346   { "yamyam.down.frames",                               "4"                             },
2347   { "yamyam.down.anim_mode",                            "pingpong2"                     },
2348   { "yamyam.down.EDITOR",                               "RocksEMC.png"                  },
2349   { "yamyam.down.EDITOR.xpos",                          "6"                             },
2350   { "yamyam.down.EDITOR.ypos",                          "15"                            },
2351   { "yamyam.moving",                                    "RocksElements.png"             },
2352   { "yamyam.moving.xpos",                               "0"                             },
2353   { "yamyam.moving.ypos",                               "5"                             },
2354   { "yamyam.moving.frames",                             "1"                             },
2355
2356   { "robot",                                            "RocksElements.png"             },
2357   { "robot.xpos",                                       "4"                             },
2358   { "robot.ypos",                                       "5"                             },
2359   { "robot.frames",                                     "4"                             },
2360   { "robot.anim_mode",                                  "pingpong2"                     },
2361   { "robot.moving",                                     "RocksElements.png"             },
2362   { "robot.moving.xpos",                                "4"                             },
2363   { "robot.moving.ypos",                                "5"                             },
2364   { "robot.moving.frames",                              "1"                             },
2365
2366   { "robot_wheel",                                      "RocksElements.png"             },
2367   { "robot_wheel.xpos",                                 "0"                             },
2368   { "robot_wheel.ypos",                                 "6"                             },
2369   { "robot_wheel.frames",                               "1"                             },
2370   { "robot_wheel.active",                               "RocksElements.png"             },
2371   { "robot_wheel.active.xpos",                          "0"                             },
2372   { "robot_wheel.active.ypos",                          "6"                             },
2373   { "robot_wheel.active.frames",                        "4"                             },
2374
2375   { "magic_wall",                                       "RocksElements.png"             },
2376   { "magic_wall.xpos",                                  "0"                             },
2377   { "magic_wall.ypos",                                  "8"                             },
2378   { "magic_wall.frames",                                "1"                             },
2379   { "magic_wall.active",                                "RocksElements.png"             },
2380   { "magic_wall.active.xpos",                           "0"                             },
2381   { "magic_wall.active.ypos",                           "8"                             },
2382   { "magic_wall.active.frames",                         "4"                             },
2383   { "magic_wall.active.anim_mode",                      "reverse"                       },
2384   { "magic_wall.active.delay",                          "4"                             },
2385   { "magic_wall.active.global_sync",                    "true"                          },
2386   { "magic_wall.filling",                               "RocksElements.png"             },
2387   { "magic_wall.filling.xpos",                          "0"                             },
2388   { "magic_wall.filling.ypos",                          "8"                             },
2389   { "magic_wall.filling.frames",                        "4"                             },
2390   { "magic_wall.filling.anim_mode",                     "reverse"                       },
2391   { "magic_wall.filling.delay",                         "4"                             },
2392   { "magic_wall.filling.global_sync",                   "true"                          },
2393   { "magic_wall_full",                                  "RocksElements.png"             },
2394   { "magic_wall_full.xpos",                             "0"                             },
2395   { "magic_wall_full.ypos",                             "8"                             },
2396   { "magic_wall_full.frames",                           "4"                             },
2397   { "magic_wall_full.anim_mode",                        "reverse"                       },
2398   { "magic_wall_full.delay",                            "4"                             },
2399   { "magic_wall_full.global_sync",                      "true"                          },
2400   { "magic_wall.emptying",                              "RocksElements.png"             },
2401   { "magic_wall.emptying.xpos",                         "0"                             },
2402   { "magic_wall.emptying.ypos",                         "8"                             },
2403   { "magic_wall.emptying.frames",                       "4"                             },
2404   { "magic_wall.emptying.anim_mode",                    "reverse"                       },
2405   { "magic_wall.emptying.delay",                        "4"                             },
2406   { "magic_wall.emptying.global_sync",                  "true"                          },
2407   { "magic_wall_dead",                                  "RocksElements.png"             },
2408   { "magic_wall_dead.xpos",                             "0"                             },
2409   { "magic_wall_dead.ypos",                             "8"                             },
2410   { "magic_wall_dead.frames",                           "1"                             },
2411
2412   { "dc_magic_wall",                                    "RocksDC2.png"                  },
2413   { "dc_magic_wall.xpos",                               "0"                             },
2414   { "dc_magic_wall.ypos",                               "3"                             },
2415   { "dc_magic_wall.frames",                             "1"                             },
2416   { "dc_magic_wall.active",                             "RocksDC2.png"                  },
2417   { "dc_magic_wall.active.xpos",                        "0"                             },
2418   { "dc_magic_wall.active.ypos",                        "3"                             },
2419   { "dc_magic_wall.active.frames",                      "4"                             },
2420   { "dc_magic_wall.active.anim_mode",                   "reverse"                       },
2421   { "dc_magic_wall.active.delay",                       "4"                             },
2422   { "dc_magic_wall.active.global_sync",                 "true"                          },
2423   { "dc_magic_wall.filling",                            "RocksDC2.png"                  },
2424   { "dc_magic_wall.filling.xpos",                       "0"                             },
2425   { "dc_magic_wall.filling.ypos",                       "3"                             },
2426   { "dc_magic_wall.filling.frames",                     "4"                             },
2427   { "dc_magic_wall.filling.anim_mode",                  "reverse"                       },
2428   { "dc_magic_wall.filling.delay",                      "4"                             },
2429   { "dc_magic_wall.filling.global_sync",                "true"                          },
2430   { "dc_magic_wall_full",                               "RocksDC2.png"                  },
2431   { "dc_magic_wall_full.xpos",                          "0"                             },
2432   { "dc_magic_wall_full.ypos",                          "3"                             },
2433   { "dc_magic_wall_full.frames",                        "4"                             },
2434   { "dc_magic_wall_full.anim_mode",                     "reverse"                       },
2435   { "dc_magic_wall_full.delay",                         "4"                             },
2436   { "dc_magic_wall_full.global_sync",                   "true"                          },
2437   { "dc_magic_wall.emptying",                           "RocksDC2.png"                  },
2438   { "dc_magic_wall.emptying.xpos",                      "0"                             },
2439   { "dc_magic_wall.emptying.ypos",                      "3"                             },
2440   { "dc_magic_wall.emptying.frames",                    "4"                             },
2441   { "dc_magic_wall.emptying.anim_mode",                 "reverse"                       },
2442   { "dc_magic_wall.emptying.delay",                     "4"                             },
2443   { "dc_magic_wall.emptying.global_sync",               "true"                          },
2444   { "dc_magic_wall_dead",                               "RocksDC2.png"                  },
2445   { "dc_magic_wall_dead.xpos",                          "0"                             },
2446   { "dc_magic_wall_dead.ypos",                          "3"                             },
2447   { "dc_magic_wall_dead.frames",                        "1"                             },
2448
2449   { "quicksand_empty",                                  "RocksElements.png"             },
2450   { "quicksand_empty.xpos",                             "2"                             },
2451   { "quicksand_empty.ypos",                             "0"                             },
2452   { "quicksand_empty.frames",                           "1"                             },
2453   { "quicksand.filling",                                "RocksElements.png"             },
2454   { "quicksand.filling.xpos",                           "3"                             },
2455   { "quicksand.filling.ypos",                           "0"                             },
2456   { "quicksand.filling.frames",                         "1"                             },
2457   { "quicksand_full",                                   "RocksElements.png"             },
2458   { "quicksand_full.xpos",                              "3"                             },
2459   { "quicksand_full.ypos",                              "0"                             },
2460   { "quicksand_full.frames",                            "1"                             },
2461   { "quicksand_full.EDITOR",                            "RocksElements.png"             },
2462   { "quicksand_full.EDITOR.xpos",                       "3"                             },
2463   { "quicksand_full.EDITOR.ypos",                       "14"                            },
2464   { "quicksand.emptying",                               "RocksElements.png"             },
2465   { "quicksand.emptying.xpos",                          "3"                             },
2466   { "quicksand.emptying.ypos",                          "0"                             },
2467   { "quicksand.emptying.frames",                        "1"                             },
2468
2469   { "quicksand_fast_empty",                             "RocksDC2.png"                  },
2470   { "quicksand_fast_empty.xpos",                        "4"                             },
2471   { "quicksand_fast_empty.ypos",                        "3"                             },
2472   { "quicksand_fast_empty.frames",                      "1"                             },
2473   { "quicksand_fast.filling",                           "RocksDC2.png"                  },
2474   { "quicksand_fast.filling.xpos",                      "4"                             },
2475   { "quicksand_fast.filling.ypos",                      "3"                             },
2476   { "quicksand_fast.filling.frames",                    "1"                             },
2477   { "quicksand_fast_full",                              "RocksDC2.png"                  },
2478   { "quicksand_fast_full.xpos",                         "4"                             },
2479   { "quicksand_fast_full.ypos",                         "3"                             },
2480   { "quicksand_fast_full.frames",                       "1"                             },
2481   { "quicksand_fast_full.EDITOR",                       "RocksDC2.png"                  },
2482   { "quicksand_fast_full.EDITOR.xpos",                  "5"                             },
2483   { "quicksand_fast_full.EDITOR.ypos",                  "3"                             },
2484   { "quicksand_fast.emptying",                          "RocksDC2.png"                  },
2485   { "quicksand_fast.emptying.xpos",                     "4"                             },
2486   { "quicksand_fast.emptying.ypos",                     "3"                             },
2487   { "quicksand_fast.emptying.frames",                   "1"                             },
2488
2489   { "acid_pool_topleft",                                "RocksElements.png"             },
2490   { "acid_pool_topleft.xpos",                           "0"                             },
2491   { "acid_pool_topleft.ypos",                           "1"                             },
2492   { "acid_pool_topleft.frames",                         "1"                             },
2493   { "acid_pool_topright",                               "RocksElements.png"             },
2494   { "acid_pool_topright.xpos",                          "2"                             },
2495   { "acid_pool_topright.ypos",                          "1"                             },
2496   { "acid_pool_topright.frames",                        "1"                             },
2497   { "acid_pool_bottomleft",                             "RocksElements.png"             },
2498   { "acid_pool_bottomleft.xpos",                        "0"                             },
2499   { "acid_pool_bottomleft.ypos",                        "2"                             },
2500   { "acid_pool_bottomleft.frames",                      "1"                             },
2501   { "acid_pool_bottom",                                 "RocksElements.png"             },
2502   { "acid_pool_bottom.xpos",                            "1"                             },
2503   { "acid_pool_bottom.ypos",                            "2"                             },
2504   { "acid_pool_bottom.frames",                          "1"                             },
2505   { "acid_pool_bottomright",                            "RocksElements.png"             },
2506   { "acid_pool_bottomright.xpos",                       "2"                             },
2507   { "acid_pool_bottomright.ypos",                       "2"                             },
2508   { "acid_pool_bottomright.frames",                     "1"                             },
2509
2510   { "acid",                                             "RocksElements.png"             },
2511   { "acid.xpos",                                        "12"                            },
2512   { "acid.ypos",                                        "7"                             },
2513   { "acid.frames",                                      "4"                             },
2514   { "acid.delay",                                       "10"                            },
2515   { "acid.global_sync",                                 "true"                          },
2516
2517   { "acid_splash_left",                                 "RocksHeroes.png"               },
2518   { "acid_splash_left.xpos",                            "8"                             },
2519   { "acid_splash_left.ypos",                            "10"                            },
2520   { "acid_splash_left.frames",                          "4"                             },
2521   { "acid_splash_left.delay",                           "2"                             },
2522   { "acid_splash_left.anim_mode",                       "linear"                        },
2523   { "acid_splash_right",                                "RocksHeroes.png"               },
2524   { "acid_splash_right.xpos",                           "12"                            },
2525   { "acid_splash_right.ypos",                           "10"                            },
2526   { "acid_splash_right.frames",                         "4"                             },
2527   { "acid_splash_right.delay",                          "2"                             },
2528   { "acid_splash_right.anim_mode",                      "linear"                        },
2529
2530   { "amoeba_drop",                                      "RocksElements.png"             },
2531   { "amoeba_drop.xpos",                                 "5"                             },
2532   { "amoeba_drop.ypos",                                 "6"                             },
2533   { "amoeba_drop.frames",                               "1"                             },
2534   { "amoeba.growing",                                   "RocksElements.png"             },
2535   { "amoeba.growing.xpos",                              "5"                             },
2536   { "amoeba.growing.ypos",                              "6"                             },
2537   { "amoeba.growing.frames",                            "3"                             },
2538   { "amoeba.growing.delay",                             "2"                             },
2539   { "amoeba.growing.anim_mode",                         "linear"                        },
2540   { "amoeba.shrinking",                                 "RocksElements.png"             },
2541   { "amoeba.shrinking.xpos",                            "5"                             },
2542   { "amoeba.shrinking.ypos",                            "6"                             },
2543   { "amoeba.shrinking.frames",                          "3"                             },
2544   { "amoeba.shrinking.delay",                           "2"                             },
2545   { "amoeba.shrinking.anim_mode",                       "linear,reverse"                },
2546   { "amoeba_wet",                                       "RocksElements.png"             },
2547   { "amoeba_wet.xpos",                                  "8"                             },
2548   { "amoeba_wet.ypos",                                  "6"                             },
2549   { "amoeba_wet.frames",                                "4"                             },
2550   { "amoeba_wet.anim_mode",                             "random_static"                 },
2551   { "amoeba_wet.EDITOR",                                "RocksElements.png"             },
2552   { "amoeba_wet.EDITOR.xpos",                           "4"                             },
2553   { "amoeba_wet.EDITOR.ypos",                           "6"                             },
2554   { "amoeba.dropping",                                  "RocksElements.png"             },
2555   { "amoeba.dropping.xpos",                             "8"                             },
2556   { "amoeba.dropping.ypos",                             "6"                             },
2557   { "amoeba.dropping.frames",                           "4"                             },
2558   { "amoeba.dropping.anim_mode",                        "random_static"                 },
2559   { "amoeba_dry",                                       "RocksElements.png"             },
2560   { "amoeba_dry.xpos",                                  "8"                             },
2561   { "amoeba_dry.ypos",                                  "6"                             },
2562   { "amoeba_dry.frames",                                "4"                             },
2563   { "amoeba_dry.anim_mode",                             "random_static"                 },
2564   { "amoeba_full",                                      "RocksElements.png"             },
2565   { "amoeba_full.xpos",                                 "8"                             },
2566   { "amoeba_full.ypos",                                 "6"                             },
2567   { "amoeba_full.frames",                               "4"                             },
2568   { "amoeba_full.anim_mode",                            "random_static"                 },
2569   { "amoeba_full.EDITOR",                               "RocksElements.png"             },
2570   { "amoeba_full.EDITOR.xpos",                          "8"                             },
2571   { "amoeba_full.EDITOR.ypos",                          "7"                             },
2572   { "amoeba_dead",                                      "RocksElements.png"             },
2573   { "amoeba_dead.xpos",                                 "12"                            },
2574   { "amoeba_dead.ypos",                                 "6"                             },
2575   { "amoeba_dead.frames",                               "4"                             },
2576   { "amoeba_dead.anim_mode",                            "random_static"                 },
2577   { "amoeba_dead.EDITOR",                               "RocksElements.png"             },
2578   { "amoeba_dead.EDITOR.xpos",                          "12"                            },
2579   { "amoeba_dead.EDITOR.ypos",                          "6"                             },
2580
2581   { "em_key_1",                                         "RocksSP.png"                   },
2582   { "em_key_1.xpos",                                    "4"                             },
2583   { "em_key_1.ypos",                                    "6"                             },
2584   { "em_key_1.frames",                                  "1"                             },
2585   { "em_key_1.collecting",                              "RocksCollect.png"              },
2586   { "em_key_1.collecting.xpos",                         "7"                             },
2587   { "em_key_1.collecting.ypos",                         "4"                             },
2588   { "em_key_1.collecting.frames",                       "7"                             },
2589   { "em_key_1.collecting.anim_mode",                    "linear"                        },
2590   { "em_key_2",                                         "RocksSP.png"                   },
2591   { "em_key_2.xpos",                                    "5"                             },
2592   { "em_key_2.ypos",                                    "6"                             },
2593   { "em_key_2.frames",                                  "1"                             },
2594   { "em_key_2.collecting",                              "RocksCollect.png"              },
2595   { "em_key_2.collecting.xpos",                         "7"                             },
2596   { "em_key_2.collecting.ypos",                         "5"                             },
2597   { "em_key_2.collecting.frames",                       "7"                             },
2598   { "em_key_2.collecting.anim_mode",                    "linear"                        },
2599   { "em_key_3",                                         "RocksSP.png"                   },
2600   { "em_key_3.xpos",                                    "6"                             },
2601   { "em_key_3.ypos",                                    "6"                             },
2602   { "em_key_3.frames",                                  "1"                             },
2603   { "em_key_3.collecting",                              "RocksCollect.png"              },
2604   { "em_key_3.collecting.xpos",                         "7"                             },
2605   { "em_key_3.collecting.ypos",                         "6"                             },
2606   { "em_key_3.collecting.frames",                       "7"                             },
2607   { "em_key_3.collecting.anim_mode",                    "linear"                        },
2608   { "em_key_4",                                         "RocksSP.png"                   },
2609   { "em_key_4.xpos",                                    "7"                             },
2610   { "em_key_4.ypos",                                    "6"                             },
2611   { "em_key_4.frames",                                  "1"                             },
2612   { "em_key_4.collecting",                              "RocksCollect.png"              },
2613   { "em_key_4.collecting.xpos",                         "7"                             },
2614   { "em_key_4.collecting.ypos",                         "7"                             },
2615   { "em_key_4.collecting.frames",                       "7"                             },
2616   { "em_key_4.collecting.anim_mode",                    "linear"                        },
2617
2618   { "dc_key_white",                                     "RocksSP.png"                   },
2619   { "dc_key_white.xpos",                                "13"                            },
2620   { "dc_key_white.ypos",                                "1"                             },
2621   { "dc_key_white.frames",                              "1"                             },
2622   { "dc_key_white.collecting",                          "RocksCollect.png"              },
2623   { "dc_key_white.collecting.xpos",                     "7"                             },
2624   { "dc_key_white.collecting.ypos",                     "0"                             },
2625   { "dc_key_white.collecting.frames",                   "7"                             },
2626   { "dc_key_white.collecting.anim_mode",                "linear"                        },
2627
2628   { "em_gate_1",                                        "RocksSP.png"                   },
2629   { "em_gate_1.xpos",                                   "0"                             },
2630   { "em_gate_1.ypos",                                   "7"                             },
2631   { "em_gate_1.frames",                                 "1"                             },
2632   { "em_gate_2",                                        "RocksSP.png"                   },
2633   { "em_gate_2.xpos",                                   "1"                             },
2634   { "em_gate_2.ypos",                                   "7"                             },
2635   { "em_gate_2.frames",                                 "1"                             },
2636   { "em_gate_3",                                        "RocksSP.png"                   },
2637   { "em_gate_3.xpos",                                   "2"                             },
2638   { "em_gate_3.ypos",                                   "7"                             },
2639   { "em_gate_3.frames",                                 "1"                             },
2640   { "em_gate_4",                                        "RocksSP.png"                   },
2641   { "em_gate_4.xpos",                                   "3"                             },
2642   { "em_gate_4.ypos",                                   "7"                             },
2643   { "em_gate_4.frames",                                 "1"                             },
2644
2645   { "dc_gate_white",                                    "RocksSP.png"                   },
2646   { "dc_gate_white.xpos",                               "14"                            },
2647   { "dc_gate_white.ypos",                               "1"                             },
2648   { "dc_gate_white.frames",                             "1"                             },
2649
2650   { "em_gate_1_gray",                                   "RocksSP.png"                   },
2651   { "em_gate_1_gray.xpos",                              "4"                             },
2652   { "em_gate_1_gray.ypos",                              "7"                             },
2653   { "em_gate_1_gray.frames",                            "1"                             },
2654   { "em_gate_1_gray.EDITOR",                            "RocksSP.png"                   },
2655   { "em_gate_1_gray.EDITOR.xpos",                       "12"                            },
2656   { "em_gate_1_gray.EDITOR.ypos",                       "11"                            },
2657   { "em_gate_1_gray.active",                            "RocksSP.png"                   },
2658   { "em_gate_1_gray.active.xpos",                       "0"                             },
2659   { "em_gate_1_gray.active.ypos",                       "7"                             },
2660   { "em_gate_1_gray.active.frames",                     "1"                             },
2661   { "em_gate_2_gray",                                   "RocksSP.png"                   },
2662   { "em_gate_2_gray.xpos",                              "5"                             },
2663   { "em_gate_2_gray.ypos",                              "7"                             },
2664   { "em_gate_2_gray.frames",                            "1"                             },
2665   { "em_gate_2_gray.EDITOR",                            "RocksSP.png"                   },
2666   { "em_gate_2_gray.EDITOR.xpos",                       "13"                            },
2667   { "em_gate_2_gray.EDITOR.ypos",                       "11"                            },
2668   { "em_gate_2_gray.active",                            "RocksSP.png"                   },
2669   { "em_gate_2_gray.active.xpos",                       "1"                             },
2670   { "em_gate_2_gray.active.ypos",                       "7"                             },
2671   { "em_gate_2_gray.active.frames",                     "1"                             },
2672   { "em_gate_3_gray",                                   "RocksSP.png"                   },
2673   { "em_gate_3_gray.xpos",                              "6"                             },
2674   { "em_gate_3_gray.ypos",                              "7"                             },
2675   { "em_gate_3_gray.frames",                            "1"                             },
2676   { "em_gate_3_gray.EDITOR",                            "RocksSP.png"                   },
2677   { "em_gate_3_gray.EDITOR.xpos",                       "14"                            },
2678   { "em_gate_3_gray.EDITOR.ypos",                       "11"                            },
2679   { "em_gate_3_gray.active",                            "RocksSP.png"                   },
2680   { "em_gate_3_gray.active.xpos",                       "2"                             },
2681   { "em_gate_3_gray.active.ypos",                       "7"                             },
2682   { "em_gate_3_gray.active.frames",                     "1"                             },
2683   { "em_gate_4_gray",                                   "RocksSP.png"                   },
2684   { "em_gate_4_gray.xpos",                              "7"                             },
2685   { "em_gate_4_gray.ypos",                              "7"                             },
2686   { "em_gate_4_gray.frames",                            "1"                             },
2687   { "em_gate_4_gray.EDITOR",                            "RocksSP.png"                   },
2688   { "em_gate_4_gray.EDITOR.xpos",                       "15"                            },
2689   { "em_gate_4_gray.EDITOR.ypos",                       "11"                            },
2690   { "em_gate_4_gray.active",                            "RocksSP.png"                   },
2691   { "em_gate_4_gray.active.xpos",                       "3"                             },
2692   { "em_gate_4_gray.active.ypos",                       "7"                             },
2693   { "em_gate_4_gray.active.frames",                     "1"                             },
2694
2695   { "dc_gate_white_gray",                               "RocksSP.png"                   },
2696   { "dc_gate_white_gray.xpos",                          "7"                             },
2697   { "dc_gate_white_gray.ypos",                          "7"                             },
2698   { "dc_gate_white_gray.frames",                        "1"                             },
2699   { "dc_gate_white_gray.EDITOR",                        "RocksSP.png"                   },
2700   { "dc_gate_white_gray.EDITOR.xpos",                   "15"                            },
2701   { "dc_gate_white_gray.EDITOR.ypos",                   "1"                             },
2702   { "dc_gate_white_gray.active",                        "RocksSP.png"                   },
2703   { "dc_gate_white_gray.active.xpos",                   "14"                            },
2704   { "dc_gate_white_gray.active.ypos",                   "1"                             },
2705   { "dc_gate_white_gray.active.frames",                 "1"                             },
2706
2707   { "dc_gate_fake_gray",                                "RocksSP.png"                   },
2708   { "dc_gate_fake_gray.xpos",                           "7"                             },
2709   { "dc_gate_fake_gray.ypos",                           "7"                             },
2710   { "dc_gate_fake_gray.frames",                         "1"                             },
2711
2712   { "exit_closed",                                      "RocksElements.png"             },
2713   { "exit_closed.xpos",                                 "0"                             },
2714   { "exit_closed.ypos",                                 "11"                            },
2715   { "exit_closed.frames",                               "1"                             },
2716   { "exit.opening",                                     "RocksElements.png"             },
2717   { "exit.opening.xpos",                                "0"                             },
2718   { "exit.opening.ypos",                                "11"                            },
2719   { "exit.opening.frames",                              "5"                             },
2720   { "exit.opening.delay",                               "6"                             },
2721   { "exit.opening.anim_mode",                           "linear"                        },
2722   { "exit_open",                                        "RocksElements.png"             },
2723   { "exit_open.xpos",                                   "4"                             },
2724   { "exit_open.ypos",                                   "11"                            },
2725   { "exit_open.frames",                                 "4"                             },
2726   { "exit_open.delay",                                  "4"                             },
2727   { "exit_open.anim_mode",                              "pingpong"                      },
2728   { "exit.closing",                                     "RocksElements.png"             },
2729   { "exit.closing.xpos",                                "0"                             },
2730   { "exit.closing.ypos",                                "11"                            },
2731   { "exit.closing.frames",                              "5"                             },
2732   { "exit.closing.delay",                               "6"                             },
2733   { "exit.closing.anim_mode",                           "linear,reverse"                },
2734
2735   { "steel_exit_closed",                                "RocksDC2.png"                  },
2736   { "steel_exit_closed.xpos",                           "8"                             },
2737   { "steel_exit_closed.ypos",                           "0"                             },
2738   { "steel_exit_closed.frames",                         "1"                             },
2739   { "steel_exit.opening",                               "RocksDC2.png"                  },
2740   { "steel_exit.opening.xpos",                          "8"                             },
2741   { "steel_exit.opening.ypos",                          "0"                             },
2742   { "steel_exit.opening.frames",                        "5"                             },
2743   { "steel_exit.opening.delay",                         "6"                             },
2744   { "steel_exit.opening.anim_mode",                     "linear"                        },
2745   { "steel_exit_open",                                  "RocksDC2.png"                  },
2746   { "steel_exit_open.xpos",                             "12"                            },
2747   { "steel_exit_open.ypos",                             "0"                             },
2748   { "steel_exit_open.frames",                           "4"                             },
2749   { "steel_exit_open.delay",                            "4"                             },
2750   { "steel_exit_open.anim_mode",                        "pingpong"                      },
2751   { "steel_exit.closing",                               "RocksDC2.png"                  },
2752   { "steel_exit.closing.xpos",                          "8"                             },
2753   { "steel_exit.closing.ypos",                          "0"                             },
2754   { "steel_exit.closing.frames",                        "5"                             },
2755   { "steel_exit.closing.delay",                         "6"                             },
2756   { "steel_exit.closing.anim_mode",                     "linear,reverse"                },
2757
2758   { "em_exit_closed",                                   "RocksDC2.png"                  },
2759   { "em_exit_closed.xpos",                              "0"                             },
2760   { "em_exit_closed.ypos",                              "4"                             },
2761   { "em_exit_closed.frames",                            "1"                             },
2762   { "em_exit.opening",                                  "RocksDC2.png"                  },
2763   { "em_exit.opening.xpos",                             "0"                             },
2764   { "em_exit.opening.ypos",                             "4"                             },
2765   { "em_exit.opening.frames",                           "5"                             },
2766   { "em_exit.opening.delay",                            "6"                             },
2767   { "em_exit.opening.anim_mode",                        "linear"                        },
2768   { "em_exit_open",                                     "RocksDC2.png"                  },
2769   { "em_exit_open.xpos",                                "4"                             },
2770   { "em_exit_open.ypos",                                "4"                             },
2771   { "em_exit_open.frames",                              "4"                             },
2772   { "em_exit_open.delay",                               "4"                             },
2773   { "em_exit_open.anim_mode",                           "pingpong"                      },
2774   { "em_exit.closing",                                  "RocksDC2.png"                  },
2775   { "em_exit.closing.xpos",                             "0"                             },
2776   { "em_exit.closing.ypos",                             "6"                             },
2777   { "em_exit.closing.frames",                           "5"                             },
2778   { "em_exit.closing.delay",                            "6"                             },
2779   { "em_exit.closing.anim_mode",                        "linear"                        },
2780
2781   { "em_steel_exit_closed",                             "RocksDC2.png"                  },
2782   { "em_steel_exit_closed.xpos",                        "0"                             },
2783   { "em_steel_exit_closed.ypos",                        "5"                             },
2784   { "em_steel_exit_closed.frames",                      "1"                             },
2785   { "em_steel_exit.opening",                            "RocksDC2.png"                  },
2786   { "em_steel_exit.opening.xpos",                       "0"                             },
2787   { "em_steel_exit.opening.ypos",                       "5"                             },
2788   { "em_steel_exit.opening.frames",                     "5"                             },
2789   { "em_steel_exit.opening.delay",                      "6"                             },
2790   { "em_steel_exit.opening.anim_mode",                  "linear"                        },
2791   { "em_steel_exit_open",                               "RocksDC2.png"                  },
2792   { "em_steel_exit_open.xpos",                          "4"                             },
2793   { "em_steel_exit_open.ypos",                          "5"                             },
2794   { "em_steel_exit_open.frames",                        "4"                             },
2795   { "em_steel_exit_open.delay",                         "4"                             },
2796   { "em_steel_exit_open.anim_mode",                     "pingpong"                      },
2797   { "em_steel_exit.closing",                            "RocksDC2.png"                  },
2798   { "em_steel_exit.closing.xpos",                       "0"                             },
2799   { "em_steel_exit.closing.ypos",                       "7"                             },
2800   { "em_steel_exit.closing.frames",                     "5"                             },
2801   { "em_steel_exit.closing.delay",                      "6"                             },
2802   { "em_steel_exit.closing.anim_mode",                  "linear"                        },
2803
2804   // images for Emerald Mine Club style elements and actions
2805
2806   { "balloon",                                          "RocksDC.png"                   },
2807   { "balloon.xpos",                                     "12"                            },
2808   { "balloon.ypos",                                     "7"                             },
2809   { "balloon.frames",                                   "1"                             },
2810   { "balloon.moving",                                   "RocksDC.png"                   },
2811   { "balloon.moving.xpos",                              "12"                            },
2812   { "balloon.moving.ypos",                              "7"                             },
2813   { "balloon.moving.frames",                            "4"                             },
2814   { "balloon.moving.anim_mode",                         "pingpong"                      },
2815   { "balloon.moving.delay",                             "2"                             },
2816   { "balloon.pushing",                                  "RocksDC.png"                   },
2817   { "balloon.pushing.xpos",                             "12"                            },
2818   { "balloon.pushing.ypos",                             "7"                             },
2819   { "balloon.pushing.frames",                           "4"                             },
2820   { "balloon.pushing.anim_mode",                        "pingpong"                      },
2821   { "balloon.pushing.delay",                            "2"                             },
2822   { "balloon_switch_left",                              "RocksDC.png"                   },
2823   { "balloon_switch_left.xpos",                         "8"                             },
2824   { "balloon_switch_left.ypos",                         "7"                             },
2825   { "balloon_switch_left.frames",                       "1"                             },
2826   { "balloon_switch_right",                             "RocksDC.png"                   },
2827   { "balloon_switch_right.xpos",                        "9"                             },
2828   { "balloon_switch_right.ypos",                        "7"                             },
2829   { "balloon_switch_right.frames",                      "1"                             },
2830   { "balloon_switch_up",                                "RocksDC.png"                   },
2831   { "balloon_switch_up.xpos",                           "10"                            },
2832   { "balloon_switch_up.ypos",                           "7"                             },
2833   { "balloon_switch_up.frames",                         "1"                             },
2834   { "balloon_switch_down",                              "RocksDC.png"                   },
2835   { "balloon_switch_down.xpos",                         "11"                            },
2836   { "balloon_switch_down.ypos",                         "7"                             },
2837   { "balloon_switch_down.frames",                       "1"                             },
2838   { "balloon_switch_any",                               "RocksDC.png"                   },
2839   { "balloon_switch_any.xpos",                          "15"                            },
2840   { "balloon_switch_any.ypos",                          "0"                             },
2841   { "balloon_switch_any.frames",                        "1"                             },
2842   { "balloon_switch_none",                              "RocksDC.png"                   },
2843   { "balloon_switch_none.xpos",                         "13"                            },
2844   { "balloon_switch_none.ypos",                         "5"                             },
2845   { "balloon_switch_none.frames",                       "1"                             },
2846
2847   { "spring",                                           "RocksDC.png"                   },
2848   { "spring.xpos",                                      "8"                             },
2849   { "spring.ypos",                                      "13"                            },
2850   { "spring.frames",                                    "1"                             },
2851
2852   { "spring.left",                                      UNDEFINED_FILENAME              },
2853   { "spring.left.clone_from",                           "spring"                        },
2854   { "spring.right",                                     UNDEFINED_FILENAME              },
2855   { "spring.right.clone_from",                          "spring"                        },
2856
2857   { "emc_steelwall_1",                                  "RocksDC.png"                   },
2858   { "emc_steelwall_1.xpos",                             "14"                            },
2859   { "emc_steelwall_1.ypos",                             "0"                             },
2860   { "emc_steelwall_1.frames",                           "1"                             },
2861   { "emc_steelwall_2",                                  "RocksEMC.png"                  },
2862   { "emc_steelwall_2.xpos",                             "9"                             },
2863   { "emc_steelwall_2.ypos",                             "8"                             },
2864   { "emc_steelwall_2.frames",                           "1"                             },
2865   { "emc_steelwall_3",                                  "RocksEMC.png"                  },
2866   { "emc_steelwall_3.xpos",                             "9"                             },
2867   { "emc_steelwall_3.ypos",                             "9"                             },
2868   { "emc_steelwall_3.frames",                           "1"                             },
2869   { "emc_steelwall_4",                                  "RocksEMC.png"                  },
2870   { "emc_steelwall_4.xpos",                             "9"                             },
2871   { "emc_steelwall_4.ypos",                             "10"                            },
2872   { "emc_steelwall_4.frames",                           "1"                             },
2873
2874   { "emc_wall_1",                                       "RocksDC.png"                   },
2875   { "emc_wall_1.xpos",                                  "13"                            },
2876   { "emc_wall_1.ypos",                                  "6"                             },
2877   { "emc_wall_1.frames",                                "1"                             },
2878   { "emc_wall_2",                                       "RocksDC.png"                   },
2879   { "emc_wall_2.xpos",                                  "14"                            },
2880   { "emc_wall_2.ypos",                                  "6"                             },
2881   { "emc_wall_2.frames",                                "1"                             },
2882   { "emc_wall_3",                                       "RocksDC.png"                   },
2883   { "emc_wall_3.xpos",                                  "15"                            },
2884   { "emc_wall_3.ypos",                                  "6"                             },
2885   { "emc_wall_3.frames",                                "1"                             },
2886   { "emc_wall_4",                                       "RocksDC.png"                   },
2887   { "emc_wall_4.xpos",                                  "14"                            },
2888   { "emc_wall_4.ypos",                                  "1"                             },
2889   { "emc_wall_4.frames",                                "1"                             },
2890   { "emc_wall_5",                                       "RocksDC.png"                   },
2891   { "emc_wall_5.xpos",                                  "15"                            },
2892   { "emc_wall_5.ypos",                                  "1"                             },
2893   { "emc_wall_5.frames",                                "1"                             },
2894   { "emc_wall_6",                                       "RocksDC.png"                   },
2895   { "emc_wall_6.xpos",                                  "14"                            },
2896   { "emc_wall_6.ypos",                                  "2"                             },
2897   { "emc_wall_6.frames",                                "1"                             },
2898   { "emc_wall_7",                                       "RocksDC.png"                   },
2899   { "emc_wall_7.xpos",                                  "15"                            },
2900   { "emc_wall_7.ypos",                                  "2"                             },
2901   { "emc_wall_7.frames",                                "1"                             },
2902   { "emc_wall_8",                                       "RocksEMC.png"                  },
2903   { "emc_wall_8.xpos",                                  "8"                             },
2904   { "emc_wall_8.ypos",                                  "7"                             },
2905   { "emc_wall_8.frames",                                "1"                             },
2906
2907   // images for Diamond Caves style elements and actions
2908
2909   { "invisible_steelwall",                              "RocksSP.png"                   },
2910   { "invisible_steelwall.xpos",                         "3"                             },
2911   { "invisible_steelwall.ypos",                         "5"                             },
2912   { "invisible_steelwall.frames",                       "1"                             },
2913   { "invisible_steelwall.EDITOR",                       "RocksSP.png"                   },
2914   { "invisible_steelwall.EDITOR.xpos",                  "1"                             },
2915   { "invisible_steelwall.EDITOR.ypos",                  "5"                             },
2916   { "invisible_steelwall.active",                       "RocksSP.png"                   },
2917   { "invisible_steelwall.active.xpos",                  "1"                             },
2918   { "invisible_steelwall.active.ypos",                  "5"                             },
2919   { "invisible_steelwall.active.frames",                "1"                             },
2920
2921   { "invisible_wall",                                   "RocksSP.png"                   },
2922   { "invisible_wall.xpos",                              "7"                             },
2923   { "invisible_wall.ypos",                              "5"                             },
2924   { "invisible_wall.frames",                            "1"                             },
2925   { "invisible_wall.EDITOR",                            "RocksSP.png"                   },
2926   { "invisible_wall.EDITOR.xpos",                       "5"                             },
2927   { "invisible_wall.EDITOR.ypos",                       "5"                             },
2928   { "invisible_wall.active",                            "RocksSP.png"                   },
2929   { "invisible_wall.active.xpos",                       "5"                             },
2930   { "invisible_wall.active.ypos",                       "5"                             },
2931   { "invisible_wall.active.frames",                     "1"                             },
2932
2933   { "invisible_sand",                                   "RocksSP.png"                   },
2934   { "invisible_sand.xpos",                              "0"                             },
2935   { "invisible_sand.ypos",                              "0"                             },
2936   { "invisible_sand.frames",                            "1"                             },
2937   { "invisible_sand.EDITOR",                            "RocksEMC.png"                  },
2938   { "invisible_sand.EDITOR.xpos",                       "2"                             },
2939   { "invisible_sand.EDITOR.ypos",                       "4"                             },
2940   { "invisible_sand.active",                            "RocksEMC.png"                  },
2941   { "invisible_sand.active.xpos",                       "2"                             },
2942   { "invisible_sand.active.ypos",                       "4"                             },
2943   { "invisible_sand.active.frames",                     "1"                             },
2944   { "invisible_sand.active.CRUMBLED",                   "RocksEMC.png"                  },
2945   { "invisible_sand.active.CRUMBLED.xpos",              "3"                             },
2946   { "invisible_sand.active.CRUMBLED.ypos",              "4"                             },
2947   { "invisible_sand.active.CRUMBLED.frames",            "1"                             },
2948   { "invisible_sand.active.digging.left",               "RocksEMC.png"                  },
2949   { "invisible_sand.active.digging.left.xpos",          "6"                             },
2950   { "invisible_sand.active.digging.left.ypos",          "2"                             },
2951   { "invisible_sand.active.digging.left.frames",        "3"                             },
2952   { "invisible_sand.active.digging.left.delay",         "2"                             },
2953   { "invisible_sand.active.digging.left.anim_mode",     "linear"                        },
2954   { "invisible_sand.active.digging.right",              "RocksEMC.png"                  },
2955   { "invisible_sand.active.digging.right.xpos",         "9"                             },
2956   { "invisible_sand.active.digging.right.ypos",         "2"                             },
2957   { "invisible_sand.active.digging.right.frames",       "3"                             },
2958   { "invisible_sand.active.digging.right.delay",        "2"                             },
2959   { "invisible_sand.active.digging.right.anim_mode",    "linear"                        },
2960   { "invisible_sand.active.digging.up",                 "RocksEMC.png"                  },
2961   { "invisible_sand.active.digging.up.xpos",            "0"                             },
2962   { "invisible_sand.active.digging.up.ypos",            "2"                             },
2963   { "invisible_sand.active.digging.up.frames",          "3"                             },
2964   { "invisible_sand.active.digging.up.delay",           "2"                             },
2965   { "invisible_sand.active.digging.up.anim_mode",       "linear"                        },
2966   { "invisible_sand.active.digging.down",               "RocksEMC.png"                  },
2967   { "invisible_sand.active.digging.down.xpos",          "3"                             },
2968   { "invisible_sand.active.digging.down.ypos",          "2"                             },
2969   { "invisible_sand.active.digging.down.frames",        "3"                             },
2970   { "invisible_sand.active.digging.down.delay",         "2"                             },
2971   { "invisible_sand.active.digging.down.anim_mode",     "linear"                        },
2972   { "invisible_sand.active.digging.left.CRUMBLED",              "RocksEMC.png"          },
2973   { "invisible_sand.active.digging.left.CRUMBLED.xpos",         "6"                     },
2974   { "invisible_sand.active.digging.left.CRUMBLED.ypos",         "3"                     },
2975   { "invisible_sand.active.digging.left.CRUMBLED.frames",       "3"                     },
2976   { "invisible_sand.active.digging.left.CRUMBLED.delay",        "2"                     },
2977   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode",    "linear"                },
2978   { "invisible_sand.active.digging.right.CRUMBLED",             "RocksEMC.png"          },
2979   { "invisible_sand.active.digging.right.CRUMBLED.xpos",        "9"                     },
2980   { "invisible_sand.active.digging.right.CRUMBLED.ypos",        "3"                     },
2981   { "invisible_sand.active.digging.right.CRUMBLED.frames",      "3"                     },
2982   { "invisible_sand.active.digging.right.CRUMBLED.delay",       "2"                     },
2983   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode",   "linear"                },
2984   { "invisible_sand.active.digging.up.CRUMBLED",                "RocksEMC.png"          },
2985   { "invisible_sand.active.digging.up.CRUMBLED.xpos",           "0"                     },
2986   { "invisible_sand.active.digging.up.CRUMBLED.ypos",           "3"                     },
2987   { "invisible_sand.active.digging.up.CRUMBLED.frames",         "3"                     },
2988   { "invisible_sand.active.digging.up.CRUMBLED.delay",          "2"                     },
2989   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode",      "linear"                },
2990   { "invisible_sand.active.digging.down.CRUMBLED",              "RocksEMC.png"          },
2991   { "invisible_sand.active.digging.down.CRUMBLED.xpos",         "3"                     },
2992   { "invisible_sand.active.digging.down.CRUMBLED.ypos",         "3"                     },
2993   { "invisible_sand.active.digging.down.CRUMBLED.frames",       "3"                     },
2994   { "invisible_sand.active.digging.down.CRUMBLED.delay",        "2"                     },
2995   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode",    "linear"                },
2996
2997   { "conveyor_belt_1_middle",                           "RocksDC.png"                   },
2998   { "conveyor_belt_1_middle.xpos",                      "0"                             },
2999   { "conveyor_belt_1_middle.ypos",                      "0"                             },
3000   { "conveyor_belt_1_middle.frames",                    "1"                             },
3001   { "conveyor_belt_1_middle.active",                    "RocksDC.png"                   },
3002   { "conveyor_belt_1_middle.active.xpos",               "0"                             },
3003   { "conveyor_belt_1_middle.active.ypos",               "0"                             },
3004   { "conveyor_belt_1_middle.active.frames",             "8"                             },
3005   { "conveyor_belt_1_middle.active.delay",              "2"                             },
3006   { "conveyor_belt_1_left",                             "RocksDC.png"                   },
3007   { "conveyor_belt_1_left.xpos",                        "0"                             },
3008   { "conveyor_belt_1_left.ypos",                        "1"                             },
3009   { "conveyor_belt_1_left.frames",                      "1"                             },
3010   { "conveyor_belt_1_left.active",                      "RocksDC.png"                   },
3011   { "conveyor_belt_1_left.active.xpos",                 "0"                             },
3012   { "conveyor_belt_1_left.active.ypos",                 "1"                             },
3013   { "conveyor_belt_1_left.active.frames",               "8"                             },
3014   { "conveyor_belt_1_left.active.delay",                "2"                             },
3015   { "conveyor_belt_1_right",                            "RocksDC.png"                   },
3016   { "conveyor_belt_1_right.xpos",                       "0"                             },
3017   { "conveyor_belt_1_right.ypos",                       "2"                             },
3018   { "conveyor_belt_1_right.frames",                     "1"                             },
3019   { "conveyor_belt_1_right.active",                     "RocksDC.png"                   },
3020   { "conveyor_belt_1_right.active.xpos",                "0"                             },
3021   { "conveyor_belt_1_right.active.ypos",                "2"                             },
3022   { "conveyor_belt_1_right.active.frames",              "8"                             },
3023   { "conveyor_belt_1_right.active.delay",               "2"                             },
3024   { "conveyor_belt_1_switch_left",                      "RocksDC.png"                   },
3025   { "conveyor_belt_1_switch_left.xpos",                 "0"                             },
3026   { "conveyor_belt_1_switch_left.ypos",                 "12"                            },
3027   { "conveyor_belt_1_switch_left.frames",               "1"                             },
3028   { "conveyor_belt_1_switch_middle",                    "RocksDC.png"                   },
3029   { "conveyor_belt_1_switch_middle.xpos",               "0"                             },
3030   { "conveyor_belt_1_switch_middle.ypos",               "13"                            },
3031   { "conveyor_belt_1_switch_middle.frames",             "1"                             },
3032   { "conveyor_belt_1_switch_right",                     "RocksDC.png"                   },
3033   { "conveyor_belt_1_switch_right.xpos",                "0"                             },
3034   { "conveyor_belt_1_switch_right.ypos",                "14"                            },
3035   { "conveyor_belt_1_switch_right.frames",              "1"                             },
3036
3037   { "conveyor_belt_2_middle",                           "RocksDC.png"                   },
3038   { "conveyor_belt_2_middle.xpos",                      "0"                             },
3039   { "conveyor_belt_2_middle.ypos",                      "3"                             },
3040   { "conveyor_belt_2_middle.frames",                    "1"                             },
3041   { "conveyor_belt_2_middle.active",                    "RocksDC.png"                   },
3042   { "conveyor_belt_2_middle.active.xpos",               "0"                             },
3043   { "conveyor_belt_2_middle.active.ypos",               "3"                             },
3044   { "conveyor_belt_2_middle.active.frames",             "8"                             },
3045   { "conveyor_belt_2_middle.active.delay",              "2"                             },
3046   { "conveyor_belt_2_left",                             "RocksDC.png"                   },
3047   { "conveyor_belt_2_left.xpos",                        "0"                             },
3048   { "conveyor_belt_2_left.ypos",                        "4"                             },
3049   { "conveyor_belt_2_left.frames",                      "1"                             },
3050   { "conveyor_belt_2_left.active",                      "RocksDC.png"                   },
3051   { "conveyor_belt_2_left.active.xpos",                 "0"                             },
3052   { "conveyor_belt_2_left.active.ypos",                 "4"                             },
3053   { "conveyor_belt_2_left.active.frames",               "8"                             },
3054   { "conveyor_belt_2_left.active.delay",                "2"                             },
3055   { "conveyor_belt_2_right",                            "RocksDC.png"                   },
3056   { "conveyor_belt_2_right.xpos",                       "0"                             },
3057   { "conveyor_belt_2_right.ypos",                       "5"                             },
3058   { "conveyor_belt_2_right.frames",                     "1"                             },
3059   { "conveyor_belt_2_right.active",                     "RocksDC.png"                   },
3060   { "conveyor_belt_2_right.active.xpos",                "0"                             },
3061   { "conveyor_belt_2_right.active.ypos",                "5"                             },
3062   { "conveyor_belt_2_right.active.frames",              "8"                             },
3063   { "conveyor_belt_2_right.active.delay",               "2"                             },
3064   { "conveyor_belt_2_switch_left",                      "RocksDC.png"                   },
3065   { "conveyor_belt_2_switch_left.xpos",                 "1"                             },
3066   { "conveyor_belt_2_switch_left.ypos",                 "12"                            },
3067   { "conveyor_belt_2_switch_left.frames",               "1"                             },
3068   { "conveyor_belt_2_switch_middle",                    "RocksDC.png"                   },
3069   { "conveyor_belt_2_switch_middle.xpos",               "1"                             },
3070   { "conveyor_belt_2_switch_middle.ypos",               "13"                            },
3071   { "conveyor_belt_2_switch_middle.frames",             "1"                             },
3072   { "conveyor_belt_2_switch_right",                     "RocksDC.png"                   },
3073   { "conveyor_belt_2_switch_right.xpos",                "1"                             },
3074   { "conveyor_belt_2_switch_right.ypos",                "14"                            },
3075   { "conveyor_belt_2_switch_right.frames",              "1"                             },
3076
3077   { "conveyor_belt_3_middle",                           "RocksDC.png"                   },
3078   { "conveyor_belt_3_middle.xpos",                      "0"                             },
3079   { "conveyor_belt_3_middle.ypos",                      "6"                             },
3080   { "conveyor_belt_3_middle.frames",                    "1"                             },
3081   { "conveyor_belt_3_middle.active",                    "RocksDC.png"                   },
3082   { "conveyor_belt_3_middle.active.xpos",               "0"                             },
3083   { "conveyor_belt_3_middle.active.ypos",               "6"                             },
3084   { "conveyor_belt_3_middle.active.frames",             "8"                             },
3085   { "conveyor_belt_3_middle.active.delay",              "2"                             },
3086   { "conveyor_belt_3_left",                             "RocksDC.png"                   },
3087   { "conveyor_belt_3_left.xpos",                        "0"                             },
3088   { "conveyor_belt_3_left.ypos",                        "7"                             },
3089   { "conveyor_belt_3_left.frames",                      "1"                             },
3090   { "conveyor_belt_3_left.active",                      "RocksDC.png"                   },
3091   { "conveyor_belt_3_left.active.xpos",                 "0"                             },
3092   { "conveyor_belt_3_left.active.ypos",                 "7"                             },
3093   { "conveyor_belt_3_left.active.frames",               "8"                             },
3094   { "conveyor_belt_3_left.active.delay",                "2"                             },
3095   { "conveyor_belt_3_right",                            "RocksDC.png"                   },
3096   { "conveyor_belt_3_right.xpos",                       "0"                             },
3097   { "conveyor_belt_3_right.ypos",                       "8"                             },
3098   { "conveyor_belt_3_right.frames",                     "1"                             },
3099   { "conveyor_belt_3_right.active",                     "RocksDC.png"                   },
3100   { "conveyor_belt_3_right.active.xpos",                "0"                             },
3101   { "conveyor_belt_3_right.active.ypos",                "8"                             },
3102   { "conveyor_belt_3_right.active.frames",              "8"                             },
3103   { "conveyor_belt_3_right.active.delay",               "2"                             },
3104   { "conveyor_belt_3_switch_left",                      "RocksDC.png"                   },
3105   { "conveyor_belt_3_switch_left.xpos",                 "2"                             },
3106   { "conveyor_belt_3_switch_left.ypos",                 "12"                            },
3107   { "conveyor_belt_3_switch_left.frames",               "1"                             },
3108   { "conveyor_belt_3_switch_middle",                    "RocksDC.png"                   },
3109   { "conveyor_belt_3_switch_middle.xpos",               "2"                             },
3110   { "conveyor_belt_3_switch_middle.ypos",               "13"                            },
3111   { "conveyor_belt_3_switch_middle.frames",             "1"                             },
3112   { "conveyor_belt_3_switch_right",                     "RocksDC.png"                   },
3113   { "conveyor_belt_3_switch_right.xpos",                "2"                             },
3114   { "conveyor_belt_3_switch_right.ypos",                "14"                            },
3115   { "conveyor_belt_3_switch_right.frames",              "1"                             },
3116
3117   { "conveyor_belt_4_middle",                           "RocksDC.png"                   },
3118   { "conveyor_belt_4_middle.xpos",                      "0"                             },
3119   { "conveyor_belt_4_middle.ypos",                      "9"                             },
3120   { "conveyor_belt_4_middle.frames",                    "1"                             },
3121   { "conveyor_belt_4_middle.active",                    "RocksDC.png"                   },
3122   { "conveyor_belt_4_middle.active.xpos",               "0"                             },
3123   { "conveyor_belt_4_middle.active.ypos",               "9"                             },
3124   { "conveyor_belt_4_middle.active.frames",             "8"                             },
3125   { "conveyor_belt_4_middle.active.delay",              "2"                             },
3126   { "conveyor_belt_4_left",                             "RocksDC.png"                   },
3127   { "conveyor_belt_4_left.xpos",                        "0"                             },
3128   { "conveyor_belt_4_left.ypos",                        "10"                            },
3129   { "conveyor_belt_4_left.frames",                      "1"                             },
3130   { "conveyor_belt_4_left.active",                      "RocksDC.png"                   },
3131   { "conveyor_belt_4_left.active.xpos",                 "0"                             },
3132   { "conveyor_belt_4_left.active.ypos",                 "10"                            },
3133   { "conveyor_belt_4_left.active.frames",               "8"                             },
3134   { "conveyor_belt_4_left.active.delay",                "2"                             },
3135   { "conveyor_belt_4_right",                            "RocksDC.png"                   },
3136   { "conveyor_belt_4_right.xpos",                       "0"                             },
3137   { "conveyor_belt_4_right.ypos",                       "11"                            },
3138   { "conveyor_belt_4_right.frames",                     "1"                             },
3139   { "conveyor_belt_4_right.active",                     "RocksDC.png"                   },
3140   { "conveyor_belt_4_right.active.xpos",                "0"                             },
3141   { "conveyor_belt_4_right.active.ypos",                "11"                            },
3142   { "conveyor_belt_4_right.active.frames",              "8"                             },
3143   { "conveyor_belt_4_right.active.delay",               "2"                             },
3144   { "conveyor_belt_4_switch_left",                      "RocksDC.png"                   },
3145   { "conveyor_belt_4_switch_left.xpos",                 "3"                             },
3146   { "conveyor_belt_4_switch_left.ypos",                 "12"                            },
3147   { "conveyor_belt_4_switch_left.frames",               "1"                             },
3148   { "conveyor_belt_4_switch_middle",                    "RocksDC.png"                   },
3149   { "conveyor_belt_4_switch_middle.xpos",               "3"                             },
3150   { "conveyor_belt_4_switch_middle.ypos",               "13"                            },
3151   { "conveyor_belt_4_switch_middle.frames",             "1"                             },
3152   { "conveyor_belt_4_switch_right",                     "RocksDC.png"                   },
3153   { "conveyor_belt_4_switch_right.xpos",                "3"                             },
3154   { "conveyor_belt_4_switch_right.ypos",                "14"                            },
3155   { "conveyor_belt_4_switch_right.frames",              "1"                             },
3156
3157   { "switchgate_switch_up",                             "RocksDC.png"                   },
3158   { "switchgate_switch_up.xpos",                        "4"                             },
3159   { "switchgate_switch_up.ypos",                        "12"                            },
3160   { "switchgate_switch_up.frames",                      "1"                             },
3161   { "switchgate_switch_down",                           "RocksDC.png"                   },
3162   { "switchgate_switch_down.xpos",                      "5"                             },
3163   { "switchgate_switch_down.ypos",                      "12"                            },
3164   { "switchgate_switch_down.frames",                    "1"                             },
3165
3166   { "dc_switchgate_switch_up",                          "RocksDC2.png"                  },
3167   { "dc_switchgate_switch_up.xpos",                     "10"                            },
3168   { "dc_switchgate_switch_up.ypos",                     "1"                             },
3169   { "dc_switchgate_switch_up.frames",                   "1"                             },
3170   { "dc_switchgate_switch_down",                        "RocksDC2.png"                  },
3171   { "dc_switchgate_switch_down.xpos",                   "11"                            },
3172   { "dc_switchgate_switch_down.ypos",                   "1"                             },
3173   { "dc_switchgate_switch_down.frames",                 "1"                             },
3174
3175   { "light_switch",                                     "RocksDC.png"                   },
3176   { "light_switch.xpos",                                "6"                             },
3177   { "light_switch.ypos",                                "12"                            },
3178   { "light_switch.frames",                              "1"                             },
3179   { "light_switch.active",                              "RocksDC.png"                   },
3180   { "light_switch.active.xpos",                         "7"                             },
3181   { "light_switch.active.ypos",                         "12"                            },
3182   { "light_switch.active.frames",                       "1"                             },
3183
3184   { "timegate_switch",                                  "RocksDC.png"                   },
3185   { "timegate_switch.xpos",                             "0"                             },
3186   { "timegate_switch.ypos",                             "15"                            },
3187   { "timegate_switch.frames",                           "1"                             },
3188   { "timegate_switch.active",                           "RocksDC.png"                   },
3189   { "timegate_switch.active.xpos",                      "0"                             },
3190   { "timegate_switch.active.ypos",                      "15"                            },
3191   { "timegate_switch.active.frames",                    "4"                             },
3192
3193   { "dc_timegate_switch",                               "RocksDC2.png"                  },
3194   { "dc_timegate_switch.xpos",                          "12"                            },
3195   { "dc_timegate_switch.ypos",                          "1"                             },
3196   { "dc_timegate_switch.frames",                        "1"                             },
3197   { "dc_timegate_switch.active",                        "RocksDC2.png"                  },
3198   { "dc_timegate_switch.active.xpos",                   "12"                            },
3199   { "dc_timegate_switch.active.ypos",                   "1"                             },
3200   { "dc_timegate_switch.active.frames",                 "4"                             },
3201
3202   { "envelope_1",                                       "RocksMore.png"                 },
3203   { "envelope_1.xpos",                                  "0"                             },
3204   { "envelope_1.ypos",                                  "4"                             },
3205   { "envelope_1.frames",                                "1"                             },
3206   { "envelope_1.collecting",                            "RocksCollect.png"              },
3207   { "envelope_1.collecting.xpos",                       "7"                             },
3208   { "envelope_1.collecting.ypos",                       "8"                             },
3209   { "envelope_1.collecting.frames",                     "7"                             },
3210   { "envelope_1.collecting.anim_mode",                  "linear"                        },
3211   { "envelope_2",                                       "RocksMore.png"                 },
3212   { "envelope_2.xpos",                                  "1"                             },
3213   { "envelope_2.ypos",                                  "4"                             },
3214   { "envelope_2.frames",                                "1"                             },
3215   { "envelope_2.collecting",                            "RocksCollect.png"              },
3216   { "envelope_2.collecting.xpos",                       "7"                             },
3217   { "envelope_2.collecting.ypos",                       "9"                             },
3218   { "envelope_2.collecting.frames",                     "7"                             },
3219   { "envelope_2.collecting.anim_mode",                  "linear"                        },
3220   { "envelope_3",                                       "RocksMore.png"                 },
3221   { "envelope_3.xpos",                                  "2"                             },
3222   { "envelope_3.ypos",                                  "4"                             },
3223   { "envelope_3.frames",                                "1"                             },
3224   { "envelope_3.collecting",                            "RocksCollect.png"              },
3225   { "envelope_3.collecting.xpos",                       "7"                             },
3226   { "envelope_3.collecting.ypos",                       "10"                            },
3227   { "envelope_3.collecting.frames",                     "7"                             },
3228   { "envelope_3.collecting.anim_mode",                  "linear"                        },
3229   { "envelope_4",                                       "RocksMore.png"                 },
3230   { "envelope_4.xpos",                                  "3"                             },
3231   { "envelope_4.ypos",                                  "4"                             },
3232   { "envelope_4.frames",                                "1"                             },
3233   { "envelope_4.collecting",                            "RocksCollect.png"              },
3234   { "envelope_4.collecting.xpos",                       "7"                             },
3235   { "envelope_4.collecting.ypos",                       "11"                            },
3236   { "envelope_4.collecting.frames",                     "7"                             },
3237   { "envelope_4.collecting.anim_mode",                  "linear"                        },
3238
3239   { "sign_radioactivity",                               "RocksDC.png"                   },
3240   { "sign_radioactivity.xpos",                          "4"                             },
3241   { "sign_radioactivity.ypos",                          "13"                            },
3242   { "sign_radioactivity.frames",                        "1"                             },
3243
3244   { "sign_give_way",                                    "RocksDC.png"                   },
3245   { "sign_give_way.xpos",                               "5"                             },
3246   { "sign_give_way.ypos",                               "13"                            },
3247   { "sign_give_way.frames",                             "1"                             },
3248
3249   { "sign_no_entry",                                    "RocksDC.png"                   },
3250   { "sign_no_entry.xpos",                               "6"                             },
3251   { "sign_no_entry.ypos",                               "13"                            },
3252   { "sign_no_entry.frames",                             "1"                             },
3253
3254   { "sign_emergency_exit",                              "RocksDC.png"                   },
3255   { "sign_emergency_exit.xpos",                         "7"                             },
3256   { "sign_emergency_exit.ypos",                         "13"                            },
3257   { "sign_emergency_exit.frames",                       "1"                             },
3258
3259   { "sign_yin_yang",                                    "RocksDC.png"                   },
3260   { "sign_yin_yang.xpos",                               "4"                             },
3261   { "sign_yin_yang.ypos",                               "14"                            },
3262   { "sign_yin_yang.frames",                             "1"                             },
3263
3264   { "sign_exclamation",                                 "RocksDC.png"                   },
3265   { "sign_exclamation.xpos",                            "5"                             },
3266   { "sign_exclamation.ypos",                            "14"                            },
3267   { "sign_exclamation.frames",                          "1"                             },
3268
3269   { "sign_stop",                                        "RocksDC.png"                   },
3270   { "sign_stop.xpos",                                   "6"                             },
3271   { "sign_stop.ypos",                                   "14"                            },
3272   { "sign_stop.frames",                                 "1"                             },
3273
3274   { "sign_parking",                                     "RocksDC.png"                   },
3275   { "sign_parking.xpos",                                "6"                             },
3276   { "sign_parking.ypos",                                "15"                            },
3277   { "sign_parking.frames",                              "1"                             },
3278
3279   { "sign_wheelchair",                                  "RocksDC.png"                   },
3280   { "sign_wheelchair.xpos",                             "7"                             },
3281   { "sign_wheelchair.ypos",                             "15"                            },
3282   { "sign_wheelchair.frames",                           "1"                             },
3283
3284   { "sign_entry_forbidden",                             "RocksDC.png"                   },
3285   { "sign_entry_forbidden.xpos",                        "12"                            },
3286   { "sign_entry_forbidden.ypos",                        "15"                            },
3287   { "sign_entry_forbidden.frames",                      "1"                             },
3288
3289   { "sperms",                                           "RocksDC2.png"                  },
3290   { "sperms.xpos",                                      "11"                            },
3291   { "sperms.ypos",                                      "3"                             },
3292   { "sperms.frames",                                    "1"                             },
3293
3294   { "bullet",                                           "RocksDC2.png"                  },
3295   { "bullet.xpos",                                      "12"                            },
3296   { "bullet.ypos",                                      "3"                             },
3297   { "bullet.frames",                                    "1"                             },
3298
3299   { "heart",                                            "RocksDC2.png"                  },
3300   { "heart.xpos",                                       "13"                            },
3301   { "heart.ypos",                                       "3"                             },
3302   { "heart.frames",                                     "1"                             },
3303
3304   { "cross",                                            "RocksDC2.png"                  },
3305   { "cross.xpos",                                       "14"                            },
3306   { "cross.ypos",                                       "3"                             },
3307   { "cross.frames",                                     "1"                             },
3308
3309   { "frankie",                                          "RocksDC2.png"                  },
3310   { "frankie.xpos",                                     "15"                            },
3311   { "frankie.ypos",                                     "3"                             },
3312   { "frankie.frames",                                   "1"                             },
3313
3314   { "sign_sperms",                                      "RocksDC2.png"                  },
3315   { "sign_sperms.xpos",                                 "11"                            },
3316   { "sign_sperms.ypos",                                 "2"                             },
3317   { "sign_sperms.frames",                               "1"                             },
3318
3319   { "sign_bullet",                                      "RocksDC2.png"                  },
3320   { "sign_bullet.xpos",                                 "12"                            },
3321   { "sign_bullet.ypos",                                 "2"                             },
3322   { "sign_bullet.frames",                               "1"                             },
3323
3324   { "sign_heart",                                       "RocksDC2.png"                  },
3325   { "sign_heart.xpos",                                  "13"                            },
3326   { "sign_heart.ypos",                                  "2"                             },
3327   { "sign_heart.frames",                                "1"                             },
3328
3329   { "sign_cross",                                       "RocksDC2.png"                  },
3330   { "sign_cross.xpos",                                  "14"                            },
3331   { "sign_cross.ypos",                                  "2"                             },
3332   { "sign_cross.frames",                                "1"                             },
3333
3334   { "sign_frankie",                                     "RocksDC2.png"                  },
3335   { "sign_frankie.xpos",                                "15"                            },
3336   { "sign_frankie.ypos",                                "2"                             },
3337   { "sign_frankie.frames",                              "1"                             },
3338
3339   { "landmine",                                         "RocksDC.png"                   },
3340   { "landmine.xpos",                                    "7"                             },
3341   { "landmine.ypos",                                    "14"                            },
3342   { "landmine.frames",                                  "1"                             },
3343   { "landmine.crumbled_like",                           "sand"                          },
3344
3345   { "dc_landmine",                                      "RocksDC.png"                   },
3346   { "dc_landmine.xpos",                                 "14"                            },
3347   { "dc_landmine.ypos",                                 "5"                             },
3348   { "dc_landmine.frames",                               "1"                             },
3349   { "dc_landmine.crumbled_like",                        "sand"                          },
3350
3351   { "steelwall_slippery",                               "RocksDC.png"                   },
3352   { "steelwall_slippery.xpos",                          "5"                             },
3353   { "steelwall_slippery.ypos",                          "15"                            },
3354   { "steelwall_slippery.frames",                        "1"                             },
3355
3356   { "extra_time",                                       "RocksDC.png"                   },
3357   { "extra_time.xpos",                                  "8"                             },
3358   { "extra_time.ypos",                                  "0"                             },
3359   { "extra_time.frames",                                "6"                             },
3360   { "extra_time.delay",                                 "4"                             },
3361   { "extra_time.collecting",                            "RocksCollect.png"              },
3362   { "extra_time.collecting.xpos",                       "7"                             },
3363   { "extra_time.collecting.ypos",                       "2"                             },
3364   { "extra_time.collecting.frames",                     "7"                             },
3365   { "extra_time.collecting.anim_mode",                  "linear"                        },
3366
3367   { "shield_normal",                                    "RocksDC.png"                   },
3368   { "shield_normal.xpos",                               "8"                             },
3369   { "shield_normal.ypos",                               "2"                             },
3370   { "shield_normal.frames",                             "6"                             },
3371   { "shield_normal.delay",                              "4"                             },
3372   { "shield_normal.active",                             "RocksHeroes.png"               },
3373   { "shield_normal.active.xpos",                        "1"                             },
3374   { "shield_normal.active.ypos",                        "13"                            },
3375   { "shield_normal.active.frames",                      "3"                             },
3376   { "shield_normal.active.delay",                       "8"                             },
3377   { "shield_normal.active.anim_mode",                   "pingpong"                      },
3378   { "shield_normal.collecting",                         "RocksCollect.png"              },
3379   { "shield_normal.collecting.xpos",                    "7"                             },
3380   { "shield_normal.collecting.ypos",                    "1"                             },
3381   { "shield_normal.collecting.frames",                  "7"                             },
3382   { "shield_normal.collecting.anim_mode",               "linear"                        },
3383
3384   { "shield_deadly",                                    "RocksDC.png"                   },
3385   { "shield_deadly.xpos",                               "8"                             },
3386   { "shield_deadly.ypos",                               "1"                             },
3387   { "shield_deadly.frames",                             "6"                             },
3388   { "shield_deadly.delay",                              "4"                             },
3389   { "shield_deadly.active",                             "RocksHeroes.png"               },
3390   { "shield_deadly.active.xpos",                        "5"                             },
3391   { "shield_deadly.active.ypos",                        "13"                            },
3392   { "shield_deadly.active.frames",                      "3"                             },
3393   { "shield_deadly.active.delay",                       "8"                             },
3394   { "shield_deadly.active.anim_mode",                   "pingpong"                      },
3395   { "shield_deadly.collecting",                         "RocksCollect.png"              },
3396   { "shield_deadly.collecting.xpos",                    "7"                             },
3397   { "shield_deadly.collecting.ypos",                    "3"                             },
3398   { "shield_deadly.collecting.frames",                  "7"                             },
3399   { "shield_deadly.collecting.anim_mode",               "linear"                        },
3400
3401   { "switchgate_closed",                                "RocksDC.png"                   },
3402   { "switchgate_closed.xpos",                           "8"                             },
3403   { "switchgate_closed.ypos",                           "5"                             },
3404   { "switchgate_closed.frames",                         "1"                             },
3405   { "switchgate.opening",                               "RocksDC.png"                   },
3406   { "switchgate.opening.xpos",                          "8"                             },
3407   { "switchgate.opening.ypos",                          "5"                             },
3408   { "switchgate.opening.frames",                        "5"                             },
3409   { "switchgate.opening.delay",                         "6"                             },
3410   { "switchgate_open",                                  "RocksDC.png"                   },
3411   { "switchgate_open.xpos",                             "12"                            },
3412   { "switchgate_open.ypos",                             "5"                             },
3413   { "switchgate_open.frames",                           "1"                             },
3414   { "switchgate.closing",                               "RocksDC.png"                   },
3415   { "switchgate.closing.xpos",                          "8"                             },
3416   { "switchgate.closing.ypos",                          "5"                             },
3417   { "switchgate.closing.frames",                        "5"                             },
3418   { "switchgate.closing.delay",                         "6"                             },
3419   { "switchgate.closing.anim_mode",                     "reverse"                       },
3420
3421   { "timegate_closed",                                  "RocksDC.png"                   },
3422   { "timegate_closed.xpos",                             "8"                             },
3423   { "timegate_closed.ypos",                             "6"                             },
3424   { "timegate_closed.frames",                           "1"                             },
3425   { "timegate.opening",                                 "RocksDC.png"                   },
3426   { "timegate.opening.xpos",                            "8"                             },
3427   { "timegate.opening.ypos",                            "6"                             },
3428   { "timegate.opening.frames",                          "5"                             },
3429   { "timegate.opening.delay",                           "6"                             },
3430   { "timegate_open",                                    "RocksDC.png"                   },
3431   { "timegate_open.xpos",                               "12"                            },
3432   { "timegate_open.ypos",                               "6"                             },
3433   { "timegate_open.frames",                             "1"                             },
3434   { "timegate.closing",                                 "RocksDC.png"                   },
3435   { "timegate.closing.xpos",                            "8"                             },
3436   { "timegate.closing.ypos",                            "6"                             },
3437   { "timegate.closing.frames",                          "5"                             },
3438   { "timegate.closing.delay",                           "6"                             },
3439   { "timegate.closing.anim_mode",                       "reverse"                       },
3440
3441   { "pearl",                                            "RocksDC.png"                   },
3442   { "pearl.xpos",                                       "8"                             },
3443   { "pearl.ypos",                                       "11"                            },
3444   { "pearl.frames",                                     "1"                             },
3445   { "pearl.breaking",                                   "RocksDC.png"                   },
3446   { "pearl.breaking.xpos",                              "8"                             },
3447   { "pearl.breaking.ypos",                              "12"                            },
3448   { "pearl.breaking.frames",                            "4"                             },
3449   { "pearl.breaking.delay",                             "2"                             },
3450   { "pearl.breaking.anim_mode",                         "linear"                        },
3451   { "pearl.collecting",                                 "RocksCollect.png"              },
3452   { "pearl.collecting.xpos",                            "0"                             },
3453   { "pearl.collecting.ypos",                            "16"                            },
3454   { "pearl.collecting.frames",                          "7"                             },
3455   { "pearl.collecting.anim_mode",                       "linear"                        },
3456
3457   { "crystal",                                          "RocksDC.png"                   },
3458   { "crystal.xpos",                                     "9"                             },
3459   { "crystal.ypos",                                     "11"                            },
3460   { "crystal.frames",                                   "1"                             },
3461   { "crystal.collecting",                               "RocksCollect.png"              },
3462   { "crystal.collecting.xpos",                          "0"                             },
3463   { "crystal.collecting.ypos",                          "17"                            },
3464   { "crystal.collecting.frames",                        "7"                             },
3465   { "crystal.collecting.anim_mode",                     "linear"                        },
3466
3467   { "wall_pearl",                                       "RocksDC.png"                   },
3468   { "wall_pearl.xpos",                                  "10"                            },
3469   { "wall_pearl.ypos",                                  "11"                            },
3470   { "wall_pearl.frames",                                "1"                             },
3471
3472   { "wall_crystal",                                     "RocksDC.png"                   },
3473   { "wall_crystal.xpos",                                "11"                            },
3474   { "wall_crystal.ypos",                                "11"                            },
3475   { "wall_crystal.frames",                              "1"                             },
3476
3477   { "dc_steelwall_1_left",                              "RocksDC2.png"                  },
3478   { "dc_steelwall_1_left.xpos",                         "5"                             },
3479   { "dc_steelwall_1_left.ypos",                         "1"                             },
3480   { "dc_steelwall_1_left.frames",                       "1"                             },
3481   { "dc_steelwall_1_right",                             "RocksDC2.png"                  },
3482   { "dc_steelwall_1_right.xpos",                        "3"                             },
3483   { "dc_steelwall_1_right.ypos",                        "1"                             },
3484   { "dc_steelwall_1_right.frames",                      "1"                             },
3485   { "dc_steelwall_1_top",                               "RocksDC2.png"                  },
3486   { "dc_steelwall_1_top.xpos",                          "4"                             },
3487   { "dc_steelwall_1_top.ypos",                          "2"                             },
3488   { "dc_steelwall_1_top.frames",                        "1"                             },
3489   { "dc_steelwall_1_bottom",                            "RocksDC2.png"                  },
3490   { "dc_steelwall_1_bottom.xpos",                       "4"                             },
3491   { "dc_steelwall_1_bottom.ypos",                       "0"                             },
3492   { "dc_steelwall_1_bottom.frames",                     "1"                             },
3493   { "dc_steelwall_1_horizontal",                        "RocksDC2.png"                  },
3494   { "dc_steelwall_1_horizontal.xpos",                   "1"                             },
3495   { "dc_steelwall_1_horizontal.ypos",                   "0"                             },
3496   { "dc_steelwall_1_horizontal.frames",                 "1"                             },
3497   { "dc_steelwall_1_vertical",                          "RocksDC2.png"                  },
3498   { "dc_steelwall_1_vertical.xpos",                     "0"                             },
3499   { "dc_steelwall_1_vertical.ypos",                     "1"                             },
3500   { "dc_steelwall_1_vertical.frames",                   "1"                             },
3501   { "dc_steelwall_1_topleft",                           "RocksDC2.png"                  },
3502   { "dc_steelwall_1_topleft.xpos",                      "0"                             },
3503   { "dc_steelwall_1_topleft.ypos",                      "0"                             },
3504   { "dc_steelwall_1_topleft.frames",                    "1"                             },
3505   { "dc_steelwall_1_topright",                          "RocksDC2.png"                  },
3506   { "dc_steelwall_1_topright.xpos",                     "2"                             },
3507   { "dc_steelwall_1_topright.ypos",                     "0"                             },
3508   { "dc_steelwall_1_topright.frames",                   "1"                             },
3509   { "dc_steelwall_1_bottomleft",                        "RocksDC2.png"                  },
3510   { "dc_steelwall_1_bottomleft.xpos",                   "0"                             },
3511   { "dc_steelwall_1_bottomleft.ypos",                   "2"                             },
3512   { "dc_steelwall_1_bottomleft.frames",                 "1"                             },
3513   { "dc_steelwall_1_bottomright",                       "RocksDC2.png"                  },
3514   { "dc_steelwall_1_bottomright.xpos",                  "2"                             },
3515   { "dc_steelwall_1_bottomright.ypos",                  "2"                             },
3516   { "dc_steelwall_1_bottomright.frames",                "1"                             },
3517   { "dc_steelwall_1_topleft_2",                         "RocksDC2.png"                  },
3518   { "dc_steelwall_1_topleft_2.xpos",                    "5"                             },
3519   { "dc_steelwall_1_topleft_2.ypos",                    "2"                             },
3520   { "dc_steelwall_1_topleft_2.frames",                  "1"                             },
3521   { "dc_steelwall_1_topright_2",                        "RocksDC2.png"                  },
3522   { "dc_steelwall_1_topright_2.xpos",                   "3"                             },
3523   { "dc_steelwall_1_topright_2.ypos",                   "2"                             },
3524   { "dc_steelwall_1_topright_2.frames",                 "1"                             },
3525   { "dc_steelwall_1_bottomleft_2",                      "RocksDC2.png"                  },
3526   { "dc_steelwall_1_bottomleft_2.xpos",                 "5"                             },
3527   { "dc_steelwall_1_bottomleft_2.ypos",                 "0"                             },
3528   { "dc_steelwall_1_bottomleft_2.frames",               "1"                             },
3529   { "dc_steelwall_1_bottomright_2",                     "RocksDC2.png"                  },
3530   { "dc_steelwall_1_bottomright_2.xpos",                "3"                             },
3531   { "dc_steelwall_1_bottomright_2.ypos",                "0"                             },
3532   { "dc_steelwall_1_bottomright_2.frames",              "1"                             },
3533
3534   { "dc_steelwall_2_left",                              "RocksDC2.png"                  },
3535   { "dc_steelwall_2_left.xpos",                         "6"                             },
3536   { "dc_steelwall_2_left.ypos",                         "1"                             },
3537   { "dc_steelwall_2_left.frames",                       "1"                             },
3538   { "dc_steelwall_2_right",                             "RocksDC2.png"                  },
3539   { "dc_steelwall_2_right.xpos",                        "9"                             },
3540   { "dc_steelwall_2_right.ypos",                        "1"                             },
3541   { "dc_steelwall_2_right.frames",                      "1"                             },
3542   { "dc_steelwall_2_top",                               "RocksDC2.png"                  },
3543   { "dc_steelwall_2_top.xpos",                          "7"                             },
3544   { "dc_steelwall_2_top.ypos",                          "0"                             },
3545   { "dc_steelwall_2_top.frames",                        "1"                             },
3546   { "dc_steelwall_2_bottom",                            "RocksDC2.png"                  },
3547   { "dc_steelwall_2_bottom.xpos",                       "7"                             },
3548   { "dc_steelwall_2_bottom.ypos",                       "3"                             },
3549   { "dc_steelwall_2_bottom.frames",                     "1"                             },
3550   { "dc_steelwall_2_horizontal",                        "RocksDC2.png"                  },
3551   { "dc_steelwall_2_horizontal.xpos",                   "8"                             },
3552   { "dc_steelwall_2_horizontal.ypos",                   "1"                             },
3553   { "dc_steelwall_2_horizontal.frames",                 "1"                             },
3554   { "dc_steelwall_2_vertical",                          "RocksDC2.png"                  },
3555   { "dc_steelwall_2_vertical.xpos",                     "7"                             },
3556   { "dc_steelwall_2_vertical.ypos",                     "2"                             },
3557   { "dc_steelwall_2_vertical.frames",                   "1"                             },
3558   { "dc_steelwall_2_middle",                            "RocksDC2.png"                  },
3559   { "dc_steelwall_2_middle.xpos",                       "7"                             },
3560   { "dc_steelwall_2_middle.ypos",                       "1"                             },
3561   { "dc_steelwall_2_middle.frames",                     "1"                             },
3562   { "dc_steelwall_2_single",                            "RocksDC2.png"                  },
3563   { "dc_steelwall_2_single.xpos",                       "6"                             },
3564   { "dc_steelwall_2_single.ypos",                       "0"                             },
3565   { "dc_steelwall_2_single.frames",                     "1"                             },
3566
3567   // images for DX Boulderdash style elements and actions
3568
3569   { "tube_right_down",                                  "RocksDC.png"                   },
3570   { "tube_right_down.xpos",                             "9"                             },
3571   { "tube_right_down.ypos",                             "13"                            },
3572   { "tube_right_down.frames",                           "1"                             },
3573
3574   { "tube_horizontal_down",                             "RocksDC.png"                   },
3575   { "tube_horizontal_down.xpos",                        "10"                            },
3576   { "tube_horizontal_down.ypos",                        "13"                            },
3577   { "tube_horizontal_down.frames",                      "1"                             },
3578
3579   { "tube_left_down",                                   "RocksDC.png"                   },
3580   { "tube_left_down.xpos",                              "11"                            },
3581   { "tube_left_down.ypos",                              "13"                            },
3582   { "tube_left_down.frames",                            "1"                             },
3583
3584   { "tube_horizontal",                                  "RocksDC.png"                   },
3585   { "tube_horizontal.xpos",                             "8"                             },
3586   { "tube_horizontal.ypos",                             "14"                            },
3587   { "tube_horizontal.frames",                           "1"                             },
3588
3589   { "tube_vertical_right",                              "RocksDC.png"                   },
3590   { "tube_vertical_right.xpos",                         "9"                             },
3591   { "tube_vertical_right.ypos",                         "14"                            },
3592   { "tube_vertical_right.frames",                       "1"                             },
3593
3594   { "tube_any",                                         "RocksDC.png"                   },
3595   { "tube_any.xpos",                                    "10"                            },
3596   { "tube_any.ypos",                                    "14"                            },
3597   { "tube_any.frames",                                  "1"                             },
3598
3599   { "tube_vertical_left",                               "RocksDC.png"                   },
3600   { "tube_vertical_left.xpos",                          "11"                            },
3601   { "tube_vertical_left.ypos",                          "14"                            },
3602   { "tube_vertical_left.frames",                        "1"                             },
3603
3604   { "tube_vertical",                                    "RocksDC.png"                   },
3605   { "tube_vertical.xpos",                               "8"                             },
3606   { "tube_vertical.ypos",                               "15"                            },
3607   { "tube_vertical.frames",                             "1"                             },
3608
3609   { "tube_right_up",                                    "RocksDC.png"                   },
3610   { "tube_right_up.xpos",                               "9"                             },
3611   { "tube_right_up.ypos",                               "15"                            },
3612   { "tube_right_up.frames",                             "1"                             },
3613
3614   { "tube_horizontal_up",                               "RocksDC.png"                   },
3615   { "tube_horizontal_up.xpos",                          "10"                            },
3616   { "tube_horizontal_up.ypos",                          "15"                            },
3617   { "tube_horizontal_up.frames",                        "1"                             },
3618
3619   { "tube_left_up",                                     "RocksDC.png"                   },
3620   { "tube_left_up.xpos",                                "11"                            },
3621   { "tube_left_up.ypos",                                "15"                            },
3622   { "tube_left_up.frames",                              "1"                             },
3623
3624   { "trap",                                             "RocksDC.png"                   },
3625   { "trap.xpos",                                        "12"                            },
3626   { "trap.ypos",                                        "8"                             },
3627   { "trap.frames",                                      "1"                             },
3628   { "trap.crumbled_like",                               "sand"                          },
3629   { "trap.diggable_like",                               "sand"                          },
3630   { "trap.active",                                      "RocksDC.png"                   },
3631   { "trap.active.xpos",                                 "12"                            },
3632   { "trap.active.ypos",                                 "8"                             },
3633   { "trap.active.frames",                               "4"                             },
3634   { "trap.active.delay",                                "4"                             },
3635   { "trap.active.anim_mode",                            "pingpong2"                     },
3636   { "trap.active.crumbled_like",                        "sand"                          },
3637
3638   { "dx_supabomb",                                      "RocksDC.png"                   },
3639   { "dx_supabomb.xpos",                                 "15"                            },
3640   { "dx_supabomb.ypos",                                 "9"                             },
3641   { "dx_supabomb.frames",                               "1"                             },
3642
3643   // images for Rocks'n'Diamonds style elements and actions
3644
3645   { "key_1",                                            "RocksElements.png"             },
3646   { "key_1.xpos",                                       "4"                             },
3647   { "key_1.ypos",                                       "1"                             },
3648   { "key_1.frames",                                     "1"                             },
3649   { "key_1.collecting",                                 "RocksCollect.png"              },
3650   { "key_1.collecting.xpos",                            "0"                             },
3651   { "key_1.collecting.ypos",                            "3"                             },
3652   { "key_1.collecting.frames",                          "7"                             },
3653   { "key_1.collecting.anim_mode",                       "linear"                        },
3654   { "key_2",                                            "RocksElements.png"             },
3655   { "key_2.xpos",                                       "5"                             },
3656   { "key_2.ypos",                                       "1"                             },
3657   { "key_2.frames",                                     "1"                             },
3658   { "key_2.collecting",                                 "RocksCollect.png"              },
3659   { "key_2.collecting.xpos",                            "0"                             },
3660   { "key_2.collecting.ypos",                            "4"                             },
3661   { "key_2.collecting.frames",                          "7"                             },
3662   { "key_2.collecting.anim_mode",                       "linear"                        },
3663   { "key_3",                                            "RocksElements.png"             },
3664   { "key_3.xpos",                                       "6"                             },
3665   { "key_3.ypos",                                       "1"                             },
3666   { "key_3.frames",                                     "1"                             },
3667   { "key_3.collecting",                                 "RocksCollect.png"              },
3668   { "key_3.collecting.xpos",                            "0"                             },
3669   { "key_3.collecting.ypos",                            "5"                             },
3670   { "key_3.collecting.frames",                          "7"                             },
3671   { "key_3.collecting.anim_mode",                       "linear"                        },
3672   { "key_4",                                            "RocksElements.png"             },
3673   { "key_4.xpos",                                       "7"                             },
3674   { "key_4.ypos",                                       "1"                             },
3675   { "key_4.frames",                                     "1"                             },
3676   { "key_4.collecting",                                 "RocksCollect.png"              },
3677   { "key_4.collecting.xpos",                            "0"                             },
3678   { "key_4.collecting.ypos",                            "6"                             },
3679   { "key_4.collecting.frames",                          "7"                             },
3680   { "key_4.collecting.anim_mode",                       "linear"                        },
3681
3682   { "gate_1",                                           "RocksElements.png"             },
3683   { "gate_1.xpos",                                      "4"                             },
3684   { "gate_1.ypos",                                      "2"                             },
3685   { "gate_1.frames",                                    "1"                             },
3686   { "gate_2",                                           "RocksElements.png"             },
3687   { "gate_2.xpos",                                      "5"                             },
3688   { "gate_2.ypos",                                      "2"                             },
3689   { "gate_2.frames",                                    "1"                             },
3690   { "gate_3",                                           "RocksElements.png"             },
3691   { "gate_3.xpos",                                      "6"                             },
3692   { "gate_3.ypos",                                      "2"                             },
3693   { "gate_3.frames",                                    "1"                             },
3694   { "gate_4",                                           "RocksElements.png"             },
3695   { "gate_4.xpos",                                      "7"                             },
3696   { "gate_4.ypos",                                      "2"                             },
3697   { "gate_4.frames",                                    "1"                             },
3698   { "gate_1_gray",                                      "RocksElements.png"             },
3699   { "gate_1_gray.xpos",                                 "8"                             },
3700   { "gate_1_gray.ypos",                                 "2"                             },
3701   { "gate_1_gray.frames",                               "1"                             },
3702   { "gate_1_gray.EDITOR",                               "RocksElements.png"             },
3703   { "gate_1_gray.EDITOR.xpos",                          "8"                             },
3704   { "gate_1_gray.EDITOR.ypos",                          "14"                            },
3705   { "gate_1_gray.active",                               "RocksElements.png"             },
3706   { "gate_1_gray.active.xpos",                          "4"                             },
3707   { "gate_1_gray.active.ypos",                          "2"                             },
3708   { "gate_1_gray.active.frames",                        "1"                             },
3709   { "gate_2_gray",                                      "RocksElements.png"             },
3710   { "gate_2_gray.xpos",                                 "9"                             },
3711   { "gate_2_gray.ypos",                                 "2"                             },
3712   { "gate_2_gray.frames",                               "1"                             },
3713   { "gate_2_gray.EDITOR",                               "RocksElements.png"             },
3714   { "gate_2_gray.EDITOR.xpos",                          "9"                             },
3715   { "gate_2_gray.EDITOR.ypos",                          "14"                            },
3716   { "gate_2_gray.active",                               "RocksElements.png"             },
3717   { "gate_2_gray.active.xpos",                          "5"                             },
3718   { "gate_2_gray.active.ypos",                          "2"                             },
3719   { "gate_2_gray.active.frames",                        "1"                             },
3720   { "gate_3_gray",                                      "RocksElements.png"             },
3721   { "gate_3_gray.xpos",                                 "10"                            },
3722   { "gate_3_gray.ypos",                                 "2"                             },
3723   { "gate_3_gray.frames",                               "1"                             },
3724   { "gate_3_gray.EDITOR",                               "RocksElements.png"             },
3725   { "gate_3_gray.EDITOR.xpos",                          "10"                            },
3726   { "gate_3_gray.EDITOR.ypos",                          "14"                            },
3727   { "gate_3_gray.active",                               "RocksElements.png"             },
3728   { "gate_3_gray.active.xpos",                          "6"                             },
3729   { "gate_3_gray.active.ypos",                          "2"                             },
3730   { "gate_3_gray.active.frames",                        "1"                             },
3731   { "gate_4_gray",                                      "RocksElements.png"             },
3732   { "gate_4_gray.xpos",                                 "11"                            },
3733   { "gate_4_gray.ypos",                                 "2"                             },
3734   { "gate_4_gray.frames",                               "1"                             },
3735   { "gate_4_gray.EDITOR",                               "RocksElements.png"             },
3736   { "gate_4_gray.EDITOR.xpos",                          "11"                            },
3737   { "gate_4_gray.EDITOR.ypos",                          "14"                            },
3738   { "gate_4_gray.active",                               "RocksElements.png"             },
3739   { "gate_4_gray.active.xpos",                          "7"                             },
3740   { "gate_4_gray.active.ypos",                          "2"                             },
3741   { "gate_4_gray.active.frames",                        "1"                             },
3742
3743   { "game_of_life",                                     "RocksElements.png"             },
3744   { "game_of_life.xpos",                                "8"                             },
3745   { "game_of_life.ypos",                                "1"                             },
3746   { "game_of_life.frames",                              "1"                             },
3747
3748   { "biomaze",                                          "RocksElements.png"             },
3749   { "biomaze.xpos",                                     "9"                             },
3750   { "biomaze.ypos",                                     "1"                             },
3751   { "biomaze.frames",                                   "1"                             },
3752
3753   { "pacman",                                           "RocksElements.png"             },
3754   { "pacman.xpos",                                      "8"                             },
3755   { "pacman.ypos",                                      "5"                             },
3756   { "pacman.frames",                                    "1"                             },
3757   { "pacman.right",                                     "RocksElements.png"             },
3758   { "pacman.right.xpos",                                "8"                             },
3759   { "pacman.right.ypos",                                "5"                             },
3760   { "pacman.right.frames",                              "2"                             },
3761   { "pacman.right.delay",                               "4"                             },
3762   { "pacman.right.offset",                              "128"                           },
3763   { "pacman.up",                                        "RocksElements.png"             },
3764   { "pacman.up.xpos",                                   "9"                             },
3765   { "pacman.up.ypos",                                   "5"                             },
3766   { "pacman.up.frames",                                 "2"                             },
3767   { "pacman.up.delay",                                  "4"                             },
3768   { "pacman.up.offset",                                 "128"                           },
3769   { "pacman.left",                                      "RocksElements.png"             },
3770   { "pacman.left.xpos",                                 "10"                            },
3771   { "pacman.left.ypos",                                 "5"                             },
3772   { "pacman.left.frames",                               "2"                             },
3773   { "pacman.left.delay",                                "4"                             },
3774   { "pacman.left.offset",                               "128"                           },
3775   { "pacman.down",                                      "RocksElements.png"             },
3776   { "pacman.down.xpos",                                 "11"                            },
3777   { "pacman.down.ypos",                                 "5"                             },
3778   { "pacman.down.frames",                               "2"                             },
3779   { "pacman.down.delay",                                "4"                             },
3780   { "pacman.down.offset",                               "128"                           },
3781   { "pacman.turning_from_right",                        "RocksElements.png"             },
3782   { "pacman.turning_from_right.xpos",                   "12"                            },
3783   { "pacman.turning_from_right.ypos",                   "5"                             },
3784   { "pacman.turning_from_right.frames",                 "1"                             },
3785   { "pacman.turning_from_up",                           "RocksElements.png"             },
3786   { "pacman.turning_from_up.xpos",                      "13"                            },
3787   { "pacman.turning_from_up.ypos",                      "5"                             },
3788   { "pacman.turning_from_up.frames",                    "1"                             },
3789   { "pacman.turning_from_left",                         "RocksElements.png"             },
3790   { "pacman.turning_from_left.xpos",                    "14"                            },
3791   { "pacman.turning_from_left.ypos",                    "5"                             },
3792   { "pacman.turning_from_left.frames",                  "1"                             },
3793   { "pacman.turning_from_down",                         "RocksElements.png"             },
3794   { "pacman.turning_from_down.xpos",                    "15"                            },
3795   { "pacman.turning_from_down.ypos",                    "5"                             },
3796   { "pacman.turning_from_down.frames",                  "1"                             },
3797
3798   { "lamp",                                             "RocksElements.png"             },
3799   { "lamp.xpos",                                        "0"                             },
3800   { "lamp.ypos",                                        "7"                             },
3801   { "lamp.frames",                                      "1"                             },
3802   { "lamp.active",                                      "RocksElements.png"             },
3803   { "lamp.active.xpos",                                 "1"                             },
3804   { "lamp.active.ypos",                                 "7"                             },
3805   { "lamp.active.frames",                               "1"                             },
3806
3807   { "time_orb_full",                                    "RocksElements.png"             },
3808   { "time_orb_full.xpos",                               "2"                             },
3809   { "time_orb_full.ypos",                               "7"                             },
3810   { "time_orb_full.frames",                             "1"                             },
3811   { "time_orb_empty",                                   "RocksElements.png"             },
3812   { "time_orb_empty.xpos",                              "3"                             },
3813   { "time_orb_empty.ypos",                              "7"                             },
3814   { "time_orb_empty.frames",                            "1"                             },
3815
3816   { "emerald_yellow",                                   "RocksElements.png"             },
3817   { "emerald_yellow.xpos",                              "10"                            },
3818   { "emerald_yellow.ypos",                              "8"                             },
3819   { "emerald_yellow.frames",                            "1"                             },
3820   { "emerald_yellow.moving",                            "RocksElements.png"             },
3821   { "emerald_yellow.moving.xpos",                       "10"                            },
3822   { "emerald_yellow.moving.ypos",                       "8"                             },
3823   { "emerald_yellow.moving.frames",                     "2"                             },
3824   { "emerald_yellow.moving.delay",                      "4"                             },
3825   { "emerald_yellow.falling",                           "RocksElements.png"             },
3826   { "emerald_yellow.falling.xpos",                      "10"                            },
3827   { "emerald_yellow.falling.ypos",                      "8"                             },
3828   { "emerald_yellow.falling.frames",                    "2"                             },
3829   { "emerald_yellow.falling.delay",                     "4"                             },
3830   { "emerald_yellow.collecting",                        "RocksCollect.png"              },
3831   { "emerald_yellow.collecting.xpos",                   "0"                             },
3832   { "emerald_yellow.collecting.ypos",                   "9"                             },
3833   { "emerald_yellow.collecting.frames",                 "7"                             },
3834   { "emerald_yellow.collecting.anim_mode",              "linear"                        },
3835   { "emerald_red",                                      "RocksElements.png"             },
3836   { "emerald_red.xpos",                                 "8"                             },
3837   { "emerald_red.ypos",                                 "9"                             },
3838   { "emerald_red.frames",                               "1"                             },
3839   { "emerald_red.moving",                               "RocksElements.png"             },
3840   { "emerald_red.moving.xpos",                          "8"                             },
3841   { "emerald_red.moving.ypos",                          "9"                             },
3842   { "emerald_red.moving.frames",                        "2"                             },
3843   { "emerald_red.moving.delay",                         "4"                             },
3844   { "emerald_red.falling",                              "RocksElements.png"             },
3845   { "emerald_red.falling.xpos",                         "8"                             },
3846   { "emerald_red.falling.ypos",                         "9"                             },
3847   { "emerald_red.falling.frames",                       "2"                             },
3848   { "emerald_red.falling.delay",                        "4"                             },
3849   { "emerald_red.collecting",                           "RocksCollect.png"              },
3850   { "emerald_red.collecting.xpos",                      "0"                             },
3851   { "emerald_red.collecting.ypos",                      "13"                            },
3852   { "emerald_red.collecting.frames",                    "7"                             },
3853   { "emerald_red.collecting.anim_mode",                 "linear"                        },
3854   { "emerald_purple",                                   "RocksElements.png"             },
3855   { "emerald_purple.xpos",                              "10"                            },
3856   { "emerald_purple.ypos",                              "9"                             },
3857   { "emerald_purple.frames",                            "1"                             },
3858   { "emerald_purple.moving",                            "RocksElements.png"             },
3859   { "emerald_purple.moving.xpos",                       "10"                            },
3860   { "emerald_purple.moving.ypos",                       "9"                             },
3861   { "emerald_purple.moving.frames",                     "2"                             },
3862   { "emerald_purple.moving.delay",                      "4"                             },
3863   { "emerald_purple.falling",                           "RocksElements.png"             },
3864   { "emerald_purple.falling.xpos",                      "10"                            },
3865   { "emerald_purple.falling.ypos",                      "9"                             },
3866   { "emerald_purple.falling.frames",                    "2"                             },
3867   { "emerald_purple.falling.delay",                     "4"                             },
3868   { "emerald_purple.collecting",                        "RocksCollect.png"              },
3869   { "emerald_purple.collecting.xpos",                   "0"                             },
3870   { "emerald_purple.collecting.ypos",                   "14"                            },
3871   { "emerald_purple.collecting.frames",                 "7"                             },
3872   { "emerald_purple.collecting.anim_mode",              "linear"                        },
3873
3874   { "wall_emerald_yellow",                              "RocksElements.png"             },
3875   { "wall_emerald_yellow.xpos",                         "8"                             },
3876   { "wall_emerald_yellow.ypos",                         "8"                             },
3877   { "wall_emerald_yellow.frames",                       "1"                             },
3878   { "wall_emerald_red",                                 "RocksElements.png"             },
3879   { "wall_emerald_red.xpos",                            "6"                             },
3880   { "wall_emerald_red.ypos",                            "8"                             },
3881   { "wall_emerald_red.frames",                          "1"                             },
3882   { "wall_emerald_purple",                              "RocksElements.png"             },
3883   { "wall_emerald_purple.xpos",                         "7"                             },
3884   { "wall_emerald_purple.ypos",                         "8"                             },
3885   { "wall_emerald_purple.frames",                       "1"                             },
3886   { "wall_bd_diamond",                                  "RocksElements.png"             },
3887   { "wall_bd_diamond.xpos",                             "9"                             },
3888   { "wall_bd_diamond.ypos",                             "8"                             },
3889   { "wall_bd_diamond.frames",                           "1"                             },
3890
3891   { "expandable_wall",                                  "RocksElements.png"             },
3892   { "expandable_wall.xpos",                             "11"                            },
3893   { "expandable_wall.ypos",                             "10"                            },
3894   { "expandable_wall.frames",                           "1"                             },
3895   { "expandable_wall_horizontal",                       "RocksElements.png"             },
3896   { "expandable_wall_horizontal.xpos",                  "5"                             },
3897   { "expandable_wall_horizontal.ypos",                  "9"                             },
3898   { "expandable_wall_horizontal.frames",                "1"                             },
3899   { "expandable_wall_horizontal.EDITOR",                "RocksElements.png"             },
3900   { "expandable_wall_horizontal.EDITOR.xpos",           "13"                            },
3901   { "expandable_wall_horizontal.EDITOR.ypos",           "13"                            },
3902   { "expandable_wall_vertical",                         "RocksElements.png"             },
3903   { "expandable_wall_vertical.xpos",                    "6"                             },
3904   { "expandable_wall_vertical.ypos",                    "9"                             },
3905   { "expandable_wall_vertical.frames",                  "1"                             },
3906   { "expandable_wall_vertical.EDITOR",                  "RocksElements.png"             },
3907   { "expandable_wall_vertical.EDITOR.xpos",             "14"                            },
3908   { "expandable_wall_vertical.EDITOR.ypos",             "13"                            },
3909   { "expandable_wall_any",                              "RocksElements.png"             },
3910   { "expandable_wall_any.xpos",                         "4"                             },
3911   { "expandable_wall_any.ypos",                         "9"                             },
3912   { "expandable_wall_any.frames",                       "1"                             },
3913   { "expandable_wall_any.EDITOR",                       "RocksElements.png"             },
3914   { "expandable_wall_any.EDITOR.xpos",                  "12"                            },
3915   { "expandable_wall_any.EDITOR.ypos",                  "13"                            },
3916
3917   { "expandable_steelwall_horizontal",                  "RocksDC2.png"                  },
3918   { "expandable_steelwall_horizontal.xpos",             "6"                             },
3919   { "expandable_steelwall_horizontal.ypos",             "2"                             },
3920   { "expandable_steelwall_horizontal.frames",           "1"                             },
3921   { "expandable_steelwall_horizontal.EDITOR",           "RocksDC2.png"                  },
3922   { "expandable_steelwall_horizontal.EDITOR.xpos",      "9"                             },
3923   { "expandable_steelwall_horizontal.EDITOR.ypos",      "2"                             },
3924   { "expandable_steelwall_vertical",                    "RocksDC2.png"                  },
3925   { "expandable_steelwall_vertical.xpos",               "6"                             },
3926   { "expandable_steelwall_vertical.ypos",               "2"                             },
3927   { "expandable_steelwall_vertical.frames",             "1"                             },
3928   { "expandable_steelwall_vertical.EDITOR",             "RocksDC2.png"                  },
3929   { "expandable_steelwall_vertical.EDITOR.xpos",        "10"                            },
3930   { "expandable_steelwall_vertical.EDITOR.ypos",        "2"                             },
3931   { "expandable_steelwall_any",                         "RocksDC2.png"                  },
3932   { "expandable_steelwall_any.xpos",                    "6"                             },
3933   { "expandable_steelwall_any.ypos",                    "2"                             },
3934   { "expandable_steelwall_any.frames",                  "1"                             },
3935   { "expandable_steelwall_any.EDITOR",                  "RocksDC2.png"                  },
3936   { "expandable_steelwall_any.EDITOR.xpos",             "8"                             },
3937   { "expandable_steelwall_any.EDITOR.ypos",             "2"                             },
3938
3939   { "expandable_wall.growing.left",                     "RocksElements.png"             },
3940   { "expandable_wall.growing.left.xpos",                "8"                             },
3941   { "expandable_wall.growing.left.ypos",                "10"                            },
3942   { "expandable_wall.growing.left.frames",              "3"                             },
3943   { "expandable_wall.growing.left.delay",               "6"                             },
3944   { "expandable_wall.growing.left.anim_mode",           "linear"                        },
3945   { "expandable_wall.growing.right",                    "RocksElements.png"             },
3946   { "expandable_wall.growing.right.xpos",               "5"                             },
3947   { "expandable_wall.growing.right.ypos",               "10"                            },
3948   { "expandable_wall.growing.right.frames",             "3"                             },
3949   { "expandable_wall.growing.right.delay",              "6"                             },
3950   { "expandable_wall.growing.right.anim_mode",          "linear"                        },
3951   { "expandable_wall.growing.up",                       "RocksHeroes.png"               },
3952   { "expandable_wall.growing.up.xpos",                  "3"                             },
3953   { "expandable_wall.growing.up.ypos",                  "12"                            },
3954   { "expandable_wall.growing.up.frames",                "3"                             },
3955   { "expandable_wall.growing.up.delay",                 "6"                             },
3956   { "expandable_wall.growing.up.anim_mode",             "linear"                        },
3957   { "expandable_wall.growing.down",                     "RocksHeroes.png"               },
3958   { "expandable_wall.growing.down.xpos",                "0"                             },
3959   { "expandable_wall.growing.down.ypos",                "12"                            },
3960   { "expandable_wall.growing.down.frames",              "3"                             },
3961   { "expandable_wall.growing.down.delay",               "6"                             },
3962   { "expandable_wall.growing.down.anim_mode",           "linear"                        },
3963
3964   { "expandable_steelwall.growing.left",                "RocksDC2.png"                  },
3965   { "expandable_steelwall.growing.left.xpos",           "8"                             },
3966   { "expandable_steelwall.growing.left.ypos",           "4"                             },
3967   { "expandable_steelwall.growing.left.frames",         "4"                             },
3968   { "expandable_steelwall.growing.left.delay",          "4"                             },
3969   { "expandable_steelwall.growing.left.anim_mode",      "linear"                        },
3970   { "expandable_steelwall.growing.right",               "RocksDC2.png"                  },
3971   { "expandable_steelwall.growing.right.xpos",          "12"                            },
3972   { "expandable_steelwall.growing.right.ypos",          "4"                             },
3973   { "expandable_steelwall.growing.right.frames",        "4"                             },
3974   { "expandable_steelwall.growing.right.delay",         "4"                             },
3975   { "expandable_steelwall.growing.right.anim_mode",     "linear"                        },
3976   { "expandable_steelwall.growing.up",                  "RocksDC2.png"                  },
3977   { "expandable_steelwall.growing.up.xpos",             "8"                             },
3978   { "expandable_steelwall.growing.up.ypos",             "5"                             },
3979   { "expandable_steelwall.growing.up.frames",           "4"                             },
3980   { "expandable_steelwall.growing.up.delay",            "4"                             },
3981   { "expandable_steelwall.growing.up.anim_mode",        "linear"                        },
3982   { "expandable_steelwall.growing.down",                "RocksDC2.png"                  },
3983   { "expandable_steelwall.growing.down.xpos",           "12"                            },
3984   { "expandable_steelwall.growing.down.ypos",           "5"                             },
3985   { "expandable_steelwall.growing.down.frames",         "4"                             },
3986   { "expandable_steelwall.growing.down.delay",          "4"                             },
3987   { "expandable_steelwall.growing.down.anim_mode",      "linear"                        },
3988
3989   { "black_orb",                                        "RocksElements.png"             },
3990   { "black_orb.xpos",                                   "13"                            },
3991   { "black_orb.ypos",                                   "9"                             },
3992   { "black_orb.frames",                                 "1"                             },
3993
3994   { "speed_pill",                                       "RocksElements.png"             },
3995   { "speed_pill.xpos",                                  "14"                            },
3996   { "speed_pill.ypos",                                  "9"                             },
3997   { "speed_pill.frames",                                "1"                             },
3998   { "speed_pill.collecting",                            "RocksCollect.png"              },
3999   { "speed_pill.collecting.xpos",                       "0"                             },
4000   { "speed_pill.collecting.ypos",                       "2"                             },
4001   { "speed_pill.collecting.frames",                     "7"                             },
4002   { "speed_pill.collecting.anim_mode",                  "linear"                        },
4003
4004   { "dark_yamyam",                                      "RocksElements.png"             },
4005   { "dark_yamyam.xpos",                                 "8"                             },
4006   { "dark_yamyam.ypos",                                 "11"                            },
4007   { "dark_yamyam.frames",                               "4"                             },
4008   { "dark_yamyam.anim_mode",                            "pingpong2"                     },
4009
4010   { "dynabomb",                                         "RocksElements.png"             },
4011   { "dynabomb.xpos",                                    "12"                            },
4012   { "dynabomb.ypos",                                    "11"                            },
4013   { "dynabomb.frames",                                  "1"                             },
4014   { "dynabomb.active",                                  "RocksElements.png"             },
4015   { "dynabomb.active.xpos",                             "12"                            },
4016   { "dynabomb.active.ypos",                             "11"                            },
4017   { "dynabomb.active.frames",                           "4"                             },
4018   { "dynabomb.active.delay",                            "6"                             },
4019   { "dynabomb.active.anim_mode",                        "pingpong"                      },
4020   { "dynabomb_player_1",                                "RocksElements.png"             },
4021   { "dynabomb_player_1.xpos",                           "12"                            },
4022   { "dynabomb_player_1.ypos",                           "11"                            },
4023   { "dynabomb_player_1.frames",                         "1"                             },
4024   { "dynabomb_player_1.active",                         "RocksElements.png"             },
4025   { "dynabomb_player_1.active.xpos",                    "12"                            },
4026   { "dynabomb_player_1.active.ypos",                    "11"                            },
4027   { "dynabomb_player_1.active.frames",                  "4"                             },
4028   { "dynabomb_player_1.active.delay",                   "6"                             },
4029   { "dynabomb_player_1.active.anim_mode",               "pingpong"                      },
4030   { "dynabomb_player_2",                                "RocksElements.png"             },
4031   { "dynabomb_player_2.xpos",                           "12"                            },
4032   { "dynabomb_player_2.ypos",                           "11"                            },
4033   { "dynabomb_player_2.frames",                         "1"                             },
4034   { "dynabomb_player_2.active",                         "RocksElements.png"             },
4035   { "dynabomb_player_2.active.xpos",                    "12"                            },
4036   { "dynabomb_player_2.active.ypos",                    "11"                            },
4037   { "dynabomb_player_2.active.frames",                  "4"                             },
4038   { "dynabomb_player_2.active.delay",                   "6"                             },
4039   { "dynabomb_player_2.active.anim_mode",               "pingpong"                      },
4040   { "dynabomb_player_3",                                "RocksElements.png"             },
4041   { "dynabomb_player_3.xpos",                           "12"                            },
4042   { "dynabomb_player_3.ypos",                           "11"                            },
4043   { "dynabomb_player_3.frames",                         "1"                             },
4044   { "dynabomb_player_3.active",                         "RocksElements.png"             },
4045   { "dynabomb_player_3.active.xpos",                    "12"                            },
4046   { "dynabomb_player_3.active.ypos",                    "11"                            },
4047   { "dynabomb_player_3.active.frames",                  "4"                             },
4048   { "dynabomb_player_3.active.delay",                   "6"                             },
4049   { "dynabomb_player_3.active.anim_mode",               "pingpong"                      },
4050   { "dynabomb_player_4",                                "RocksElements.png"             },
4051   { "dynabomb_player_4.xpos",                           "12"                            },
4052   { "dynabomb_player_4.ypos",                           "11"                            },
4053   { "dynabomb_player_4.frames",                         "1"                             },
4054   { "dynabomb_player_4.active",                         "RocksElements.png"             },
4055   { "dynabomb_player_4.active.xpos",                    "12"                            },
4056   { "dynabomb_player_4.active.ypos",                    "11"                            },
4057   { "dynabomb_player_4.active.frames",                  "4"                             },
4058   { "dynabomb_player_4.active.delay",                   "6"                             },
4059   { "dynabomb_player_4.active.anim_mode",               "pingpong"                      },
4060   { "dynabomb_increase_number",                         "RocksElements.png"             },
4061   { "dynabomb_increase_number.xpos",                    "12"                            },
4062   { "dynabomb_increase_number.ypos",                    "11"                            },
4063   { "dynabomb_increase_number.frames",                  "1"                             },
4064   { "dynabomb_increase_number.collecting",              "RocksCollect.png"              },
4065   { "dynabomb_increase_number.collecting.xpos",         "0"                             },
4066   { "dynabomb_increase_number.collecting.ypos",         "10"                            },
4067   { "dynabomb_increase_number.collecting.frames",       "7"                             },
4068   { "dynabomb_increase_number.collecting.anim_mode",    "linear"                        },
4069   { "dynabomb_increase_size",                           "RocksElements.png"             },
4070   { "dynabomb_increase_size.xpos",                      "15"                            },
4071   { "dynabomb_increase_size.ypos",                      "11"                            },
4072   { "dynabomb_increase_size.frames",                    "1"                             },
4073   { "dynabomb_increase_size.collecting",                "RocksCollect.png"              },
4074   { "dynabomb_increase_size.collecting.xpos",           "0"                             },
4075   { "dynabomb_increase_size.collecting.ypos",           "11"                            },
4076   { "dynabomb_increase_size.collecting.frames",         "7"                             },
4077   { "dynabomb_increase_size.collecting.anim_mode",      "linear"                        },
4078   { "dynabomb_increase_power",                          "RocksElements.png"             },
4079   { "dynabomb_increase_power.xpos",                     "12"                            },
4080   { "dynabomb_increase_power.ypos",                     "9"                             },
4081   { "dynabomb_increase_power.frames",                   "1"                             },
4082   { "dynabomb_increase_power.collecting",               "RocksCollect.png"              },
4083   { "dynabomb_increase_power.collecting.xpos",          "0"                             },
4084   { "dynabomb_increase_power.collecting.ypos",          "12"                            },
4085   { "dynabomb_increase_power.collecting.frames",        "7"                             },
4086   { "dynabomb_increase_power.collecting.anim_mode",     "linear"                        },
4087
4088   { "pig",                                              "RocksHeroes.png"               },
4089   { "pig.xpos",                                         "8"                             },
4090   { "pig.ypos",                                         "0"                             },
4091   { "pig.frames",                                       "1"                             },
4092   { "pig.down",                                         "RocksHeroes.png"               },
4093   { "pig.down.xpos",                                    "8"                             },
4094   { "pig.down.ypos",                                    "0"                             },
4095   { "pig.down.frames",                                  "1"                             },
4096   { "pig.up",                                           "RocksHeroes.png"               },
4097   { "pig.up.xpos",                                      "12"                            },
4098   { "pig.up.ypos",                                      "0"                             },
4099   { "pig.up.frames",                                    "1"                             },
4100   { "pig.left",                                         "RocksHeroes.png"               },
4101   { "pig.left.xpos",                                    "8"                             },
4102   { "pig.left.ypos",                                    "1"                             },
4103   { "pig.left.frames",                                  "1"                             },
4104   { "pig.right",                                        "RocksHeroes.png"               },
4105   { "pig.right.xpos",                                   "12"                            },
4106   { "pig.right.ypos",                                   "1"                             },
4107   { "pig.right.frames",                                 "1"                             },
4108   { "pig.moving.down",                                  "RocksHeroes.png"               },
4109   { "pig.moving.down.xpos",                             "8"                             },
4110   { "pig.moving.down.ypos",                             "0"                             },
4111   { "pig.moving.down.frames",                           "4"                             },
4112   { "pig.moving.down.delay",                            "2"                             },
4113   { "pig.moving.up",                                    "RocksHeroes.png"               },
4114   { "pig.moving.up.xpos",                               "12"                            },
4115   { "pig.moving.up.ypos",                               "0"                             },
4116   { "pig.moving.up.frames",                             "4"                             },
4117   { "pig.moving.up.delay",                              "2"                             },
4118   { "pig.moving.left",                                  "RocksHeroes.png"               },
4119   { "pig.moving.left.xpos",                             "8"                             },
4120   { "pig.moving.left.ypos",                             "1"                             },
4121   { "pig.moving.left.frames",                           "4"                             },
4122   { "pig.moving.left.delay",                            "2"                             },
4123   { "pig.moving.right",                                 "RocksHeroes.png"               },
4124   { "pig.moving.right.xpos",                            "12"                            },
4125   { "pig.moving.right.ypos",                            "1"                             },
4126   { "pig.moving.right.frames",                          "4"                             },
4127   { "pig.moving.right.delay",                           "2"                             },
4128   { "pig.digging.down",                                 "RocksHeroes.png"               },
4129   { "pig.digging.down.xpos",                            "8"                             },
4130   { "pig.digging.down.ypos",                            "0"                             },
4131   { "pig.digging.down.frames",                          "4"                             },
4132   { "pig.digging.down.delay",                           "2"                             },
4133   { "pig.digging.up",                                   "RocksHeroes.png"               },
4134   { "pig.digging.up.xpos",                              "12"                            },
4135   { "pig.digging.up.ypos",                              "0"                             },
4136   { "pig.digging.up.frames",                            "4"                             },
4137   { "pig.digging.up.delay",                             "2"                             },
4138   { "pig.digging.left",                                 "RocksHeroes.png"               },
4139   { "pig.digging.left.xpos",                            "8"                             },
4140   { "pig.digging.left.ypos",                            "1"                             },
4141   { "pig.digging.left.frames",                          "4"                             },
4142   { "pig.digging.left.delay",                           "2"                             },
4143   { "pig.digging.right",                                "RocksHeroes.png"               },
4144   { "pig.digging.right.xpos",                           "12"                            },
4145   { "pig.digging.right.ypos",                           "1"                             },
4146   { "pig.digging.right.frames",                         "4"                             },
4147   { "pig.digging.right.delay",                          "2"                             },
4148
4149   { "dragon",                                           "RocksHeroes.png"               },
4150   { "dragon.xpos",                                      "8"                             },
4151   { "dragon.ypos",                                      "2"                             },
4152   { "dragon.frames",                                    "1"                             },
4153   { "dragon.down",                                      "RocksHeroes.png"               },
4154   { "dragon.down.xpos",                                 "8"                             },
4155   { "dragon.down.ypos",                                 "2"                             },
4156   { "dragon.down.frames",                               "1"                             },
4157   { "dragon.up",                                        "RocksHeroes.png"               },
4158   { "dragon.up.xpos",                                   "12"                            },
4159   { "dragon.up.ypos",                                   "2"                             },
4160   { "dragon.up.frames",                                 "1"                             },
4161   { "dragon.left",                                      "RocksHeroes.png"               },
4162   { "dragon.left.xpos",                                 "8"                             },
4163   { "dragon.left.ypos",                                 "3"                             },
4164   { "dragon.left.frames",                               "1"                             },
4165   { "dragon.right",                                     "RocksHeroes.png"               },
4166   { "dragon.right.xpos",                                "12"                            },
4167   { "dragon.right.ypos",                                "3"                             },
4168   { "dragon.right.frames",                              "1"                             },
4169   { "dragon.moving.down",                               "RocksHeroes.png"               },
4170   { "dragon.moving.down.xpos",                          "8"                             },
4171   { "dragon.moving.down.ypos",                          "2"                             },
4172   { "dragon.moving.down.frames",                        "4"                             },
4173   { "dragon.moving.down.delay",                         "2"                             },
4174   { "dragon.moving.up",                                 "RocksHeroes.png"               },
4175   { "dragon.moving.up.xpos",                            "12"                            },
4176   { "dragon.moving.up.ypos",                            "2"                             },
4177   { "dragon.moving.up.frames",                          "4"                             },
4178   { "dragon.moving.up.delay",                           "2"                             },
4179   { "dragon.moving.left",                               "RocksHeroes.png"               },
4180   { "dragon.moving.left.xpos",                          "8"                             },
4181   { "dragon.moving.left.ypos",                          "3"                             },
4182   { "dragon.moving.left.frames",                        "4"                             },
4183   { "dragon.moving.left.delay",                         "2"                             },
4184   { "dragon.moving.right",                              "RocksHeroes.png"               },
4185   { "dragon.moving.right.xpos",                         "12"                            },
4186   { "dragon.moving.right.ypos",                         "3"                             },
4187   { "dragon.moving.right.frames",                       "4"                             },
4188   { "dragon.moving.right.delay",                        "2"                             },
4189   { "dragon.attacking.down",                            "RocksHeroes.png"               },
4190   { "dragon.attacking.down.xpos",                       "8"                             },
4191   { "dragon.attacking.down.ypos",                       "2"                             },
4192   { "dragon.attacking.down.frames",                     "1"                             },
4193   { "dragon.attacking.up",                              "RocksHeroes.png"               },
4194   { "dragon.attacking.up.xpos",                         "12"                            },
4195   { "dragon.attacking.up.ypos",                         "2"                             },
4196   { "dragon.attacking.up.frames",                       "1"                             },
4197   { "dragon.attacking.left",                            "RocksHeroes.png"               },
4198   { "dragon.attacking.left.xpos",                       "8"                             },
4199   { "dragon.attacking.left.ypos",                       "3"                             },
4200   { "dragon.attacking.left.frames",                     "1"                             },
4201   { "dragon.attacking.right",                           "RocksHeroes.png"               },
4202   { "dragon.attacking.right.xpos",                      "12"                            },
4203   { "dragon.attacking.right.ypos",                      "3"                             },
4204   { "dragon.attacking.right.frames",                    "1"                             },
4205
4206   { "mole",                                             "RocksHeroes.png"               },
4207   { "mole.xpos",                                        "8"                             },
4208   { "mole.ypos",                                        "4"                             },
4209   { "mole.frames",                                      "1"                             },
4210   { "mole.down",                                        "RocksHeroes.png"               },
4211   { "mole.down.xpos",                                   "8"                             },
4212   { "mole.down.ypos",                                   "4"                             },
4213   { "mole.down.frames",                                 "1"                             },
4214   { "mole.up",                                          "RocksHeroes.png"               },
4215   { "mole.up.xpos",                                     "12"                            },
4216   { "mole.up.ypos",                                     "4"                             },
4217   { "mole.up.frames",                                   "1"                             },
4218   { "mole.left",                                        "RocksHeroes.png"               },
4219   { "mole.left.xpos",                                   "8"                             },
4220   { "mole.left.ypos",                                   "5"                             },
4221   { "mole.left.frames",                                 "1"                             },
4222   { "mole.right",                                       "RocksHeroes.png"               },
4223   { "mole.right.xpos",                                  "12"                            },
4224   { "mole.right.ypos",                                  "5"                             },
4225   { "mole.right.frames",                                "1"                             },
4226   { "mole.moving.down",                                 "RocksHeroes.png"               },
4227   { "mole.moving.down.xpos",                            "8"                             },
4228   { "mole.moving.down.ypos",                            "4"                             },
4229   { "mole.moving.down.frames",                          "4"                             },
4230   { "mole.moving.down.delay",                           "2"                             },
4231   { "mole.moving.up",                                   "RocksHeroes.png"               },
4232   { "mole.moving.up.xpos",                              "12"                            },
4233   { "mole.moving.up.ypos",                              "4"                             },
4234   { "mole.moving.up.frames",                            "4"                             },
4235   { "mole.moving.up.delay",                             "2"                             },
4236   { "mole.moving.left",                                 "RocksHeroes.png"               },
4237   { "mole.moving.left.xpos",                            "8"                             },
4238   { "mole.moving.left.ypos",                            "5"                             },
4239   { "mole.moving.left.frames",                          "4"                             },
4240   { "mole.moving.left.delay",                           "2"                             },
4241   { "mole.moving.right",                                "RocksHeroes.png"               },
4242   { "mole.moving.right.xpos",                           "12"                            },
4243   { "mole.moving.right.ypos",                           "5"                             },
4244   { "mole.moving.right.frames",                         "4"                             },
4245   { "mole.moving.right.delay",                          "2"                             },
4246   { "mole.digging.down",                                "RocksHeroes.png"               },
4247   { "mole.digging.down.xpos",                           "8"                             },
4248   { "mole.digging.down.ypos",                           "4"                             },
4249   { "mole.digging.down.frames",                         "4"                             },
4250   { "mole.digging.down.delay",                          "2"                             },
4251   { "mole.digging.up",                                  "RocksHeroes.png"               },
4252   { "mole.digging.up.xpos",                             "12"                            },
4253   { "mole.digging.up.ypos",                             "4"                             },
4254   { "mole.digging.up.frames",                           "4"                             },
4255   { "mole.digging.up.delay",                            "2"                             },
4256   { "mole.digging.left",                                "RocksHeroes.png"               },
4257   { "mole.digging.left.xpos",                           "8"                             },
4258   { "mole.digging.left.ypos",                           "5"                             },
4259   { "mole.digging.left.frames",                         "4"                             },
4260   { "mole.digging.left.delay",                          "2"                             },
4261   { "mole.digging.right",                               "RocksHeroes.png"               },
4262   { "mole.digging.right.xpos",                          "12"                            },
4263   { "mole.digging.right.ypos",                          "5"                             },
4264   { "mole.digging.right.frames",                        "4"                             },
4265   { "mole.digging.right.delay",                         "2"                             },
4266
4267   { "penguin",                                          "RocksHeroes.png"               },
4268   { "penguin.xpos",                                     "8"                             },
4269   { "penguin.ypos",                                     "6"                             },
4270   { "penguin.frames",                                   "1"                             },
4271   { "penguin.down",                                     "RocksHeroes.png"               },
4272   { "penguin.down.xpos",                                "8"                             },
4273   { "penguin.down.ypos",                                "6"                             },
4274   { "penguin.down.frames",                              "1"                             },
4275   { "penguin.up",                                       "RocksHeroes.png"               },
4276   { "penguin.up.xpos",                                  "12"                            },
4277   { "penguin.up.ypos",                                  "6"                             },
4278   { "penguin.up.frames",                                "1"                             },
4279   { "penguin.left",                                     "RocksHeroes.png"               },
4280   { "penguin.left.xpos",                                "8"                             },
4281   { "penguin.left.ypos",                                "7"                             },
4282   { "penguin.left.frames",                              "1"                             },
4283   { "penguin.right",                                    "RocksHeroes.png"               },
4284   { "penguin.right.xpos",                               "12"                            },
4285   { "penguin.right.ypos",                               "7"                             },
4286   { "penguin.right.frames",                             "1"                             },
4287   { "penguin.moving.down",                              "RocksHeroes.png"               },
4288   { "penguin.moving.down.xpos",                         "8"                             },
4289   { "penguin.moving.down.ypos",                         "6"                             },
4290   { "penguin.moving.down.frames",                       "4"                             },
4291   { "penguin.moving.down.delay",                        "2"                             },
4292   { "penguin.moving.up",                                "RocksHeroes.png"               },
4293   { "penguin.moving.up.xpos",                           "12"                            },
4294   { "penguin.moving.up.ypos",                           "6"                             },
4295   { "penguin.moving.up.frames",                         "4"                             },
4296   { "penguin.moving.up.delay",                          "2"                             },
4297   { "penguin.moving.left",                              "RocksHeroes.png"               },
4298   { "penguin.moving.left.xpos",                         "8"                             },
4299   { "penguin.moving.left.ypos",                         "7"                             },
4300   { "penguin.moving.left.frames",                       "4"                             },
4301   { "penguin.moving.left.delay",                        "2"                             },
4302   { "penguin.moving.right",                             "RocksHeroes.png"               },
4303   { "penguin.moving.right.xpos",                        "12"                            },
4304   { "penguin.moving.right.ypos",                        "7"                             },
4305   { "penguin.moving.right.frames",                      "4"                             },
4306   { "penguin.moving.right.delay",                       "2"                             },
4307
4308   { "satellite",                                        "RocksHeroes.png"               },
4309   { "satellite.xpos",                                   "8"                             },
4310   { "satellite.ypos",                                   "9"                             },
4311   { "satellite.frames",                                 "8"                             },
4312   { "satellite.delay",                                  "2"                             },
4313   { "satellite.global_sync",                            "true"                          },
4314
4315   { "flames_1_left",                                    "RocksHeroes.png"               },
4316   { "flames_1_left.xpos",                               "8"                             },
4317   { "flames_1_left.ypos",                               "12"                            },
4318   { "flames_1_left.frames",                             "2"                             },
4319   { "flames_1_left.offset",                             "96"                            },
4320   { "flames_2_left",                                    "RocksHeroes.png"               },
4321   { "flames_2_left.xpos",                               "9"                             },
4322   { "flames_2_left.ypos",                               "12"                            },
4323   { "flames_2_left.frames",                             "2"                             },
4324   { "flames_2_left.offset",                             "96"                            },
4325   { "flames_3_left",                                    "RocksHeroes.png"               },
4326   { "flames_3_left.xpos",                               "10"                            },
4327   { "flames_3_left.ypos",                               "12"                            },
4328   { "flames_3_left.frames",                             "2"                             },
4329   { "flames_3_left.offset",                             "96"                            },
4330
4331   { "flames_1_right",                                   "RocksHeroes.png"               },
4332   { "flames_1_right.xpos",                              "8"                             },
4333   { "flames_1_right.ypos",                              "13"                            },
4334   { "flames_1_right.frames",                            "2"                             },
4335   { "flames_1_right.offset",                            "96"                            },
4336   { "flames_2_right",                                   "RocksHeroes.png"               },
4337   { "flames_2_right.xpos",                              "9"                             },
4338   { "flames_2_right.ypos",                              "13"                            },
4339   { "flames_2_right.frames",                            "2"                             },
4340   { "flames_2_right.offset",                            "96"                            },
4341   { "flames_3_right",                                   "RocksHeroes.png"               },
4342   { "flames_3_right.xpos",                              "10"                            },
4343   { "flames_3_right.ypos",                              "13"                            },
4344   { "flames_3_right.frames",                            "2"                             },
4345   { "flames_3_right.offset",                            "96"                            },
4346
4347   { "flames_1_up",                                      "RocksHeroes.png"               },
4348   { "flames_1_up.xpos",                                 "8"                             },
4349   { "flames_1_up.ypos",                                 "14"                            },
4350   { "flames_1_up.frames",                               "2"                             },
4351   { "flames_1_up.offset",                               "96"                            },
4352   { "flames_2_up",                                      "RocksHeroes.png"               },
4353   { "flames_2_up.xpos",                                 "9"                             },
4354   { "flames_2_up.ypos",                                 "14"                            },
4355   { "flames_2_up.frames",                               "2"                             },
4356   { "flames_2_up.offset",                               "96"                            },
4357   { "flames_3_up",                                      "RocksHeroes.png"               },
4358   { "flames_3_up.xpos",                                 "10"                            },
4359   { "flames_3_up.ypos",                                 "14"                            },
4360   { "flames_3_up.frames",                               "2"                             },
4361   { "flames_3_up.offset",                               "96"                            },
4362
4363   { "flames_1_down",                                    "RocksHeroes.png"               },
4364   { "flames_1_down.xpos",                               "8"                             },
4365   { "flames_1_down.ypos",                               "15"                            },
4366   { "flames_1_down.frames",                             "2"                             },
4367   { "flames_1_down.offset",                             "96"                            },
4368   { "flames_2_down",                                    "RocksHeroes.png"               },
4369   { "flames_2_down.xpos",                               "9"                             },
4370   { "flames_2_down.ypos",                               "15"                            },
4371   { "flames_2_down.frames",                             "2"                             },
4372   { "flames_2_down.offset",                             "96"                            },
4373   { "flames_3_down",                                    "RocksHeroes.png"               },
4374   { "flames_3_down.xpos",                               "10"                            },
4375   { "flames_3_down.ypos",                               "15"                            },
4376   { "flames_3_down.frames",                             "2"                             },
4377   { "flames_3_down.offset",                             "96"                            },
4378
4379   { "stoneblock",                                       "RocksElements.png"             },
4380   { "stoneblock.xpos",                                  "10"                            },
4381   { "stoneblock.ypos",                                  "1"                             },
4382   { "stoneblock.frames",                                "1"                             },
4383
4384   // images for other elements and actions
4385
4386   { "player_1",                                         "RocksHeroes.png"               },
4387   { "player_1.xpos",                                    "0"                             },
4388   { "player_1.ypos",                                    "0"                             },
4389   { "player_1.frames",                                  "1"                             },
4390   { "player_1.down",                                    "RocksHeroes.png"               },
4391   { "player_1.down.xpos",                               "0"                             },
4392   { "player_1.down.ypos",                               "0"                             },
4393   { "player_1.down.frames",                             "1"                             },
4394   { "player_1.up",                                      "RocksHeroes.png"               },
4395   { "player_1.up.xpos",                                 "4"                             },
4396   { "player_1.up.ypos",                                 "0"                             },
4397   { "player_1.up.frames",                               "1"                             },
4398   { "player_1.left",                                    "RocksHeroes.png"               },
4399   { "player_1.left.xpos",                               "0"                             },
4400   { "player_1.left.ypos",                               "1"                             },
4401   { "player_1.left.frames",                             "1"                             },
4402   { "player_1.right",                                   "RocksHeroes.png"               },
4403   { "player_1.right.xpos",                              "4"                             },
4404   { "player_1.right.ypos",                              "1"                             },
4405   { "player_1.right.frames",                            "1"                             },
4406   { "player_1.moving.down",                             "RocksHeroes.png"               },
4407   { "player_1.moving.down.xpos",                        "0"                             },
4408   { "player_1.moving.down.ypos",                        "0"                             },
4409   { "player_1.moving.down.frames",                      "4"                             },
4410   { "player_1.moving.down.start_frame",                 "1"                             },
4411   { "player_1.moving.down.delay",                       "4"                             },
4412   { "player_1.moving.up",                               "RocksHeroes.png"               },
4413   { "player_1.moving.up.xpos",                          "4"                             },
4414   { "player_1.moving.up.ypos",                          "0"                             },
4415   { "player_1.moving.up.frames",                        "4"                             },
4416   { "player_1.moving.up.start_frame",                   "1"                             },
4417   { "player_1.moving.up.delay",                         "4"                             },
4418   { "player_1.moving.left",                             "RocksHeroes.png"               },
4419   { "player_1.moving.left.xpos",                        "0"                             },
4420   { "player_1.moving.left.ypos",                        "1"                             },
4421   { "player_1.moving.left.frames",                      "4"                             },
4422   { "player_1.moving.left.start_frame",                 "1"                             },
4423   { "player_1.moving.left.delay",                       "4"                             },
4424   { "player_1.moving.right",                            "RocksHeroes.png"               },
4425   { "player_1.moving.right.xpos",                       "4"                             },
4426   { "player_1.moving.right.ypos",                       "1"                             },
4427   { "player_1.moving.right.frames",                     "4"                             },
4428   { "player_1.moving.right.start_frame",                "1"                             },
4429   { "player_1.moving.right.delay",                      "4"                             },
4430   { "player_1.digging.down",                            "RocksHeroes.png"               },
4431   { "player_1.digging.down.xpos",                       "0"                             },
4432   { "player_1.digging.down.ypos",                       "0"                             },
4433   { "player_1.digging.down.frames",                     "4"                             },
4434   { "player_1.digging.down.start_frame",                "1"                             },
4435   { "player_1.digging.down.delay",                      "4"                             },
4436   { "player_1.digging.up",                              "RocksHeroes.png"               },
4437   { "player_1.digging.up.xpos",                         "4"                             },
4438   { "player_1.digging.up.ypos",                         "0"                             },
4439   { "player_1.digging.up.frames",                       "4"                             },
4440   { "player_1.digging.up.start_frame",                  "1"                             },
4441   { "player_1.digging.up.delay",                        "4"                             },
4442   { "player_1.digging.left",                            "RocksHeroes.png"               },
4443   { "player_1.digging.left.xpos",                       "0"                             },
4444   { "player_1.digging.left.ypos",                       "1"                             },
4445   { "player_1.digging.left.frames",                     "4"                             },
4446   { "player_1.digging.left.start_frame",                "1"                             },
4447   { "player_1.digging.left.delay",                      "4"                             },
4448   { "player_1.digging.right",                           "RocksHeroes.png"               },
4449   { "player_1.digging.right.xpos",                      "4"                             },
4450   { "player_1.digging.right.ypos",                      "1"                             },
4451   { "player_1.digging.right.frames",                    "4"                             },
4452   { "player_1.digging.right.start_frame",               "1"                             },
4453   { "player_1.digging.right.delay",                     "4"                             },
4454   { "player_1.collecting.down",                         "RocksHeroes.png"               },
4455   { "player_1.collecting.down.xpos",                    "0"                             },
4456   { "player_1.collecting.down.ypos",                    "0"                             },
4457   { "player_1.collecting.down.frames",                  "4"                             },
4458   { "player_1.collecting.down.start_frame",             "1"                             },
4459   { "player_1.collecting.down.delay",                   "4"                             },
4460   { "player_1.collecting.up",                           "RocksHeroes.png"               },
4461   { "player_1.collecting.up.xpos",                      "4"                             },
4462   { "player_1.collecting.up.ypos",                      "0"                             },
4463   { "player_1.collecting.up.frames",                    "4"                             },
4464   { "player_1.collecting.up.start_frame",               "1"                             },
4465   { "player_1.collecting.up.delay",                     "4"                             },
4466   { "player_1.collecting.left",                         "RocksHeroes.png"               },
4467   { "player_1.collecting.left.xpos",                    "0"                             },
4468   { "player_1.collecting.left.ypos",                    "1"                             },
4469   { "player_1.collecting.left.frames",                  "4"                             },
4470   { "player_1.collecting.left.start_frame",             "1"                             },
4471   { "player_1.collecting.left.delay",                   "4"                             },
4472   { "player_1.collecting.right",                        "RocksHeroes.png"               },
4473   { "player_1.collecting.right.xpos",                   "4"                             },
4474   { "player_1.collecting.right.ypos",                   "1"                             },
4475   { "player_1.collecting.right.frames",                 "4"                             },
4476   { "player_1.collecting.right.start_frame",            "1"                             },
4477   { "player_1.collecting.right.delay",                  "4"                             },
4478   { "player_1.pushing.down",                            "RocksHeroes.png"               },
4479   { "player_1.pushing.down.xpos",                       "0"                             },
4480   { "player_1.pushing.down.ypos",                       "0"                             },
4481   { "player_1.pushing.down.frames",                     "4"                             },
4482   { "player_1.pushing.down.delay",                      "4"                             },
4483   { "player_1.pushing.up",                              "RocksHeroes.png"               },
4484   { "player_1.pushing.up.xpos",                         "4"                             },
4485   { "player_1.pushing.up.ypos",                         "0"                             },
4486   { "player_1.pushing.up.frames",                       "4"                             },
4487   { "player_1.pushing.up.delay",                        "4"                             },
4488   { "player_1.pushing.left",                            "RocksHeroes.png"               },
4489   { "player_1.pushing.left.xpos",                       "4"                             },
4490   { "player_1.pushing.left.ypos",                       "2"                             },
4491   { "player_1.pushing.left.frames",                     "4"                             },
4492   { "player_1.pushing.left.delay",                      "4"                             },
4493   { "player_1.pushing.right",                           "RocksHeroes.png"               },
4494   { "player_1.pushing.right.xpos",                      "0"                             },
4495   { "player_1.pushing.right.ypos",                      "2"                             },
4496   { "player_1.pushing.right.frames",                    "4"                             },
4497   { "player_1.pushing.right.delay",                     "4"                             },
4498   { "player_1.snapping.down",                           "RocksHeroes.png"               },
4499   { "player_1.snapping.down.xpos",                      "0"                             },
4500   { "player_1.snapping.down.ypos",                      "0"                             },
4501   { "player_1.snapping.down.frames",                    "1"                             },
4502   { "player_1.snapping.up",                             "RocksHeroes.png"               },
4503   { "player_1.snapping.up.xpos",                        "4"                             },
4504   { "player_1.snapping.up.ypos",                        "0"                             },
4505   { "player_1.snapping.up.frames",                      "1"                             },
4506   { "player_1.snapping.left",                           "RocksHeroes.png"               },
4507   { "player_1.snapping.left.xpos",                      "0"                             },
4508   { "player_1.snapping.left.ypos",                      "1"                             },
4509   { "player_1.snapping.left.frames",                    "1"                             },
4510   { "player_1.snapping.right",                          "RocksHeroes.png"               },
4511   { "player_1.snapping.right.xpos",                     "4"                             },
4512   { "player_1.snapping.right.ypos",                     "1"                             },
4513   { "player_1.snapping.right.frames",                   "1"                             },
4514
4515   { "player_2",                                         "RocksHeroes.png"               },
4516   { "player_2.xpos",                                    "0"                             },
4517   { "player_2.ypos",                                    "3"                             },
4518   { "player_2.frames",                                  "1"                             },
4519   { "player_2.down",                                    "RocksHeroes.png"               },
4520   { "player_2.down.xpos",                               "0"                             },
4521   { "player_2.down.ypos",                               "3"                             },
4522   { "player_2.down.frames",                             "1"                             },
4523   { "player_2.up",                                      "RocksHeroes.png"               },
4524   { "player_2.up.xpos",                                 "4"                             },
4525   { "player_2.up.ypos",                                 "3"                             },
4526   { "player_2.up.frames",                               "1"                             },
4527   { "player_2.left",                                    "RocksHeroes.png"               },
4528   { "player_2.left.xpos",                               "0"                             },
4529   { "player_2.left.ypos",                               "4"                             },
4530   { "player_2.left.frames",                             "1"                             },
4531   { "player_2.right",                                   "RocksHeroes.png"               },
4532   { "player_2.right.xpos",                              "4"                             },
4533   { "player_2.right.ypos",                              "4"                             },
4534   { "player_2.right.frames",                            "1"                             },
4535   { "player_2.moving.down",                             "RocksHeroes.png"               },
4536   { "player_2.moving.down.xpos",                        "0"                             },
4537   { "player_2.moving.down.ypos",                        "3"                             },
4538   { "player_2.moving.down.frames",                      "4"                             },
4539   { "player_2.moving.down.start_frame",                 "1"                             },
4540   { "player_2.moving.down.delay",                       "4"                             },
4541   { "player_2.moving.up",                               "RocksHeroes.png"               },
4542   { "player_2.moving.up.xpos",                          "4"                             },
4543   { "player_2.moving.up.ypos",                          "3"                             },
4544   { "player_2.moving.up.frames",                        "4"                             },
4545   { "player_2.moving.up.start_frame",                   "1"                             },
4546   { "player_2.moving.up.delay",                         "4"                             },
4547   { "player_2.moving.left",                             "RocksHeroes.png"               },
4548   { "player_2.moving.left.xpos",                        "0"                             },
4549   { "player_2.moving.left.ypos",                        "4"                             },
4550   { "player_2.moving.left.frames",                      "4"                             },
4551   { "player_2.moving.left.start_frame",                 "1"                             },
4552   { "player_2.moving.left.delay",                       "4"                             },
4553   { "player_2.moving.right",                            "RocksHeroes.png"               },
4554   { "player_2.moving.right.xpos",                       "4"                             },
4555   { "player_2.moving.right.ypos",                       "4"                             },
4556   { "player_2.moving.right.frames",                     "4"                             },
4557   { "player_2.moving.right.start_frame",                "1"                             },
4558   { "player_2.moving.right.delay",                      "4"                             },
4559   { "player_2.digging.down",                            "RocksHeroes.png"               },
4560   { "player_2.digging.down.xpos",                       "0"                             },
4561   { "player_2.digging.down.ypos",                       "3"                             },
4562   { "player_2.digging.down.frames",                     "4"                             },
4563   { "player_2.digging.down.start_frame",                "1"                             },
4564   { "player_2.digging.down.delay",                      "4"                             },
4565   { "player_2.digging.up",                              "RocksHeroes.png"               },
4566   { "player_2.digging.up.xpos",                         "4"                             },
4567   { "player_2.digging.up.ypos",                         "3"                             },
4568   { "player_2.digging.up.frames",                       "4"                             },
4569   { "player_2.digging.up.start_frame",                  "1"                             },
4570   { "player_2.digging.up.delay",                        "4"                             },
4571   { "player_2.digging.left",                            "RocksHeroes.png"               },
4572   { "player_2.digging.left.xpos",                       "0"                             },
4573   { "player_2.digging.left.ypos",                       "4"                             },
4574   { "player_2.digging.left.frames",                     "4"                             },
4575   { "player_2.digging.left.start_frame",                "1"                             },
4576   { "player_2.digging.left.delay",                      "4"                             },
4577   { "player_2.digging.right",                           "RocksHeroes.png"               },
4578   { "player_2.digging.right.xpos",                      "4"                             },
4579   { "player_2.digging.right.ypos",                      "4"                             },
4580   { "player_2.digging.right.frames",                    "4"                             },
4581   { "player_2.digging.right.start_frame",               "1"                             },
4582   { "player_2.digging.right.delay",                     "4"                             },
4583   { "player_2.collecting.down",                         "RocksHeroes.png"               },
4584   { "player_2.collecting.down.xpos",                    "0"                             },
4585   { "player_2.collecting.down.ypos",                    "3"                             },
4586   { "player_2.collecting.down.frames",                  "4"                             },
4587   { "player_2.collecting.down.start_frame",             "1"                             },
4588   { "player_2.collecting.down.delay",                   "4"                             },
4589   { "player_2.collecting.up",                           "RocksHeroes.png"               },
4590   { "player_2.collecting.up.xpos",                      "4"                             },
4591   { "player_2.collecting.up.ypos",                      "3"                             },
4592   { "player_2.collecting.up.frames",                    "4"                             },
4593   { "player_2.collecting.up.start_frame",               "1"                             },
4594   { "player_2.collecting.up.delay",                     "4"                             },
4595   { "player_2.collecting.left",                         "RocksHeroes.png"               },
4596   { "player_2.collecting.left.xpos",                    "0"                             },
4597   { "player_2.collecting.left.ypos",                    "4"                             },
4598   { "player_2.collecting.left.frames",                  "4"                             },
4599   { "player_2.collecting.left.start_frame",             "1"                             },
4600   { "player_2.collecting.left.delay",                   "4"                             },
4601   { "player_2.collecting.right",                        "RocksHeroes.png"               },
4602   { "player_2.collecting.right.xpos",                   "4"                             },
4603   { "player_2.collecting.right.ypos",                   "4"                             },
4604   { "player_2.collecting.right.frames",                 "4"                             },
4605   { "player_2.collecting.right.start_frame",            "1"                             },
4606   { "player_2.collecting.right.delay",                  "4"                             },
4607   { "player_2.pushing.down",                            "RocksHeroes.png"               },
4608   { "player_2.pushing.down.xpos",                       "0"                             },
4609   { "player_2.pushing.down.ypos",                       "3"                             },
4610   { "player_2.pushing.down.frames",                     "4"                             },
4611   { "player_2.pushing.down.delay",                      "4"                             },
4612   { "player_2.pushing.up",                              "RocksHeroes.png"               },
4613   { "player_2.pushing.up.xpos",                         "4"                             },
4614   { "player_2.pushing.up.ypos",                         "3"                             },
4615   { "player_2.pushing.up.frames",                       "4"                             },
4616   { "player_2.pushing.up.delay",                        "4"                             },
4617   { "player_2.pushing.left",                            "RocksHeroes.png"               },
4618   { "player_2.pushing.left.xpos",                       "4"                             },
4619   { "player_2.pushing.left.ypos",                       "5"                             },
4620   { "player_2.pushing.left.frames",                     "4"                             },
4621   { "player_2.pushing.left.delay",                      "4"                             },
4622   { "player_2.pushing.right",                           "RocksHeroes.png"               },
4623   { "player_2.pushing.right.xpos",                      "0"                             },
4624   { "player_2.pushing.right.ypos",                      "5"                             },
4625   { "player_2.pushing.right.frames",                    "4"                             },
4626   { "player_2.pushing.right.delay",                     "4"                             },
4627   { "player_2.snapping.down",                           "RocksHeroes.png"               },
4628   { "player_2.snapping.down.xpos",                      "0"                             },
4629   { "player_2.snapping.down.ypos",                      "3"                             },
4630   { "player_2.snapping.down.frames",                    "1"                             },
4631   { "player_2.snapping.up",                             "RocksHeroes.png"               },
4632   { "player_2.snapping.up.xpos",                        "4"                             },
4633   { "player_2.snapping.up.ypos",                        "3"                             },
4634   { "player_2.snapping.up.frames",                      "1"                             },
4635   { "player_2.snapping.left",                           "RocksHeroes.png"               },
4636   { "player_2.snapping.left.xpos",                      "0"                             },
4637   { "player_2.snapping.left.ypos",                      "4"                             },
4638   { "player_2.snapping.left.frames",                    "1"                             },
4639   { "player_2.snapping.right",                          "RocksHeroes.png"               },
4640   { "player_2.snapping.right.xpos",                     "4"                             },
4641   { "player_2.snapping.right.ypos",                     "4"                             },
4642   { "player_2.snapping.right.frames",                   "1"                             },
4643
4644   { "player_3",                                         "RocksHeroes.png"               },
4645   { "player_3.xpos",                                    "0"                             },
4646   { "player_3.ypos",                                    "6"                             },
4647   { "player_3.frames",                                  "1"                             },
4648   { "player_3.down",                                    "RocksHeroes.png"               },
4649   { "player_3.down.xpos",                               "0"                             },
4650   { "player_3.down.ypos",                               "6"                             },
4651   { "player_3.down.frames",                             "1"                             },
4652   { "player_3.up",                                      "RocksHeroes.png"               },
4653   { "player_3.up.xpos",                                 "4"                             },
4654   { "player_3.up.ypos",                                 "6"                             },
4655   { "player_3.up.frames",                               "1"                             },
4656   { "player_3.left",                                    "RocksHeroes.png"               },
4657   { "player_3.left.xpos",                               "0"                             },
4658   { "player_3.left.ypos",                               "7"                             },
4659   { "player_3.left.frames",                             "1"                             },
4660   { "player_3.right",                                   "RocksHeroes.png"               },
4661   { "player_3.right.xpos",                              "4"                             },
4662   { "player_3.right.ypos",                              "7"                             },
4663   { "player_3.right.frames",                            "1"                             },
4664   { "player_3.moving.down",                             "RocksHeroes.png"               },
4665   { "player_3.moving.down.xpos",                        "0"                             },
4666   { "player_3.moving.down.ypos",                        "6"                             },
4667   { "player_3.moving.down.frames",                      "4"                             },
4668   { "player_3.moving.down.start_frame",                 "1"                             },
4669   { "player_3.moving.down.delay",                       "4"                             },
4670   { "player_3.moving.up",                               "RocksHeroes.png"               },
4671   { "player_3.moving.up.xpos",                          "4"                             },
4672   { "player_3.moving.up.ypos",                          "6"                             },
4673   { "player_3.moving.up.frames",                        "4"                             },
4674   { "player_3.moving.up.start_frame",                   "1"                             },
4675   { "player_3.moving.up.delay",                         "4"                             },
4676   { "player_3.moving.left",                             "RocksHeroes.png"               },
4677   { "player_3.moving.left.xpos",                        "0"                             },
4678   { "player_3.moving.left.ypos",                        "7"                             },
4679   { "player_3.moving.left.frames",                      "4"                             },
4680   { "player_3.moving.left.start_frame",                 "1"                             },
4681   { "player_3.moving.left.delay",                       "4"                             },
4682   { "player_3.moving.right",                            "RocksHeroes.png"               },
4683   { "player_3.moving.right.xpos",                       "4"                             },
4684   { "player_3.moving.right.ypos",                       "7"                             },
4685   { "player_3.moving.right.frames",                     "4"                             },
4686   { "player_3.moving.right.start_frame",                "1"                             },
4687   { "player_3.moving.right.delay",                      "4"                             },
4688   { "player_3.digging.down",                            "RocksHeroes.png"               },
4689   { "player_3.digging.down.xpos",                       "0"                             },
4690   { "player_3.digging.down.ypos",                       "6"                             },
4691   { "player_3.digging.down.frames",                     "4"                             },
4692   { "player_3.digging.down.start_frame",                "1"                             },
4693   { "player_3.digging.down.delay",                      "4"                             },
4694   { "player_3.digging.up",                              "RocksHeroes.png"               },
4695   { "player_3.digging.up.xpos",                         "4"                             },
4696   { "player_3.digging.up.ypos",                         "6"                             },
4697   { "player_3.digging.up.frames",                       "4"                             },
4698   { "player_3.digging.up.start_frame",                  "1"                             },
4699   { "player_3.digging.up.delay",                        "4"                             },
4700   { "player_3.digging.left",                            "RocksHeroes.png"               },
4701   { "player_3.digging.left.xpos",                       "0"                             },
4702   { "player_3.digging.left.ypos",                       "7"                             },
4703   { "player_3.digging.left.frames",                     "4"                             },
4704   { "player_3.digging.left.start_frame",                "1"                             },
4705   { "player_3.digging.left.delay",                      "4"                             },
4706   { "player_3.digging.right",                           "RocksHeroes.png"               },
4707   { "player_3.digging.right.xpos",                      "4"                             },
4708   { "player_3.digging.right.ypos",                      "7"                             },
4709   { "player_3.digging.right.frames",                    "4"                             },
4710   { "player_3.digging.right.start_frame",               "1"                             },
4711   { "player_3.digging.right.delay",                     "4"                             },
4712   { "player_3.collecting.down",                         "RocksHeroes.png"               },
4713   { "player_3.collecting.down.xpos",                    "0"                             },
4714   { "player_3.collecting.down.ypos",                    "6"                             },
4715   { "player_3.collecting.down.frames",                  "4"                             },
4716   { "player_3.collecting.down.start_frame",             "1"                             },
4717   { "player_3.collecting.down.delay",                   "4"                             },
4718   { "player_3.collecting.up",                           "RocksHeroes.png"               },
4719   { "player_3.collecting.up.xpos",                      "4"                             },
4720   { "player_3.collecting.up.ypos",                      "6"                             },
4721   { "player_3.collecting.up.frames",                    "4"                             },
4722   { "player_3.collecting.up.start_frame",               "1"                             },
4723   { "player_3.collecting.up.delay",                     "4"                             },
4724   { "player_3.collecting.left",                         "RocksHeroes.png"               },
4725   { "player_3.collecting.left.xpos",                    "0"                             },
4726   { "player_3.collecting.left.ypos",                    "7"                             },
4727   { "player_3.collecting.left.frames",                  "4"                             },
4728   { "player_3.collecting.left.start_frame",             "1"                             },
4729   { "player_3.collecting.left.delay",                   "4"                             },
4730   { "player_3.collecting.right",                        "RocksHeroes.png"               },
4731   { "player_3.collecting.right.xpos",                   "4"                             },
4732   { "player_3.collecting.right.ypos",                   "7"                             },
4733   { "player_3.collecting.right.frames",                 "4"                             },
4734   { "player_3.collecting.right.start_frame",            "1"                             },
4735   { "player_3.collecting.right.delay",                  "4"                             },
4736   { "player_3.pushing.down",                            "RocksHeroes.png"               },
4737   { "player_3.pushing.down.xpos",                       "0"                             },
4738   { "player_3.pushing.down.ypos",                       "6"                             },
4739   { "player_3.pushing.down.frames",                     "4"                             },
4740   { "player_3.pushing.down.delay",                      "4"                             },
4741   { "player_3.pushing.up",                              "RocksHeroes.png"               },
4742   { "player_3.pushing.up.xpos",                         "4"                             },
4743   { "player_3.pushing.up.ypos",                         "6"                             },
4744   { "player_3.pushing.up.frames",                       "4"                             },
4745   { "player_3.pushing.up.delay",                        "4"                             },
4746   { "player_3.pushing.left",                            "RocksHeroes.png"               },
4747   { "player_3.pushing.left.xpos",                       "4"                             },
4748   { "player_3.pushing.left.ypos",                       "8"                             },
4749   { "player_3.pushing.left.frames",                     "4"                             },
4750   { "player_3.pushing.left.delay",                      "4"                             },
4751   { "player_3.pushing.right",                           "RocksHeroes.png"               },
4752   { "player_3.pushing.right.xpos",                      "0"                             },
4753   { "player_3.pushing.right.ypos",                      "8"                             },
4754   { "player_3.pushing.right.frames",                    "4"                             },
4755   { "player_3.pushing.right.delay",                     "4"                             },
4756   { "player_3.snapping.down",                           "RocksHeroes.png"               },
4757   { "player_3.snapping.down.xpos",                      "0"                             },
4758   { "player_3.snapping.down.ypos",                      "6"                             },
4759   { "player_3.snapping.down.frames",                    "1"                             },
4760   { "player_3.snapping.up",                             "RocksHeroes.png"               },
4761   { "player_3.snapping.up.xpos",                        "4"                             },
4762   { "player_3.snapping.up.ypos",                        "6"                             },
4763   { "player_3.snapping.up.frames",                      "1"                             },
4764   { "player_3.snapping.left",                           "RocksHeroes.png"               },
4765   { "player_3.snapping.left.xpos",                      "0"                             },
4766   { "player_3.snapping.left.ypos",                      "7"                             },
4767   { "player_3.snapping.left.frames",                    "1"                             },
4768   { "player_3.snapping.right",                          "RocksHeroes.png"               },
4769   { "player_3.snapping.right.xpos",                     "4"                             },
4770   { "player_3.snapping.right.ypos",                     "7"                             },
4771   { "player_3.snapping.right.frames",                   "1"                             },
4772
4773   { "player_4",                                         "RocksHeroes.png"               },
4774   { "player_4.xpos",                                    "0"                             },
4775   { "player_4.ypos",                                    "9"                             },
4776   { "player_4.frames",                                  "1"                             },
4777   { "player_4.down",                                    "RocksHeroes.png"               },
4778   { "player_4.down.xpos",                               "0"                             },
4779   { "player_4.down.ypos",                               "9"                             },
4780   { "player_4.down.frames",                             "1"                             },
4781   { "player_4.up",                                      "RocksHeroes.png"               },
4782   { "player_4.up.xpos",                                 "4"                             },
4783   { "player_4.up.ypos",                                 "9"                             },
4784   { "player_4.up.frames",                               "1"                             },
4785   { "player_4.left",                                    "RocksHeroes.png"               },
4786   { "player_4.left.xpos",                               "0"                             },
4787   { "player_4.left.ypos",                               "10"                            },
4788   { "player_4.left.frames",                             "1"                             },
4789   { "player_4.right",                                   "RocksHeroes.png"               },
4790   { "player_4.right.xpos",                              "4"                             },
4791   { "player_4.right.ypos",                              "10"                            },
4792   { "player_4.right.frames",                            "1"                             },
4793   { "player_4.moving.down",                             "RocksHeroes.png"               },
4794   { "player_4.moving.down.xpos",                        "0"                             },
4795   { "player_4.moving.down.ypos",                        "9"                             },
4796   { "player_4.moving.down.frames",                      "4"                             },
4797   { "player_4.moving.down.start_frame",                 "1"                             },
4798   { "player_4.moving.down.delay",                       "4"                             },
4799   { "player_4.moving.up",                               "RocksHeroes.png"               },
4800   { "player_4.moving.up.xpos",                          "4"                             },
4801   { "player_4.moving.up.ypos",                          "9"                             },
4802   { "player_4.moving.up.frames",                        "4"                             },
4803   { "player_4.moving.up.start_frame",                   "1"                             },
4804   { "player_4.moving.up.delay",                         "4"                             },
4805   { "player_4.moving.left",                             "RocksHeroes.png"               },
4806   { "player_4.moving.left.xpos",                        "0"                             },
4807   { "player_4.moving.left.ypos",                        "10"                            },
4808   { "player_4.moving.left.frames",                      "4"                             },
4809   { "player_4.moving.left.start_frame",                 "1"                             },
4810   { "player_4.moving.left.delay",                       "4"                             },
4811   { "player_4.moving.right",                            "RocksHeroes.png"               },
4812   { "player_4.moving.right.xpos",                       "4"                             },
4813   { "player_4.moving.right.ypos",                       "10"                            },
4814   { "player_4.moving.right.frames",                     "4"                             },
4815   { "player_4.moving.right.start_frame",                "1"                             },
4816   { "player_4.moving.right.delay",                      "4"                             },
4817   { "player_4.digging.down",                            "RocksHeroes.png"               },
4818   { "player_4.digging.down.xpos",                       "0"                             },
4819   { "player_4.digging.down.ypos",                       "9"                             },
4820   { "player_4.digging.down.frames",                     "4"                             },
4821   { "player_4.digging.down.start_frame",                "1"                             },
4822   { "player_4.digging.down.delay",                      "4"                             },
4823   { "player_4.digging.up",                              "RocksHeroes.png"               },
4824   { "player_4.digging.up.xpos",                         "4"                             },
4825   { "player_4.digging.up.ypos",                         "9"                             },
4826   { "player_4.digging.up.frames",                       "4"                             },
4827   { "player_4.digging.up.start_frame",                  "1"                             },
4828   { "player_4.digging.up.delay",                        "4"                             },
4829   { "player_4.digging.left",                            "RocksHeroes.png"               },
4830   { "player_4.digging.left.xpos",                       "0"                             },
4831   { "player_4.digging.left.ypos",                       "10"                            },
4832   { "player_4.digging.left.frames",                     "4"                             },
4833   { "player_4.digging.left.start_frame",                "1"                             },
4834   { "player_4.digging.left.delay",                      "4"                             },
4835   { "player_4.digging.right",                           "RocksHeroes.png"               },
4836   { "player_4.digging.right.xpos",                      "4"                             },
4837   { "player_4.digging.right.ypos",                      "10"                            },
4838   { "player_4.digging.right.frames",                    "4"                             },
4839   { "player_4.digging.right.start_frame",               "1"                             },
4840   { "player_4.digging.right.delay",                     "4"                             },
4841   { "player_4.collecting.down",                         "RocksHeroes.png"               },
4842   { "player_4.collecting.down.xpos",                    "0"                             },
4843   { "player_4.collecting.down.ypos",                    "9"                             },
4844   { "player_4.collecting.down.frames",                  "4"                             },
4845   { "player_4.collecting.down.start_frame",             "1"                             },
4846   { "player_4.collecting.down.delay",                   "4"                             },
4847   { "player_4.collecting.up",                           "RocksHeroes.png"               },
4848   { "player_4.collecting.up.xpos",                      "4"                             },
4849   { "player_4.collecting.up.ypos",                      "9"                             },
4850   { "player_4.collecting.up.frames",                    "4"                             },
4851   { "player_4.collecting.up.start_frame",               "1"                             },
4852   { "player_4.collecting.up.delay",                     "4"                             },
4853   { "player_4.collecting.left",                         "RocksHeroes.png"               },
4854   { "player_4.collecting.left.xpos",                    "0"                             },
4855   { "player_4.collecting.left.ypos",                    "10"                            },
4856   { "player_4.collecting.left.frames",                  "4"                             },
4857   { "player_4.collecting.left.start_frame",             "1"                             },
4858   { "player_4.collecting.left.delay",                   "4"                             },
4859   { "player_4.collecting.right",                        "RocksHeroes.png"               },
4860   { "player_4.collecting.right.xpos",                   "4"                             },
4861   { "player_4.collecting.right.ypos",                   "10"                            },
4862   { "player_4.collecting.right.frames",                 "4"                             },
4863   { "player_4.collecting.right.start_frame",            "1"                             },
4864   { "player_4.collecting.right.delay",                  "4"                             },
4865   { "player_4.pushing.down",                            "RocksHeroes.png"               },
4866   { "player_4.pushing.down.xpos",                       "0"                             },
4867   { "player_4.pushing.down.ypos",                       "9"                             },
4868   { "player_4.pushing.down.frames",                     "4"                             },
4869   { "player_4.pushing.down.delay",                      "4"                             },
4870   { "player_4.pushing.up",                              "RocksHeroes.png"               },
4871   { "player_4.pushing.up.xpos",                         "4"                             },
4872   { "player_4.pushing.up.ypos",                         "9"                             },
4873   { "player_4.pushing.up.frames",                       "4"                             },
4874   { "player_4.pushing.up.delay",                        "4"                             },
4875   { "player_4.pushing.left",                            "RocksHeroes.png"               },
4876   { "player_4.pushing.left.xpos",                       "4"                             },
4877   { "player_4.pushing.left.ypos",                       "11"                            },
4878   { "player_4.pushing.left.frames",                     "4"                             },
4879   { "player_4.pushing.left.delay",                      "4"                             },
4880   { "player_4.pushing.right",                           "RocksHeroes.png"               },
4881   { "player_4.pushing.right.xpos",                      "0"                             },
4882   { "player_4.pushing.right.ypos",                      "11"                            },
4883   { "player_4.pushing.right.frames",                    "4"                             },
4884   { "player_4.pushing.right.delay",                     "4"                             },
4885   { "player_4.snapping.down",                           "RocksHeroes.png"               },
4886   { "player_4.snapping.down.xpos",                      "0"                             },
4887   { "player_4.snapping.down.ypos",                      "9"                             },
4888   { "player_4.snapping.down.frames",                    "1"                             },
4889   { "player_4.snapping.up",                             "RocksHeroes.png"               },
4890   { "player_4.snapping.up.xpos",                        "4"                             },
4891   { "player_4.snapping.up.ypos",                        "9"                             },
4892   { "player_4.snapping.up.frames",                      "1"                             },
4893   { "player_4.snapping.left",                           "RocksHeroes.png"               },
4894   { "player_4.snapping.left.xpos",                      "0"                             },
4895   { "player_4.snapping.left.ypos",                      "10"                            },
4896   { "player_4.snapping.left.frames",                    "1"                             },
4897   { "player_4.snapping.right",                          "RocksHeroes.png"               },
4898   { "player_4.snapping.right.xpos",                     "4"                             },
4899   { "player_4.snapping.right.ypos",                     "10"                            },
4900   { "player_4.snapping.right.frames",                   "1"                             },
4901
4902   { "[default].exploding",                              "RocksElements.png"             },
4903   { "[default].exploding.xpos",                         "0"                             },
4904   { "[default].exploding.ypos",                         "4"                             },
4905   { "[default].exploding.frames",                       "8"                             },
4906   { "[default].exploding.delay",                        "2"                             },
4907   { "[default].exploding.anim_mode",                    "linear"                        },
4908
4909   { "twinkle_blue",                                     "RocksHeroes.png"               },
4910   { "twinkle_blue.xpos",                                "9"                             },
4911   { "twinkle_blue.ypos",                                "11"                            },
4912   { "twinkle_blue.frames",                              "3"                             },
4913   { "twinkle_blue.delay",                               "2"                             },
4914   { "twinkle_blue.anim_mode",                           "pingpong"                      },
4915   { "twinkle_blue.global_sync",                         "false"                         },
4916   { "twinkle_white",                                    "RocksHeroes.png"               },
4917   { "twinkle_white.xpos",                               "13"                            },
4918   { "twinkle_white.ypos",                               "11"                            },
4919   { "twinkle_white.frames",                             "3"                             },
4920   { "twinkle_white.delay",                              "2"                             },
4921   { "twinkle_white.anim_mode",                          "pingpong"                      },
4922   { "twinkle_white.global_sync",                        "false"                         },
4923
4924   { "steelwall_topleft",                                "RocksElements.png"             },
4925   { "steelwall_topleft.xpos",                           "4"                             },
4926   { "steelwall_topleft.ypos",                           "0"                             },
4927   { "steelwall_topleft.frames",                         "1"                             },
4928   { "steelwall_topright",                               "RocksElements.png"             },
4929   { "steelwall_topright.xpos",                          "4"                             },
4930   { "steelwall_topright.ypos",                          "0"                             },
4931   { "steelwall_topright.frames",                        "1"                             },
4932   { "steelwall_bottomleft",                             "RocksElements.png"             },
4933   { "steelwall_bottomleft.xpos",                        "4"                             },
4934   { "steelwall_bottomleft.ypos",                        "0"                             },
4935   { "steelwall_bottomleft.frames",                      "1"                             },
4936   { "steelwall_bottomright",                            "RocksElements.png"             },
4937   { "steelwall_bottomright.xpos",                       "4"                             },
4938   { "steelwall_bottomright.ypos",                       "0"                             },
4939   { "steelwall_bottomright.frames",                     "1"                             },
4940   { "steelwall_horizontal",                             "RocksElements.png"             },
4941   { "steelwall_horizontal.xpos",                        "4"                             },
4942   { "steelwall_horizontal.ypos",                        "0"                             },
4943   { "steelwall_horizontal.frames",                      "1"                             },
4944   { "steelwall_vertical",                               "RocksElements.png"             },
4945   { "steelwall_vertical.xpos",                          "4"                             },
4946   { "steelwall_vertical.ypos",                          "0"                             },
4947   { "steelwall_vertical.frames",                        "1"                             },
4948
4949   { "steelwall_topleft.EDITOR",                         "RocksElements.png"             },
4950   { "steelwall_topleft.EDITOR.xpos",                    "0"                             },
4951   { "steelwall_topleft.EDITOR.ypos",                    "13"                            },
4952   { "steelwall_topright.EDITOR",                        "RocksElements.png"             },
4953   { "steelwall_topright.EDITOR.xpos",                   "1"                             },
4954   { "steelwall_topright.EDITOR.ypos",                   "13"                            },
4955   { "steelwall_bottomleft.EDITOR",                      "RocksElements.png"             },
4956   { "steelwall_bottomleft.EDITOR.xpos",                 "2"                             },
4957   { "steelwall_bottomleft.EDITOR.ypos",                 "13"                            },
4958   { "steelwall_bottomright.EDITOR",                     "RocksElements.png"             },
4959   { "steelwall_bottomright.EDITOR.xpos",                "3"                             },
4960   { "steelwall_bottomright.EDITOR.ypos",                "13"                            },
4961   { "steelwall_horizontal.EDITOR",                      "RocksElements.png"             },
4962   { "steelwall_horizontal.EDITOR.xpos",                 "4"                             },
4963   { "steelwall_horizontal.EDITOR.ypos",                 "13"                            },
4964   { "steelwall_vertical.EDITOR",                        "RocksElements.png"             },
4965   { "steelwall_vertical.EDITOR.xpos",                   "5"                             },
4966   { "steelwall_vertical.EDITOR.ypos",                   "13"                            },
4967
4968   { "invisible_steelwall_topleft",                      "RocksSP.png"                   },
4969   { "invisible_steelwall_topleft.xpos",                 "0"                             },
4970   { "invisible_steelwall_topleft.ypos",                 "0"                             },
4971   { "invisible_steelwall_topleft.frames",               "1"                             },
4972   { "invisible_steelwall_topright",                     "RocksSP.png"                   },
4973   { "invisible_steelwall_topright.xpos",                "0"                             },
4974   { "invisible_steelwall_topright.ypos",                "0"                             },
4975   { "invisible_steelwall_topright.frames",              "1"                             },
4976   { "invisible_steelwall_bottomleft",                   "RocksSP.png"                   },
4977   { "invisible_steelwall_bottomleft.xpos",              "0"                             },
4978   { "invisible_steelwall_bottomleft.ypos",              "0"                             },
4979   { "invisible_steelwall_bottomleft.frames",            "1"                             },
4980   { "invisible_steelwall_bottomright",                  "RocksSP.png"                   },
4981   { "invisible_steelwall_bottomright.xpos",             "0"                             },
4982   { "invisible_steelwall_bottomright.ypos",             "0"                             },
4983   { "invisible_steelwall_bottomright.frames",           "1"                             },
4984   { "invisible_steelwall_horizontal",                   "RocksSP.png"                   },
4985   { "invisible_steelwall_horizontal.xpos",              "0"                             },
4986   { "invisible_steelwall_horizontal.ypos",              "0"                             },
4987   { "invisible_steelwall_horizontal.frames",            "1"                             },
4988   { "invisible_steelwall_vertical",                     "RocksSP.png"                   },
4989   { "invisible_steelwall_vertical.xpos",                "0"                             },
4990   { "invisible_steelwall_vertical.ypos",                "0"                             },
4991   { "invisible_steelwall_vertical.frames",              "1"                             },
4992
4993   { "invisible_steelwall_topleft.EDITOR",               "RocksElements.png"             },
4994   { "invisible_steelwall_topleft.EDITOR.xpos",          "6"                             },
4995   { "invisible_steelwall_topleft.EDITOR.ypos",          "13"                            },
4996   { "invisible_steelwall_topright.EDITOR",              "RocksElements.png"             },
4997   { "invisible_steelwall_topright.EDITOR.xpos",         "7"                             },
4998   { "invisible_steelwall_topright.EDITOR.ypos",         "13"                            },
4999   { "invisible_steelwall_bottomleft.EDITOR",            "RocksElements.png"             },
5000   { "invisible_steelwall_bottomleft.EDITOR.xpos",       "8"                             },
5001   { "invisible_steelwall_bottomleft.EDITOR.ypos",       "13"                            },
5002   { "invisible_steelwall_bottomright.EDITOR",           "RocksElements.png"             },
5003   { "invisible_steelwall_bottomright.EDITOR.xpos",      "9"                             },
5004   { "invisible_steelwall_bottomright.EDITOR.ypos",      "13"                            },
5005   { "invisible_steelwall_horizontal.EDITOR",            "RocksElements.png"             },
5006   { "invisible_steelwall_horizontal.EDITOR.xpos",       "10"                            },
5007   { "invisible_steelwall_horizontal.EDITOR.ypos",       "13"                            },
5008   { "invisible_steelwall_vertical.EDITOR",              "RocksElements.png"             },
5009   { "invisible_steelwall_vertical.EDITOR.xpos",         "11"                            },
5010   { "invisible_steelwall_vertical.EDITOR.ypos",         "13"                            },
5011
5012   { "arrow_left",                                       "RocksDC.png"                   },
5013   { "arrow_left.xpos",                                  "8"                             },
5014   { "arrow_left.ypos",                                  "8"                             },
5015   { "arrow_left.frames",                                "1"                             },
5016   { "arrow_right",                                      "RocksDC.png"                   },
5017   { "arrow_right.xpos",                                 "9"                             },
5018   { "arrow_right.ypos",                                 "8"                             },
5019   { "arrow_right.frames",                               "1"                             },
5020   { "arrow_up",                                         "RocksDC.png"                   },
5021   { "arrow_up.xpos",                                    "10"                            },
5022   { "arrow_up.ypos",                                    "8"                             },
5023   { "arrow_up.frames",                                  "1"                             },
5024   { "arrow_down",                                       "RocksDC.png"                   },
5025   { "arrow_down.xpos",                                  "11"                            },
5026   { "arrow_down.ypos",                                  "8"                             },
5027   { "arrow_down.frames",                                "1"                             },
5028
5029   { "unknown",                                          "RocksFontEM.png"               },
5030   { "unknown.xpos",                                     "15"                            },
5031   { "unknown.ypos",                                     "1"                             },
5032   { "unknown.frames",                                   "1"                             },
5033
5034   { "trigger_element",                                  "RocksDC.png"                   },
5035   { "trigger_element.xpos",                             "15"                            },
5036   { "trigger_element.ypos",                             "14"                            },
5037   { "trigger_element.frames",                           "1"                             },
5038
5039   { "trigger_player",                                   "RocksDC.png"                   },
5040   { "trigger_player.xpos",                              "15"                            },
5041   { "trigger_player.ypos",                              "13"                            },
5042   { "trigger_player.frames",                            "1"                             },
5043
5044   { "trigger_ce_value",                                 "RocksDC.png"                   },
5045   { "trigger_ce_value.xpos",                            "15"                            },
5046   { "trigger_ce_value.ypos",                            "11"                            },
5047   { "trigger_ce_value.frames",                          "1"                             },
5048
5049   { "trigger_ce_score",                                 "RocksDC.png"                   },
5050   { "trigger_ce_score.xpos",                            "15"                            },
5051   { "trigger_ce_score.ypos",                            "12"                            },
5052   { "trigger_ce_score.frames",                          "1"                             },
5053
5054   { "current_ce_value",                                 "RocksDC.png"                   },
5055   { "current_ce_value.xpos",                            "14"                            },
5056   { "current_ce_value.ypos",                            "11"                            },
5057   { "current_ce_value.frames",                          "1"                             },
5058
5059   { "current_ce_score",                                 "RocksDC.png"                   },
5060   { "current_ce_score.xpos",                            "14"                            },
5061   { "current_ce_score.ypos",                            "12"                            },
5062   { "current_ce_score.frames",                          "1"                             },
5063
5064   { "prev_ce_1",                                        "RocksMore.png"                 },
5065   { "prev_ce_1.xpos",                                   "0"                             },
5066   { "prev_ce_1.ypos",                                   "7"                             },
5067   { "prev_ce_1.frames",                                 "1"                             },
5068
5069   { "prev_ce_2",                                        "RocksMore.png"                 },
5070   { "prev_ce_2.xpos",                                   "1"                             },
5071   { "prev_ce_2.ypos",                                   "7"                             },
5072   { "prev_ce_2.frames",                                 "1"                             },
5073
5074   { "prev_ce_3",                                        "RocksMore.png"                 },
5075   { "prev_ce_3.xpos",                                   "2"                             },
5076   { "prev_ce_3.ypos",                                   "7"                             },
5077   { "prev_ce_3.frames",                                 "1"                             },
5078
5079   { "prev_ce_4",                                        "RocksMore.png"                 },
5080   { "prev_ce_4.xpos",                                   "3"                             },
5081   { "prev_ce_4.ypos",                                   "7"                             },
5082   { "prev_ce_4.frames",                                 "1"                             },
5083
5084   { "prev_ce_5",                                        "RocksMore.png"                 },
5085   { "prev_ce_5.xpos",                                   "4"                             },
5086   { "prev_ce_5.ypos",                                   "7"                             },
5087   { "prev_ce_5.frames",                                 "1"                             },
5088
5089   { "prev_ce_6",                                        "RocksMore.png"                 },
5090   { "prev_ce_6.xpos",                                   "5"                             },
5091   { "prev_ce_6.ypos",                                   "7"                             },
5092   { "prev_ce_6.frames",                                 "1"                             },
5093
5094   { "prev_ce_7",                                        "RocksMore.png"                 },
5095   { "prev_ce_7.xpos",                                   "6"                             },
5096   { "prev_ce_7.ypos",                                   "7"                             },
5097   { "prev_ce_7.frames",                                 "1"                             },
5098
5099   { "prev_ce_8",                                        "RocksMore.png"                 },
5100   { "prev_ce_8.xpos",                                   "7"                             },
5101   { "prev_ce_8.ypos",                                   "7"                             },
5102   { "prev_ce_8.frames",                                 "1"                             },
5103
5104   { "next_ce_1",                                        "RocksMore.png"                 },
5105   { "next_ce_1.xpos",                                   "0"                             },
5106   { "next_ce_1.ypos",                                   "8"                             },
5107   { "next_ce_1.frames",                                 "1"                             },
5108
5109   { "next_ce_2",                                        "RocksMore.png"                 },
5110   { "next_ce_2.xpos",                                   "1"                             },
5111   { "next_ce_2.ypos",                                   "8"                             },
5112   { "next_ce_2.frames",                                 "1"                             },
5113
5114   { "next_ce_3",                                        "RocksMore.png"                 },
5115   { "next_ce_3.xpos",                                   "2"                             },
5116   { "next_ce_3.ypos",                                   "8"                             },
5117   { "next_ce_3.frames",                                 "1"                             },
5118
5119   { "next_ce_4",                                        "RocksMore.png"                 },
5120   { "next_ce_4.xpos",                                   "3"                             },
5121   { "next_ce_4.ypos",                                   "8"                             },
5122   { "next_ce_4.frames",                                 "1"                             },
5123
5124   { "next_ce_5",                                        "RocksMore.png"                 },
5125   { "next_ce_5.xpos",                                   "4"                             },
5126   { "next_ce_5.ypos",                                   "8"                             },
5127   { "next_ce_5.frames",                                 "1"                             },
5128
5129   { "next_ce_6",                                        "RocksMore.png"                 },
5130   { "next_ce_6.xpos",                                   "5"                             },
5131   { "next_ce_6.ypos",                                   "8"                             },
5132   { "next_ce_6.frames",                                 "1"                             },
5133
5134   { "next_ce_7",                                        "RocksMore.png"                 },
5135   { "next_ce_7.xpos",                                   "6"                             },
5136   { "next_ce_7.ypos",                                   "8"                             },
5137   { "next_ce_7.frames",                                 "1"                             },
5138
5139   { "next_ce_8",                                        "RocksMore.png"                 },
5140   { "next_ce_8.xpos",                                   "7"                             },
5141   { "next_ce_8.ypos",                                   "8"                             },
5142   { "next_ce_8.frames",                                 "1"                             },
5143
5144   { "self",                                             "RocksMore.png"                 },
5145   { "self.xpos",                                        "8"                             },
5146   { "self.ypos",                                        "7"                             },
5147   { "self.frames",                                      "1"                             },
5148
5149   { "any_element",                                      "RocksMore.png"                 },
5150   { "any_element.xpos",                                 "9"                             },
5151   { "any_element.ypos",                                 "7"                             },
5152   { "any_element.frames",                               "1"                             },
5153
5154   { "emc_key_5",                                        "RocksEMC.png"                  },
5155   { "emc_key_5.xpos",                                   "0"                             },
5156   { "emc_key_5.ypos",                                   "5"                             },
5157   { "emc_key_5.frames",                                 "1"                             },
5158   { "emc_key_5.collecting",                             "RocksCollect.png"              },
5159   { "emc_key_5.collecting.xpos",                        "7"                             },
5160   { "emc_key_5.collecting.ypos",                        "12"                            },
5161   { "emc_key_5.collecting.frames",                      "7"                             },
5162   { "emc_key_5.collecting.anim_mode",                   "linear"                        },
5163   { "emc_key_6",                                        "RocksEMC.png"                  },
5164   { "emc_key_6.xpos",                                   "1"                             },
5165   { "emc_key_6.ypos",                                   "5"                             },
5166   { "emc_key_6.frames",                                 "1"                             },
5167   { "emc_key_6.collecting",                             "RocksCollect.png"              },
5168   { "emc_key_6.collecting.xpos",                        "7"                             },
5169   { "emc_key_6.collecting.ypos",                        "13"                            },
5170   { "emc_key_6.collecting.frames",                      "7"                             },
5171   { "emc_key_6.collecting.anim_mode",                   "linear"                        },
5172   { "emc_key_7",                                        "RocksEMC.png"                  },
5173   { "emc_key_7.xpos",                                   "2"                             },
5174   { "emc_key_7.ypos",                                   "5"                             },
5175   { "emc_key_7.frames",                                 "1"                             },
5176   { "emc_key_7.collecting",                             "RocksCollect.png"              },
5177   { "emc_key_7.collecting.xpos",                        "7"                             },
5178   { "emc_key_7.collecting.ypos",                        "14"                            },
5179   { "emc_key_7.collecting.frames",                      "7"                             },
5180   { "emc_key_7.collecting.anim_mode",                   "linear"                        },
5181   { "emc_key_8",                                        "RocksEMC.png"                  },
5182   { "emc_key_8.xpos",                                   "3"                             },
5183   { "emc_key_8.ypos",                                   "5"                             },
5184   { "emc_key_8.frames",                                 "1"                             },
5185   { "emc_key_8.collecting",                             "RocksCollect.png"              },
5186   { "emc_key_8.collecting.xpos",                        "7"                             },
5187   { "emc_key_8.collecting.ypos",                        "15"                            },
5188   { "emc_key_8.collecting.frames",                      "7"                             },
5189   { "emc_key_8.collecting.anim_mode",                   "linear"                        },
5190
5191   { "emc_gate_5",                                       "RocksEMC.png"                  },
5192   { "emc_gate_5.xpos",                                  "0"                             },
5193   { "emc_gate_5.ypos",                                  "6"                             },
5194   { "emc_gate_5.frames",                                "1"                             },
5195   { "emc_gate_6",                                       "RocksEMC.png"                  },
5196   { "emc_gate_6.xpos",                                  "1"                             },
5197   { "emc_gate_6.ypos",                                  "6"                             },
5198   { "emc_gate_6.frames",                                "1"                             },
5199   { "emc_gate_7",                                       "RocksEMC.png"                  },
5200   { "emc_gate_7.xpos",                                  "2"                             },
5201   { "emc_gate_7.ypos",                                  "6"                             },
5202   { "emc_gate_7.frames",                                "1"                             },
5203   { "emc_gate_8",                                       "RocksEMC.png"                  },
5204   { "emc_gate_8.xpos",                                  "3"                             },
5205   { "emc_gate_8.ypos",                                  "6"                             },
5206   { "emc_gate_8.frames",                                "1"                             },
5207   { "emc_gate_5_gray",                                  "RocksEMC.png"                  },
5208   { "emc_gate_5_gray.xpos",                             "4"                             },
5209   { "emc_gate_5_gray.ypos",                             "7"                             },
5210   { "emc_gate_5_gray.frames",                           "1"                             },
5211   { "emc_gate_5_gray.EDITOR",                           "RocksEMC.png"                  },
5212   { "emc_gate_5_gray.EDITOR.xpos",                      "0"                             },
5213   { "emc_gate_5_gray.EDITOR.ypos",                      "7"                             },
5214   { "emc_gate_5_gray.active",                           "RocksEMC.png"                  },
5215   { "emc_gate_5_gray.active.xpos",                      "0"                             },
5216   { "emc_gate_5_gray.active.ypos",                      "6"                             },
5217   { "emc_gate_5_gray.active.frames",                    "1"                             },
5218   { "emc_gate_6_gray",                                  "RocksEMC.png"                  },
5219   { "emc_gate_6_gray.xpos",                             "4"                             },
5220   { "emc_gate_6_gray.ypos",                             "7"                             },
5221   { "emc_gate_6_gray.frames",                           "1"                             },
5222   { "emc_gate_6_gray.EDITOR",                           "RocksEMC.png"                  },
5223   { "emc_gate_6_gray.EDITOR.xpos",                      "1"                             },
5224   { "emc_gate_6_gray.EDITOR.ypos",                      "7"                             },
5225   { "emc_gate_6_gray.active",                           "RocksEMC.png"                  },
5226   { "emc_gate_6_gray.active.xpos",                      "1"                             },
5227   { "emc_gate_6_gray.active.ypos",                      "6"                             },
5228   { "emc_gate_6_gray.active.frames",                    "1"                             },
5229   { "emc_gate_7_gray",                                  "RocksEMC.png"                  },
5230   { "emc_gate_7_gray.xpos",                             "4"                             },
5231   { "emc_gate_7_gray.ypos",                             "7"                             },
5232   { "emc_gate_7_gray.frames",                           "1"                             },
5233   { "emc_gate_7_gray.EDITOR",                           "RocksEMC.png"                  },
5234   { "emc_gate_7_gray.EDITOR.xpos",                      "2"                             },
5235   { "emc_gate_7_gray.EDITOR.ypos",                      "7"                             },
5236   { "emc_gate_7_gray.active",                           "RocksEMC.png"                  },
5237   { "emc_gate_7_gray.active.xpos",                      "2"                             },
5238   { "emc_gate_7_gray.active.ypos",                      "6"                             },
5239   { "emc_gate_7_gray.active.frames",                    "1"                             },
5240   { "emc_gate_8_gray",                                  "RocksEMC.png"                  },
5241   { "emc_gate_8_gray.xpos",                             "4"                             },
5242   { "emc_gate_8_gray.ypos",                             "7"                             },
5243   { "emc_gate_8_gray.frames",                           "1"                             },
5244   { "emc_gate_8_gray.EDITOR",                           "RocksEMC.png"                  },
5245   { "emc_gate_8_gray.EDITOR.xpos",                      "3"                             },
5246   { "emc_gate_8_gray.EDITOR.ypos",                      "7"                             },
5247   { "emc_gate_8_gray.active",                           "RocksEMC.png"                  },
5248   { "emc_gate_8_gray.active.xpos",                      "3"                             },
5249   { "emc_gate_8_gray.active.ypos",                      "6"                             },
5250   { "emc_gate_8_gray.active.frames",                    "1"                             },
5251
5252   { "emc_android",                                      "RocksEMC.png"                  },
5253   { "emc_android.xpos",                                 "0"                             },
5254   { "emc_android.ypos",                                 "8"                             },
5255   { "emc_android.frames",                               "8"                             },
5256   { "emc_android.delay",                                "2"                             },
5257
5258   { "emc_android.shrinking.upleft",                     "RocksEMC.png"                  },
5259   { "emc_android.shrinking.upleft.xpos",                "1"                             },
5260   { "emc_android.shrinking.upleft.ypos",                "11"                            },
5261   { "emc_android.shrinking.upleft.frames",              "8"                             },
5262   { "emc_android.shrinking.upleft.anim_mode",           "linear"                        },
5263
5264   { "emc_android.growing.downright",                    "RocksEMC.png"                  },
5265   { "emc_android.growing.downright.xpos",               "0"                             },
5266   { "emc_android.growing.downright.ypos",               "11"                            },
5267   { "emc_android.growing.downright.frames",             "8"                             },
5268   { "emc_android.growing.downright.anim_mode",          "linear,reverse"                },
5269
5270   { "emc_android.shrinking.downleft",                   "RocksEMC.png"                  },
5271   { "emc_android.shrinking.downleft.xpos",              "1"                             },
5272   { "emc_android.shrinking.downleft.ypos",              "12"                            },
5273   { "emc_android.shrinking.downleft.frames",            "8"                             },
5274   { "emc_android.shrinking.downleft.anim_mode",         "linear"                        },
5275
5276   { "emc_android.growing.upright",                      "RocksEMC.png"                  },
5277   { "emc_android.growing.upright.xpos",                 "0"                             },
5278   { "emc_android.growing.upright.ypos",                 "12"                            },
5279   { "emc_android.growing.upright.frames",               "8"                             },
5280   { "emc_android.growing.upright.anim_mode",            "linear,reverse"                },
5281
5282   { "emc_android.shrinking.upright",                    "RocksEMC.png"                  },
5283   { "emc_android.shrinking.upright.xpos",               "1"                             },
5284   { "emc_android.shrinking.upright.ypos",               "13"                            },
5285   { "emc_android.shrinking.upright.frames",             "8"                             },
5286   { "emc_android.shrinking.upright.anim_mode",          "linear"                        },
5287
5288   { "emc_android.growing.downleft",                     "RocksEMC.png"                  },
5289   { "emc_android.growing.downleft.xpos",                "0"                             },
5290   { "emc_android.growing.downleft.ypos",                "13"                            },
5291   { "emc_android.growing.downleft.frames",              "8"                             },
5292   { "emc_android.growing.downleft.anim_mode",           "linear,reverse"                },
5293
5294   { "emc_android.shrinking.downright",                  "RocksEMC.png"                  },
5295   { "emc_android.shrinking.downright.xpos",             "1"                             },
5296   { "emc_android.shrinking.downright.ypos",             "14"                            },
5297   { "emc_android.shrinking.downright.frames",           "8"                             },
5298   { "emc_android.shrinking.downright.anim_mode",        "linear"                        },
5299
5300   { "emc_android.growing.upleft",                       "RocksEMC.png"                  },
5301   { "emc_android.growing.upleft.xpos",                  "0"                             },
5302   { "emc_android.growing.upleft.ypos",                  "14"                            },
5303   { "emc_android.growing.upleft.frames",                "8"                             },
5304   { "emc_android.growing.upleft.anim_mode",             "linear,reverse"                },
5305
5306   { "emc_grass",                                        "RocksEMC.png"                  },
5307   { "emc_grass.xpos",                                   "0"                             },
5308   { "emc_grass.ypos",                                   "4"                             },
5309   { "emc_grass.frames",                                 "1"                             },
5310   { "emc_grass.CRUMBLED",                               "RocksEMC.png"                  },
5311   { "emc_grass.CRUMBLED.xpos",                          "1"                             },
5312   { "emc_grass.CRUMBLED.ypos",                          "4"                             },
5313   { "emc_grass.CRUMBLED.frames",                        "1"                             },
5314   { "emc_grass.digging.left",                           "RocksEMC.png"                  },
5315   { "emc_grass.digging.left.xpos",                      "6"                             },
5316   { "emc_grass.digging.left.ypos",                      "0"                             },
5317   { "emc_grass.digging.left.frames",                    "3"                             },
5318   { "emc_grass.digging.left.delay",                     "2"                             },
5319   { "emc_grass.digging.left.anim_mode",                 "linear"                        },
5320   { "emc_grass.digging.right",                          "RocksEMC.png"                  },
5321   { "emc_grass.digging.right.xpos",                     "9"                             },
5322   { "emc_grass.digging.right.ypos",                     "0"                             },
5323   { "emc_grass.digging.right.frames",                   "3"                             },
5324   { "emc_grass.digging.right.delay",                    "2"                             },
5325   { "emc_grass.digging.right.anim_mode",                "linear"                        },
5326   { "emc_grass.digging.up",                             "RocksEMC.png"                  },
5327   { "emc_grass.digging.up.xpos",                        "0"                             },
5328   { "emc_grass.digging.up.ypos",                        "0"                             },
5329   { "emc_grass.digging.up.frames",                      "3"                             },
5330   { "emc_grass.digging.up.delay",                       "2"                             },
5331   { "emc_grass.digging.up.anim_mode",                   "linear"                        },
5332   { "emc_grass.digging.down",                           "RocksEMC.png"                  },
5333   { "emc_grass.digging.down.xpos",                      "3"                             },
5334   { "emc_grass.digging.down.ypos",                      "0"                             },
5335   { "emc_grass.digging.down.frames",                    "3"                             },
5336   { "emc_grass.digging.down.delay",                     "2"                             },
5337   { "emc_grass.digging.down.anim_mode",                 "linear"                        },
5338   { "emc_grass.digging.left.CRUMBLED",                  "RocksEMC.png"                  },
5339   { "emc_grass.digging.left.CRUMBLED.xpos",             "6"                             },
5340   { "emc_grass.digging.left.CRUMBLED.ypos",             "1"                             },
5341   { "emc_grass.digging.left.CRUMBLED.frames",           "3"                             },
5342   { "emc_grass.digging.left.CRUMBLED.delay",            "2"                             },
5343   { "emc_grass.digging.left.CRUMBLED.anim_mode",        "linear"                        },
5344   { "emc_grass.digging.right.CRUMBLED",                 "RocksEMC.png"                  },
5345   { "emc_grass.digging.right.CRUMBLED.xpos",            "9"                             },
5346   { "emc_grass.digging.right.CRUMBLED.ypos",            "1"                             },
5347   { "emc_grass.digging.right.CRUMBLED.frames",          "3"                             },
5348   { "emc_grass.digging.right.CRUMBLED.delay",           "2"                             },
5349   { "emc_grass.digging.right.CRUMBLED.anim_mode",       "linear"                        },
5350   { "emc_grass.digging.up.CRUMBLED",                    "RocksEMC.png"                  },
5351   { "emc_grass.digging.up.CRUMBLED.xpos",               "0"                             },
5352   { "emc_grass.digging.up.CRUMBLED.ypos",               "1"                             },
5353   { "emc_grass.digging.up.CRUMBLED.frames",             "3"                             },
5354   { "emc_grass.digging.up.CRUMBLED.delay",              "2"                             },
5355   { "emc_grass.digging.up.CRUMBLED.anim_mode",          "linear"                        },
5356   { "emc_grass.digging.down.CRUMBLED",                  "RocksEMC.png"                  },
5357   { "emc_grass.digging.down.CRUMBLED.xpos",             "3"                             },
5358   { "emc_grass.digging.down.CRUMBLED.ypos",             "1"                             },
5359   { "emc_grass.digging.down.CRUMBLED.frames",           "3"                             },
5360   { "emc_grass.digging.down.CRUMBLED.delay",            "2"                             },
5361   { "emc_grass.digging.down.CRUMBLED.anim_mode",        "linear"                        },
5362
5363   { "emc_magic_ball",                                   "RocksEMC.png"                  },
5364   { "emc_magic_ball.xpos",                              "0"                             },
5365   { "emc_magic_ball.ypos",                              "9"                             },
5366   { "emc_magic_ball.frames",                            "1"                             },
5367   { "emc_magic_ball.active",                            "RocksEMC.png"                  },
5368   { "emc_magic_ball.active.xpos",                       "0"                             },
5369   { "emc_magic_ball.active.ypos",                       "9"                             },
5370   { "emc_magic_ball.active.frames",                     "16"                            },
5371   { "emc_magic_ball.active.frames_per_line",            "8"                             },
5372   { "emc_magic_ball.dropping",                          "RocksElements.png"             },
5373   { "emc_magic_ball.dropping.xpos",                     "0"                             },
5374   { "emc_magic_ball.dropping.ypos",                     "4"                             },
5375   { "emc_magic_ball.dropping.frames",                   "8"                             },
5376   { "emc_magic_ball.dropping.anim_mode",                "linear"                        },
5377
5378   { "emc_magic_ball_switch",                            "RocksEMC.png"                  },
5379   { "emc_magic_ball_switch.xpos",                       "8"                             },
5380   { "emc_magic_ball_switch.ypos",                       "10"                            },
5381   { "emc_magic_ball_switch.frames",                     "1"                             },
5382   { "emc_magic_ball_switch.active",                     "RocksEMC.png"                  },
5383   { "emc_magic_ball_switch.active.xpos",                "8"                             },
5384   { "emc_magic_ball_switch.active.ypos",                "9"                             },
5385   { "emc_magic_ball_switch.active.frames",              "1"                             },
5386
5387   { "emc_spring_bumper",                                "RocksEMC.png"                  },
5388   { "emc_spring_bumper.xpos",                           "8"                             },
5389   { "emc_spring_bumper.ypos",                           "4"                             },
5390   { "emc_spring_bumper.frames",                         "1"                             },
5391
5392   { "emc_spring_bumper.active",                         "RocksEMC.png"                  },
5393   { "emc_spring_bumper.active.xpos",                    "8"                             },
5394   { "emc_spring_bumper.active.ypos",                    "4"                             },
5395   { "emc_spring_bumper.active.frames",                  "4"                             },
5396   { "emc_spring_bumper.active.anim_mode",               "pingpong2"                     },
5397
5398   { "emc_plant",                                        "RocksEMC.png"                  },
5399   { "emc_plant.xpos",                                   "4"                             },
5400   { "emc_plant.ypos",                                   "4"                             },
5401   { "emc_plant.frames",                                 "1"                             },
5402   { "emc_plant.CRUMBLED",                               "RocksEMC.png"                  },
5403   { "emc_plant.CRUMBLED.xpos",                          "5"                             },
5404   { "emc_plant.CRUMBLED.ypos",                          "4"                             },
5405   { "emc_plant.CRUMBLED.frames",                        "1"                             },
5406
5407   { "emc_lenses",                                       "RocksEMC.png"                  },
5408   { "emc_lenses.xpos",                                  "6"                             },
5409   { "emc_lenses.ypos",                                  "4"                             },
5410   { "emc_lenses.frames",                                "1"                             },
5411   { "emc_lenses.collecting",                            "RocksCollect.png"              },
5412   { "emc_lenses.collecting.xpos",                       "7"                             },
5413   { "emc_lenses.collecting.ypos",                       "16"                            },
5414   { "emc_lenses.collecting.frames",                     "7"                             },
5415   { "emc_lenses.collecting.anim_mode",                  "linear"                        },
5416
5417   { "emc_magnifier",                                    "RocksEMC.png"                  },
5418   { "emc_magnifier.xpos",                               "7"                             },
5419   { "emc_magnifier.ypos",                               "4"                             },
5420   { "emc_magnifier.frames",                             "1"                             },
5421   { "emc_magnifier.collecting",                         "RocksCollect.png"              },
5422   { "emc_magnifier.collecting.xpos",                    "7"                             },
5423   { "emc_magnifier.collecting.ypos",                    "17"                            },
5424   { "emc_magnifier.collecting.frames",                  "7"                             },
5425   { "emc_magnifier.collecting.anim_mode",               "linear"                        },
5426
5427   { "emc_wall_9",                                       "RocksEMC.png"                  },
5428   { "emc_wall_9.xpos",                                  "10"                            },
5429   { "emc_wall_9.ypos",                                  "5"                             },
5430   { "emc_wall_9.frames",                                "1"                             },
5431   { "emc_wall_10",                                      "RocksEMC.png"                  },
5432   { "emc_wall_10.xpos",                                 "10"                            },
5433   { "emc_wall_10.ypos",                                 "6"                             },
5434   { "emc_wall_10.frames",                               "1"                             },
5435   { "emc_wall_11",                                      "RocksEMC.png"                  },
5436   { "emc_wall_11.xpos",                                 "11"                            },
5437   { "emc_wall_11.ypos",                                 "5"                             },
5438   { "emc_wall_11.frames",                               "1"                             },
5439   { "emc_wall_12",                                      "RocksEMC.png"                  },
5440   { "emc_wall_12.xpos",                                 "11"                            },
5441   { "emc_wall_12.ypos",                                 "6"                             },
5442   { "emc_wall_12.frames",                               "1"                             },
5443   { "emc_wall_13",                                      "RocksEMC.png"                  },
5444   { "emc_wall_13.xpos",                                 "10"                            },
5445   { "emc_wall_13.ypos",                                 "7"                             },
5446   { "emc_wall_13.frames",                               "1"                             },
5447   { "emc_wall_14",                                      "RocksEMC.png"                  },
5448   { "emc_wall_14.xpos",                                 "10"                            },
5449   { "emc_wall_14.ypos",                                 "8"                             },
5450   { "emc_wall_14.frames",                               "1"                             },
5451   { "emc_wall_15",                                      "RocksEMC.png"                  },
5452   { "emc_wall_15.xpos",                                 "10"                            },
5453   { "emc_wall_15.ypos",                                 "9"                             },
5454   { "emc_wall_15.frames",                               "1"                             },
5455   { "emc_wall_16",                                      "RocksEMC.png"                  },
5456   { "emc_wall_16.xpos",                                 "10"                            },
5457   { "emc_wall_16.ypos",                                 "10"                            },
5458   { "emc_wall_16.frames",                               "1"                             },
5459
5460   { "emc_wall_slippery_1",                              "RocksEMC.png"                  },
5461   { "emc_wall_slippery_1.xpos",                         "11"                            },
5462   { "emc_wall_slippery_1.ypos",                         "7"                             },
5463   { "emc_wall_slippery_1.frames",                       "1"                             },
5464   { "emc_wall_slippery_2",                              "RocksEMC.png"                  },
5465   { "emc_wall_slippery_2.xpos",                         "11"                            },
5466   { "emc_wall_slippery_2.ypos",                         "8"                             },
5467   { "emc_wall_slippery_2.frames",                       "1"                             },
5468   { "emc_wall_slippery_3",                              "RocksEMC.png"                  },
5469   { "emc_wall_slippery_3.xpos",                         "11"                            },
5470   { "emc_wall_slippery_3.ypos",                         "9"                             },
5471   { "emc_wall_slippery_3.frames",                       "1"                             },
5472   { "emc_wall_slippery_4",                              "RocksEMC.png"                  },
5473   { "emc_wall_slippery_4.xpos",                         "11"                            },
5474   { "emc_wall_slippery_4.ypos",                         "10"                            },
5475   { "emc_wall_slippery_4.frames",                       "1"                             },
5476
5477   { "emc_fake_grass",                                   "RocksEMC.png"                  },
5478   { "emc_fake_grass.xpos",                              "0"                             },
5479   { "emc_fake_grass.ypos",                              "4"                             },
5480   { "emc_fake_grass.frames",                            "1"                             },
5481   { "emc_fake_grass.CRUMBLED",                          "RocksEMC.png"                  },
5482   { "emc_fake_grass.CRUMBLED.xpos",                     "1"                             },
5483   { "emc_fake_grass.CRUMBLED.ypos",                     "4"                             },
5484   { "emc_fake_grass.CRUMBLED.frames",                   "1"                             },
5485   { "emc_fake_grass.active",                            "RocksEMC.png"                  },
5486   { "emc_fake_grass.active.xpos",                       "2"                             },
5487   { "emc_fake_grass.active.ypos",                       "4"                             },
5488   { "emc_fake_grass.active.frames",                     "1"                             },
5489   { "emc_fake_grass.active.CRUMBLED",                   "RocksEMC.png"                  },
5490   { "emc_fake_grass.active.CRUMBLED.xpos",              "3"                             },
5491   { "emc_fake_grass.active.CRUMBLED.ypos",              "4"                             },
5492   { "emc_fake_grass.active.CRUMBLED.frames",            "1"                             },
5493   { "emc_fake_grass.EDITOR",                            "RocksEMC.png"                  },
5494   { "emc_fake_grass.EDITOR.xpos",                       "2"                             },
5495   { "emc_fake_grass.EDITOR.ypos",                       "4"                             },
5496   { "emc_fake_grass.EDITOR.frames",                     "1"                             },
5497
5498   { "emc_fake_acid",                                    "RocksElements.png"             },
5499   { "emc_fake_acid.xpos",                               "12"                            },
5500   { "emc_fake_acid.ypos",                               "7"                             },
5501   { "emc_fake_acid.frames",                             "4"                             },
5502   { "emc_fake_acid.delay",                              "10"                            },
5503   { "emc_fake_acid.global_sync",                        "true"                          },
5504
5505   { "emc_dripper",                                      "RocksSP.png"                   },
5506   { "emc_dripper.xpos",                                 "0"                             },
5507   { "emc_dripper.ypos",                                 "0"                             },
5508   { "emc_dripper.frames",                               "1"                             },
5509   { "emc_dripper.EDITOR",                               "RocksEMC.png"                  },
5510   { "emc_dripper.EDITOR.xpos",                          "8"                             },
5511   { "emc_dripper.EDITOR.ypos",                          "8"                             },
5512   { "emc_dripper.active",                               "RocksEMC.png"                  },
5513   { "emc_dripper.active.xpos",                          "8"                             },
5514   { "emc_dripper.active.ypos",                          "8"                             },
5515   { "emc_dripper.active.frames",                        "1"                             },
5516
5517   { "mm_mcduffin",                                      "RocksMM.png"                   },
5518   { "mm_mcduffin.xpos",                                 "4"                             },
5519   { "mm_mcduffin.ypos",                                 "1"                             },
5520   { "mm_mcduffin.frames",                               "4"                             },
5521   { "mm_mcduffin.delay",                                "8"                             },
5522   { "mm_mcduffin.right",                                "RocksMM.png"                   },
5523   { "mm_mcduffin.right.xpos",                           "4"                             },
5524   { "mm_mcduffin.right.ypos",                           "1"                             },
5525   { "mm_mcduffin.right.frames",                         "1"                             },
5526   { "mm_mcduffin.up",                                   "RocksMM.png"                   },
5527   { "mm_mcduffin.up.xpos",                              "5"                             },
5528   { "mm_mcduffin.up.ypos",                              "1"                             },
5529   { "mm_mcduffin.up.frames",                            "1"                             },
5530   { "mm_mcduffin.left",                                 "RocksMM.png"                   },
5531   { "mm_mcduffin.left.xpos",                            "6"                             },
5532   { "mm_mcduffin.left.ypos",                            "1"                             },
5533   { "mm_mcduffin.left.frames",                          "1"                             },
5534   { "mm_mcduffin.down",                                 "RocksMM.png"                   },
5535   { "mm_mcduffin.down.xpos",                            "7"                             },
5536   { "mm_mcduffin.down.ypos",                            "1"                             },
5537   { "mm_mcduffin.down.frames",                          "1"                             },
5538
5539   { "mm_exit_closed",                                   "RocksMM.png"                   },
5540   { "mm_exit_closed.xpos",                              "8"                             },
5541   { "mm_exit_closed.ypos",                              "1"                             },
5542   { "mm_exit_closed.frames",                            "1"                             },
5543   { "mm_exit.opening",                                  "RocksMM.png"                   },
5544   { "mm_exit.opening.xpos",                             "8"                             },
5545   { "mm_exit.opening.ypos",                             "1"                             },
5546   { "mm_exit.opening.frames",                           "4"                             },
5547   { "mm_exit.opening.delay",                            "6"                             },
5548   { "mm_exit.opening.anim_mode",                        "linear"                        },
5549   { "mm_exit_open",                                     "RocksMM.png"                   },
5550   { "mm_exit_open.xpos",                                "11"                            },
5551   { "mm_exit_open.ypos",                                "1"                             },
5552   { "mm_exit_open.frames",                              "1"                             },
5553   { "mm_exit.closing",                                  "RocksMM.png"                   },
5554   { "mm_exit.closing.xpos",                             "8"                             },
5555   { "mm_exit.closing.ypos",                             "1"                             },
5556   { "mm_exit.closing.frames",                           "4"                             },
5557   { "mm_exit.closing.delay",                            "6"                             },
5558   { "mm_exit.closing.anim_mode",                        "linear,reverse"                },
5559
5560   { "mm_mirror_1",                                      "RocksMM.png"                   },
5561   { "mm_mirror_1.xpos",                                 "0"                             },
5562   { "mm_mirror_1.ypos",                                 "0"                             },
5563   { "mm_mirror_1.frames",                               "1"                             },
5564   { "mm_mirror_2",                                      "RocksMM.png"                   },
5565   { "mm_mirror_2.xpos",                                 "1"                             },
5566   { "mm_mirror_2.ypos",                                 "0"                             },
5567   { "mm_mirror_2.frames",                               "1"                             },
5568   { "mm_mirror_3",                                      "RocksMM.png"                   },
5569   { "mm_mirror_3.xpos",                                 "2"                             },
5570   { "mm_mirror_3.ypos",                                 "0"                             },
5571   { "mm_mirror_3.frames",                               "1"                             },
5572   { "mm_mirror_4",                                      "RocksMM.png"                   },
5573   { "mm_mirror_4.xpos",                                 "3"                             },
5574   { "mm_mirror_4.ypos",                                 "0"                             },
5575   { "mm_mirror_4.frames",                               "1"                             },
5576   { "mm_mirror_5",                                      "RocksMM.png"                   },
5577   { "mm_mirror_5.xpos",                                 "4"                             },
5578   { "mm_mirror_5.ypos",                                 "0"                             },
5579   { "mm_mirror_5.frames",                               "1"                             },
5580   { "mm_mirror_6",                                      "RocksMM.png"                   },
5581   { "mm_mirror_6.xpos",                                 "5"                             },
5582   { "mm_mirror_6.ypos",                                 "0"                             },
5583   { "mm_mirror_6.frames",                               "1"                             },
5584   { "mm_mirror_7",                                      "RocksMM.png"                   },
5585   { "mm_mirror_7.xpos",                                 "6"                             },
5586   { "mm_mirror_7.ypos",                                 "0"                             },
5587   { "mm_mirror_7.frames",                               "1"                             },
5588   { "mm_mirror_8",                                      "RocksMM.png"                   },
5589   { "mm_mirror_8.xpos",                                 "7"                             },
5590   { "mm_mirror_8.ypos",                                 "0"                             },
5591   { "mm_mirror_8.frames",                               "1"                             },
5592   { "mm_mirror_9",                                      "RocksMM.png"                   },
5593   { "mm_mirror_9.xpos",                                 "8"                             },
5594   { "mm_mirror_9.ypos",                                 "0"                             },
5595   { "mm_mirror_9.frames",                               "1"                             },
5596   { "mm_mirror_10",                                     "RocksMM.png"                   },
5597   { "mm_mirror_10.xpos",                                "9"                             },
5598   { "mm_mirror_10.ypos",                                "0"                             },
5599   { "mm_mirror_10.frames",                              "1"                             },
5600   { "mm_mirror_11",                                     "RocksMM.png"                   },
5601   { "mm_mirror_11.xpos",                                "10"                            },
5602   { "mm_mirror_11.ypos",                                "0"                             },
5603   { "mm_mirror_11.frames",                              "1"                             },
5604   { "mm_mirror_12",                                     "RocksMM.png"                   },
5605   { "mm_mirror_12.xpos",                                "11"                            },
5606   { "mm_mirror_12.ypos",                                "0"                             },
5607   { "mm_mirror_12.frames",                              "1"                             },
5608   { "mm_mirror_13",                                     "RocksMM.png"                   },
5609   { "mm_mirror_13.xpos",                                "12"                            },
5610   { "mm_mirror_13.ypos",                                "0"                             },
5611   { "mm_mirror_13.frames",                              "1"                             },
5612   { "mm_mirror_14",                                     "RocksMM.png"                   },
5613   { "mm_mirror_14.xpos",                                "13"                            },
5614   { "mm_mirror_14.ypos",                                "0"                             },
5615   { "mm_mirror_14.frames",                              "1"                             },
5616   { "mm_mirror_15",                                     "RocksMM.png"                   },
5617   { "mm_mirror_15.xpos",                                "14"                            },
5618   { "mm_mirror_15.ypos",                                "0"                             },
5619   { "mm_mirror_15.frames",                              "1"                             },
5620   { "mm_mirror_16",                                     "RocksMM.png"                   },
5621   { "mm_mirror_16.xpos",                                "15"                            },
5622   { "mm_mirror_16.ypos",                                "0"                             },
5623   { "mm_mirror_16.frames",                              "1"                             },
5624
5625   { "mm_mirror_fixed_1",                                "RocksMM.png"                   },
5626   { "mm_mirror_fixed_1.xpos",                           "4"                             },
5627   { "mm_mirror_fixed_1.ypos",                           "6"                             },
5628   { "mm_mirror_fixed_1.frames",                         "1"                             },
5629   { "mm_mirror_fixed_2",                                "RocksMM.png"                   },
5630   { "mm_mirror_fixed_2.xpos",                           "5"                             },
5631   { "mm_mirror_fixed_2.ypos",                           "6"                             },
5632   { "mm_mirror_fixed_2.frames",                         "1"                             },
5633   { "mm_mirror_fixed_3",                                "RocksMM.png"                   },
5634   { "mm_mirror_fixed_3.xpos",                           "6"                             },
5635   { "mm_mirror_fixed_3.ypos",                           "6"                             },
5636   { "mm_mirror_fixed_3.frames",                         "1"                             },
5637   { "mm_mirror_fixed_4",                                "RocksMM.png"                   },
5638   { "mm_mirror_fixed_4.xpos",                           "7"                             },
5639   { "mm_mirror_fixed_4.ypos",                           "6"                             },
5640   { "mm_mirror_fixed_4.frames",                         "1"                             },
5641
5642   { "mm_steel_grid_fixed_1",                            "RocksMM.png"                   },
5643   { "mm_steel_grid_fixed_1.xpos",                       "0"                             },
5644   { "mm_steel_grid_fixed_1.ypos",                       "1"                             },
5645   { "mm_steel_grid_fixed_1.frames",                     "1"                             },
5646   { "mm_steel_grid_fixed_2",                            "RocksMM.png"                   },
5647   { "mm_steel_grid_fixed_2.xpos",                       "1"                             },
5648   { "mm_steel_grid_fixed_2.ypos",                       "1"                             },
5649   { "mm_steel_grid_fixed_2.frames",                     "1"                             },
5650   { "mm_steel_grid_fixed_3",                            "RocksMM.png"                   },
5651   { "mm_steel_grid_fixed_3.xpos",                       "2"                             },
5652   { "mm_steel_grid_fixed_3.ypos",                       "1"                             },
5653   { "mm_steel_grid_fixed_3.frames",                     "1"                             },
5654   { "mm_steel_grid_fixed_4",                            "RocksMM.png"                   },
5655   { "mm_steel_grid_fixed_4.xpos",                       "3"                             },
5656   { "mm_steel_grid_fixed_4.ypos",                       "1"                             },
5657   { "mm_steel_grid_fixed_4.frames",                     "1"                             },
5658
5659   { "mm_wooden_grid_fixed_1",                           "RocksMM.png"                   },
5660   { "mm_wooden_grid_fixed_1.xpos",                      "12"                            },
5661   { "mm_wooden_grid_fixed_1.ypos",                      "6"                             },
5662   { "mm_wooden_grid_fixed_1.frames",                    "1"                             },
5663   { "mm_wooden_grid_fixed_2",                           "RocksMM.png"                   },
5664   { "mm_wooden_grid_fixed_2.xpos",                      "13"                            },
5665   { "mm_wooden_grid_fixed_2.ypos",                      "6"                             },
5666   { "mm_wooden_grid_fixed_2.frames",                    "1"                             },
5667   { "mm_wooden_grid_fixed_3",                           "RocksMM.png"                   },
5668   { "mm_wooden_grid_fixed_3.xpos",                      "14"                            },
5669   { "mm_wooden_grid_fixed_3.ypos",                      "6"                             },
5670   { "mm_wooden_grid_fixed_3.frames",                    "1"                             },
5671   { "mm_wooden_grid_fixed_4",                           "RocksMM.png"                   },
5672   { "mm_wooden_grid_fixed_4.xpos",                      "15"                            },
5673   { "mm_wooden_grid_fixed_4.ypos",                      "6"                             },
5674   { "mm_wooden_grid_fixed_4.frames",                    "1"                             },
5675
5676   { "mm_polarizer_1",                                   "RocksMM.png"                   },
5677   { "mm_polarizer_1.xpos",                              "0"                             },
5678   { "mm_polarizer_1.ypos",                              "5"                             },
5679   { "mm_polarizer_1.frames",                            "1"                             },
5680   { "mm_polarizer_2",                                   "RocksMM.png"                   },
5681   { "mm_polarizer_2.xpos",                              "1"                             },
5682   { "mm_polarizer_2.ypos",                              "5"                             },
5683   { "mm_polarizer_2.frames",                            "1"                             },
5684   { "mm_polarizer_3",                                   "RocksMM.png"                   },
5685   { "mm_polarizer_3.xpos",                              "2"                             },
5686   { "mm_polarizer_3.ypos",                              "5"                             },
5687   { "mm_polarizer_3.frames",                            "1"                             },
5688   { "mm_polarizer_4",                                   "RocksMM.png"                   },
5689   { "mm_polarizer_4.xpos",                              "3"                             },
5690   { "mm_polarizer_4.ypos",                              "5"                             },
5691   { "mm_polarizer_4.frames",                            "1"                             },
5692   { "mm_polarizer_5",                                   "RocksMM.png"                   },
5693   { "mm_polarizer_5.xpos",                              "4"                             },
5694   { "mm_polarizer_5.ypos",                              "5"                             },
5695   { "mm_polarizer_5.frames",                            "1"                             },
5696   { "mm_polarizer_6",                                   "RocksMM.png"                   },
5697   { "mm_polarizer_6.xpos",                              "5"                             },
5698   { "mm_polarizer_6.ypos",                              "5"                             },
5699   { "mm_polarizer_6.frames",                            "1"                             },
5700   { "mm_polarizer_7",                                   "RocksMM.png"                   },
5701   { "mm_polarizer_7.xpos",                              "6"                             },
5702   { "mm_polarizer_7.ypos",                              "5"                             },
5703   { "mm_polarizer_7.frames",                            "1"                             },
5704   { "mm_polarizer_8",                                   "RocksMM.png"                   },
5705   { "mm_polarizer_8.xpos",                              "7"                             },
5706   { "mm_polarizer_8.ypos",                              "5"                             },
5707   { "mm_polarizer_8.frames",                            "1"                             },
5708   { "mm_polarizer_9",                                   "RocksMM.png"                   },
5709   { "mm_polarizer_9.xpos",                              "8"                             },
5710   { "mm_polarizer_9.ypos",                              "5"                             },
5711   { "mm_polarizer_9.frames",                            "1"                             },
5712   { "mm_polarizer_10",                                  "RocksMM.png"                   },
5713   { "mm_polarizer_10.xpos",                             "9"                             },
5714   { "mm_polarizer_10.ypos",                             "5"                             },
5715   { "mm_polarizer_10.frames",                           "1"                             },
5716   { "mm_polarizer_11",                                  "RocksMM.png"                   },
5717   { "mm_polarizer_11.xpos",                             "10"                            },
5718   { "mm_polarizer_11.ypos",                             "5"                             },
5719   { "mm_polarizer_11.frames",                           "1"                             },
5720   { "mm_polarizer_12",                                  "RocksMM.png"                   },
5721   { "mm_polarizer_12.xpos",                             "11"                            },
5722   { "mm_polarizer_12.ypos",                             "5"                             },
5723   { "mm_polarizer_12.frames",                           "1"                             },
5724   { "mm_polarizer_13",                                  "RocksMM.png"                   },
5725   { "mm_polarizer_13.xpos",                             "12"                            },
5726   { "mm_polarizer_13.ypos",                             "5"                             },
5727   { "mm_polarizer_13.frames",                           "1"                             },
5728   { "mm_polarizer_14",                                  "RocksMM.png"                   },
5729   { "mm_polarizer_14.xpos",                             "13"                            },
5730   { "mm_polarizer_14.ypos",                             "5"                             },
5731   { "mm_polarizer_14.frames",                           "1"                             },
5732   { "mm_polarizer_15",                                  "RocksMM.png"                   },
5733   { "mm_polarizer_15.xpos",                             "14"                            },
5734   { "mm_polarizer_15.ypos",                             "5"                             },
5735   { "mm_polarizer_15.frames",                           "1"                             },
5736   { "mm_polarizer_16",                                  "RocksMM.png"                   },
5737   { "mm_polarizer_16.xpos",                             "15"                            },
5738   { "mm_polarizer_16.ypos",                             "5"                             },
5739   { "mm_polarizer_16.frames",                           "1"                             },
5740
5741   { "mm_polarizer_cross_1",                             "RocksMM.png"                   },
5742   { "mm_polarizer_cross_1.xpos",                        "0"                             },
5743   { "mm_polarizer_cross_1.ypos",                        "6"                             },
5744   { "mm_polarizer_cross_1.frames",                      "1"                             },
5745   { "mm_polarizer_cross_2",                             "RocksMM.png"                   },
5746   { "mm_polarizer_cross_2.xpos",                        "1"                             },
5747   { "mm_polarizer_cross_2.ypos",                        "6"                             },
5748   { "mm_polarizer_cross_2.frames",                      "1"                             },
5749   { "mm_polarizer_cross_3",                             "RocksMM.png"                   },
5750   { "mm_polarizer_cross_3.xpos",                        "2"                             },
5751   { "mm_polarizer_cross_3.ypos",                        "6"                             },
5752   { "mm_polarizer_cross_3.frames",                      "1"                             },
5753   { "mm_polarizer_cross_4",                             "RocksMM.png"                   },
5754   { "mm_polarizer_cross_4.xpos",                        "3"                             },
5755   { "mm_polarizer_cross_4.ypos",                        "6"                             },
5756   { "mm_polarizer_cross_4.frames",                      "1"                             },
5757
5758   { "mm_teleporter_1",                                  "RocksMM.png"                   },
5759   { "mm_teleporter_1.xpos",                             "0"                             },
5760   { "mm_teleporter_1.ypos",                             "3"                             },
5761   { "mm_teleporter_1.frames",                           "1"                             },
5762   { "mm_teleporter_2",                                  "RocksMM.png"                   },
5763   { "mm_teleporter_2.xpos",                             "1"                             },
5764   { "mm_teleporter_2.ypos",                             "3"                             },
5765   { "mm_teleporter_2.frames",                           "1"                             },
5766   { "mm_teleporter_3",                                  "RocksMM.png"                   },
5767   { "mm_teleporter_3.xpos",                             "2"                             },
5768   { "mm_teleporter_3.ypos",                             "3"                             },
5769   { "mm_teleporter_3.frames",                           "1"                             },
5770   { "mm_teleporter_4",                                  "RocksMM.png"                   },
5771   { "mm_teleporter_4.xpos",                             "3"                             },
5772   { "mm_teleporter_4.ypos",                             "3"                             },
5773   { "mm_teleporter_4.frames",                           "1"                             },
5774   { "mm_teleporter_5",                                  "RocksMM.png"                   },
5775   { "mm_teleporter_5.xpos",                             "4"                             },
5776   { "mm_teleporter_5.ypos",                             "3"                             },
5777   { "mm_teleporter_5.frames",                           "1"                             },
5778   { "mm_teleporter_6",                                  "RocksMM.png"                   },
5779   { "mm_teleporter_6.xpos",                             "5"                             },
5780   { "mm_teleporter_6.ypos",                             "3"                             },
5781   { "mm_teleporter_6.frames",                           "1"                             },
5782   { "mm_teleporter_7",                                  "RocksMM.png"                   },
5783   { "mm_teleporter_7.xpos",                             "6"                             },
5784   { "mm_teleporter_7.ypos",                             "3"                             },
5785   { "mm_teleporter_7.frames",                           "1"                             },
5786   { "mm_teleporter_8",                                  "RocksMM.png"                   },
5787   { "mm_teleporter_8.xpos",                             "7"                             },
5788   { "mm_teleporter_8.ypos",                             "3"                             },
5789   { "mm_teleporter_8.frames",                           "1"                             },
5790   { "mm_teleporter_9",                                  "RocksMM.png"                   },
5791   { "mm_teleporter_9.xpos",                             "8"                             },
5792   { "mm_teleporter_9.ypos",                             "3"                             },
5793   { "mm_teleporter_9.frames",                           "1"                             },
5794   { "mm_teleporter_10",                                 "RocksMM.png"                   },
5795   { "mm_teleporter_10.xpos",                            "9"                             },
5796   { "mm_teleporter_10.ypos",                            "3"                             },
5797   { "mm_teleporter_10.frames",                          "1"                             },
5798   { "mm_teleporter_11",                                 "RocksMM.png"                   },
5799   { "mm_teleporter_11.xpos",                            "10"                            },
5800   { "mm_teleporter_11.ypos",                            "3"                             },
5801   { "mm_teleporter_11.frames",                          "1"                             },
5802   { "mm_teleporter_12",                                 "RocksMM.png"                   },
5803   { "mm_teleporter_12.xpos",                            "11"                            },
5804   { "mm_teleporter_12.ypos",                            "3"                             },
5805   { "mm_teleporter_12.frames",                          "1"                             },
5806   { "mm_teleporter_13",                                 "RocksMM.png"                   },
5807   { "mm_teleporter_13.xpos",                            "12"                            },
5808   { "mm_teleporter_13.ypos",                            "3"                             },
5809   { "mm_teleporter_13.frames",                          "1"                             },
5810   { "mm_teleporter_14",                                 "RocksMM.png"                   },
5811   { "mm_teleporter_14.xpos",                            "13"                            },
5812   { "mm_teleporter_14.ypos",                            "3"                             },
5813   { "mm_teleporter_14.frames",                          "1"                             },
5814   { "mm_teleporter_15",                                 "RocksMM.png"                   },
5815   { "mm_teleporter_15.xpos",                            "14"                            },
5816   { "mm_teleporter_15.ypos",                            "3"                             },
5817   { "mm_teleporter_15.frames",                          "1"                             },
5818   { "mm_teleporter_16",                                 "RocksMM.png"                   },
5819   { "mm_teleporter_16.xpos",                            "15"                            },
5820   { "mm_teleporter_16.ypos",                            "3"                             },
5821   { "mm_teleporter_16.frames",                          "1"                             },
5822
5823   { "mm_teleporter_red_1",                              "RocksDF.png"                   },
5824   { "mm_teleporter_red_1.xpos",                         "0"                             },
5825   { "mm_teleporter_red_1.ypos",                         "4"                             },
5826   { "mm_teleporter_red_1.frames",                       "1"                             },
5827   { "mm_teleporter_red_2",                              "RocksDF.png"                   },
5828   { "mm_teleporter_red_2.xpos",                         "1"                             },
5829   { "mm_teleporter_red_2.ypos",                         "4"                             },
5830   { "mm_teleporter_red_2.frames",                       "1"                             },
5831   { "mm_teleporter_red_3",                              "RocksDF.png"                   },
5832   { "mm_teleporter_red_3.xpos",                         "2"                             },
5833   { "mm_teleporter_red_3.ypos",                         "4"                             },
5834   { "mm_teleporter_red_3.frames",                       "1"                             },
5835   { "mm_teleporter_red_4",                              "RocksDF.png"                   },
5836   { "mm_teleporter_red_4.xpos",                         "3"                             },
5837   { "mm_teleporter_red_4.ypos",                         "4"                             },
5838   { "mm_teleporter_red_4.frames",                       "1"                             },
5839   { "mm_teleporter_red_5",                              "RocksDF.png"                   },
5840   { "mm_teleporter_red_5.xpos",                         "4"                             },
5841   { "mm_teleporter_red_5.ypos",                         "4"                             },
5842   { "mm_teleporter_red_5.frames",                       "1"                             },
5843   { "mm_teleporter_red_6",                              "RocksDF.png"                   },
5844   { "mm_teleporter_red_6.xpos",                         "5"                             },
5845   { "mm_teleporter_red_6.ypos",                         "4"                             },
5846   { "mm_teleporter_red_6.frames",                       "1"                             },
5847   { "mm_teleporter_red_7",                              "RocksDF.png"                   },
5848   { "mm_teleporter_red_7.xpos",                         "6"                             },
5849   { "mm_teleporter_red_7.ypos",                         "4"                             },
5850   { "mm_teleporter_red_7.frames",                       "1"                             },
5851   { "mm_teleporter_red_8",                              "RocksDF.png"                   },
5852   { "mm_teleporter_red_8.xpos",                         "7"                             },
5853   { "mm_teleporter_red_8.ypos",                         "4"                             },
5854   { "mm_teleporter_red_8.frames",                       "1"                             },
5855   { "mm_teleporter_red_9",                              "RocksDF.png"                   },
5856   { "mm_teleporter_red_9.xpos",                         "8"                             },
5857   { "mm_teleporter_red_9.ypos",                         "4"                             },
5858   { "mm_teleporter_red_9.frames",                       "1"                             },
5859   { "mm_teleporter_red_10",                             "RocksDF.png"                   },
5860   { "mm_teleporter_red_10.xpos",                        "9"                             },
5861   { "mm_teleporter_red_10.ypos",                        "4"                             },
5862   { "mm_teleporter_red_10.frames",                      "1"                             },
5863   { "mm_teleporter_red_11",                             "RocksDF.png"                   },
5864   { "mm_teleporter_red_11.xpos",                        "10"                            },
5865   { "mm_teleporter_red_11.ypos",                        "4"                             },
5866   { "mm_teleporter_red_11.frames",                      "1"                             },
5867   { "mm_teleporter_red_12",                             "RocksDF.png"                   },
5868   { "mm_teleporter_red_12.xpos",                        "11"                            },
5869   { "mm_teleporter_red_12.ypos",                        "4"                             },
5870   { "mm_teleporter_red_12.frames",                      "1"                             },
5871   { "mm_teleporter_red_13",                             "RocksDF.png"                   },
5872   { "mm_teleporter_red_13.xpos",                        "12"                            },
5873   { "mm_teleporter_red_13.ypos",                        "4"                             },
5874   { "mm_teleporter_red_13.frames",                      "1"                             },
5875   { "mm_teleporter_red_14",                             "RocksDF.png"                   },
5876   { "mm_teleporter_red_14.xpos",                        "13"                            },
5877   { "mm_teleporter_red_14.ypos",                        "4"                             },
5878   { "mm_teleporter_red_14.frames",                      "1"                             },
5879   { "mm_teleporter_red_15",                             "RocksDF.png"                   },
5880   { "mm_teleporter_red_15.xpos",                        "14"                            },
5881   { "mm_teleporter_red_15.ypos",                        "4"                             },
5882   { "mm_teleporter_red_15.frames",                      "1"                             },
5883   { "mm_teleporter_red_16",                             "RocksDF.png"                   },
5884   { "mm_teleporter_red_16.xpos",                        "15"                            },
5885   { "mm_teleporter_red_16.ypos",                        "4"                             },
5886   { "mm_teleporter_red_16.frames",                      "1"                             },
5887
5888   { "mm_teleporter_yellow_1",                           "RocksDF.png"                   },
5889   { "mm_teleporter_yellow_1.xpos",                      "0"                             },
5890   { "mm_teleporter_yellow_1.ypos",                      "5"                             },
5891   { "mm_teleporter_yellow_1.frames",                    "1"                             },
5892   { "mm_teleporter_yellow_2",                           "RocksDF.png"                   },
5893   { "mm_teleporter_yellow_2.xpos",                      "1"                             },
5894   { "mm_teleporter_yellow_2.ypos",                      "5"                             },
5895   { "mm_teleporter_yellow_2.frames",                    "1"                             },
5896   { "mm_teleporter_yellow_3",                           "RocksDF.png"                   },
5897   { "mm_teleporter_yellow_3.xpos",                      "2"                             },
5898   { "mm_teleporter_yellow_3.ypos",                      "5"                             },
5899   { "mm_teleporter_yellow_3.frames",                    "1"                             },
5900   { "mm_teleporter_yellow_4",                           "RocksDF.png"                   },
5901   { "mm_teleporter_yellow_4.xpos",                      "3"                             },
5902   { "mm_teleporter_yellow_4.ypos",                      "5"                             },
5903   { "mm_teleporter_yellow_4.frames",                    "1"                             },
5904   { "mm_teleporter_yellow_5",                           "RocksDF.png"                   },
5905   { "mm_teleporter_yellow_5.xpos",                      "4"                             },
5906   { "mm_teleporter_yellow_5.ypos",                      "5"                             },
5907   { "mm_teleporter_yellow_5.frames",                    "1"                             },
5908   { "mm_teleporter_yellow_6",                           "RocksDF.png"                   },
5909   { "mm_teleporter_yellow_6.xpos",                      "5"                             },
5910   { "mm_teleporter_yellow_6.ypos",                      "5"                             },
5911   { "mm_teleporter_yellow_6.frames",                    "1"                             },
5912   { "mm_teleporter_yellow_7",                           "RocksDF.png"                   },
5913   { "mm_teleporter_yellow_7.xpos",                      "6"                             },
5914   { "mm_teleporter_yellow_7.ypos",                      "5"                             },
5915   { "mm_teleporter_yellow_7.frames",                    "1"                             },
5916   { "mm_teleporter_yellow_8",                           "RocksDF.png"                   },
5917   { "mm_teleporter_yellow_8.xpos",                      "7"                             },
5918   { "mm_teleporter_yellow_8.ypos",                      "5"                             },
5919   { "mm_teleporter_yellow_8.frames",                    "1"                             },
5920   { "mm_teleporter_yellow_9",                           "RocksDF.png"                   },
5921   { "mm_teleporter_yellow_9.xpos",                      "8"                             },
5922   { "mm_teleporter_yellow_9.ypos",                      "5"                             },
5923   { "mm_teleporter_yellow_9.frames",                    "1"                             },
5924   { "mm_teleporter_yellow_10",                          "RocksDF.png"                   },
5925   { "mm_teleporter_yellow_10.xpos",                     "9"                             },
5926   { "mm_teleporter_yellow_10.ypos",                     "5"                             },
5927   { "mm_teleporter_yellow_10.frames",                   "1"                             },
5928   { "mm_teleporter_yellow_11",                          "RocksDF.png"                   },
5929   { "mm_teleporter_yellow_11.xpos",                     "10"                            },
5930   { "mm_teleporter_yellow_11.ypos",                     "5"                             },
5931   { "mm_teleporter_yellow_11.frames",                   "1"                             },
5932   { "mm_teleporter_yellow_12",                          "RocksDF.png"                   },
5933   { "mm_teleporter_yellow_12.xpos",                     "11"                            },
5934   { "mm_teleporter_yellow_12.ypos",                     "5"                             },
5935   { "mm_teleporter_yellow_12.frames",                   "1"                             },
5936   { "mm_teleporter_yellow_13",                          "RocksDF.png"                   },
5937   { "mm_teleporter_yellow_13.xpos",                     "12"                            },
5938   { "mm_teleporter_yellow_13.ypos",                     "5"                             },
5939   { "mm_teleporter_yellow_13.frames",                   "1"                             },
5940   { "mm_teleporter_yellow_14",                          "RocksDF.png"                   },
5941   { "mm_teleporter_yellow_14.xpos",                     "13"                            },
5942   { "mm_teleporter_yellow_14.ypos",                     "5"                             },
5943   { "mm_teleporter_yellow_14.frames",                   "1"                             },
5944   { "mm_teleporter_yellow_15",                          "RocksDF.png"                   },
5945   { "mm_teleporter_yellow_15.xpos",                     "14"                            },
5946   { "mm_teleporter_yellow_15.ypos",                     "5"                             },
5947   { "mm_teleporter_yellow_15.frames",                   "1"                             },
5948   { "mm_teleporter_yellow_16",                          "RocksDF.png"                   },
5949   { "mm_teleporter_yellow_16.xpos",                     "15"                            },
5950   { "mm_teleporter_yellow_16.ypos",                     "5"                             },
5951   { "mm_teleporter_yellow_16.frames",                   "1"                             },
5952
5953   { "mm_teleporter_green_1",                            "RocksDF.png"                   },
5954   { "mm_teleporter_green_1.xpos",                       "0"                             },
5955   { "mm_teleporter_green_1.ypos",                       "6"                             },
5956   { "mm_teleporter_green_1.frames",                     "1"                             },
5957   { "mm_teleporter_green_2",                            "RocksDF.png"                   },
5958   { "mm_teleporter_green_2.xpos",                       "1"                             },
5959   { "mm_teleporter_green_2.ypos",                       "6"                             },
5960   { "mm_teleporter_green_2.frames",                     "1"                             },
5961   { "mm_teleporter_green_3",                            "RocksDF.png"                   },
5962   { "mm_teleporter_green_3.xpos",                       "2"                             },
5963   { "mm_teleporter_green_3.ypos",                       "6"                             },
5964   { "mm_teleporter_green_3.frames",                     "1"                             },
5965   { "mm_teleporter_green_4",                            "RocksDF.png"                   },
5966   { "mm_teleporter_green_4.xpos",                       "3"                             },
5967   { "mm_teleporter_green_4.ypos",                       "6"                             },
5968   { "mm_teleporter_green_4.frames",                     "1"                             },
5969   { "mm_teleporter_green_5",                            "RocksDF.png"                   },
5970   { "mm_teleporter_green_5.xpos",                       "4"                             },
5971   { "mm_teleporter_green_5.ypos",                       "6"                             },
5972   { "mm_teleporter_green_5.frames",                     "1"                             },
5973   { "mm_teleporter_green_6",                            "RocksDF.png"                   },
5974   { "mm_teleporter_green_6.xpos",                       "5"                             },
5975   { "mm_teleporter_green_6.ypos",                       "6"                             },
5976   { "mm_teleporter_green_6.frames",                     "1"                             },
5977   { "mm_teleporter_green_7",                            "RocksDF.png"                   },
5978   { "mm_teleporter_green_7.xpos",                       "6"                             },
5979   { "mm_teleporter_green_7.ypos",                       "6"                             },
5980   { "mm_teleporter_green_7.frames",                     "1"                             },
5981   { "mm_teleporter_green_8",                            "RocksDF.png"                   },
5982   { "mm_teleporter_green_8.xpos",                       "7"                             },
5983   { "mm_teleporter_green_8.ypos",                       "6"                             },
5984   { "mm_teleporter_green_8.frames",                     "1"                             },
5985   { "mm_teleporter_green_9",                            "RocksDF.png"                   },
5986   { "mm_teleporter_green_9.xpos",                       "8"                             },
5987   { "mm_teleporter_green_9.ypos",                       "6"                             },
5988   { "mm_teleporter_green_9.frames",                     "1"                             },
5989   { "mm_teleporter_green_10",                           "RocksDF.png"                   },
5990   { "mm_teleporter_green_10.xpos",                      "9"                             },
5991   { "mm_teleporter_green_10.ypos",                      "6"                             },
5992   { "mm_teleporter_green_10.frames",                    "1"                             },
5993   { "mm_teleporter_green_11",                           "RocksDF.png"                   },
5994   { "mm_teleporter_green_11.xpos",                      "10"                            },
5995   { "mm_teleporter_green_11.ypos",                      "6"                             },
5996   { "mm_teleporter_green_11.frames",                    "1"                             },
5997   { "mm_teleporter_green_12",                           "RocksDF.png"                   },
5998   { "mm_teleporter_green_12.xpos",                      "11"                            },
5999   { "mm_teleporter_green_12.ypos",                      "6"                             },
6000   { "mm_teleporter_green_12.frames",                    "1"                             },
6001   { "mm_teleporter_green_13",                           "RocksDF.png"                   },
6002   { "mm_teleporter_green_13.xpos",                      "12"                            },
6003   { "mm_teleporter_green_13.ypos",                      "6"                             },
6004   { "mm_teleporter_green_13.frames",                    "1"                             },
6005   { "mm_teleporter_green_14",                           "RocksDF.png"                   },
6006   { "mm_teleporter_green_14.xpos",                      "13"                            },
6007   { "mm_teleporter_green_14.ypos",                      "6"                             },
6008   { "mm_teleporter_green_14.frames",                    "1"                             },
6009   { "mm_teleporter_green_15",                           "RocksDF.png"                   },
6010   { "mm_teleporter_green_15.xpos",                      "14"                            },
6011   { "mm_teleporter_green_15.ypos",                      "6"                             },
6012   { "mm_teleporter_green_15.frames",                    "1"                             },
6013   { "mm_teleporter_green_16",                           "RocksDF.png"                   },
6014   { "mm_teleporter_green_16.xpos",                      "15"                            },
6015   { "mm_teleporter_green_16.ypos",                      "6"                             },
6016   { "mm_teleporter_green_16.frames",                    "1"                             },
6017
6018   { "mm_teleporter_blue_1",                             "RocksDF.png"                   },
6019   { "mm_teleporter_blue_1.xpos",                        "0"                             },
6020   { "mm_teleporter_blue_1.ypos",                        "7"                             },
6021   { "mm_teleporter_blue_1.frames",                      "1"                             },
6022   { "mm_teleporter_blue_2",                             "RocksDF.png"                   },
6023   { "mm_teleporter_blue_2.xpos",                        "1"                             },
6024   { "mm_teleporter_blue_2.ypos",                        "7"                             },
6025   { "mm_teleporter_blue_2.frames",                      "1"                             },
6026   { "mm_teleporter_blue_3",                             "RocksDF.png"                   },
6027   { "mm_teleporter_blue_3.xpos",                        "2"                             },
6028   { "mm_teleporter_blue_3.ypos",                        "7"                             },
6029   { "mm_teleporter_blue_3.frames",                      "1"                             },
6030   { "mm_teleporter_blue_4",                             "RocksDF.png"                   },
6031   { "mm_teleporter_blue_4.xpos",                        "3"                             },
6032   { "mm_teleporter_blue_4.ypos",                        "7"                             },
6033   { "mm_teleporter_blue_4.frames",                      "1"                             },
6034   { "mm_teleporter_blue_5",                             "RocksDF.png"                   },
6035   { "mm_teleporter_blue_5.xpos",                        "4"                             },
6036   { "mm_teleporter_blue_5.ypos",                        "7"                             },
6037   { "mm_teleporter_blue_5.frames",                      "1"                             },
6038   { "mm_teleporter_blue_6",                             "RocksDF.png"                   },
6039   { "mm_teleporter_blue_6.xpos",                        "5"                             },
6040   { "mm_teleporter_blue_6.ypos",                        "7"                             },
6041   { "mm_teleporter_blue_6.frames",                      "1"                             },
6042   { "mm_teleporter_blue_7",                             "RocksDF.png"                   },
6043   { "mm_teleporter_blue_7.xpos",                        "6"                             },
6044   { "mm_teleporter_blue_7.ypos",                        "7"                             },
6045   { "mm_teleporter_blue_7.frames",                      "1"                             },
6046   { "mm_teleporter_blue_8",                             "RocksDF.png"                   },
6047   { "mm_teleporter_blue_8.xpos",                        "7"                             },
6048   { "mm_teleporter_blue_8.ypos",                        "7"                             },
6049   { "mm_teleporter_blue_8.frames",                      "1"                             },
6050   { "mm_teleporter_blue_9",                             "RocksDF.png"                   },
6051   { "mm_teleporter_blue_9.xpos",                        "8"                             },
6052   { "mm_teleporter_blue_9.ypos",                        "7"                             },
6053   { "mm_teleporter_blue_9.frames",                      "1"                             },
6054   { "mm_teleporter_blue_10",                            "RocksDF.png"                   },
6055   { "mm_teleporter_blue_10.xpos",                       "9"                             },
6056   { "mm_teleporter_blue_10.ypos",                       "7"                             },
6057   { "mm_teleporter_blue_10.frames",                     "1"                             },
6058   { "mm_teleporter_blue_11",                            "RocksDF.png"                   },
6059   { "mm_teleporter_blue_11.xpos",                       "10"                            },
6060   { "mm_teleporter_blue_11.ypos",                       "7"                             },
6061   { "mm_teleporter_blue_11.frames",                     "1"                             },
6062   { "mm_teleporter_blue_12",                            "RocksDF.png"                   },
6063   { "mm_teleporter_blue_12.xpos",                       "11"                            },
6064   { "mm_teleporter_blue_12.ypos",                       "7"                             },
6065   { "mm_teleporter_blue_12.frames",                     "1"                             },
6066   { "mm_teleporter_blue_13",                            "RocksDF.png"                   },
6067   { "mm_teleporter_blue_13.xpos",                       "12"                            },
6068   { "mm_teleporter_blue_13.ypos",                       "7"                             },
6069   { "mm_teleporter_blue_13.frames",                     "1"                             },
6070   { "mm_teleporter_blue_14",                            "RocksDF.png"                   },
6071   { "mm_teleporter_blue_14.xpos",                       "13"                            },
6072   { "mm_teleporter_blue_14.ypos",                       "7"                             },
6073   { "mm_teleporter_blue_14.frames",                     "1"                             },
6074   { "mm_teleporter_blue_15",                            "RocksDF.png"                   },
6075   { "mm_teleporter_blue_15.xpos",                       "14"                            },
6076   { "mm_teleporter_blue_15.ypos",                       "7"                             },
6077   { "mm_teleporter_blue_15.frames",                     "1"                             },
6078   { "mm_teleporter_blue_16",                            "RocksDF.png"                   },
6079   { "mm_teleporter_blue_16.xpos",                       "15"                            },
6080   { "mm_teleporter_blue_16.ypos",                       "7"                             },
6081   { "mm_teleporter_blue_16.frames",                     "1"                             },
6082
6083   { "mm_kettle",                                        "RocksMM.png"                   },
6084   { "mm_kettle.xpos",                                   "9"                             },
6085   { "mm_kettle.ypos",                                   "8"                             },
6086   { "mm_kettle.frames",                                 "1"                             },
6087   { "mm_kettle.exploding",                              "RocksMM.png"                   },
6088   { "mm_kettle.exploding.xpos",                         "10"                            },
6089   { "mm_kettle.exploding.ypos",                         "8"                             },
6090   { "mm_kettle.exploding.frames",                       "6"                             },
6091   { "mm_kettle.exploding.delay",                        "2"                             },
6092   { "mm_kettle.exploding.anim_mode",                    "linear"                        },
6093
6094   { "mm_bomb",                                          "RocksMM.png"                   },
6095   { "mm_bomb.xpos",                                     "5"                             },
6096   { "mm_bomb.ypos",                                     "2"                             },
6097   { "mm_bomb.frames",                                   "1"                             },
6098   { "mm_bomb.active",                                   "RocksMM.png"                   },
6099   { "mm_bomb.active.xpos",                              "12"                            },
6100   { "mm_bomb.active.ypos",                              "1"                             },
6101   { "mm_bomb.active.frames",                            "3"                             },
6102   { "mm_bomb.active.delay",                             "6"                             },
6103   { "mm_bomb.active.anim_mode",                         "pingpong"                      },
6104
6105   { "mm_prism",                                         "RocksMM.png"                   },
6106   { "mm_prism.xpos",                                    "0"                             },
6107   { "mm_prism.ypos",                                    "2"                             },
6108   { "mm_prism.frames",                                  "1"                             },
6109
6110   { "mm_fuse",                                          "RocksMM.png"                   },
6111   { "mm_fuse.xpos",                                     "7"                             },
6112   { "mm_fuse.ypos",                                     "2"                             },
6113   { "mm_fuse.frames",                                   "1"                             },
6114   { "mm_fuse.active",                                   "RocksMM.png"                   },
6115   { "mm_fuse.active.xpos",                              "6"                             },
6116   { "mm_fuse.active.ypos",                              "2"                             },
6117   { "mm_fuse.active.frames",                            "1"                             },
6118
6119   { "mm_steel_lock",                                    "RocksMM.png"                   },
6120   { "mm_steel_lock.xpos",                               "8"                             },
6121   { "mm_steel_lock.ypos",                               "2"                             },
6122   { "mm_steel_lock.frames",                             "1"                             },
6123   { "mm_steel_lock.exploding",                          "RocksMM.png"                   },
6124   { "mm_steel_lock.exploding.xpos",                     "4"                             },
6125   { "mm_steel_lock.exploding.ypos",                     "8"                             },
6126   { "mm_steel_lock.exploding.frames",                   "5"                             },
6127   { "mm_steel_lock.exploding.delay",                    "2"                             },
6128   { "mm_steel_lock.exploding.anim_mode",                "linear"                        },
6129
6130   { "mm_wooden_lock",                                   "RocksMM.png"                   },
6131   { "mm_wooden_lock.xpos",                              "9"                             },
6132   { "mm_wooden_lock.ypos",                              "6"                             },
6133   { "mm_wooden_lock.frames",                            "1"                             },
6134   { "mm_wooden_lock.exploding",                         "RocksMM.png"                   },
6135   { "mm_wooden_lock.exploding.xpos",                    "4"                             },
6136   { "mm_wooden_lock.exploding.ypos",                    "8"                             },
6137   { "mm_wooden_lock.exploding.frames",                  "5"                             },
6138   { "mm_wooden_lock.exploding.delay",                   "2"                             },
6139   { "mm_wooden_lock.exploding.anim_mode",               "linear"                        },
6140
6141   { "mm_steel_block",                                   "RocksMM.png"                   },
6142   { "mm_steel_block.xpos",                              "8"                             },
6143   { "mm_steel_block.ypos",                              "6"                             },
6144   { "mm_steel_block.frames",                            "1"                             },
6145
6146   { "mm_wooden_block",                                  "RocksMM.png"                   },
6147   { "mm_wooden_block.xpos",                             "4"                             },
6148   { "mm_wooden_block.ypos",                             "2"                             },
6149   { "mm_wooden_block.frames",                           "1"                             },
6150
6151   { "mm_key",                                           "RocksMM.png"                   },
6152   { "mm_key.xpos",                                      "9"                             },
6153   { "mm_key.ypos",                                      "2"                             },
6154   { "mm_key.frames",                                    "1"                             },
6155
6156   { "mm_lightbulb",                                     "RocksMM.png"                   },
6157   { "mm_lightbulb.xpos",                                "10"                            },
6158   { "mm_lightbulb.ypos",                                "2"                             },
6159   { "mm_lightbulb.frames",                              "1"                             },
6160   { "mm_lightbulb.active",                              "RocksMM.png"                   },
6161   { "mm_lightbulb.active.xpos",                         "11"                            },
6162   { "mm_lightbulb.active.ypos",                         "2"                             },
6163   { "mm_lightbulb.active.frames",                       "1"                             },
6164
6165   { "mm_lightball",                                     "RocksMM.png"                   },
6166   { "mm_lightball.xpos",                                "12"                            },
6167   { "mm_lightball.ypos",                                "2"                             },
6168   { "mm_lightball.frames",                              "3"                             },
6169   { "mm_lightball.anim_mode",                           "random_static"                 },
6170   { "mm_lightball_red",                                 "RocksMM.png"                   },
6171   { "mm_lightball_red.xpos",                            "12"                            },
6172   { "mm_lightball_red.ypos",                            "2"                             },
6173   { "mm_lightball_red.frames",                          "1"                             },
6174   { "mm_lightball_blue",                                "RocksMM.png"                   },
6175   { "mm_lightball_blue.xpos",                           "13"                            },
6176   { "mm_lightball_blue.ypos",                           "2"                             },
6177   { "mm_lightball_blue.frames",                         "1"                             },
6178   { "mm_lightball_yellow",                              "RocksMM.png"                   },
6179   { "mm_lightball_yellow.xpos",                         "14"                            },
6180   { "mm_lightball_yellow.ypos",                         "2"                             },
6181   { "mm_lightball_yellow.frames",                       "1"                             },
6182
6183   { "mm_gray_ball",                                     "RocksMM.png"                   },
6184   { "mm_gray_ball.xpos",                                "15"                            },
6185   { "mm_gray_ball.ypos",                                "2"                             },
6186   { "mm_gray_ball.frames",                              "1"                             },
6187   { "mm_gray_ball.active",                              "RocksMM.png"                   },
6188   { "mm_gray_ball.active.xpos",                         "15"                            },
6189   { "mm_gray_ball.active.ypos",                         "1"                             },
6190   { "mm_gray_ball.active.frames",                       "2"                             },
6191   { "mm_gray_ball.active.delay",                        "20"                            },
6192   { "mm_gray_ball.active.vertical",                     "true"                          },
6193   { "mm_gray_ball.EDITOR",                              "RocksMM.png"                   },
6194   { "mm_gray_ball.EDITOR.xpos",                         "15"                            },
6195   { "mm_gray_ball.EDITOR.ypos",                         "1"                             },
6196   { "mm_gray_ball.EDITOR.frames",                       "1"                             },
6197
6198   { "mm_fuel_full",                                     "RocksMM.png"                   },
6199   { "mm_fuel_full.xpos",                                "10"                            },
6200   { "mm_fuel_full.ypos",                                "6"                             },
6201   { "mm_fuel_full.frames",                              "1"                             },
6202   { "mm_fuel_empty",                                    "RocksMM.png"                   },
6203   { "mm_fuel_empty.xpos",                               "11"                            },
6204   { "mm_fuel_empty.ypos",                               "6"                             },
6205   { "mm_fuel_empty.frames",                             "1"                             },
6206
6207   { "mm_steel_wall",                                    "RocksMM.png"                   },
6208   { "mm_steel_wall.xpos",                               "0"                             },
6209   { "mm_steel_wall.ypos",                               "7"                             },
6210   { "mm_steel_wall.frames",                             "1"                             },
6211
6212   { "mm_wooden_wall",                                   "RocksMM.png"                   },
6213   { "mm_wooden_wall.xpos",                              "1"                             },
6214   { "mm_wooden_wall.ypos",                              "7"                             },
6215   { "mm_wooden_wall.frames",                            "1"                             },
6216
6217   { "mm_ice_wall",                                      "RocksMM.png"                   },
6218   { "mm_ice_wall.xpos",                                 "2"                             },
6219   { "mm_ice_wall.ypos",                                 "7"                             },
6220   { "mm_ice_wall.frames",                               "1"                             },
6221   { "mm_ice_wall.shrinking",                            "RocksMM.png"                   },
6222   { "mm_ice_wall.shrinking.xpos",                       "2"                             },
6223   { "mm_ice_wall.shrinking.ypos",                       "7"                             },
6224   { "mm_ice_wall.shrinking.frames",                     "5"                             },
6225   { "mm_ice_wall.shrinking.delay",                      "8"                             },
6226   { "mm_ice_wall.shrinking.anim_mode",                  "linear"                        },
6227
6228   { "mm_amoeba_wall",                                   "RocksMM.png"                   },
6229   { "mm_amoeba_wall.xpos",                              "8"                             },
6230   { "mm_amoeba_wall.ypos",                              "7"                             },
6231   { "mm_amoeba_wall.frames",                            "1"                             },
6232   { "mm_amoeba_wall.growing",                           "RocksMM.png"                   },
6233   { "mm_amoeba_wall.growing.xpos",                      "8"                             },
6234   { "mm_amoeba_wall.growing.ypos",                      "7"                             },
6235   { "mm_amoeba_wall.growing.frames",                    "5"                             },
6236   { "mm_amoeba_wall.growing.delay",                     "8"                             },
6237   { "mm_amoeba_wall.growing.anim_mode",                 "linear,reverse"                },
6238
6239   { "mm_pacman",                                        "RocksMM.png"                   },
6240   { "mm_pacman.xpos",                                   "0"                             },
6241   { "mm_pacman.ypos",                                   "4"                             },
6242   { "mm_pacman.frames",                                 "1"                             },
6243   { "mm_pacman.right",                                  "RocksMM.png"                   },
6244   { "mm_pacman.right.xpos",                             "0"                             },
6245   { "mm_pacman.right.ypos",                             "4"                             },
6246   { "mm_pacman.right.frames",                           "1"                             },
6247   { "mm_pacman.up",                                     "RocksMM.png"                   },
6248   { "mm_pacman.up.xpos",                                "1"                             },
6249   { "mm_pacman.up.ypos",                                "4"                             },
6250   { "mm_pacman.up.frames",                              "1"                             },
6251   { "mm_pacman.left",                                   "RocksMM.png"                   },
6252   { "mm_pacman.left.xpos",                              "2"                             },
6253   { "mm_pacman.left.ypos",                              "4"                             },
6254   { "mm_pacman.left.frames",                            "1"                             },
6255   { "mm_pacman.down",                                   "RocksMM.png"                   },
6256   { "mm_pacman.down.xpos",                              "3"                             },
6257   { "mm_pacman.down.ypos",                              "4"                             },
6258   { "mm_pacman.down.frames",                            "1"                             },
6259   { "mm_pacman.eating.right",                           "RocksMM.png"                   },
6260   { "mm_pacman.eating.right.xpos",                      "4"                             },
6261   { "mm_pacman.eating.right.ypos",                      "4"                             },
6262   { "mm_pacman.eating.right.frames",                    "1"                             },
6263   { "mm_pacman.eating.up",                              "RocksMM.png"                   },
6264   { "mm_pacman.eating.up.xpos",                         "5"                             },
6265   { "mm_pacman.eating.up.ypos",                         "4"                             },
6266   { "mm_pacman.eating.up.frames",                       "1"                             },
6267   { "mm_pacman.eating.left",                            "RocksMM.png"                   },
6268   { "mm_pacman.eating.left.xpos",                       "6"                             },
6269   { "mm_pacman.eating.left.ypos",                       "4"                             },
6270   { "mm_pacman.eating.left.frames",                     "1"                             },
6271   { "mm_pacman.eating.down",                            "RocksMM.png"                   },
6272   { "mm_pacman.eating.down.xpos",                       "7"                             },
6273   { "mm_pacman.eating.down.ypos",                       "4"                             },
6274   { "mm_pacman.eating.down.frames",                     "1"                             },
6275
6276   { "mm_envelope_1",                                    UNDEFINED_FILENAME              },
6277   { "mm_envelope_1.clone_from",                         "envelope_1"                    },
6278   { "mm_envelope_1.collecting",                         UNDEFINED_FILENAME              },
6279   { "mm_envelope_1.collecting.clone_from",              "envelope_1.collecting"         },
6280   { "mm_envelope_2",                                    UNDEFINED_FILENAME              },
6281   { "mm_envelope_2.clone_from",                         "envelope_2"                    },
6282   { "mm_envelope_2.collecting",                         UNDEFINED_FILENAME              },
6283   { "mm_envelope_2.collecting.clone_from",              "envelope_2.collecting"         },
6284   { "mm_envelope_3",                                    UNDEFINED_FILENAME              },
6285   { "mm_envelope_3.clone_from",                         "envelope_3"                    },
6286   { "mm_envelope_3.collecting",                         UNDEFINED_FILENAME              },
6287   { "mm_envelope_3.collecting.clone_from",              "envelope_3.collecting"         },
6288   { "mm_envelope_4",                                    UNDEFINED_FILENAME              },
6289   { "mm_envelope_4.clone_from",                         "envelope_4"                    },
6290   { "mm_envelope_4.collecting",                         UNDEFINED_FILENAME              },
6291   { "mm_envelope_4.collecting.clone_from",              "envelope_4.collecting"         },
6292
6293   { "[mm_default].exploding",                           "RocksMM.png"                   },
6294   { "[mm_default].exploding.xpos",                      "0"                             },
6295   { "[mm_default].exploding.ypos",                      "8"                             },
6296   { "[mm_default].exploding.frames",                    "8"                             },
6297   { "[mm_default].exploding.delay",                     "2"                             },
6298   { "[mm_default].exploding.anim_mode",                 "linear"                        },
6299
6300   { "df_laser",                                         "RocksDF.png"                   },
6301   { "df_laser.xpos",                                    "0"                             },
6302   { "df_laser.ypos",                                    "9"                             },
6303   { "df_laser.frames",                                  "4"                             },
6304   { "df_laser.delay",                                   "8"                             },
6305   { "df_laser.right",                                   "RocksDF.png"                   },
6306   { "df_laser.right.xpos",                              "0"                             },
6307   { "df_laser.right.ypos",                              "9"                             },
6308   { "df_laser.right.frames",                            "1"                             },
6309   { "df_laser.up",                                      "RocksDF.png"                   },
6310   { "df_laser.up.xpos",                                 "1"                             },
6311   { "df_laser.up.ypos",                                 "9"                             },
6312   { "df_laser.up.frames",                               "1"                             },
6313   { "df_laser.left",                                    "RocksDF.png"                   },
6314   { "df_laser.left.xpos",                               "2"                             },
6315   { "df_laser.left.ypos",                               "9"                             },
6316   { "df_laser.left.frames",                             "1"                             },
6317   { "df_laser.down",                                    "RocksDF.png"                   },
6318   { "df_laser.down.xpos",                               "3"                             },
6319   { "df_laser.down.ypos",                               "9"                             },
6320   { "df_laser.down.frames",                             "1"                             },
6321
6322   { "df_receiver",                                      "RocksDF.png"                   },
6323   { "df_receiver.xpos",                                 "4"                             },
6324   { "df_receiver.ypos",                                 "9"                             },
6325   { "df_receiver.frames",                               "4"                             },
6326   { "df_receiver.delay",                                "8"                             },
6327   { "df_receiver.right",                                "RocksDF.png"                   },
6328   { "df_receiver.right.xpos",                           "4"                             },
6329   { "df_receiver.right.ypos",                           "9"                             },
6330   { "df_receiver.right.frames",                         "1"                             },
6331   { "df_receiver.up",                                   "RocksDF.png"                   },
6332   { "df_receiver.up.xpos",                              "5"                             },
6333   { "df_receiver.up.ypos",                              "9"                             },
6334   { "df_receiver.up.frames",                            "1"                             },
6335   { "df_receiver.left",                                 "RocksDF.png"                   },
6336   { "df_receiver.left.xpos",                            "6"                             },
6337   { "df_receiver.left.ypos",                            "9"                             },
6338   { "df_receiver.left.frames",                          "1"                             },
6339   { "df_receiver.down",                                 "RocksDF.png"                   },
6340   { "df_receiver.down.xpos",                            "7"                             },
6341   { "df_receiver.down.ypos",                            "9"                             },
6342   { "df_receiver.down.frames",                          "1"                             },
6343
6344   { "df_mirror_1",                                      "RocksDF.png"                   },
6345   { "df_mirror_1.xpos",                                 "0"                             },
6346   { "df_mirror_1.ypos",                                 "0"                             },
6347   { "df_mirror_1.frames",                               "1"                             },
6348   { "df_mirror_2",                                      "RocksDF.png"                   },
6349   { "df_mirror_2.xpos",                                 "1"                             },
6350   { "df_mirror_2.ypos",                                 "0"                             },
6351   { "df_mirror_2.frames",                               "1"                             },
6352   { "df_mirror_3",                                      "RocksDF.png"                   },
6353   { "df_mirror_3.xpos",                                 "2"                             },
6354   { "df_mirror_3.ypos",                                 "0"                             },
6355   { "df_mirror_3.frames",                               "1"                             },
6356   { "df_mirror_4",                                      "RocksDF.png"                   },
6357   { "df_mirror_4.xpos",                                 "3"                             },
6358   { "df_mirror_4.ypos",                                 "0"                             },
6359   { "df_mirror_4.frames",                               "1"                             },
6360   { "df_mirror_5",                                      "RocksDF.png"                   },
6361   { "df_mirror_5.xpos",                                 "4"                             },
6362   { "df_mirror_5.ypos",                                 "0"                             },
6363   { "df_mirror_5.frames",                               "1"                             },
6364   { "df_mirror_6",                                      "RocksDF.png"                   },
6365   { "df_mirror_6.xpos",                                 "5"                             },
6366   { "df_mirror_6.ypos",                                 "0"                             },
6367   { "df_mirror_6.frames",                               "1"                             },
6368   { "df_mirror_7",                                      "RocksDF.png"                   },
6369   { "df_mirror_7.xpos",                                 "6"                             },
6370   { "df_mirror_7.ypos",                                 "0"                             },
6371   { "df_mirror_7.frames",                               "1"                             },
6372   { "df_mirror_8",                                      "RocksDF.png"                   },
6373   { "df_mirror_8.xpos",                                 "7"                             },
6374   { "df_mirror_8.ypos",                                 "0"                             },
6375   { "df_mirror_8.frames",                               "1"                             },
6376   { "df_mirror_9",                                      "RocksDF.png"                   },
6377   { "df_mirror_9.xpos",                                 "8"                             },
6378   { "df_mirror_9.ypos",                                 "0"                             },
6379   { "df_mirror_9.frames",                               "1"                             },
6380   { "df_mirror_10",                                     "RocksDF.png"                   },
6381   { "df_mirror_10.xpos",                                "9"                             },
6382   { "df_mirror_10.ypos",                                "0"                             },
6383   { "df_mirror_10.frames",                              "1"                             },
6384   { "df_mirror_11",                                     "RocksDF.png"                   },
6385   { "df_mirror_11.xpos",                                "10"                            },
6386   { "df_mirror_11.ypos",                                "0"                             },
6387   { "df_mirror_11.frames",                              "1"                             },
6388   { "df_mirror_12",                                     "RocksDF.png"                   },
6389   { "df_mirror_12.xpos",                                "11"                            },
6390   { "df_mirror_12.ypos",                                "0"                             },
6391   { "df_mirror_12.frames",                              "1"                             },
6392   { "df_mirror_13",                                     "RocksDF.png"                   },
6393   { "df_mirror_13.xpos",                                "12"                            },
6394   { "df_mirror_13.ypos",                                "0"                             },
6395   { "df_mirror_13.frames",                              "1"                             },
6396   { "df_mirror_14",                                     "RocksDF.png"                   },
6397   { "df_mirror_14.xpos",                                "13"                            },
6398   { "df_mirror_14.ypos",                                "0"                             },
6399   { "df_mirror_14.frames",                              "1"                             },
6400   { "df_mirror_15",                                     "RocksDF.png"                   },
6401   { "df_mirror_15.xpos",                                "14"                            },
6402   { "df_mirror_15.ypos",                                "0"                             },
6403   { "df_mirror_15.frames",                              "1"                             },
6404   { "df_mirror_16",                                     "RocksDF.png"                   },
6405   { "df_mirror_16.xpos",                                "15"                            },
6406   { "df_mirror_16.ypos",                                "0"                             },
6407   { "df_mirror_16.frames",                              "1"                             },
6408
6409   { "df_mirror_rotating_1",                             "RocksDF.png"                   },
6410   { "df_mirror_rotating_1.xpos",                        "0"                             },
6411   { "df_mirror_rotating_1.ypos",                        "0"                             },
6412   { "df_mirror_rotating_1.frames",                      "1"                             },
6413   { "df_mirror_rotating_1.EDITOR",                      "RocksDF.png"                   },
6414   { "df_mirror_rotating_1.EDITOR.xpos",                 "0"                             },
6415   { "df_mirror_rotating_1.EDITOR.ypos",                 "1"                             },
6416   { "df_mirror_rotating_1.EDITOR.frames",               "1"                             },
6417   { "df_mirror_rotating_2",                             "RocksDF.png"                   },
6418   { "df_mirror_rotating_2.xpos",                        "1"                             },
6419   { "df_mirror_rotating_2.ypos",                        "0"                             },
6420   { "df_mirror_rotating_2.frames",                      "1"                             },
6421   { "df_mirror_rotating_2.EDITOR",                      "RocksDF.png"                   },
6422   { "df_mirror_rotating_2.EDITOR.xpos",                 "1"                             },
6423   { "df_mirror_rotating_2.EDITOR.ypos",                 "1"                             },
6424   { "df_mirror_rotating_2.EDITOR.frames",               "1"                             },
6425   { "df_mirror_rotating_3",                             "RocksDF.png"                   },
6426   { "df_mirror_rotating_3.xpos",                        "2"                             },
6427   { "df_mirror_rotating_3.ypos",                        "0"                             },
6428   { "df_mirror_rotating_3.frames",                      "1"                             },
6429   { "df_mirror_rotating_3.EDITOR",                      "RocksDF.png"                   },
6430   { "df_mirror_rotating_3.EDITOR.xpos",                 "2"                             },
6431   { "df_mirror_rotating_3.EDITOR.ypos",                 "1"                             },
6432   { "df_mirror_rotating_3.EDITOR.frames",               "1"                             },
6433   { "df_mirror_rotating_4",                             "RocksDF.png"                   },
6434   { "df_mirror_rotating_4.xpos",                        "3"                             },
6435   { "df_mirror_rotating_4.ypos",                        "0"                             },
6436   { "df_mirror_rotating_4.frames",                      "1"                             },
6437   { "df_mirror_rotating_4.EDITOR",                      "RocksDF.png"                   },
6438   { "df_mirror_rotating_4.EDITOR.xpos",                 "3"                             },
6439   { "df_mirror_rotating_4.EDITOR.ypos",                 "1"                             },
6440   { "df_mirror_rotating_4.EDITOR.frames",               "1"                             },
6441   { "df_mirror_rotating_5",                             "RocksDF.png"                   },
6442   { "df_mirror_rotating_5.xpos",                        "4"                             },
6443   { "df_mirror_rotating_5.ypos",                        "0"                             },
6444   { "df_mirror_rotating_5.frames",                      "1"                             },
6445   { "df_mirror_rotating_5.EDITOR",                      "RocksDF.png"                   },
6446   { "df_mirror_rotating_5.EDITOR.xpos",                 "4"                             },
6447   { "df_mirror_rotating_5.EDITOR.ypos",                 "1"                             },
6448   { "df_mirror_rotating_5.EDITOR.frames",               "1"                             },
6449   { "df_mirror_rotating_6",                             "RocksDF.png"                   },
6450   { "df_mirror_rotating_6.xpos",                        "5"                             },
6451   { "df_mirror_rotating_6.ypos",                        "0"                             },
6452   { "df_mirror_rotating_6.frames",                      "1"                             },
6453   { "df_mirror_rotating_6.EDITOR",                      "RocksDF.png"                   },
6454   { "df_mirror_rotating_6.EDITOR.xpos",                 "5"                             },
6455   { "df_mirror_rotating_6.EDITOR.ypos",                 "1"                             },
6456   { "df_mirror_rotating_6.EDITOR.frames",               "1"                             },
6457   { "df_mirror_rotating_7",                             "RocksDF.png"                   },
6458   { "df_mirror_rotating_7.xpos",                        "6"                             },
6459   { "df_mirror_rotating_7.ypos",                        "0"                             },
6460   { "df_mirror_rotating_7.frames",                      "1"                             },
6461   { "df_mirror_rotating_7.EDITOR",                      "RocksDF.png"                   },
6462   { "df_mirror_rotating_7.EDITOR.xpos",                 "6"                             },
6463   { "df_mirror_rotating_7.EDITOR.ypos",                 "1"                             },
6464   { "df_mirror_rotating_7.EDITOR.frames",               "1"                             },
6465   { "df_mirror_rotating_8",                             "RocksDF.png"                   },
6466   { "df_mirror_rotating_8.xpos",                        "7"                             },
6467   { "df_mirror_rotating_8.ypos",                        "0"                             },
6468   { "df_mirror_rotating_8.frames",                      "1"                             },
6469   { "df_mirror_rotating_8.EDITOR",                      "RocksDF.png"                   },
6470   { "df_mirror_rotating_8.EDITOR.xpos",                 "7"                             },
6471   { "df_mirror_rotating_8.EDITOR.ypos",                 "1"                             },
6472   { "df_mirror_rotating_8.EDITOR.frames",               "1"                             },
6473   { "df_mirror_rotating_9",                             "RocksDF.png"                   },
6474   { "df_mirror_rotating_9.xpos",                        "8"                             },
6475   { "df_mirror_rotating_9.ypos",                        "0"                             },
6476   { "df_mirror_rotating_9.frames",                      "1"                             },
6477   { "df_mirror_rotating_9.EDITOR",                      "RocksDF.png"                   },
6478   { "df_mirror_rotating_9.EDITOR.xpos",                 "8"                             },
6479   { "df_mirror_rotating_9.EDITOR.ypos",                 "1"                             },
6480   { "df_mirror_rotating_9.EDITOR.frames",               "1"                             },
6481   { "df_mirror_rotating_10",                            "RocksDF.png"                   },
6482   { "df_mirror_rotating_10.xpos",                       "9"                             },
6483   { "df_mirror_rotating_10.ypos",                       "0"                             },
6484   { "df_mirror_rotating_10.frames",                     "1"                             },
6485   { "df_mirror_rotating_10.EDITOR",                     "RocksDF.png"                   },
6486   { "df_mirror_rotating_10.EDITOR.xpos",                "9"                             },
6487   { "df_mirror_rotating_10.EDITOR.ypos",                "1"                             },
6488   { "df_mirror_rotating_10.EDITOR.frames",              "1"                             },
6489   { "df_mirror_rotating_11",                            "RocksDF.png"                   },
6490   { "df_mirror_rotating_11.xpos",                       "10"                            },
6491   { "df_mirror_rotating_11.ypos",                       "0"                             },
6492   { "df_mirror_rotating_11.frames",                     "1"                             },
6493   { "df_mirror_rotating_11.EDITOR",                     "RocksDF.png"                   },
6494   { "df_mirror_rotating_11.EDITOR.xpos",                "10"                            },
6495   { "df_mirror_rotating_11.EDITOR.ypos",                "1"                             },
6496   { "df_mirror_rotating_11.EDITOR.frames",              "1"                             },
6497   { "df_mirror_rotating_12",                            "RocksDF.png"                   },
6498   { "df_mirror_rotating_12.xpos",                       "11"                            },
6499   { "df_mirror_rotating_12.ypos",                       "0"                             },
6500   { "df_mirror_rotating_12.frames",                     "1"                             },
6501   { "df_mirror_rotating_12.EDITOR",                     "RocksDF.png"                   },
6502   { "df_mirror_rotating_12.EDITOR.xpos",                "11"                            },
6503   { "df_mirror_rotating_12.EDITOR.ypos",                "1"                             },
6504   { "df_mirror_rotating_12.EDITOR.frames",              "1"                             },
6505   { "df_mirror_rotating_13",                            "RocksDF.png"                   },
6506   { "df_mirror_rotating_13.xpos",                       "12"                            },
6507   { "df_mirror_rotating_13.ypos",                       "0"                             },
6508   { "df_mirror_rotating_13.frames",                     "1"                             },
6509   { "df_mirror_rotating_13.EDITOR",                     "RocksDF.png"                   },
6510   { "df_mirror_rotating_13.EDITOR.xpos",                "12"                            },
6511   { "df_mirror_rotating_13.EDITOR.ypos",                "1"                             },
6512   { "df_mirror_rotating_13.EDITOR.frames",              "1"                             },
6513   { "df_mirror_rotating_14",                            "RocksDF.png"                   },
6514   { "df_mirror_rotating_14.xpos",                       "13"                            },
6515   { "df_mirror_rotating_14.ypos",                       "0"                             },
6516   { "df_mirror_rotating_14.frames",                     "1"                             },
6517   { "df_mirror_rotating_14.EDITOR",                     "RocksDF.png"                   },
6518   { "df_mirror_rotating_14.EDITOR.xpos",                "13"                            },
6519   { "df_mirror_rotating_14.EDITOR.ypos",                "1"                             },
6520   { "df_mirror_rotating_14.EDITOR.frames",              "1"                             },
6521   { "df_mirror_rotating_15",                            "RocksDF.png"                   },
6522   { "df_mirror_rotating_15.xpos",                       "14"                            },
6523   { "df_mirror_rotating_15.ypos",                       "0"                             },
6524   { "df_mirror_rotating_15.frames",                     "1"                             },
6525   { "df_mirror_rotating_15.EDITOR",                     "RocksDF.png"                   },
6526   { "df_mirror_rotating_15.EDITOR.xpos",                "14"                            },
6527   { "df_mirror_rotating_15.EDITOR.ypos",                "1"                             },
6528   { "df_mirror_rotating_15.EDITOR.frames",              "1"                             },
6529   { "df_mirror_rotating_16",                            "RocksDF.png"                   },
6530   { "df_mirror_rotating_16.xpos",                       "15"                            },
6531   { "df_mirror_rotating_16.ypos",                       "0"                             },
6532   { "df_mirror_rotating_16.frames",                     "1"                             },
6533   { "df_mirror_rotating_16.EDITOR",                     "RocksDF.png"                   },
6534   { "df_mirror_rotating_16.EDITOR.xpos",                "15"                            },
6535   { "df_mirror_rotating_16.EDITOR.ypos",                "1"                             },
6536   { "df_mirror_rotating_16.EDITOR.frames",              "1"                             },
6537
6538   { "df_steel_grid_fixed_1",                            "RocksDF.png"                   },
6539   { "df_steel_grid_fixed_1.xpos",                       "0"                             },
6540   { "df_steel_grid_fixed_1.ypos",                       "2"                             },
6541   { "df_steel_grid_fixed_1.frames",                     "1"                             },
6542   { "df_steel_grid_fixed_2",                            "RocksDF.png"                   },
6543   { "df_steel_grid_fixed_2.xpos",                       "1"                             },
6544   { "df_steel_grid_fixed_2.ypos",                       "2"                             },
6545   { "df_steel_grid_fixed_2.frames",                     "1"                             },
6546   { "df_steel_grid_fixed_3",                            "RocksDF.png"                   },
6547   { "df_steel_grid_fixed_3.xpos",                       "2"                             },
6548   { "df_steel_grid_fixed_3.ypos",                       "2"                             },
6549   { "df_steel_grid_fixed_3.frames",                     "1"                             },
6550   { "df_steel_grid_fixed_4",                            "RocksDF.png"                   },
6551   { "df_steel_grid_fixed_4.xpos",                       "3"                             },
6552   { "df_steel_grid_fixed_4.ypos",                       "2"                             },
6553   { "df_steel_grid_fixed_4.frames",                     "1"                             },
6554   { "df_steel_grid_fixed_5",                            "RocksDF.png"                   },
6555   { "df_steel_grid_fixed_5.xpos",                       "4"                             },
6556   { "df_steel_grid_fixed_5.ypos",                       "2"                             },
6557   { "df_steel_grid_fixed_5.frames",                     "1"                             },
6558   { "df_steel_grid_fixed_6",                            "RocksDF.png"                   },
6559   { "df_steel_grid_fixed_6.xpos",                       "5"                             },
6560   { "df_steel_grid_fixed_6.ypos",                       "2"                             },
6561   { "df_steel_grid_fixed_6.frames",                     "1"                             },
6562   { "df_steel_grid_fixed_7",                            "RocksDF.png"                   },
6563   { "df_steel_grid_fixed_7.xpos",                       "6"                             },
6564   { "df_steel_grid_fixed_7.ypos",                       "2"                             },
6565   { "df_steel_grid_fixed_7.frames",                     "1"                             },
6566   { "df_steel_grid_fixed_8",                            "RocksDF.png"                   },
6567   { "df_steel_grid_fixed_8.xpos",                       "7"                             },
6568   { "df_steel_grid_fixed_8.ypos",                       "2"                             },
6569   { "df_steel_grid_fixed_8.frames",                     "1"                             },
6570
6571   { "df_wooden_grid_fixed_1",                           "RocksDF.png"                   },
6572   { "df_wooden_grid_fixed_1.xpos",                      "8"                             },
6573   { "df_wooden_grid_fixed_1.ypos",                      "2"                             },
6574   { "df_wooden_grid_fixed_1.frames",                    "1"                             },
6575   { "df_wooden_grid_fixed_2",                           "RocksDF.png"                   },
6576   { "df_wooden_grid_fixed_2.xpos",                      "9"                             },
6577   { "df_wooden_grid_fixed_2.ypos",                      "2"                             },
6578   { "df_wooden_grid_fixed_2.frames",                    "1"                             },
6579   { "df_wooden_grid_fixed_3",                           "RocksDF.png"                   },
6580   { "df_wooden_grid_fixed_3.xpos",                      "10"                            },
6581   { "df_wooden_grid_fixed_3.ypos",                      "2"                             },
6582   { "df_wooden_grid_fixed_3.frames",                    "1"                             },
6583   { "df_wooden_grid_fixed_4",                           "RocksDF.png"                   },
6584   { "df_wooden_grid_fixed_4.xpos",                      "11"                            },
6585   { "df_wooden_grid_fixed_4.ypos",                      "2"                             },
6586   { "df_wooden_grid_fixed_4.frames",                    "1"                             },
6587   { "df_wooden_grid_fixed_5",                           "RocksDF.png"                   },
6588   { "df_wooden_grid_fixed_5.xpos",                      "12"                            },
6589   { "df_wooden_grid_fixed_5.ypos",                      "2"                             },
6590   { "df_wooden_grid_fixed_5.frames",                    "1"                             },
6591   { "df_wooden_grid_fixed_6",                           "RocksDF.png"                   },
6592   { "df_wooden_grid_fixed_6.xpos",                      "13"                            },
6593   { "df_wooden_grid_fixed_6.ypos",                      "2"                             },
6594   { "df_wooden_grid_fixed_6.frames",                    "1"                             },
6595   { "df_wooden_grid_fixed_7",                           "RocksDF.png"                   },
6596   { "df_wooden_grid_fixed_7.xpos",                      "14"                            },
6597   { "df_wooden_grid_fixed_7.ypos",                      "2"                             },
6598   { "df_wooden_grid_fixed_7.frames",                    "1"                             },
6599   { "df_wooden_grid_fixed_8",                           "RocksDF.png"                   },
6600   { "df_wooden_grid_fixed_8.xpos",                      "15"                            },
6601   { "df_wooden_grid_fixed_8.ypos",                      "2"                             },
6602   { "df_wooden_grid_fixed_8.frames",                    "1"                             },
6603
6604   { "df_steel_grid_rotating_1",                         "RocksDF.png"                   },
6605   { "df_steel_grid_rotating_1.xpos",                    "0"                             },
6606   { "df_steel_grid_rotating_1.ypos",                    "2"                             },
6607   { "df_steel_grid_rotating_1.frames",                  "1"                             },
6608   { "df_steel_grid_rotating_1.EDITOR",                  "RocksDF.png"                   },
6609   { "df_steel_grid_rotating_1.EDITOR.xpos",             "0"                             },
6610   { "df_steel_grid_rotating_1.EDITOR.ypos",             "3"                             },
6611   { "df_steel_grid_rotating_1.EDITOR.frames",           "1"                             },
6612   { "df_steel_grid_rotating_2",                         "RocksDF.png"                   },
6613   { "df_steel_grid_rotating_2.xpos",                    "1"                             },
6614   { "df_steel_grid_rotating_2.ypos",                    "2"                             },
6615   { "df_steel_grid_rotating_2.frames",                  "1"                             },
6616   { "df_steel_grid_rotating_2.EDITOR",                  "RocksDF.png"                   },
6617   { "df_steel_grid_rotating_2.EDITOR.xpos",             "1"                             },
6618   { "df_steel_grid_rotating_2.EDITOR.ypos",             "3"                             },
6619   { "df_steel_grid_rotating_2.EDITOR.frames",           "1"                             },
6620   { "df_steel_grid_rotating_3",                         "RocksDF.png"                   },
6621   { "df_steel_grid_rotating_3.xpos",                    "2"                             },
6622   { "df_steel_grid_rotating_3.ypos",                    "2"                             },
6623   { "df_steel_grid_rotating_3.frames",                  "1"                             },
6624   { "df_steel_grid_rotating_3.EDITOR",                  "RocksDF.png"                   },
6625   { "df_steel_grid_rotating_3.EDITOR.xpos",             "2"                             },
6626   { "df_steel_grid_rotating_3.EDITOR.ypos",             "3"                             },
6627   { "df_steel_grid_rotating_3.EDITOR.frames",           "1"                             },
6628   { "df_steel_grid_rotating_4",                         "RocksDF.png"                   },
6629   { "df_steel_grid_rotating_4.xpos",                    "3"                             },
6630   { "df_steel_grid_rotating_4.ypos",                    "2"                             },
6631   { "df_steel_grid_rotating_4.frames",                  "1"                             },
6632   { "df_steel_grid_rotating_4.EDITOR",                  "RocksDF.png"                   },
6633   { "df_steel_grid_rotating_4.EDITOR.xpos",             "3"                             },
6634   { "df_steel_grid_rotating_4.EDITOR.ypos",             "3"                             },
6635   { "df_steel_grid_rotating_4.EDITOR.frames",           "1"                             },
6636   { "df_steel_grid_rotating_5",                         "RocksDF.png"                   },
6637   { "df_steel_grid_rotating_5.xpos",                    "4"                             },
6638   { "df_steel_grid_rotating_5.ypos",                    "2"                             },
6639   { "df_steel_grid_rotating_5.frames",                  "1"                             },
6640   { "df_steel_grid_rotating_5.EDITOR",                  "RocksDF.png"                   },
6641   { "df_steel_grid_rotating_5.EDITOR.xpos",             "4"                             },
6642   { "df_steel_grid_rotating_5.EDITOR.ypos",             "3"                             },
6643   { "df_steel_grid_rotating_5.EDITOR.frames",           "1"                             },
6644   { "df_steel_grid_rotating_6",                         "RocksDF.png"                   },
6645   { "df_steel_grid_rotating_6.xpos",                    "5"                             },
6646   { "df_steel_grid_rotating_6.ypos",                    "2"                             },
6647   { "df_steel_grid_rotating_6.frames",                  "1"                             },
6648   { "df_steel_grid_rotating_6.EDITOR",                  "RocksDF.png"                   },
6649   { "df_steel_grid_rotating_6.EDITOR.xpos",             "5"                             },
6650   { "df_steel_grid_rotating_6.EDITOR.ypos",             "3"                             },
6651   { "df_steel_grid_rotating_6.EDITOR.frames",           "1"                             },
6652   { "df_steel_grid_rotating_7",                         "RocksDF.png"                   },
6653   { "df_steel_grid_rotating_7.xpos",                    "6"                             },
6654   { "df_steel_grid_rotating_7.ypos",                    "2"                             },
6655   { "df_steel_grid_rotating_7.frames",                  "1"                             },
6656   { "df_steel_grid_rotating_7.EDITOR",                  "RocksDF.png"                   },
6657   { "df_steel_grid_rotating_7.EDITOR.xpos",             "6"                             },
6658   { "df_steel_grid_rotating_7.EDITOR.ypos",             "3"                             },
6659   { "df_steel_grid_rotating_7.EDITOR.frames",           "1"                             },
6660   { "df_steel_grid_rotating_8",                         "RocksDF.png"                   },
6661   { "df_steel_grid_rotating_8.xpos",                    "7"                             },
6662   { "df_steel_grid_rotating_8.ypos",                    "2"                             },
6663   { "df_steel_grid_rotating_8.frames",                  "1"                             },
6664   { "df_steel_grid_rotating_8.EDITOR",                  "RocksDF.png"                   },
6665   { "df_steel_grid_rotating_8.EDITOR.xpos",             "7"                             },
6666   { "df_steel_grid_rotating_8.EDITOR.ypos",             "3"                             },
6667   { "df_steel_grid_rotating_8.EDITOR.frames",           "1"                             },
6668
6669   { "df_wooden_grid_rotating_1",                        "RocksDF.png"                   },
6670   { "df_wooden_grid_rotating_1.xpos",                   "8"                             },
6671   { "df_wooden_grid_rotating_1.ypos",                   "2"                             },
6672   { "df_wooden_grid_rotating_1.frames",                 "1"                             },
6673   { "df_wooden_grid_rotating_1.EDITOR",                 "RocksDF.png"                   },
6674   { "df_wooden_grid_rotating_1.EDITOR.xpos",            "8"                             },
6675   { "df_wooden_grid_rotating_1.EDITOR.ypos",            "3"                             },
6676   { "df_wooden_grid_rotating_1.EDITOR.frames",          "1"                             },
6677   { "df_wooden_grid_rotating_2",                        "RocksDF.png"                   },
6678   { "df_wooden_grid_rotating_2.xpos",                   "9"                             },
6679   { "df_wooden_grid_rotating_2.ypos",                   "2"                             },
6680   { "df_wooden_grid_rotating_2.frames",                 "1"                             },
6681   { "df_wooden_grid_rotating_2.EDITOR",                 "RocksDF.png"                   },
6682   { "df_wooden_grid_rotating_2.EDITOR.xpos",            "9"                             },
6683   { "df_wooden_grid_rotating_2.EDITOR.ypos",            "3"                             },
6684   { "df_wooden_grid_rotating_2.EDITOR.frames",          "1"                             },
6685   { "df_wooden_grid_rotating_3",                        "RocksDF.png"                   },
6686   { "df_wooden_grid_rotating_3.xpos",                   "10"                            },
6687   { "df_wooden_grid_rotating_3.ypos",                   "2"                             },
6688   { "df_wooden_grid_rotating_3.frames",                 "1"                             },
6689   { "df_wooden_grid_rotating_3.EDITOR",                 "RocksDF.png"                   },
6690   { "df_wooden_grid_rotating_3.EDITOR.xpos",            "10"                            },
6691   { "df_wooden_grid_rotating_3.EDITOR.ypos",            "3"                             },
6692   { "df_wooden_grid_rotating_3.EDITOR.frames",          "1"                             },
6693   { "df_wooden_grid_rotating_4",                        "RocksDF.png"                   },
6694   { "df_wooden_grid_rotating_4.xpos",                   "11"                            },
6695   { "df_wooden_grid_rotating_4.ypos",                   "2"                             },
6696   { "df_wooden_grid_rotating_4.frames",                 "1"                             },
6697   { "df_wooden_grid_rotating_4.EDITOR",                 "RocksDF.png"                   },
6698   { "df_wooden_grid_rotating_4.EDITOR.xpos",            "11"                            },
6699   { "df_wooden_grid_rotating_4.EDITOR.ypos",            "3"                             },
6700   { "df_wooden_grid_rotating_4.EDITOR.frames",          "1"                             },
6701   { "df_wooden_grid_rotating_5",                        "RocksDF.png"                   },
6702   { "df_wooden_grid_rotating_5.xpos",                   "12"                            },
6703   { "df_wooden_grid_rotating_5.ypos",                   "2"                             },
6704   { "df_wooden_grid_rotating_5.frames",                 "1"                             },
6705   { "df_wooden_grid_rotating_5.EDITOR",                 "RocksDF.png"                   },
6706   { "df_wooden_grid_rotating_5.EDITOR.xpos",            "12"                            },
6707   { "df_wooden_grid_rotating_5.EDITOR.ypos",            "3"                             },
6708   { "df_wooden_grid_rotating_5.EDITOR.frames",          "1"                             },
6709   { "df_wooden_grid_rotating_6",                        "RocksDF.png"                   },
6710   { "df_wooden_grid_rotating_6.xpos",                   "13"                            },
6711   { "df_wooden_grid_rotating_6.ypos",                   "2"                             },
6712   { "df_wooden_grid_rotating_6.frames",                 "1"                             },
6713   { "df_wooden_grid_rotating_6.EDITOR",                 "RocksDF.png"                   },
6714   { "df_wooden_grid_rotating_6.EDITOR.xpos",            "13"                            },
6715   { "df_wooden_grid_rotating_6.EDITOR.ypos",            "3"                             },
6716   { "df_wooden_grid_rotating_6.EDITOR.frames",          "1"                             },
6717   { "df_wooden_grid_rotating_7",                        "RocksDF.png"                   },
6718   { "df_wooden_grid_rotating_7.xpos",                   "14"                            },
6719   { "df_wooden_grid_rotating_7.ypos",                   "2"                             },
6720   { "df_wooden_grid_rotating_7.frames",                 "1"                             },
6721   { "df_wooden_grid_rotating_7.EDITOR",                 "RocksDF.png"                   },
6722   { "df_wooden_grid_rotating_7.EDITOR.xpos",            "14"                            },
6723   { "df_wooden_grid_rotating_7.EDITOR.ypos",            "3"                             },
6724   { "df_wooden_grid_rotating_7.EDITOR.frames",          "1"                             },
6725   { "df_wooden_grid_rotating_8",                        "RocksDF.png"                   },
6726   { "df_wooden_grid_rotating_8.xpos",                   "15"                            },
6727   { "df_wooden_grid_rotating_8.ypos",                   "2"                             },
6728   { "df_wooden_grid_rotating_8.frames",                 "1"                             },
6729   { "df_wooden_grid_rotating_8.EDITOR",                 "RocksDF.png"                   },
6730   { "df_wooden_grid_rotating_8.EDITOR.xpos",            "15"                            },
6731   { "df_wooden_grid_rotating_8.EDITOR.ypos",            "3"                             },
6732   { "df_wooden_grid_rotating_8.EDITOR.frames",          "1"                             },
6733
6734   { "df_fibre_optic_red_1",                             "RocksDF.png"                   },
6735   { "df_fibre_optic_red_1.xpos",                        "8"                             },
6736   { "df_fibre_optic_red_1.ypos",                        "8"                             },
6737   { "df_fibre_optic_red_1.frames",                      "1"                             },
6738   { "df_fibre_optic_red_1.EDITOR",                      "RocksDF.png"                   },
6739   { "df_fibre_optic_red_1.EDITOR.xpos",                 "8"                             },
6740   { "df_fibre_optic_red_1.EDITOR.ypos",                 "9"                             },
6741   { "df_fibre_optic_red_1.EDITOR.frames",               "1"                             },
6742   { "df_fibre_optic_red_2",                             "RocksDF.png"                   },
6743   { "df_fibre_optic_red_2.xpos",                        "9"                             },
6744   { "df_fibre_optic_red_2.ypos",                        "8"                             },
6745   { "df_fibre_optic_red_2.frames",                      "1"                             },
6746   { "df_fibre_optic_red_2.EDITOR",                      "RocksDF.png"                   },
6747   { "df_fibre_optic_red_2.EDITOR.xpos",                 "9"                             },
6748   { "df_fibre_optic_red_2.EDITOR.ypos",                 "9"                             },
6749   { "df_fibre_optic_red_2.EDITOR.frames",               "1"                             },
6750   { "df_fibre_optic_yellow_1",                          "RocksDF.png"                   },
6751   { "df_fibre_optic_yellow_1.xpos",                     "10"                            },
6752   { "df_fibre_optic_yellow_1.ypos",                     "8"                             },
6753   { "df_fibre_optic_yellow_1.frames",                   "1"                             },
6754   { "df_fibre_optic_yellow_1.EDITOR",                   "RocksDF.png"                   },
6755   { "df_fibre_optic_yellow_1.EDITOR.xpos",              "10"                            },
6756   { "df_fibre_optic_yellow_1.EDITOR.ypos",              "9"                             },
6757   { "df_fibre_optic_yellow_1.EDITOR.frames",            "1"                             },
6758   { "df_fibre_optic_yellow_2",                          "RocksDF.png"                   },
6759   { "df_fibre_optic_yellow_2.xpos",                     "11"                            },
6760   { "df_fibre_optic_yellow_2.ypos",                     "8"                             },
6761   { "df_fibre_optic_yellow_2.frames",                   "1"                             },
6762   { "df_fibre_optic_yellow_2.EDITOR",                   "RocksDF.png"                   },
6763   { "df_fibre_optic_yellow_2.EDITOR.xpos",              "11"                            },
6764   { "df_fibre_optic_yellow_2.EDITOR.ypos",              "9"                             },
6765   { "df_fibre_optic_yellow_2.EDITOR.frames",            "1"                             },
6766   { "df_fibre_optic_green_1",                           "RocksDF.png"                   },
6767   { "df_fibre_optic_green_1.xpos",                      "12"                            },
6768   { "df_fibre_optic_green_1.ypos",                      "8"                             },
6769   { "df_fibre_optic_green_1.frames",                    "1"                             },
6770   { "df_fibre_optic_green_1.EDITOR",                    "RocksDF.png"                   },
6771   { "df_fibre_optic_green_1.EDITOR.xpos",               "12"                            },
6772   { "df_fibre_optic_green_1.EDITOR.ypos",               "9"                             },
6773   { "df_fibre_optic_green_1.EDITOR.frames",             "1"                             },
6774   { "df_fibre_optic_green_2",                           "RocksDF.png"                   },
6775   { "df_fibre_optic_green_2.xpos",                      "13"                            },
6776   { "df_fibre_optic_green_2.ypos",                      "8"                             },
6777   { "df_fibre_optic_green_2.frames",                    "1"                             },
6778   { "df_fibre_optic_green_2.EDITOR",                    "RocksDF.png"                   },
6779   { "df_fibre_optic_green_2.EDITOR.xpos",               "13"                            },
6780   { "df_fibre_optic_green_2.EDITOR.ypos",               "9"                             },
6781   { "df_fibre_optic_green_2.EDITOR.frames",             "1"                             },
6782   { "df_fibre_optic_blue_1",                            "RocksDF.png"                   },
6783   { "df_fibre_optic_blue_1.xpos",                       "14"                            },
6784   { "df_fibre_optic_blue_1.ypos",                       "8"                             },
6785   { "df_fibre_optic_blue_1.frames",                     "1"                             },
6786   { "df_fibre_optic_blue_1.EDITOR",                     "RocksDF.png"                   },
6787   { "df_fibre_optic_blue_1.EDITOR.xpos",                "14"                            },
6788   { "df_fibre_optic_blue_1.EDITOR.ypos",                "9"                             },
6789   { "df_fibre_optic_blue_1.EDITOR.frames",              "1"                             },
6790   { "df_fibre_optic_blue_2",                            "RocksDF.png"                   },
6791   { "df_fibre_optic_blue_2.xpos",                       "15"                            },
6792   { "df_fibre_optic_blue_2.ypos",                       "8"                             },
6793   { "df_fibre_optic_blue_2.frames",                     "1"                             },
6794   { "df_fibre_optic_blue_2.EDITOR",                     "RocksDF.png"                   },
6795   { "df_fibre_optic_blue_2.EDITOR.xpos",                "15"                            },
6796   { "df_fibre_optic_blue_2.EDITOR.ypos",                "9"                             },
6797   { "df_fibre_optic_blue_2.EDITOR.frames",              "1"                             },
6798
6799   { "df_steel_wall",                                    "RocksDF.png"                   },
6800   { "df_steel_wall.xpos",                               "6"                             },
6801   { "df_steel_wall.ypos",                               "8"                             },
6802   { "df_steel_wall.frames",                             "1"                             },
6803
6804   { "df_wooden_wall",                                   "RocksDF.png"                   },
6805   { "df_wooden_wall.xpos",                              "7"                             },
6806   { "df_wooden_wall.ypos",                              "8"                             },
6807   { "df_wooden_wall.frames",                            "1"                             },
6808
6809   { "df_refractor",                                     "RocksDF.png"                   },
6810   { "df_refractor.xpos",                                "1"                             },
6811   { "df_refractor.ypos",                                "8"                             },
6812   { "df_refractor.frames",                              "1"                             },
6813
6814   { "df_cell",                                          "RocksDF.png"                   },
6815   { "df_cell.xpos",                                     "2"                             },
6816   { "df_cell.ypos",                                     "8"                             },
6817   { "df_cell.frames",                                   "1"                             },
6818
6819   { "df_mine",                                          "RocksDF.png"                   },
6820   { "df_mine.xpos",                                     "4"                             },
6821   { "df_mine.ypos",                                     "8"                             },
6822   { "df_mine.frames",                                   "1"                             },
6823   { "df_mine.active",                                   "RocksDF.png"                   },
6824   { "df_mine.active.xpos",                              "3"                             },
6825   { "df_mine.active.ypos",                              "8"                             },
6826   { "df_mine.active.frames",                            "3"                             },
6827   { "df_mine.active.delay",                             "6"                             },
6828   { "df_mine.active.anim_mode",                         "pingpong"                      },
6829
6830   { "df_mirror_fixed_1",                                "RocksDF.png"                   },
6831   { "df_mirror_fixed_1.xpos",                           "0"                             },
6832   { "df_mirror_fixed_1.ypos",                           "10"                            },
6833   { "df_mirror_fixed_1.frames",                         "1"                             },
6834   { "df_mirror_fixed_2",                                "RocksDF.png"                   },
6835   { "df_mirror_fixed_2.xpos",                           "1"                             },
6836   { "df_mirror_fixed_2.ypos",                           "10"                            },
6837   { "df_mirror_fixed_2.frames",                         "1"                             },
6838   { "df_mirror_fixed_3",                                "RocksDF.png"                   },
6839   { "df_mirror_fixed_3.xpos",                           "2"                             },
6840   { "df_mirror_fixed_3.ypos",                           "10"                            },
6841   { "df_mirror_fixed_3.frames",                         "1"                             },
6842   { "df_mirror_fixed_4",                                "RocksDF.png"                   },
6843   { "df_mirror_fixed_4.xpos",                           "3"                             },
6844   { "df_mirror_fixed_4.ypos",                           "10"                            },
6845   { "df_mirror_fixed_4.frames",                         "1"                             },
6846   { "df_mirror_fixed_5",                                "RocksDF.png"                   },
6847   { "df_mirror_fixed_5.xpos",                           "4"                             },
6848   { "df_mirror_fixed_5.ypos",                           "10"                            },
6849   { "df_mirror_fixed_5.frames",                         "1"                             },
6850   { "df_mirror_fixed_6",                                "RocksDF.png"                   },
6851   { "df_mirror_fixed_6.xpos",                           "5"                             },
6852   { "df_mirror_fixed_6.ypos",                           "10"                            },
6853   { "df_mirror_fixed_6.frames",                         "1"                             },
6854   { "df_mirror_fixed_7",                                "RocksDF.png"                   },
6855   { "df_mirror_fixed_7.xpos",                           "6"                             },
6856   { "df_mirror_fixed_7.ypos",                           "10"                            },
6857   { "df_mirror_fixed_7.frames",                         "1"                             },
6858   { "df_mirror_fixed_8",                                "RocksDF.png"                   },
6859   { "df_mirror_fixed_8.xpos",                           "7"                             },
6860   { "df_mirror_fixed_8.ypos",                           "10"                            },
6861   { "df_mirror_fixed_8.frames",                         "1"                             },
6862   { "df_mirror_fixed_9",                                "RocksDF.png"                   },
6863   { "df_mirror_fixed_9.xpos",                           "8"                             },
6864   { "df_mirror_fixed_9.ypos",                           "10"                            },
6865   { "df_mirror_fixed_9.frames",                         "1"                             },
6866   { "df_mirror_fixed_10",                               "RocksDF.png"                   },
6867   { "df_mirror_fixed_10.xpos",                          "9"                             },
6868   { "df_mirror_fixed_10.ypos",                          "10"                            },
6869   { "df_mirror_fixed_10.frames",                        "1"                             },
6870   { "df_mirror_fixed_11",                               "RocksDF.png"                   },
6871   { "df_mirror_fixed_11.xpos",                          "10"                            },
6872   { "df_mirror_fixed_11.ypos",                          "10"                            },
6873   { "df_mirror_fixed_11.frames",                        "1"                             },
6874   { "df_mirror_fixed_12",                               "RocksDF.png"                   },
6875   { "df_mirror_fixed_12.xpos",                          "11"                            },
6876   { "df_mirror_fixed_12.ypos",                          "10"                            },
6877   { "df_mirror_fixed_12.frames",                        "1"                             },
6878   { "df_mirror_fixed_13",                               "RocksDF.png"                   },
6879   { "df_mirror_fixed_13.xpos",                          "12"                            },
6880   { "df_mirror_fixed_13.ypos",                          "10"                            },
6881   { "df_mirror_fixed_13.frames",                        "1"                             },
6882   { "df_mirror_fixed_14",                               "RocksDF.png"                   },
6883   { "df_mirror_fixed_14.xpos",                          "13"                            },
6884   { "df_mirror_fixed_14.ypos",                          "10"                            },
6885   { "df_mirror_fixed_14.frames",                        "1"                             },
6886   { "df_mirror_fixed_15",                               "RocksDF.png"                   },
6887   { "df_mirror_fixed_15.xpos",                          "14"                            },
6888   { "df_mirror_fixed_15.ypos",                          "10"                            },
6889   { "df_mirror_fixed_15.frames",                        "1"                             },
6890   { "df_mirror_fixed_16",                               "RocksDF.png"                   },
6891   { "df_mirror_fixed_16.xpos",                          "15"                            },
6892   { "df_mirror_fixed_16.ypos",                          "10"                            },
6893   { "df_mirror_fixed_16.frames",                        "1"                             },
6894
6895   { "df_slope_1",                                       "RocksDF.png"                   },
6896   { "df_slope_1.xpos",                                  "0"                             },
6897   { "df_slope_1.ypos",                                  "11"                            },
6898   { "df_slope_1.frames",                                "1"                             },
6899   { "df_slope_2",                                       "RocksDF.png"                   },
6900   { "df_slope_2.xpos",                                  "1"                             },
6901   { "df_slope_2.ypos",                                  "11"                            },
6902   { "df_slope_2.frames",                                "1"                             },
6903   { "df_slope_3",                                       "RocksDF.png"                   },
6904   { "df_slope_3.xpos",                                  "2"                             },
6905   { "df_slope_3.ypos",                                  "11"                            },
6906   { "df_slope_3.frames",                                "1"                             },
6907   { "df_slope_4",                                       "RocksDF.png"                   },
6908   { "df_slope_4.xpos",                                  "3"                             },
6909   { "df_slope_4.ypos",                                  "11"                            },
6910   { "df_slope_4.frames",                                "1"                             },
6911
6912   // (these are only defined as elements to support ".PANEL" definitions)
6913   { "graphic_1",                                        UNDEFINED_FILENAME              },
6914   { "graphic_2",                                        UNDEFINED_FILENAME              },
6915   { "graphic_3",                                        UNDEFINED_FILENAME              },
6916   { "graphic_4",                                        UNDEFINED_FILENAME              },
6917   { "graphic_5",                                        UNDEFINED_FILENAME              },
6918   { "graphic_6",                                        UNDEFINED_FILENAME              },
6919   { "graphic_7",                                        UNDEFINED_FILENAME              },
6920   { "graphic_8",                                        UNDEFINED_FILENAME              },
6921
6922   // game graphics template for level-specific colors for native BD levels
6923   { "bdx_game_graphics_color_template",                 UNDEFINED_FILENAME              },
6924
6925 #include "conf_chr.c"   // include auto-generated data structure definitions
6926 #include "conf_cus.c"   // include auto-generated data structure definitions
6927 #include "conf_grp.c"   // include auto-generated data structure definitions
6928 #include "conf_emp.c"   // include auto-generated data structure definitions
6929
6930
6931   // ==========================================================================
6932   // image definitions not associated with game elements (menu screens etc.)
6933   // ==========================================================================
6934
6935   // keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change!
6936
6937   { "sp_frame_horizontal",                              "RocksSP.png"                   },
6938   { "sp_frame_horizontal.xpos",                         "7"                             },
6939   { "sp_frame_horizontal.ypos",                         "14"                            },
6940   { "sp_frame_vertical",                                "RocksSP.png"                   },
6941   { "sp_frame_vertical.xpos",                           "6"                             },
6942   { "sp_frame_vertical.ypos",                           "14"                            },
6943   { "sp_frame_corner",                                  "RocksSP.png"                   },
6944   { "sp_frame_corner.xpos",                             "5"                             },
6945   { "sp_frame_corner.ypos",                             "14"                            },
6946
6947   { "toon_1",                                           "RocksToons.png"                },
6948   { "toon_1.x",                                         "2"                             },
6949   { "toon_1.y",                                         "72"                            },
6950   { "toon_1.width",                                     "40"                            },
6951   { "toon_1.height",                                    "48"                            },
6952   { "toon_1.frames",                                    "8"                             },
6953   { "toon_1.delay",                                     "1"                             },
6954   { "toon_1.step_offset",                               "4"                             },
6955   { "toon_1.step_delay",                                "5"                             },
6956   { "toon_1.direction",                                 "right"                         },
6957   { "toon_1.position",                                  "bottom"                        },
6958
6959   { "toon_2",                                           "RocksToons.png"                },
6960   { "toon_2.x",                                         "2"                             },
6961   { "toon_2.y",                                         "186"                           },
6962   { "toon_2.width",                                     "40"                            },
6963   { "toon_2.height",                                    "48"                            },
6964   { "toon_2.frames",                                    "8"                             },
6965   { "toon_2.delay",                                     "1"                             },
6966   { "toon_2.step_offset",                               "4"                             },
6967   { "toon_2.step_delay",                                "5"                             },
6968   { "toon_2.direction",                                 "left"                          },
6969   { "toon_2.position",                                  "bottom"                        },
6970
6971   { "toon_3",                                           "RocksToons.png"                },
6972   { "toon_3.x",                                         "2"                             },
6973   { "toon_3.y",                                         "125"                           },
6974   { "toon_3.width",                                     "48"                            },
6975   { "toon_3.height",                                    "56"                            },
6976   { "toon_3.frames",                                    "8"                             },
6977   { "toon_3.delay",                                     "1"                             },
6978   { "toon_3.step_offset",                               "4"                             },
6979   { "toon_3.step_delay",                                "5"                             },
6980   { "toon_3.direction",                                 "right"                         },
6981   { "toon_3.position",                                  "bottom"                        },
6982
6983   { "toon_4",                                           "RocksToons.png"                },
6984   { "toon_4.x",                                         "327"                           },
6985   { "toon_4.y",                                         "10"                            },
6986   { "toon_4.width",                                     "80"                            },
6987   { "toon_4.height",                                    "110"                           },
6988   { "toon_4.frames",                                    "1"                             },
6989   { "toon_4.delay",                                     "1"                             },
6990   { "toon_4.step_offset",                               "1"                             },
6991   { "toon_4.step_delay",                                "1"                             },
6992   { "toon_4.direction",                                 "up"                            },
6993   { "toon_4.position",                                  "any"                           },
6994
6995   { "toon_5",                                           "RocksToons.png"                },
6996   { "toon_5.x",                                         "2"                             },
6997   { "toon_5.y",                                         "2"                             },
6998   { "toon_5.width",                                     "32"                            },
6999   { "toon_5.height",                                    "30"                            },
7000   { "toon_5.frames",                                    "8"                             },
7001   { "toon_5.delay",                                     "2"                             },
7002   { "toon_5.anim_mode",                                 "pingpong2"                     },
7003   { "toon_5.step_offset",                               "2"                             },
7004   { "toon_5.step_delay",                                "1"                             },
7005   { "toon_5.direction",                                 "right"                         },
7006   { "toon_5.position",                                  "upper"                         },
7007
7008   { "toon_6",                                           "RocksToons.png"                },
7009   { "toon_6.x",                                         "2"                             },
7010   { "toon_6.y",                                         "37"                            },
7011   { "toon_6.width",                                     "32"                            },
7012   { "toon_6.height",                                    "30"                            },
7013   { "toon_6.frames",                                    "8"                             },
7014   { "toon_6.delay",                                     "2"                             },
7015   { "toon_6.anim_mode",                                 "pingpong2"                     },
7016   { "toon_6.step_offset",                               "2"                             },
7017   { "toon_6.step_delay",                                "1"                             },
7018   { "toon_6.direction",                                 "left"                          },
7019   { "toon_6.position",                                  "upper"                         },
7020
7021   { "toon_7",                                           "RocksMore.png"                 },
7022   { "toon_7.xpos",                                      "0"                             },
7023   { "toon_7.ypos",                                      "6"                             },
7024   { "toon_7.frames",                                    "16"                            },
7025   { "toon_7.delay",                                     "2"                             },
7026   { "toon_7.direction",                                 "down"                          },
7027   { "toon_7.position",                                  "any"                           },
7028
7029   { "toon_8",                                           "RocksHeroes.png"               },
7030   { "toon_8.xpos",                                      "4"                             },
7031   { "toon_8.ypos",                                      "1"                             },
7032   { "toon_8.frames",                                    "4"                             },
7033   { "toon_8.delay",                                     "4"                             },
7034   { "toon_8.direction",                                 "right"                         },
7035   { "toon_8.position",                                  "bottom"                        },
7036
7037   { "toon_9",                                           "RocksHeroes.png"               },
7038   { "toon_9.xpos",                                      "8"                             },
7039   { "toon_9.ypos",                                      "7"                             },
7040   { "toon_9.frames",                                    "4"                             },
7041   { "toon_9.delay",                                     "2"                             },
7042   { "toon_9.direction",                                 "left"                          },
7043   { "toon_9.position",                                  "bottom"                        },
7044
7045   { "toon_10",                                          "RocksHeroes.png"               },
7046   { "toon_10.xpos",                                     "12"                            },
7047   { "toon_10.ypos",                                     "7"                             },
7048   { "toon_10.frames",                                   "4"                             },
7049   { "toon_10.delay",                                    "2"                             },
7050   { "toon_10.direction",                                "right"                         },
7051   { "toon_10.position",                                 "bottom"                        },
7052
7053   { "toon_11",                                          "RocksHeroes.png"               },
7054   { "toon_11.xpos",                                     "8"                             },
7055   { "toon_11.ypos",                                     "5"                             },
7056   { "toon_11.frames",                                   "4"                             },
7057   { "toon_11.delay",                                    "2"                             },
7058   { "toon_11.direction",                                "left"                          },
7059   { "toon_11.position",                                 "bottom"                        },
7060
7061   { "toon_12",                                          "RocksHeroes.png"               },
7062   { "toon_12.xpos",                                     "12"                            },
7063   { "toon_12.ypos",                                     "5"                             },
7064   { "toon_12.frames",                                   "4"                             },
7065   { "toon_12.delay",                                    "2"                             },
7066   { "toon_12.direction",                                "right"                         },
7067   { "toon_12.position",                                 "bottom"                        },
7068
7069   { "toon_13",                                          "RocksHeroes.png"               },
7070   { "toon_13.xpos",                                     "8"                             },
7071   { "toon_13.ypos",                                     "1"                             },
7072   { "toon_13.frames",                                   "4"                             },
7073   { "toon_13.delay",                                    "2"                             },
7074   { "toon_13.direction",                                "left"                          },
7075   { "toon_13.position",                                 "bottom"                        },
7076
7077   { "toon_14",                                          "RocksHeroes.png"               },
7078   { "toon_14.xpos",                                     "12"                            },
7079   { "toon_14.ypos",                                     "1"                             },
7080   { "toon_14.frames",                                   "4"                             },
7081   { "toon_14.delay",                                    "2"                             },
7082   { "toon_14.direction",                                "right"                         },
7083   { "toon_14.position",                                 "bottom"                        },
7084
7085   { "toon_15",                                          "RocksHeroes.png"               },
7086   { "toon_15.xpos",                                     "8"                             },
7087   { "toon_15.ypos",                                     "3"                             },
7088   { "toon_15.frames",                                   "4"                             },
7089   { "toon_15.delay",                                    "2"                             },
7090   { "toon_15.direction",                                "left"                          },
7091   { "toon_15.position",                                 "bottom"                        },
7092
7093   { "toon_16",                                          "RocksHeroes.png"               },
7094   { "toon_16.xpos",                                     "12"                            },
7095   { "toon_16.ypos",                                     "3"                             },
7096   { "toon_16.frames",                                   "4"                             },
7097   { "toon_16.delay",                                    "2"                             },
7098   { "toon_16.direction",                                "right"                         },
7099   { "toon_16.position",                                 "bottom"                        },
7100
7101   { "toon_17",                                          "RocksHeroes.png"               },
7102   { "toon_17.xpos",                                     "8"                             },
7103   { "toon_17.ypos",                                     "9"                             },
7104   { "toon_17.frames",                                   "8"                             },
7105   { "toon_17.delay",                                    "2"                             },
7106   { "toon_17.direction",                                "left"                          },
7107   { "toon_17.position",                                 "any"                           },
7108
7109   { "toon_18",                                          "RocksHeroes.png"               },
7110   { "toon_18.xpos",                                     "8"                             },
7111   { "toon_18.ypos",                                     "9"                             },
7112   { "toon_18.frames",                                   "8"                             },
7113   { "toon_18.delay",                                    "2"                             },
7114   { "toon_18.direction",                                "right"                         },
7115   { "toon_18.position",                                 "any"                           },
7116
7117   { "toon_19",                                          "RocksElements.png"             },
7118   { "toon_19.xpos",                                     "8"                             },
7119   { "toon_19.ypos",                                     "0"                             },
7120   { "toon_19.frames",                                   "2"                             },
7121   { "toon_19.delay",                                    "4"                             },
7122   { "toon_19.direction",                                "down"                          },
7123   { "toon_19.position",                                 "any"                           },
7124
7125   { "toon_20",                                          "RocksElements.png"             },
7126   { "toon_20.xpos",                                     "10"                            },
7127   { "toon_20.ypos",                                     "0"                             },
7128   { "toon_20.frames",                                   "2"                             },
7129   { "toon_20.delay",                                    "4"                             },
7130   { "toon_20.direction",                                "down"                          },
7131   { "toon_20.position",                                 "any"                           },
7132
7133   { "gfx.global.anim_1",                                UNDEFINED_FILENAME              },
7134   { "gfx.global.anim_2",                                UNDEFINED_FILENAME              },
7135   { "gfx.global.anim_3",                                UNDEFINED_FILENAME              },
7136   { "gfx.global.anim_4",                                UNDEFINED_FILENAME              },
7137   { "gfx.global.anim_5",                                UNDEFINED_FILENAME              },
7138   { "gfx.global.anim_6",                                UNDEFINED_FILENAME              },
7139   { "gfx.global.anim_7",                                UNDEFINED_FILENAME              },
7140   { "gfx.global.anim_8",                                UNDEFINED_FILENAME              },
7141   { "gfx.global.anim_9",                                UNDEFINED_FILENAME              },
7142   { "gfx.global.anim_10",                               UNDEFINED_FILENAME              },
7143   { "gfx.global.anim_11",                               UNDEFINED_FILENAME              },
7144   { "gfx.global.anim_12",                               UNDEFINED_FILENAME              },
7145   { "gfx.global.anim_13",                               UNDEFINED_FILENAME              },
7146   { "gfx.global.anim_14",                               UNDEFINED_FILENAME              },
7147   { "gfx.global.anim_15",                               UNDEFINED_FILENAME              },
7148   { "gfx.global.anim_16",                               UNDEFINED_FILENAME              },
7149   { "gfx.global.anim_17",                               UNDEFINED_FILENAME              },
7150   { "gfx.global.anim_18",                               UNDEFINED_FILENAME              },
7151   { "gfx.global.anim_19",                               UNDEFINED_FILENAME              },
7152   { "gfx.global.anim_20",                               UNDEFINED_FILENAME              },
7153   { "gfx.global.anim_21",                               UNDEFINED_FILENAME              },
7154   { "gfx.global.anim_22",                               UNDEFINED_FILENAME              },
7155   { "gfx.global.anim_23",                               UNDEFINED_FILENAME              },
7156   { "gfx.global.anim_24",                               UNDEFINED_FILENAME              },
7157   { "gfx.global.anim_25",                               UNDEFINED_FILENAME              },
7158   { "gfx.global.anim_26",                               UNDEFINED_FILENAME              },
7159   { "gfx.global.anim_27",                               UNDEFINED_FILENAME              },
7160   { "gfx.global.anim_28",                               UNDEFINED_FILENAME              },
7161   { "gfx.global.anim_29",                               UNDEFINED_FILENAME              },
7162   { "gfx.global.anim_30",                               UNDEFINED_FILENAME              },
7163   { "gfx.global.anim_31",                               UNDEFINED_FILENAME              },
7164   { "gfx.global.anim_32",                               UNDEFINED_FILENAME              },
7165
7166   { "global.anim_1",                                    UNDEFINED_FILENAME              },
7167   { "global.anim_2",                                    UNDEFINED_FILENAME              },
7168   { "global.anim_3",                                    UNDEFINED_FILENAME              },
7169   { "global.anim_4",                                    UNDEFINED_FILENAME              },
7170   { "global.anim_5",                                    UNDEFINED_FILENAME              },
7171   { "global.anim_6",                                    UNDEFINED_FILENAME              },
7172   { "global.anim_7",                                    UNDEFINED_FILENAME              },
7173   { "global.anim_8",                                    UNDEFINED_FILENAME              },
7174   { "global.anim_9",                                    UNDEFINED_FILENAME              },
7175   { "global.anim_10",                                   UNDEFINED_FILENAME              },
7176   { "global.anim_11",                                   UNDEFINED_FILENAME              },
7177   { "global.anim_12",                                   UNDEFINED_FILENAME              },
7178   { "global.anim_13",                                   UNDEFINED_FILENAME              },
7179   { "global.anim_14",                                   UNDEFINED_FILENAME              },
7180   { "global.anim_15",                                   UNDEFINED_FILENAME              },
7181   { "global.anim_16",                                   UNDEFINED_FILENAME              },
7182   { "global.anim_17",                                   UNDEFINED_FILENAME              },
7183   { "global.anim_18",                                   UNDEFINED_FILENAME              },
7184   { "global.anim_19",                                   UNDEFINED_FILENAME              },
7185   { "global.anim_20",                                   UNDEFINED_FILENAME              },
7186   { "global.anim_21",                                   UNDEFINED_FILENAME              },
7187   { "global.anim_22",                                   UNDEFINED_FILENAME              },
7188   { "global.anim_23",                                   UNDEFINED_FILENAME              },
7189   { "global.anim_24",                                   UNDEFINED_FILENAME              },
7190   { "global.anim_25",                                   UNDEFINED_FILENAME              },
7191   { "global.anim_26",                                   UNDEFINED_FILENAME              },
7192   { "global.anim_27",                                   UNDEFINED_FILENAME              },
7193   { "global.anim_28",                                   UNDEFINED_FILENAME              },
7194   { "global.anim_29",                                   UNDEFINED_FILENAME              },
7195   { "global.anim_30",                                   UNDEFINED_FILENAME              },
7196   { "global.anim_31",                                   UNDEFINED_FILENAME              },
7197   { "global.anim_32",                                   UNDEFINED_FILENAME              },
7198
7199   { "internal.global.toon_default",                     UNDEFINED_FILENAME              },
7200   { "internal.global.toon_default.anim_mode",           "random"                        },
7201
7202   { "internal.global.anim_default",                     UNDEFINED_FILENAME              },
7203
7204   { "menu.calibrate_red",                               "RocksElements.png"             },
7205   { "menu.calibrate_red.xpos",                          "12"                            },
7206   { "menu.calibrate_red.ypos",                          "8"                             },
7207   { "menu.calibrate_red.frames",                        "1"                             },
7208   { "menu.calibrate_blue",                              "RocksElements.png"             },
7209   { "menu.calibrate_blue.xpos",                         "13"                            },
7210   { "menu.calibrate_blue.ypos",                         "8"                             },
7211   { "menu.calibrate_blue.frames",                       "1"                             },
7212   { "menu.calibrate_yellow",                            "RocksElements.png"             },
7213   { "menu.calibrate_yellow.xpos",                       "14"                            },
7214   { "menu.calibrate_yellow.ypos",                       "8"                             },
7215   { "menu.calibrate_yellow.frames",                     "1"                             },
7216
7217   { "menu.button",                                      "RocksElements.png"             },
7218   { "menu.button.xpos",                                 "13"                            },
7219   { "menu.button.ypos",                                 "8"                             },
7220   { "menu.button.frames",                               "1"                             },
7221   { "menu.button.active",                               "RocksElements.png"             },
7222   { "menu.button.active.xpos",                          "12"                            },
7223   { "menu.button.active.ypos",                          "8"                             },
7224   { "menu.button.active.frames",                        "1"                             },
7225
7226   { "menu.button_left",                                 "RocksDC.png"                   },
7227   { "menu.button_left.xpos",                            "8"                             },
7228   { "menu.button_left.ypos",                            "8"                             },
7229   { "menu.button_left.frames",                          "1"                             },
7230   { "menu.button_left.active",                          "RocksDC.png"                   },
7231   { "menu.button_left.active.xpos",                     "8"                             },
7232   { "menu.button_left.active.ypos",                     "9"                             },
7233   { "menu.button_left.active.frames",                   "1"                             },
7234   { "menu.button_right",                                "RocksDC.png"                   },
7235   { "menu.button_right.xpos",                           "9"                             },
7236   { "menu.button_right.ypos",                           "8"                             },
7237   { "menu.button_right.frames",                         "1"                             },
7238   { "menu.button_right.active",                         "RocksDC.png"                   },
7239   { "menu.button_right.active.xpos",                    "9"                             },
7240   { "menu.button_right.active.ypos",                    "9"                             },
7241   { "menu.button_right.active.frames",                  "1"                             },
7242   { "menu.button_up",                                   "RocksDC.png"                   },
7243   { "menu.button_up.xpos",                              "10"                            },
7244   { "menu.button_up.ypos",                              "8"                             },
7245   { "menu.button_up.frames",                            "1"                             },
7246   { "menu.button_up.active",                            "RocksDC.png"                   },
7247   { "menu.button_up.active.xpos",                       "10"                            },
7248   { "menu.button_up.active.ypos",                       "9"                             },
7249   { "menu.button_up.active.frames",                     "1"                             },
7250   { "menu.button_down",                                 "RocksDC.png"                   },
7251   { "menu.button_down.xpos",                            "11"                            },
7252   { "menu.button_down.ypos",                            "8"                             },
7253   { "menu.button_down.frames",                          "1"                             },
7254   { "menu.button_down.active",                          "RocksDC.png"                   },
7255   { "menu.button_down.active.xpos",                     "11"                            },
7256   { "menu.button_down.active.ypos",                     "9"                             },
7257   { "menu.button_down.active.frames",                   "1"                             },
7258
7259   { "menu.button_enter_menu",                           UNDEFINED_FILENAME              },
7260   { "menu.button_enter_menu.clone_from",                "menu.button_right"             },
7261   { "menu.button_enter_menu.active",                    UNDEFINED_FILENAME              },
7262   { "menu.button_enter_menu.active.clone_from",         "menu.button_right.active"      },
7263   { "menu.button_leave_menu",                           UNDEFINED_FILENAME              },
7264   { "menu.button_leave_menu.clone_from",                "menu.button_left"              },
7265   { "menu.button_leave_menu.active",                    UNDEFINED_FILENAME              },
7266   { "menu.button_leave_menu.active.clone_from",         "menu.button_left.active"       },
7267
7268   { "menu.button_next_level",                           UNDEFINED_FILENAME              },
7269   { "menu.button_next_level.clone_from",                "menu.button_right"             },
7270   { "menu.button_next_level.active",                    UNDEFINED_FILENAME              },
7271   { "menu.button_next_level.active.clone_from",         "menu.button_right.active"      },
7272   { "menu.button_prev_level",                           UNDEFINED_FILENAME              },
7273   { "menu.button_prev_level.clone_from",                "menu.button_left"              },
7274   { "menu.button_prev_level.active",                    UNDEFINED_FILENAME              },
7275   { "menu.button_prev_level.active.clone_from",         "menu.button_left.active"       },
7276
7277   { "menu.button_next_level2",                          UNDEFINED_FILENAME              },
7278   { "menu.button_next_level2.clone_from",               "menu.button_right"             },
7279   { "menu.button_next_level2.active",                   UNDEFINED_FILENAME              },
7280   { "menu.button_next_level2.active.clone_from",        "menu.button_right.active"      },
7281   { "menu.button_prev_level2",                          UNDEFINED_FILENAME              },
7282   { "menu.button_prev_level2.clone_from",               "menu.button_left"              },
7283   { "menu.button_prev_level2.active",                   UNDEFINED_FILENAME              },
7284   { "menu.button_prev_level2.active.clone_from",        "menu.button_left.active"       },
7285
7286   { "menu.button_next_score",                           UNDEFINED_FILENAME              },
7287   { "menu.button_next_score.clone_from",                "menu.button_down"              },
7288   { "menu.button_next_score.active",                    UNDEFINED_FILENAME              },
7289   { "menu.button_next_score.active.clone_from",         "menu.button_down.active"       },
7290   { "menu.button_prev_score",                           UNDEFINED_FILENAME              },
7291   { "menu.button_prev_score.clone_from",                "menu.button_up"                },
7292   { "menu.button_prev_score.active",                    UNDEFINED_FILENAME              },
7293   { "menu.button_prev_score.active.clone_from",         "menu.button_up.active"         },
7294
7295   { "menu.button_play_tape",                            UNDEFINED_FILENAME              },
7296   { "menu.button_play_tape.clone_from",                 "gfx.tape.button.play"          },
7297
7298   { "menu.button_name",                                 UNDEFINED_FILENAME              },
7299   { "menu.button_name.clone_from",                      "menu.button"                   },
7300   { "menu.button_name.active",                          UNDEFINED_FILENAME              },
7301   { "menu.button_name.active.clone_from",               "menu.button.active"            },
7302   { "menu.button_levels",                               UNDEFINED_FILENAME              },
7303   { "menu.button_levels.clone_from",                    "menu.button_right"             },
7304   { "menu.button_levels.active",                        UNDEFINED_FILENAME              },
7305   { "menu.button_levels.active.clone_from",             "menu.button_right.active"      },
7306   { "menu.button_scores",                               UNDEFINED_FILENAME              },
7307   { "menu.button_scores.clone_from",                    "menu.button"                   },
7308   { "menu.button_scores.active",                        UNDEFINED_FILENAME              },
7309   { "menu.button_scores.active.clone_from",             "menu.button.active"            },
7310   { "menu.button_editor",                               UNDEFINED_FILENAME              },
7311   { "menu.button_editor.clone_from",                    "menu.button"                   },
7312   { "menu.button_editor.active",                        UNDEFINED_FILENAME              },
7313   { "menu.button_editor.active.clone_from",             "menu.button.active"            },
7314   { "menu.button_info",                                 UNDEFINED_FILENAME              },
7315   { "menu.button_info.clone_from",                      "menu.button_right"             },
7316   { "menu.button_info.active",                          UNDEFINED_FILENAME              },
7317   { "menu.button_info.active.clone_from",               "menu.button_right.active"      },
7318   { "menu.button_game",                                 UNDEFINED_FILENAME              },
7319   { "menu.button_game.clone_from",                      "menu.button"                   },
7320   { "menu.button_game.active",                          UNDEFINED_FILENAME              },
7321   { "menu.button_game.active.clone_from",               "menu.button.active"            },
7322   { "menu.button_setup",                                UNDEFINED_FILENAME              },
7323   { "menu.button_setup.clone_from",                     "menu.button_right"             },
7324   { "menu.button_setup.active",                         UNDEFINED_FILENAME              },
7325   { "menu.button_setup.active.clone_from",              "menu.button_right.active"      },
7326   { "menu.button_quit",                                 UNDEFINED_FILENAME              },
7327   { "menu.button_quit.clone_from",                      "menu.button"                   },
7328   { "menu.button_quit.active",                          UNDEFINED_FILENAME              },
7329   { "menu.button_quit.active.clone_from",               "menu.button.active"            },
7330
7331   { "menu.button_first_level",                          UNDEFINED_FILENAME              },
7332   { "menu.button_first_level.active",                   UNDEFINED_FILENAME              },
7333   { "menu.button_last_level",                           UNDEFINED_FILENAME              },
7334   { "menu.button_last_level.active",                    UNDEFINED_FILENAME              },
7335   { "menu.button_level_number",                         UNDEFINED_FILENAME              },
7336   { "menu.button_level_number.active",                  UNDEFINED_FILENAME              },
7337
7338   { "menu.button_insert_solution",                      UNDEFINED_FILENAME              },
7339   { "menu.button_insert_solution.active",               UNDEFINED_FILENAME              },
7340   { "menu.button_play_solution",                        UNDEFINED_FILENAME              },
7341   { "menu.button_play_solution.active",                 UNDEFINED_FILENAME              },
7342
7343   { "menu.button_levelset_info",                        UNDEFINED_FILENAME              },
7344   { "menu.button_levelset_info.clone_from",             "envelope_1"                    },
7345   { "menu.button_levelset_info.pressed",                UNDEFINED_FILENAME              },
7346   { "menu.button_levelset_info.pressed.clone_from",     "envelope_1.collecting"         },
7347   { "menu.button_levelset_info.active",                 UNDEFINED_FILENAME              },
7348   { "menu.button_levelset_info.active.clone_from",      "envelope_1"                    },
7349
7350   { "menu.button_switch_ecs_aga",                       UNDEFINED_FILENAME              },
7351   { "menu.button_switch_ecs_aga.active",                UNDEFINED_FILENAME              },
7352
7353   { "menu.button_touch_back",                           "RocksTouch.png"                },
7354   { "menu.button_touch_back.x",                         "210"                           },
7355   { "menu.button_touch_back.y",                         "180"                           },
7356   { "menu.button_touch_back.width",                     "60"                            },
7357   { "menu.button_touch_back.height",                    "60"                            },
7358   { "menu.button_touch_back.pressed_xoffset",           "-200"                          },
7359   { "menu.button_touch_next",                           "RocksTouch.png"                },
7360   { "menu.button_touch_next.x",                         "330"                           },
7361   { "menu.button_touch_next.y",                         "180"                           },
7362   { "menu.button_touch_next.width",                     "60"                            },
7363   { "menu.button_touch_next.height",                    "60"                            },
7364   { "menu.button_touch_next.pressed_xoffset",           "-200"                          },
7365   { "menu.button_touch_back2",                          "RocksTouch.png"                },
7366   { "menu.button_touch_back2.x",                        "210"                           },
7367   { "menu.button_touch_back2.y",                        "180"                           },
7368   { "menu.button_touch_back2.width",                    "60"                            },
7369   { "menu.button_touch_back2.height",                   "60"                            },
7370   { "menu.button_touch_back2.pressed_xoffset",          "-200"                          },
7371   { "menu.button_touch_next2",                          "RocksTouch.png"                },
7372   { "menu.button_touch_next2.x",                        "330"                           },
7373   { "menu.button_touch_next2.y",                        "180"                           },
7374   { "menu.button_touch_next2.width",                    "60"                            },
7375   { "menu.button_touch_next2.height",                   "60"                            },
7376   { "menu.button_touch_next2.pressed_xoffset",          "-200"                          },
7377
7378   { "menu.scrollbar",                                   "RocksDC.png"                   },
7379   { "menu.scrollbar.xpos",                              "8"                             },
7380   { "menu.scrollbar.ypos",                              "10"                            },
7381   { "menu.scrollbar.frames",                            "1"                             },
7382   { "menu.scrollbar.active",                            "RocksDC.png"                   },
7383   { "menu.scrollbar.active.xpos",                       "9"                             },
7384   { "menu.scrollbar.active.ypos",                       "10"                            },
7385   { "menu.scrollbar.active.frames",                     "1"                             },
7386
7387   { "gfx.game.panel.time_anim",                         "RocksDoorMM.png"               },
7388   { "gfx.game.panel.time_anim.x",                       "5"                             },
7389   { "gfx.game.panel.time_anim.y",                       "0"                             },
7390   { "gfx.game.panel.time_anim.width",                   "90"                            },
7391   { "gfx.game.panel.time_anim.height",                  "35"                            },
7392   { "gfx.game.panel.time_anim.frames",                  "1"                             },
7393   { "gfx.game.panel.time_anim.active",                  "RocksDoorMM.png"               },
7394   { "gfx.game.panel.time_anim.active.x",                "105"                           },
7395   { "gfx.game.panel.time_anim.active.y",                "0"                             },
7396   { "gfx.game.panel.time_anim.active.width",            "90"                            },
7397   { "gfx.game.panel.time_anim.active.height",           "35"                            },
7398   { "gfx.game.panel.time_anim.active.frames",           "1"                             },
7399
7400   { "gfx.game.panel.health_anim",                       "RocksDoorMM.png"               },
7401   { "gfx.game.panel.health_anim.x",                     "5"                             },
7402   { "gfx.game.panel.health_anim.y",                     "35"                            },
7403   { "gfx.game.panel.health_anim.width",                 "90"                            },
7404   { "gfx.game.panel.health_anim.height",                "35"                            },
7405   { "gfx.game.panel.health_anim.frames",                "1"                             },
7406   { "gfx.game.panel.health_anim.active",                "RocksDoorMM.png"               },
7407   { "gfx.game.panel.health_anim.active.x",              "105"                           },
7408   { "gfx.game.panel.health_anim.active.y",              "35"                            },
7409   { "gfx.game.panel.health_anim.active.width",          "90"                            },
7410   { "gfx.game.panel.health_anim.active.height",         "35"                            },
7411   { "gfx.game.panel.health_anim.active.frames",         "1"                             },
7412
7413   { "gfx.game.button.stop",                             "RocksDoor.png"                 },
7414   { "gfx.game.button.stop.x",                           "305"                           },
7415   { "gfx.game.button.stop.y",                           "185"                           },
7416   { "gfx.game.button.stop.width",                       "30"                            },
7417   { "gfx.game.button.stop.height",                      "30"                            },
7418   { "gfx.game.button.stop.pressed_xoffset",             "-100"                          },
7419   { "gfx.game.button.pause",                            "RocksDoor.png"                 },
7420   { "gfx.game.button.pause.x",                          "335"                           },
7421   { "gfx.game.button.pause.y",                          "185"                           },
7422   { "gfx.game.button.pause.width",                      "30"                            },
7423   { "gfx.game.button.pause.height",                     "30"                            },
7424   { "gfx.game.button.pause.pressed_xoffset",            "-100"                          },
7425   { "gfx.game.button.play",                             "RocksDoor.png"                 },
7426   { "gfx.game.button.play.x",                           "365"                           },
7427   { "gfx.game.button.play.y",                           "185"                           },
7428   { "gfx.game.button.play.width",                       "30"                            },
7429   { "gfx.game.button.play.height",                      "30"                            },
7430   { "gfx.game.button.play.pressed_xoffset",             "-100"                          },
7431
7432   { "gfx.game.button.undo",                             "RocksDoor2.png"                },
7433   { "gfx.game.button.undo.x",                           "105"                           },
7434   { "gfx.game.button.undo.y",                           "20"                            },
7435   { "gfx.game.button.undo.width",                       "30"                            },
7436   { "gfx.game.button.undo.height",                      "30"                            },
7437   { "gfx.game.button.undo.pressed_xoffset",             "-100"                          },
7438   { "gfx.game.button.redo",                             "RocksDoor2.png"                },
7439   { "gfx.game.button.redo.x",                           "165"                           },
7440   { "gfx.game.button.redo.y",                           "20"                            },
7441   { "gfx.game.button.redo.width",                       "30"                            },
7442   { "gfx.game.button.redo.height",                      "30"                            },
7443   { "gfx.game.button.redo.pressed_xoffset",             "-100"                          },
7444
7445   { "gfx.game.button.save",                             "RocksDoor2.png"                },
7446   { "gfx.game.button.save.x",                           "105"                           },
7447   { "gfx.game.button.save.y",                           "50"                            },
7448   { "gfx.game.button.save.width",                       "30"                            },
7449   { "gfx.game.button.save.height",                      "30"                            },
7450   { "gfx.game.button.save.pressed_xoffset",             "-100"                          },
7451   { "gfx.game.button.pause2",                           "RocksDoor2.png"                },
7452   { "gfx.game.button.pause2.x",                         "135"                           },
7453   { "gfx.game.button.pause2.y",                         "50"                            },
7454   { "gfx.game.button.pause2.width",                     "30"                            },
7455   { "gfx.game.button.pause2.height",                    "30"                            },
7456   { "gfx.game.button.pause2.pressed_xoffset",           "-100"                          },
7457   { "gfx.game.button.pause2.active_yoffset",            "-30"                           },
7458   { "gfx.game.button.load",                             "RocksDoor2.png"                },
7459   { "gfx.game.button.load.x",                           "165"                           },
7460   { "gfx.game.button.load.y",                           "50"                            },
7461   { "gfx.game.button.load.width",                       "30"                            },
7462   { "gfx.game.button.load.height",                      "30"                            },
7463   { "gfx.game.button.load.pressed_xoffset",             "-100"                          },
7464
7465   { "gfx.game.button.restart",                          "RocksDoor2.png"                },
7466   { "gfx.game.button.restart.x",                        "200"                           },
7467   { "gfx.game.button.restart.y",                        "50"                            },
7468   { "gfx.game.button.restart.width",                    "30"                            },
7469   { "gfx.game.button.restart.height",                   "30"                            },
7470   { "gfx.game.button.restart.pressed_xoffset",          "30"                            },
7471
7472   { "gfx.game.button.sound_music",                      "RocksDoor.png"                 },
7473   { "gfx.game.button.sound_music.x",                    "305"                           },
7474   { "gfx.game.button.sound_music.y",                    "245"                           },
7475   { "gfx.game.button.sound_music.width",                "30"                            },
7476   { "gfx.game.button.sound_music.height",               "30"                            },
7477   { "gfx.game.button.sound_music.pressed_xoffset",      "-100"                          },
7478   { "gfx.game.button.sound_music.active_yoffset",       "-30"                           },
7479   { "gfx.game.button.sound_loops",                      "RocksDoor.png"                 },
7480   { "gfx.game.button.sound_loops.x",                    "335"                           },
7481   { "gfx.game.button.sound_loops.y",                    "245"                           },
7482   { "gfx.game.button.sound_loops.width",                "30"                            },
7483   { "gfx.game.button.sound_loops.height",               "30"                            },
7484   { "gfx.game.button.sound_loops.pressed_xoffset",      "-100"                          },
7485   { "gfx.game.button.sound_loops.active_yoffset",       "-30"                           },
7486   { "gfx.game.button.sound_simple",                     "RocksDoor.png"                 },
7487   { "gfx.game.button.sound_simple.x",                   "365"                           },
7488   { "gfx.game.button.sound_simple.y",                   "245"                           },
7489   { "gfx.game.button.sound_simple.width",               "30"                            },
7490   { "gfx.game.button.sound_simple.height",              "30"                            },
7491   { "gfx.game.button.sound_simple.pressed_xoffset",     "-100"                          },
7492   { "gfx.game.button.sound_simple.active_yoffset",      "-30"                           },
7493
7494   { "gfx.game.button.panel_stop",                       UNDEFINED_FILENAME              },
7495   { "gfx.game.button.panel_pause",                      UNDEFINED_FILENAME              },
7496   { "gfx.game.button.panel_play",                       UNDEFINED_FILENAME              },
7497   { "gfx.game.button.panel_restart",                    UNDEFINED_FILENAME              },
7498
7499   { "gfx.game.button.panel_sound_music",                UNDEFINED_FILENAME              },
7500   { "gfx.game.button.panel_sound_loops",                UNDEFINED_FILENAME              },
7501   { "gfx.game.button.panel_sound_simple",               UNDEFINED_FILENAME              },
7502
7503   { "gfx.game.button.touch_stop",                       "RocksTouch.png"                },
7504   { "gfx.game.button.touch_stop.x",                     "210"                           },
7505   { "gfx.game.button.touch_stop.y",                     "120"                           },
7506   { "gfx.game.button.touch_stop.width",                 "60"                            },
7507   { "gfx.game.button.touch_stop.height",                "60"                            },
7508   { "gfx.game.button.touch_stop.pressed_xoffset",       "-200"                          },
7509   { "gfx.game.button.touch_pause",                      "RocksTouch.png"                },
7510   { "gfx.game.button.touch_pause.x",                    "270"                           },
7511   { "gfx.game.button.touch_pause.y",                    "120"                           },
7512   { "gfx.game.button.touch_pause.width",                "60"                            },
7513   { "gfx.game.button.touch_pause.height",               "60"                            },
7514   { "gfx.game.button.touch_pause.pressed_xoffset",      "-200"                          },
7515   { "gfx.game.button.touch_pause.active_yoffset",       "60"                            },
7516
7517   { "gfx.game.button.touch_restart",                    "RocksTouch.png"                },
7518   { "gfx.game.button.touch_restart.x",                  "210"                           },
7519   { "gfx.game.button.touch_restart.y",                  "240"                           },
7520   { "gfx.game.button.touch_restart.width",              "60"                            },
7521   { "gfx.game.button.touch_restart.height",             "60"                            },
7522   { "gfx.game.button.touch_restart.pressed_xoffset",    "-200"                          },
7523
7524   { "gfx.tape.button.eject",                            "RocksDoor.png"                 },
7525   { "gfx.tape.button.eject.x",                          "305"                           },
7526   { "gfx.tape.button.eject.y",                          "357"                           },
7527   { "gfx.tape.button.eject.width",                      "18"                            },
7528   { "gfx.tape.button.eject.height",                     "18"                            },
7529   { "gfx.tape.button.eject.pressed_xoffset",            "-100"                          },
7530   { "gfx.tape.button.extra",                            "RocksDoor.png"                 },
7531   { "gfx.tape.button.extra.x",                          "505"                           },
7532   { "gfx.tape.button.extra.y",                          "357"                           },
7533   { "gfx.tape.button.extra.width",                      "18"                            },
7534   { "gfx.tape.button.extra.height",                     "18"                            },
7535   { "gfx.tape.button.extra.pressed_xoffset",            "-100"                          },
7536   { "gfx.tape.button.stop",                             "RocksDoor.png"                 },
7537   { "gfx.tape.button.stop.x",                           "323"                           },
7538   { "gfx.tape.button.stop.y",                           "357"                           },
7539   { "gfx.tape.button.stop.width",                       "18"                            },
7540   { "gfx.tape.button.stop.height",                      "18"                            },
7541   { "gfx.tape.button.stop.pressed_xoffset",             "-100"                          },
7542   { "gfx.tape.button.pause",                            "RocksDoor.png"                 },
7543   { "gfx.tape.button.pause.x",                          "341"                           },
7544   { "gfx.tape.button.pause.y",                          "357"                           },
7545   { "gfx.tape.button.pause.width",                      "18"                            },
7546   { "gfx.tape.button.pause.height",                     "18"                            },
7547   { "gfx.tape.button.pause.pressed_xoffset",            "-100"                          },
7548   { "gfx.tape.button.record",                           "RocksDoor.png"                 },
7549   { "gfx.tape.button.record.x",                         "359"                           },
7550   { "gfx.tape.button.record.y",                         "357"                           },
7551   { "gfx.tape.button.record.width",                     "18"                            },
7552   { "gfx.tape.button.record.height",                    "18"                            },
7553   { "gfx.tape.button.record.pressed_xoffset",           "-100"                          },
7554   { "gfx.tape.button.play",                             "RocksDoor.png"                 },
7555   { "gfx.tape.button.play.x",                           "377"                           },
7556   { "gfx.tape.button.play.y",                           "357"                           },
7557   { "gfx.tape.button.play.width",                       "18"                            },
7558   { "gfx.tape.button.play.height",                      "18"                            },
7559   { "gfx.tape.button.play.pressed_xoffset",             "-100"                          },
7560
7561   { "gfx.tape.button.insert_solution",                  UNDEFINED_FILENAME              },
7562   { "gfx.tape.button.play_solution",                    UNDEFINED_FILENAME              },
7563
7564   { "gfx.tape.symbol.eject",                            UNDEFINED_FILENAME              },
7565   { "gfx.tape.symbol.stop",                             UNDEFINED_FILENAME              },
7566   { "gfx.tape.symbol.pause",                            "RocksDoor.png"                 },
7567   { "gfx.tape.symbol.pause.x",                          "340"                           },
7568   { "gfx.tape.symbol.pause.y",                          "321"                           },
7569   { "gfx.tape.symbol.pause.width",                      "17"                            },
7570   { "gfx.tape.symbol.pause.height",                     "13"                            },
7571   { "gfx.tape.symbol.record",                           "RocksDoor.png"                 },
7572   { "gfx.tape.symbol.record.x",                         "325"                           },
7573   { "gfx.tape.symbol.record.y",                         "321"                           },
7574   { "gfx.tape.symbol.record.width",                     "16"                            },
7575   { "gfx.tape.symbol.record.height",                    "16"                            },
7576   { "gfx.tape.symbol.play",                             "RocksDoor.png"                 },
7577   { "gfx.tape.symbol.play.x",                           "357"                           },
7578   { "gfx.tape.symbol.play.y",                           "321"                           },
7579   { "gfx.tape.symbol.play.width",                       "11"                            },
7580   { "gfx.tape.symbol.play.height",                      "13"                            },
7581   { "gfx.tape.symbol.fast_forward",                     "RocksDoor.png"                 },
7582   { "gfx.tape.symbol.fast_forward.x",                   "539"                           },
7583   { "gfx.tape.symbol.fast_forward.y",                   "193"                           },
7584   { "gfx.tape.symbol.fast_forward.width",               "27"                            },
7585   { "gfx.tape.symbol.fast_forward.height",              "13"                            },
7586   { "gfx.tape.symbol.warp_forward",                     "RocksDoor.png"                 },
7587   { "gfx.tape.symbol.warp_forward.x",                   "539"                           },
7588   { "gfx.tape.symbol.warp_forward.y",                   "152"                           },
7589   { "gfx.tape.symbol.warp_forward.width",               "27"                            },
7590   { "gfx.tape.symbol.warp_forward.height",              "13"                            },
7591   { "gfx.tape.symbol.warp_forward_blind",               "RocksDoor.png"                 },
7592   { "gfx.tape.symbol.warp_forward_blind.x",             "539"                           },
7593   { "gfx.tape.symbol.warp_forward_blind.y",             "165"                           },
7594   { "gfx.tape.symbol.warp_forward_blind.width",         "27"                            },
7595   { "gfx.tape.symbol.warp_forward_blind.height",        "13"                            },
7596   { "gfx.tape.symbol.pause_before_end",                 "RocksDoor.png"                 },
7597   { "gfx.tape.symbol.pause_before_end.x",               "539"                           },
7598   { "gfx.tape.symbol.pause_before_end.y",               "221"                           },
7599   { "gfx.tape.symbol.pause_before_end.width",           "27"                            },
7600   { "gfx.tape.symbol.pause_before_end.height",          "13"                            },
7601   { "gfx.tape.symbol.single_step",                      UNDEFINED_FILENAME              },
7602
7603   { "gfx.tape.label.eject",                             UNDEFINED_FILENAME              },
7604   { "gfx.tape.label.stop",                              UNDEFINED_FILENAME              },
7605   { "gfx.tape.label.pause",                             "RocksDoor.png"                 },
7606   { "gfx.tape.label.pause.x",                           "305"                           },
7607   { "gfx.tape.label.pause.y",                           "341"                           },
7608   { "gfx.tape.label.pause.width",                       "35"                            },
7609   { "gfx.tape.label.pause.height",                      "8"                             },
7610   { "gfx.tape.label.record",                            "RocksDoor.png"                 },
7611   { "gfx.tape.label.record.x",                          "305"                           },
7612   { "gfx.tape.label.record.y",                          "321"                           },
7613   { "gfx.tape.label.record.width",                      "20"                            },
7614   { "gfx.tape.label.record.height",                     "12"                            },
7615   { "gfx.tape.label.play",                              "RocksDoor.png"                 },
7616   { "gfx.tape.label.play.x",                            "370"                           },
7617   { "gfx.tape.label.play.y",                            "321"                           },
7618   { "gfx.tape.label.play.width",                        "22"                            },
7619   { "gfx.tape.label.play.height",                       "12"                            },
7620   { "gfx.tape.label.fast_forward",                      "RocksDoor.png"                 },
7621   { "gfx.tape.label.fast_forward.x",                    "505"                           },
7622   { "gfx.tape.label.fast_forward.y",                    "193"                           },
7623   { "gfx.tape.label.fast_forward.width",                "40"                            },
7624   { "gfx.tape.label.fast_forward.height",               "28"                            },
7625   { "gfx.tape.label.warp_forward",                      "RocksDoor.png"                 },
7626   { "gfx.tape.label.warp_forward.x",                    "505"                           },
7627   { "gfx.tape.label.warp_forward.y",                    "165"                           },
7628   { "gfx.tape.label.warp_forward.width",                "40"                            },
7629   { "gfx.tape.label.warp_forward.height",               "28"                            },
7630   { "gfx.tape.label.warp_forward_blind",                "RocksDoor.png"                 },
7631   { "gfx.tape.label.warp_forward_blind.x",              "505"                           },
7632   { "gfx.tape.label.warp_forward_blind.y",              "165"                           },
7633   { "gfx.tape.label.warp_forward_blind.width",          "40"                            },
7634   { "gfx.tape.label.warp_forward_blind.height",         "28"                            },
7635   { "gfx.tape.label.pause_before_end",                  "RocksDoor.png"                 },
7636   { "gfx.tape.label.pause_before_end.x",                "505"                           },
7637   { "gfx.tape.label.pause_before_end.y",                "221"                           },
7638   { "gfx.tape.label.pause_before_end.width",            "40"                            },
7639   { "gfx.tape.label.pause_before_end.height",           "28"                            },
7640   { "gfx.tape.label.single_step",                       "RocksDoor.png"                 },
7641   { "gfx.tape.label.single_step.x",                     "557"                           },
7642   { "gfx.tape.label.single_step.y",                     "139"                           },
7643   { "gfx.tape.label.single_step.width",                 "38"                            },
7644   { "gfx.tape.label.single_step.height",                "13"                            },
7645
7646   { "gfx.tape.label.date",                              "RocksDoor.png"                 },
7647   { "gfx.tape.label.date.x",                            "305"                           },
7648   { "gfx.tape.label.date.y",                            "285"                           },
7649   { "gfx.tape.label.date.width",                        "90"                            },
7650   { "gfx.tape.label.date.height",                       "31"                            },
7651   { "gfx.tape.label.time",                              "RocksDoor.png"                 },
7652   { "gfx.tape.label.time.x",                            "346"                           },
7653   { "gfx.tape.label.time.y",                            "335"                           },
7654   { "gfx.tape.label.time.width",                        "45"                            },
7655   { "gfx.tape.label.time.height",                       "13"                            },
7656
7657   { "gfx.request.button.yes",                           "RocksDoor.png"                 },
7658   { "gfx.request.button.yes.x",                         "302"                           },
7659   { "gfx.request.button.yes.y",                         "0"                             },
7660   { "gfx.request.button.yes.width",                     "46"                            },
7661   { "gfx.request.button.yes.height",                    "28"                            },
7662   { "gfx.request.button.yes.pressed_xoffset",           "-100"                          },
7663   { "gfx.request.button.no",                            "RocksDoor.png"                 },
7664   { "gfx.request.button.no.x",                          "352"                           },
7665   { "gfx.request.button.no.y",                          "0"                             },
7666   { "gfx.request.button.no.width",                      "46"                            },
7667   { "gfx.request.button.no.height",                     "28"                            },
7668   { "gfx.request.button.no.pressed_xoffset",            "-100"                          },
7669   { "gfx.request.button.confirm",                       "RocksDoor.png"                 },
7670   { "gfx.request.button.confirm.x",                     "302"                           },
7671   { "gfx.request.button.confirm.y",                     "30"                            },
7672   { "gfx.request.button.confirm.width",                 "96"                            },
7673   { "gfx.request.button.confirm.height",                "28"                            },
7674   { "gfx.request.button.confirm.pressed_xoffset",       "-100"                          },
7675   { "gfx.request.button.player_1",                      "RocksDoor.png"                 },
7676   { "gfx.request.button.player_1.x",                    "305"                           },
7677   { "gfx.request.button.player_1.y",                    "185"                           },
7678   { "gfx.request.button.player_1.width",                "30"                            },
7679   { "gfx.request.button.player_1.height",               "30"                            },
7680   { "gfx.request.button.player_1.pressed_xoffset",      "-100"                          },
7681   { "gfx.request.button.player_2",                      UNDEFINED_FILENAME              },
7682   { "gfx.request.button.player_2.clone_from",           "gfx.request.button.player_1"   },
7683   { "gfx.request.button.player_3",                      UNDEFINED_FILENAME              },
7684   { "gfx.request.button.player_3.clone_from",           "gfx.request.button.player_1"   },
7685   { "gfx.request.button.player_4",                      UNDEFINED_FILENAME              },
7686   { "gfx.request.button.player_4.clone_from",           "gfx.request.button.player_1"   },
7687
7688   { "gfx.request.button.touch_yes",                     "RocksTouch.png"                },
7689   { "gfx.request.button.touch_yes.x",                   "204"                           },
7690   { "gfx.request.button.touch_yes.y",                   "0"                             },
7691   { "gfx.request.button.touch_yes.width",               "92"                            },
7692   { "gfx.request.button.touch_yes.height",              "56"                            },
7693   { "gfx.request.button.touch_yes.pressed_xoffset",     "-200"                          },
7694   { "gfx.request.button.touch_no",                      "RocksTouch.png"                },
7695   { "gfx.request.button.touch_no.x",                    "304"                           },
7696   { "gfx.request.button.touch_no.y",                    "0"                             },
7697   { "gfx.request.button.touch_no.width",                "92"                            },
7698   { "gfx.request.button.touch_no.height",               "56"                            },
7699   { "gfx.request.button.touch_no.pressed_xoffset",      "-200"                          },
7700   { "gfx.request.button.touch_confirm",                 "RocksTouch.png"                },
7701   { "gfx.request.button.touch_confirm.x",               "204"                           },
7702   { "gfx.request.button.touch_confirm.y",               "60"                            },
7703   { "gfx.request.button.touch_confirm.width",           "192"                           },
7704   { "gfx.request.button.touch_confirm.height",          "56"                            },
7705   { "gfx.request.button.touch_confirm.pressed_xoffset", "-200"                          },
7706
7707   { "font.initial_1",                                   "RocksFontSmall.png"            },
7708   { "font.initial_1.x",                                 "0"                             },
7709   { "font.initial_1.y",                                 "0"                             },
7710   { "font.initial_1.width",                             "14"                            },
7711   { "font.initial_1.height",                            "14"                            },
7712   { "font.initial_2",                                   "RocksFontSmall.png"            },
7713   { "font.initial_2.x",                                 "0"                             },
7714   { "font.initial_2.y",                                 "70"                            },
7715   { "font.initial_2.width",                             "14"                            },
7716   { "font.initial_2.height",                            "14"                            },
7717   { "font.initial_3",                                   "RocksFontSmall.png"            },
7718   { "font.initial_3.x",                                 "0"                             },
7719   { "font.initial_3.y",                                 "140"                           },
7720   { "font.initial_3.width",                             "14"                            },
7721   { "font.initial_3.height",                            "14"                            },
7722   { "font.initial_4",                                   "RocksFontSmall.png"            },
7723   { "font.initial_4.x",                                 "0"                             },
7724   { "font.initial_4.y",                                 "210"                           },
7725   { "font.initial_4.width",                             "14"                            },
7726   { "font.initial_4.height",                            "14"                            },
7727
7728   { "font.title_1",                                     "RocksFontBig.png"              },
7729   { "font.title_1.x",                                   "0"                             },
7730   { "font.title_1.y",                                   "480"                           },
7731   { "font.title_1.width",                               "32"                            },
7732   { "font.title_1.height",                              "32"                            },
7733   { "font.title_2",                                     "RocksFontSmall.png"            },
7734   { "font.title_2.x",                                   "0"                             },
7735   { "font.title_2.y",                                   "0"                             },
7736   { "font.title_2.width",                               "14"                            },
7737   { "font.title_2.height",                              "14"                            },
7738   { "font.title_2.SETUP",                               UNDEFINED_FILENAME              },
7739   { "font.title_2.SETUP.clone_from",                    "font.text_2"                   },
7740
7741   { "font.menu_1",                                      "RocksFontBig.png"              },
7742   { "font.menu_1.x",                                    "0"                             },
7743   { "font.menu_1.y",                                    "320"                           },
7744   { "font.menu_1.width",                                "32"                            },
7745   { "font.menu_1.height",                               "32"                            },
7746   { "font.menu_1.active",                               "RocksFontBig.png"              },
7747   { "font.menu_1.active.x",                             "0"                             },
7748   { "font.menu_1.active.y",                             "480"                           },
7749   { "font.menu_1.active.width",                         "32"                            },
7750   { "font.menu_1.active.height",                        "32"                            },
7751   { "font.menu_2",                                      "RocksFontMedium.png"           },
7752   { "font.menu_2.x",                                    "0"                             },
7753   { "font.menu_2.y",                                    "320"                           },
7754   { "font.menu_2.width",                                "16"                            },
7755   { "font.menu_2.height",                               "32"                            },
7756   { "font.menu_2.active",                               "RocksFontMedium.png"           },
7757   { "font.menu_2.active.x",                             "0"                             },
7758   { "font.menu_2.active.y",                             "480"                           },
7759   { "font.menu_2.active.width",                         "16"                            },
7760   { "font.menu_2.active.height",                        "32"                            },
7761
7762   { "font.text_1",                                      "RocksFontSmall.png"            },
7763   { "font.text_1.x",                                    "0"                             },
7764   { "font.text_1.y",                                    "140"                           },
7765   { "font.text_1.width",                                "14"                            },
7766   { "font.text_1.height",                               "14"                            },
7767   { "font.text_1.MAIN",                                 UNDEFINED_FILENAME              },
7768   { "font.text_1.MAIN.clone_from",                      "font.text_1.PREVIEW"           },
7769   { "font.text_1.LEVELS",                               "RocksFontMedium.png"           },
7770   { "font.text_1.LEVELS.x",                             "0"                             },
7771   { "font.text_1.LEVELS.y",                             "0"                             },
7772   { "font.text_1.LEVELS.width",                         "16"                            },
7773   { "font.text_1.LEVELS.height",                        "32"                            },
7774   { "font.text_1.LEVELNR",                              UNDEFINED_FILENAME              },
7775   { "font.text_1.LEVELNR.clone_from",                   "font.text_1.LEVELS"            },
7776   { "font.text_1.SETUP",                                UNDEFINED_FILENAME              },
7777   { "font.text_1.SETUP.clone_from",                     "font.text_1.LEVELS"            },
7778   { "font.text_1.NAMES",                                UNDEFINED_FILENAME              },
7779   { "font.text_1.NAMES.clone_from",                     "font.input_1.MAIN"             },
7780   { "font.text_1.PREVIEW",                              "RocksFontEM.png"               },
7781   { "font.text_1.PREVIEW.x",                            "0"                             },
7782   { "font.text_1.PREVIEW.y",                            "160"                           },
7783   { "font.text_1.PREVIEW.width",                        "16"                            },
7784   { "font.text_1.PREVIEW.height",                       "16"                            },
7785   { "font.text_1.SCORES",                               "RocksFontMedium.png"           },
7786   { "font.text_1.SCORES.x",                             "0"                             },
7787   { "font.text_1.SCORES.y",                             "480"                           },
7788   { "font.text_1.SCORES.width",                         "16"                            },
7789   { "font.text_1.SCORES.height",                        "32"                            },
7790   { "font.text_1.active.SCORES",                        "RocksFontMedium.png"           },
7791   { "font.text_1.active.SCORES.x",                      "0"                             },
7792   { "font.text_1.active.SCORES.y",                      "0"                             },
7793   { "font.text_1.active.SCORES.width",                  "16"                            },
7794   { "font.text_1.active.SCORES.height",                 "32"                            },
7795   { "font.text_1.PANEL",                                UNDEFINED_FILENAME              },
7796   { "font.text_1.PANEL.clone_from",                     "font.level_number"             },
7797   { "font.text_1.DOOR",                                 UNDEFINED_FILENAME              },
7798   { "font.text_1.DOOR.clone_from",                      "font.level_number"             },
7799   { "font.text_2",                                      "RocksFontSmall.png"            },
7800   { "font.text_2.x",                                    "0"                             },
7801   { "font.text_2.y",                                    "210"                           },
7802   { "font.text_2.width",                                "14"                            },
7803   { "font.text_2.height",                               "14"                            },
7804   { "font.text_2.MAIN",                                 UNDEFINED_FILENAME              },
7805   { "font.text_2.MAIN.clone_from",                      "font.text_2.PREVIEW"           },
7806   { "font.text_2.LEVELS",                               "RocksFontMedium.png"           },
7807   { "font.text_2.LEVELS.x",                             "0"                             },
7808   { "font.text_2.LEVELS.y",                             "160"                           },
7809   { "font.text_2.LEVELS.width",                         "16"                            },
7810   { "font.text_2.LEVELS.height",                        "32"                            },
7811   { "font.text_2.LEVELNR",                              UNDEFINED_FILENAME              },
7812   { "font.text_2.LEVELNR.clone_from",                   "font.text_2.LEVELS"            },
7813   { "font.text_2.SETUP",                                UNDEFINED_FILENAME              },
7814   { "font.text_2.SETUP.clone_from",                     "font.text_2.LEVELS"            },
7815   { "font.text_2.NAMES",                                UNDEFINED_FILENAME              },
7816   { "font.text_2.NAMES.clone_from",                     "font.option_off"               },
7817   { "font.text_2.PREVIEW",                              "RocksFontEM.png"               },
7818   { "font.text_2.PREVIEW.x",                            "0"                             },
7819   { "font.text_2.PREVIEW.y",                            "160"                           },
7820   { "font.text_2.PREVIEW.width",                        "16"                            },
7821   { "font.text_2.PREVIEW.height",                       "16"                            },
7822   { "font.text_2.SCORES",                               "RocksFontBig.png"              },
7823   { "font.text_2.SCORES.x",                             "0"                             },
7824   { "font.text_2.SCORES.y",                             "320"                           },
7825   { "font.text_2.SCORES.width",                         "32"                            },
7826   { "font.text_2.SCORES.height",                        "32"                            },
7827   { "font.text_2.active.SCORES",                        "RocksFontBig.png"              },
7828   { "font.text_2.active.SCORES.x",                      "0"                             },
7829   { "font.text_2.active.SCORES.y",                      "0"                             },
7830   { "font.text_2.active.SCORES.width",                  "32"                            },
7831   { "font.text_2.active.SCORES.height",                 "32"                            },
7832   { "font.text_3",                                      "RocksFontSmall.png"            },
7833   { "font.text_3.x",                                    "0"                             },
7834   { "font.text_3.y",                                    "0"                             },
7835   { "font.text_3.width",                                "14"                            },
7836   { "font.text_3.height",                               "14"                            },
7837   { "font.text_3.LEVELS",                               "RocksFontMedium.png"           },
7838   { "font.text_3.LEVELS.x",                             "0"                             },
7839   { "font.text_3.LEVELS.y",                             "320"                           },
7840   { "font.text_3.LEVELS.width",                         "16"                            },
7841   { "font.text_3.LEVELS.height",                        "32"                            },
7842   { "font.text_3.LEVELNR",                              UNDEFINED_FILENAME              },
7843   { "font.text_3.LEVELNR.clone_from",                   "font.text_3.LEVELS"            },
7844   { "font.text_3.SETUP",                                UNDEFINED_FILENAME              },
7845   { "font.text_3.SETUP.clone_from",                     "font.text_3.LEVELS"            },
7846   { "font.text_3.NAMES",                                UNDEFINED_FILENAME              },
7847   { "font.text_3.NAMES.clone_from",                     "font.menu_1"                   },
7848   { "font.text_3.PREVIEW",                              "RocksFontEM.png"               },
7849   { "font.text_3.PREVIEW.x",                            "0"                             },
7850   { "font.text_3.PREVIEW.y",                            "160"                           },
7851   { "font.text_3.PREVIEW.width",                        "16"                            },
7852   { "font.text_3.PREVIEW.height",                       "16"                            },
7853   { "font.text_3.SCORES",                               "RocksFontMedium.png"           },
7854   { "font.text_3.SCORES.x",                             "0"                             },
7855   { "font.text_3.SCORES.y",                             "480"                           },
7856   { "font.text_3.SCORES.width",                         "16"                            },
7857   { "font.text_3.SCORES.height",                        "32"                            },
7858   { "font.text_3.active.SCORES",                        "RocksFontMedium.png"           },
7859   { "font.text_3.active.SCORES.x",                      "0"                             },
7860   { "font.text_3.active.SCORES.y",                      "0"                             },
7861   { "font.text_3.active.SCORES.width",                  "16"                            },
7862   { "font.text_3.active.SCORES.height",                 "32"                            },
7863   { "font.text_4",                                      "RocksFontSmall.png"            },
7864   { "font.text_4.x",                                    "0"                             },
7865   { "font.text_4.y",                                    "70"                            },
7866   { "font.text_4.width",                                "14"                            },
7867   { "font.text_4.height",                               "14"                            },
7868   { "font.text_4.MAIN",                                 UNDEFINED_FILENAME              },
7869   { "font.text_4.MAIN.clone_from",                      "font.text_3.PREVIEW"           },
7870   { "font.text_4.LEVELS",                               "RocksFontMedium.png"           },
7871   { "font.text_4.LEVELS.x",                             "0"                             },
7872   { "font.text_4.LEVELS.y",                             "480"                           },
7873   { "font.text_4.LEVELS.width",                         "16"                            },
7874   { "font.text_4.LEVELS.height",                        "32"                            },
7875   { "font.text_4.LEVELNR",                              UNDEFINED_FILENAME              },
7876   { "font.text_4.LEVELNR.clone_from",                   "font.text_4.LEVELS"            },
7877   { "font.text_4.SETUP",                                UNDEFINED_FILENAME              },
7878   { "font.text_4.SETUP.clone_from",                     "font.text_4.LEVELS"            },
7879   { "font.text_4.NAMES",                                UNDEFINED_FILENAME              },
7880   { "font.text_4.NAMES.clone_from",                     "font.menu_1.active"            },
7881   { "font.text_4.SCORES",                               "RocksFontMedium.png"           },
7882   { "font.text_4.SCORES.x",                             "0"                             },
7883   { "font.text_4.SCORES.y",                             "480"                           },
7884   { "font.text_4.SCORES.width",                         "16"                            },
7885   { "font.text_4.SCORES.height",                        "32"                            },
7886   { "font.text_4.active.SCORES",                        "RocksFontMedium.png"           },
7887   { "font.text_4.active.SCORES.x",                      "0"                             },
7888   { "font.text_4.active.SCORES.y",                      "0"                             },
7889   { "font.text_4.active.SCORES.width",                  "16"                            },
7890   { "font.text_4.active.SCORES.height",                 "32"                            },
7891
7892   { "font.envelope_1",                                  "RocksFontEM.png"               },
7893   { "font.envelope_1.x",                                "0"                             },
7894   { "font.envelope_1.y",                                "160"                           },
7895   { "font.envelope_1.width",                            "16"                            },
7896   { "font.envelope_1.height",                           "16"                            },
7897   { "font.envelope_2",                                  "RocksFontEM.png"               },
7898   { "font.envelope_2.x",                                "0"                             },
7899   { "font.envelope_2.y",                                "160"                           },
7900   { "font.envelope_2.width",                            "16"                            },
7901   { "font.envelope_2.height",                           "16"                            },
7902   { "font.envelope_3",                                  "RocksFontEM.png"               },
7903   { "font.envelope_3.x",                                "0"                             },
7904   { "font.envelope_3.y",                                "160"                           },
7905   { "font.envelope_3.width",                            "16"                            },
7906   { "font.envelope_3.height",                           "16"                            },
7907   { "font.envelope_4",                                  "RocksFontEM.png"               },
7908   { "font.envelope_4.x",                                "0"                             },
7909   { "font.envelope_4.y",                                "160"                           },
7910   { "font.envelope_4.width",                            "16"                            },
7911   { "font.envelope_4.height",                           "16"                            },
7912
7913   { "font.request",                                     "RocksFontSmall.png"            },
7914   { "font.request.x",                                   "0"                             },
7915   { "font.request.y",                                   "210"                           },
7916   { "font.request.width",                               "14"                            },
7917   { "font.request.height",                              "14"                            },
7918   { "font.request_narrow",                              UNDEFINED_FILENAME              },
7919   { "font.request_narrow.clone_from",                   "font.text_1.DOOR"              },
7920
7921   { "font.input_1",                                     "RocksFontSmall.png"            },
7922   { "font.input_1.x",                                   "0"                             },
7923   { "font.input_1.y",                                   "210"                           },
7924   { "font.input_1.width",                               "14"                            },
7925   { "font.input_1.height",                              "14"                            },
7926   { "font.input_1.MAIN",                                "RocksFontBig.png"              },
7927   { "font.input_1.MAIN.x",                              "0"                             },
7928   { "font.input_1.MAIN.y",                              "0"                             },
7929   { "font.input_1.MAIN.width",                          "32"                            },
7930   { "font.input_1.MAIN.height",                         "32"                            },
7931   { "font.input_1.NAMES",                               UNDEFINED_FILENAME              },
7932   { "font.input_1.NAMES.clone_from",                    "font.input_1.MAIN"             },
7933   { "font.input_1.active",                              "RocksFontSmall.png"            },
7934   { "font.input_1.active.x",                            "0"                             },
7935   { "font.input_1.active.y",                            "210"                           },
7936   { "font.input_1.active.width",                        "14"                            },
7937   { "font.input_1.active.height",                       "14"                            },
7938   { "font.input_1.active.MAIN",                         "RocksFontBig.png"              },
7939   { "font.input_1.active.MAIN.x",                       "0"                             },
7940   { "font.input_1.active.MAIN.y",                       "480"                           },
7941   { "font.input_1.active.MAIN.width",                   "32"                            },
7942   { "font.input_1.active.MAIN.height",                  "32"                            },
7943   { "font.input_1.active.NAMES",                        UNDEFINED_FILENAME              },
7944   { "font.input_1.active.NAMES.clone_from",             "font.input_1.active.MAIN"      },
7945   { "font.input_1.active.SETUP",                        "RocksFontBig.png"              },
7946   { "font.input_1.active.SETUP.x",                      "0"                             },
7947   { "font.input_1.active.SETUP.y",                      "0"                             },
7948   { "font.input_1.active.SETUP.width",                  "32"                            },
7949   { "font.input_1.active.SETUP.height",                 "32"                            },
7950   { "font.input_2",                                     "RocksFontSmall.png"            },
7951   { "font.input_2.x",                                   "0"                             },
7952   { "font.input_2.y",                                   "210"                           },
7953   { "font.input_2.width",                               "14"                            },
7954   { "font.input_2.height",                              "14"                            },
7955   { "font.input_2.active",                              "RocksFontSmall.png"            },
7956   { "font.input_2.active.x",                            "0"                             },
7957   { "font.input_2.active.y",                            "210"                           },
7958   { "font.input_2.active.width",                        "14"                            },
7959   { "font.input_2.active.height",                       "14"                            },
7960
7961   { "font.option_off",                                  "RocksFontBig.png"              },
7962   { "font.option_off.x",                                "0"                             },
7963   { "font.option_off.y",                                "160"                           },
7964   { "font.option_off.width",                            "32"                            },
7965   { "font.option_off.height",                           "32"                            },
7966   { "font.option_off_narrow",                           UNDEFINED_FILENAME              },
7967   { "font.option_off_narrow.clone_from",                "font.text_2.LEVELS"            },
7968   { "font.option_on",                                   "RocksFontBig.png"              },
7969   { "font.option_on.x",                                 "0"                             },
7970   { "font.option_on.y",                                 "480"                           },
7971   { "font.option_on.width",                             "32"                            },
7972   { "font.option_on.height",                            "32"                            },
7973   { "font.option_on_narrow",                            UNDEFINED_FILENAME              },
7974   { "font.option_on_narrow.clone_from",                 "font.text_4.LEVELS"            },
7975
7976   { "font.value_1",                                     "RocksFontBig.png"              },
7977   { "font.value_1.x",                                   "0"                             },
7978   { "font.value_1.y",                                   "480"                           },
7979   { "font.value_1.width",                               "32"                            },
7980   { "font.value_1.height",                              "32"                            },
7981   { "font.value_2",                                     "RocksFontMedium.png"           },
7982   { "font.value_2.x",                                   "0"                             },
7983   { "font.value_2.y",                                   "480"                           },
7984   { "font.value_2.width",                               "16"                            },
7985   { "font.value_2.height",                              "32"                            },
7986   { "font.value_old",                                   "RocksFontBig.png"              },
7987   { "font.value_old.x",                                 "0"                             },
7988   { "font.value_old.y",                                 "160"                           },
7989   { "font.value_old.width",                             "32"                            },
7990   { "font.value_old.height",                            "32"                            },
7991   { "font.value_old_narrow",                            UNDEFINED_FILENAME              },
7992   { "font.value_old_narrow.clone_from",                 "font.text_2.LEVELS"            },
7993   { "font.value_narrow",                                UNDEFINED_FILENAME              },
7994   { "font.value_narrow.clone_from",                     "font.text_4.LEVELS"            },
7995
7996   { "font.level_number",                                "RocksFontSmall.png"            },
7997   { "font.level_number.x",                              "0"                             },
7998   { "font.level_number.y",                              "350"                           },
7999   { "font.level_number.width",                          "10"                            },
8000   { "font.level_number.height",                         "14"                            },
8001   { "font.level_number.active",                         UNDEFINED_FILENAME              },
8002   { "font.level_number.active.clone_from",              "font.level_number"             },
8003
8004   { "font.tape_recorder",                               "RocksFontSmall.png"            },
8005   { "font.tape_recorder.x",                             "0"                             },
8006   { "font.tape_recorder.y",                             "280"                           },
8007   { "font.tape_recorder.width",                         "11"                            },
8008   { "font.tape_recorder.height",                        "14"                            },
8009
8010   { "font.game_info",                                   "RocksFontEM.png"               },
8011   { "font.game_info.xpos",                              "0"                             },
8012   { "font.game_info.ypos",                              "0"                             },
8013   { "font.game_info.delay",                             "10"                            },
8014
8015   { "font.info.elements",                               UNDEFINED_FILENAME              },
8016   { "font.info.elements.clone_from",                    "font.level_number"             },
8017
8018   { "font.info.levelset",                               UNDEFINED_FILENAME              },
8019   { "font.info.levelset.clone_from",                    "font.level_number"             },
8020
8021   { "font.main.network_players",                        UNDEFINED_FILENAME              },
8022   { "font.main.network_players.clone_from",             "font.level_number"             },
8023
8024   { "editor.element_border",                            "RocksMore.png"                 },
8025   { "editor.element_border.xpos",                       "0"                             },
8026   { "editor.element_border.ypos",                       "2"                             },
8027   { "editor.element_border.border_size",                "8"                             },
8028
8029   { "editor.element_border_input",                      "RocksMore.png"                 },
8030   { "editor.element_border_input.xpos",                 "10"                            },
8031   { "editor.element_border_input.ypos",                 "7"                             },
8032   { "editor.element_border_input.border_size",          "4"                             },
8033
8034   { "editor.counter.down",                              "RocksDoor.png"                 },
8035   { "editor.counter.down.x",                            "302"                           },
8036   { "editor.counter.down.y",                            "60"                            },
8037   { "editor.counter.down.width",                        "20"                            },
8038   { "editor.counter.down.height",                       "20"                            },
8039   { "editor.counter.down.pressed_xoffset",              "-100"                          },
8040
8041   { "editor.counter.up",                                "RocksDoor.png"                 },
8042   { "editor.counter.up.x",                              "378"                           },
8043   { "editor.counter.up.y",                              "60"                            },
8044   { "editor.counter.up.width",                          "20"                            },
8045   { "editor.counter.up.height",                         "20"                            },
8046   { "editor.counter.up.pressed_xoffset",                "-100"                          },
8047
8048   { "editor.counter.input",                             "RocksDoor.png"                 },
8049   { "editor.counter.input.x",                           "324"                           },
8050   { "editor.counter.input.y",                           "60"                            },
8051   { "editor.counter.input.width",                       "52"                            },
8052   { "editor.counter.input.height",                      "20"                            },
8053   { "editor.counter.input.active_xoffset",              "-100"                          },
8054   { "editor.counter.input.border_size",                 "3"                             },
8055
8056   { "editor.selectbox.input",                           "RocksDoor.png"                 },
8057   { "editor.selectbox.input.x",                         "324"                           },
8058   { "editor.selectbox.input.y",                         "82"                            },
8059   { "editor.selectbox.input.width",                     "52"                            },
8060   { "editor.selectbox.input.height",                    "20"                            },
8061   { "editor.selectbox.input.active_xoffset",            "-100"                          },
8062   { "editor.selectbox.input.border_size",               "3"                             },
8063
8064   { "editor.selectbox.button",                          UNDEFINED_FILENAME              },
8065   { "editor.selectbox.button.width",                    "14"                            },
8066
8067   { "editor.checkbox",                                  "RocksDoor.png"                 },
8068   { "editor.checkbox.x",                                "302"                           },
8069   { "editor.checkbox.y",                                "82"                            },
8070   { "editor.checkbox.width",                            "20"                            },
8071   { "editor.checkbox.height",                           "20"                            },
8072   { "editor.checkbox.pressed_xoffset",                  "-100"                          },
8073   { "editor.checkbox.active_xoffset",                   "76"                            },
8074
8075   { "editor.radiobutton",                               "RocksDoor.png"                 },
8076   { "editor.radiobutton.x",                             "302"                           },
8077   { "editor.radiobutton.y",                             "104"                           },
8078   { "editor.radiobutton.width",                         "20"                            },
8079   { "editor.radiobutton.height",                        "20"                            },
8080   { "editor.radiobutton.pressed_xoffset",               "-100"                          },
8081   { "editor.radiobutton.active_xoffset",                "76"                            },
8082
8083   { "editor.stickybutton",                              "RocksDoor.png"                 },
8084   { "editor.stickybutton.x",                            "302"                           },
8085   { "editor.stickybutton.y",                            "126"                           },
8086   { "editor.stickybutton.width",                        "20"                            },
8087   { "editor.stickybutton.height",                       "20"                            },
8088   { "editor.stickybutton.pressed_xoffset",              "-100"                          },
8089   { "editor.stickybutton.active_xoffset",               "76"                            },
8090
8091   { "editor.tabbutton",                                 "RocksDoor.png"                 },
8092   { "editor.tabbutton.x",                               "324"                           },
8093   { "editor.tabbutton.y",                               "104"                           },
8094   { "editor.tabbutton.width",                           "52"                            },
8095   { "editor.tabbutton.height",                          "20"                            },
8096   { "editor.tabbutton.pressed_xoffset",                 "-100"                          },
8097   { "editor.tabbutton.active_yoffset",                  "22"                            },
8098   { "editor.tabbutton.border_size",                     "3"                             },
8099   { "editor.tabbutton.draw_xoffset",                    "2"                             },
8100
8101   { "editor.textbutton",                                "RocksDoor.png"                 },
8102   { "editor.textbutton.x",                              "324"                           },
8103   { "editor.textbutton.y",                              "148"                           },
8104   { "editor.textbutton.width",                          "52"                            },
8105   { "editor.textbutton.height",                         "20"                            },
8106   { "editor.textbutton.pressed_xoffset",                "-100"                          },
8107   { "editor.textbutton.border_size",                    "3"                             },
8108   { "editor.textbutton.draw_xoffset",                   "2"                             },
8109
8110   { "editor.input.text",                                "RocksDoor.png"                 },
8111   { "editor.input.text.x",                              "324"                           },
8112   { "editor.input.text.y",                              "60"                            },
8113   { "editor.input.text.width",                          "52"                            },
8114   { "editor.input.text.height",                         "20"                            },
8115   { "editor.input.text.active_xoffset",                 "-100"                          },
8116   { "editor.input.text.border_size",                    "3"                             },
8117
8118   { "editor.input.textarea",                            "RocksDoor.png"                 },
8119   { "editor.input.textarea.x",                          "324"                           },
8120   { "editor.input.textarea.y",                          "60"                            },
8121   { "editor.input.textarea.width",                      "52"                            },
8122   { "editor.input.textarea.height",                     "20"                            },
8123   { "editor.input.textarea.active_xoffset",             "-100"                          },
8124   { "editor.input.textarea.border_size",                "3"                             },
8125
8126   { "editor.cascade_list",                              "RocksMore.png"                 },
8127   { "editor.cascade_list.xpos",                         "9"                             },
8128   { "editor.cascade_list.ypos",                         "8"                             },
8129   { "editor.cascade_list.frames",                       "1"                             },
8130   { "editor.cascade_list.active",                       "RocksMore.png"                 },
8131   { "editor.cascade_list.active.xpos",                  "10"                            },
8132   { "editor.cascade_list.active.ypos",                  "8"                             },
8133   { "editor.cascade_list.active.frames",                "1"                             },
8134
8135   { "editor.palette.button",                            "RocksDoor.png"                 },
8136   { "editor.palette.button.x",                          "525"                           },
8137   { "editor.palette.button.y",                          "30"                            },
8138   { "editor.palette.button.width",                      "20"                            },
8139   { "editor.palette.button.height",                     "20"                            },
8140   { "editor.palette.button.pressed_xoffset",            "-20"                           },
8141
8142   { "editor.palette.scroll_up",                         "RocksDoor.png"                 },
8143   { "editor.palette.scroll_up.x",                       "750"                           },
8144   { "editor.palette.scroll_up.y",                       "0"                             },
8145   { "editor.palette.scroll_up.width",                   "10"                            },
8146   { "editor.palette.scroll_up.height",                  "10"                            },
8147   { "editor.palette.scroll_up.pressed_xoffset",         "-10"                           },
8148
8149   { "editor.palette.scroll_down",                       "RocksDoor.png"                 },
8150   { "editor.palette.scroll_down.x",                     "750"                           },
8151   { "editor.palette.scroll_down.y",                     "10"                            },
8152   { "editor.palette.scroll_down.width",                 "10"                            },
8153   { "editor.palette.scroll_down.height",                "10"                            },
8154   { "editor.palette.scroll_down.pressed_xoffset",       "-10"                           },
8155
8156   { "editor.palette.scrollbar",                         "RocksDoor.png"                 },
8157   { "editor.palette.scrollbar.x",                       "750"                           },
8158   { "editor.palette.scrollbar.y",                       "20"                            },
8159   { "editor.palette.scrollbar.width",                   "10"                            },
8160   { "editor.palette.scrollbar.height",                  "10"                            },
8161   { "editor.palette.scrollbar.pressed_xoffset",         "-10"                           },
8162   { "editor.palette.scrollbar.border_size",             "3"                             },
8163
8164   { "editor.playfield.scroll_up",                       "RocksDoor.png"                 },
8165   { "editor.playfield.scroll_up.x",                     "724"                           },
8166   { "editor.playfield.scroll_up.y",                     "0"                             },
8167   { "editor.playfield.scroll_up.width",                 "16"                            },
8168   { "editor.playfield.scroll_up.height",                "16"                            },
8169   { "editor.playfield.scroll_up.pressed_xoffset",       "-16"                           },
8170
8171   { "editor.playfield.scroll_down",                     "RocksDoor.png"                 },
8172   { "editor.playfield.scroll_down.x",                   "724"                           },
8173   { "editor.playfield.scroll_down.y",                   "16"                            },
8174   { "editor.playfield.scroll_down.width",               "16"                            },
8175   { "editor.playfield.scroll_down.height",              "16"                            },
8176   { "editor.playfield.scroll_down.pressed_xoffset",     "-16"                           },
8177
8178   { "editor.playfield.scroll_left",                     "RocksDoor.png"                 },
8179   { "editor.playfield.scroll_left.x",                   "724"                           },
8180   { "editor.playfield.scroll_left.y",                   "32"                            },
8181   { "editor.playfield.scroll_left.width",               "16"                            },
8182   { "editor.playfield.scroll_left.height",              "16"                            },
8183   { "editor.playfield.scroll_left.pressed_xoffset",     "-16"                           },
8184
8185   { "editor.playfield.scroll_right",                    "RocksDoor.png"                 },
8186   { "editor.playfield.scroll_right.x",                  "724"                           },
8187   { "editor.playfield.scroll_right.y",                  "48"                            },
8188   { "editor.playfield.scroll_right.width",              "16"                            },
8189   { "editor.playfield.scroll_right.height",             "16"                            },
8190   { "editor.playfield.scroll_right.pressed_xoffset",    "-16"                           },
8191
8192   { "editor.playfield.scrollbar",                       "RocksDoor.png"                 },
8193   { "editor.playfield.scrollbar.x",                     "724"                           },
8194   { "editor.playfield.scrollbar.y",                     "64"                            },
8195   { "editor.playfield.scrollbar.width",                 "16"                            },
8196   { "editor.playfield.scrollbar.height",                "16"                            },
8197   { "editor.playfield.scrollbar.pressed_xoffset",       "-16"                           },
8198   { "editor.playfield.scrollbar.border_size",           "3"                             },
8199
8200   { "gfx.editor.button.prev_level",                     "RocksDoor.png"                 },
8201   { "gfx.editor.button.prev_level.x",                   "724"                           },
8202   { "gfx.editor.button.prev_level.y",                   "32"                            },
8203   { "gfx.editor.button.prev_level.width",               "16"                            },
8204   { "gfx.editor.button.prev_level.height",              "16"                            },
8205   { "gfx.editor.button.prev_level.pressed_xoffset",     "-16"                           },
8206
8207   { "gfx.editor.button.next_level",                     "RocksDoor.png"                 },
8208   { "gfx.editor.button.next_level.x",                   "724"                           },
8209   { "gfx.editor.button.next_level.y",                   "48"                            },
8210   { "gfx.editor.button.next_level.width",               "16"                            },
8211   { "gfx.editor.button.next_level.height",              "16"                            },
8212   { "gfx.editor.button.next_level.pressed_xoffset",     "-16"                           },
8213
8214   { "gfx.editor.button.properties",                     "RocksDoor2.png"                },
8215   { "gfx.editor.button.properties.x",                   "105"                           },
8216   { "gfx.editor.button.properties.y",                   "0"                             },
8217   { "gfx.editor.button.properties.width",               "90"                            },
8218   { "gfx.editor.button.properties.height",              "20"                            },
8219   { "gfx.editor.button.properties.pressed_xoffset",     "-100"                          },
8220
8221   { "gfx.editor.button.element_left",                   "RocksDoor2.png"                },
8222   { "gfx.editor.button.element_left.x",                 "368"                           },
8223   { "gfx.editor.button.element_left.y",                 "48"                            },
8224   { "gfx.editor.button.element_left.width",             "16"                            },
8225   { "gfx.editor.button.element_left.height",            "16"                            },
8226   { "gfx.editor.button.element_left.pressed_xoffset",   "0"                             },
8227
8228   { "gfx.editor.button.element_middle",                 "RocksDoor2.png"                },
8229   { "gfx.editor.button.element_middle.x",               "368"                           },
8230   { "gfx.editor.button.element_middle.y",               "48"                            },
8231   { "gfx.editor.button.element_middle.width",           "16"                            },
8232   { "gfx.editor.button.element_middle.height",          "16"                            },
8233   { "gfx.editor.button.element_middle.pressed_xoffset", "0"                             },
8234
8235   { "gfx.editor.button.element_right",                  "RocksDoor2.png"                },
8236   { "gfx.editor.button.element_right.x",                "368"                           },
8237   { "gfx.editor.button.element_right.y",                "48"                            },
8238   { "gfx.editor.button.element_right.width",            "16"                            },
8239   { "gfx.editor.button.element_right.height",           "16"                            },
8240   { "gfx.editor.button.element_right.pressed_xoffset",  "0"                             },
8241
8242   { "gfx.editor.button.palette",                        UNDEFINED_FILENAME              },
8243
8244   { "editor.no_toolbox_button",                         "RocksDoor.png"                 },
8245   { "editor.no_toolbox_button.x",                       "506"                           },
8246   { "editor.no_toolbox_button.y",                       "286"                           },
8247   { "editor.no_toolbox_button.width",                   "22"                            },
8248   { "editor.no_toolbox_button.height",                  "22"                            },
8249
8250   { "gfx.editor.button.draw_single",                    "RocksDoor.png"                 },
8251   { "gfx.editor.button.draw_single.x",                  "706"                           },
8252   { "gfx.editor.button.draw_single.y",                  "242"                           },
8253   { "gfx.editor.button.draw_single.width",              "22"                            },
8254   { "gfx.editor.button.draw_single.height",             "22"                            },
8255   { "gfx.editor.button.draw_single.pressed_xoffset",    "-100"                          },
8256   { "gfx.editor.button.draw_single.active_yoffset",     "-94"                           },
8257
8258   { "gfx.editor.button.draw_connected",                 "RocksDoor.png"                 },
8259   { "gfx.editor.button.draw_connected.x",               "728"                           },
8260   { "gfx.editor.button.draw_connected.y",               "242"                           },
8261   { "gfx.editor.button.draw_connected.width",           "22"                            },
8262   { "gfx.editor.button.draw_connected.height",          "22"                            },
8263   { "gfx.editor.button.draw_connected.pressed_xoffset", "-100"                          },
8264   { "gfx.editor.button.draw_connected.active_yoffset",  "-94"                           },
8265
8266   { "gfx.editor.button.draw_line",                      "RocksDoor.png"                 },
8267   { "gfx.editor.button.draw_line.x",                    "750"                           },
8268   { "gfx.editor.button.draw_line.y",                    "242"                           },
8269   { "gfx.editor.button.draw_line.width",                "22"                            },
8270   { "gfx.editor.button.draw_line.height",               "22"                            },
8271   { "gfx.editor.button.draw_line.pressed_xoffset",      "-100"                          },
8272   { "gfx.editor.button.draw_line.active_yoffset",       "-94"                           },
8273
8274   { "gfx.editor.button.draw_arc",                       "RocksDoor.png"                 },
8275   { "gfx.editor.button.draw_arc.x",                     "772"                           },
8276   { "gfx.editor.button.draw_arc.y",                     "242"                           },
8277   { "gfx.editor.button.draw_arc.width",                 "22"                            },
8278   { "gfx.editor.button.draw_arc.height",                "22"                            },
8279   { "gfx.editor.button.draw_arc.pressed_xoffset",       "-100"                          },
8280   { "gfx.editor.button.draw_arc.active_yoffset",        "-94"                           },
8281
8282   { "gfx.editor.button.draw_rectangle",                 "RocksDoor.png"                 },
8283   { "gfx.editor.button.draw_rectangle.x",               "706"                           },
8284   { "gfx.editor.button.draw_rectangle.y",               "264"                           },
8285   { "gfx.editor.button.draw_rectangle.width",           "22"                            },
8286   { "gfx.editor.button.draw_rectangle.height",          "22"                            },
8287   { "gfx.editor.button.draw_rectangle.pressed_xoffset", "-100"                          },
8288   { "gfx.editor.button.draw_rectangle.active_yoffset",  "-94"                           },
8289
8290   { "gfx.editor.button.draw_filled_box",                "RocksDoor.png"                 },
8291   { "gfx.editor.button.draw_filled_box.x",              "728"                           },
8292   { "gfx.editor.button.draw_filled_box.y",              "264"                           },
8293   { "gfx.editor.button.draw_filled_box.width",          "22"                            },
8294   { "gfx.editor.button.draw_filled_box.height",         "22"                            },
8295   { "gfx.editor.button.draw_filled_box.pressed_xoffset","-100"                          },
8296   { "gfx.editor.button.draw_filled_box.active_yoffset", "-94"                           },
8297
8298   { "gfx.editor.button.rotate_up",                      "RocksDoor.png"                 },
8299   { "gfx.editor.button.rotate_up.x",                    "750"                           },
8300   { "gfx.editor.button.rotate_up.y",                    "264"                           },
8301   { "gfx.editor.button.rotate_up.width",                "22"                            },
8302   { "gfx.editor.button.rotate_up.height",               "22"                            },
8303   { "gfx.editor.button.rotate_up.pressed_xoffset",      "-100"                          },
8304   { "gfx.editor.button.rotate_up.active_yoffset",       "-94"                           },
8305
8306   { "gfx.editor.button.draw_text",                      "RocksDoor.png"                 },
8307   { "gfx.editor.button.draw_text.x",                    "772"                           },
8308   { "gfx.editor.button.draw_text.y",                    "264"                           },
8309   { "gfx.editor.button.draw_text.width",                "22"                            },
8310   { "gfx.editor.button.draw_text.height",               "22"                            },
8311   { "gfx.editor.button.draw_text.pressed_xoffset",      "-100"                          },
8312   { "gfx.editor.button.draw_text.active_yoffset",       "-94"                           },
8313
8314   { "gfx.editor.button.flood_fill",                     "RocksDoor.png"                 },
8315   { "gfx.editor.button.flood_fill.x",                   "706"                           },
8316   { "gfx.editor.button.flood_fill.y",                   "286"                           },
8317   { "gfx.editor.button.flood_fill.width",               "22"                            },
8318   { "gfx.editor.button.flood_fill.height",              "22"                            },
8319   { "gfx.editor.button.flood_fill.pressed_xoffset",     "-100"                          },
8320   { "gfx.editor.button.flood_fill.active_yoffset",      "-94"                           },
8321
8322   { "gfx.editor.button.rotate_left",                    "RocksDoor.png"                 },
8323   { "gfx.editor.button.rotate_left.x",                  "728"                           },
8324   { "gfx.editor.button.rotate_left.y",                  "286"                           },
8325   { "gfx.editor.button.rotate_left.width",              "22"                            },
8326   { "gfx.editor.button.rotate_left.height",             "22"                            },
8327   { "gfx.editor.button.rotate_left.pressed_xoffset",    "-100"                          },
8328   { "gfx.editor.button.rotate_left.active_yoffset",     "-94"                           },
8329
8330   { "gfx.editor.button.zoom_level",                     "RocksDoor2.png"                },
8331   { "gfx.editor.button.zoom_level.x",                   "350"                           },
8332   { "gfx.editor.button.zoom_level.y",                   "22"                            },
8333   { "gfx.editor.button.zoom_level.width",               "22"                            },
8334   { "gfx.editor.button.zoom_level.height",              "22"                            },
8335   { "gfx.editor.button.zoom_level.pressed_xoffset",     "-100"                          },
8336   { "gfx.editor.button.zoom_level.active_yoffset",      "-22"                           },
8337
8338   { "gfx.editor.button.rotate_right",                   "RocksDoor.png"                 },
8339   { "gfx.editor.button.rotate_right.x",                 "772"                           },
8340   { "gfx.editor.button.rotate_right.y",                 "286"                           },
8341   { "gfx.editor.button.rotate_right.width",             "22"                            },
8342   { "gfx.editor.button.rotate_right.height",            "22"                            },
8343   { "gfx.editor.button.rotate_right.pressed_xoffset",   "-100"                          },
8344   { "gfx.editor.button.rotate_right.active_yoffset",    "-94"                           },
8345
8346   { "gfx.editor.button.draw_random",                    "RocksDoor.png"                 },
8347   { "gfx.editor.button.draw_random.x",                  "706"                           },
8348   { "gfx.editor.button.draw_random.y",                  "308"                           },
8349   { "gfx.editor.button.draw_random.width",              "22"                            },
8350   { "gfx.editor.button.draw_random.height",             "22"                            },
8351   { "gfx.editor.button.draw_random.pressed_xoffset",    "-100"                          },
8352   { "gfx.editor.button.draw_random.active_yoffset",     "-94"                           },
8353
8354   { "gfx.editor.button.grab_brush",                     "RocksDoor.png"                 },
8355   { "gfx.editor.button.grab_brush.x",                   "728"                           },
8356   { "gfx.editor.button.grab_brush.y",                   "308"                           },
8357   { "gfx.editor.button.grab_brush.width",               "22"                            },
8358   { "gfx.editor.button.grab_brush.height",              "22"                            },
8359   { "gfx.editor.button.grab_brush.pressed_xoffset",     "-100"                          },
8360   { "gfx.editor.button.grab_brush.active_yoffset",      "-94"                           },
8361
8362   { "gfx.editor.button.rotate_down",                    "RocksDoor.png"                 },
8363   { "gfx.editor.button.rotate_down.x",                  "750"                           },
8364   { "gfx.editor.button.rotate_down.y",                  "308"                           },
8365   { "gfx.editor.button.rotate_down.width",              "22"                            },
8366   { "gfx.editor.button.rotate_down.height",             "22"                            },
8367   { "gfx.editor.button.rotate_down.pressed_xoffset",    "-100"                          },
8368   { "gfx.editor.button.rotate_down.active_yoffset",     "-94"                           },
8369
8370   { "gfx.editor.button.pick_element",                   "RocksDoor.png"                 },
8371   { "gfx.editor.button.pick_element.x",                 "772"                           },
8372   { "gfx.editor.button.pick_element.y",                 "308"                           },
8373   { "gfx.editor.button.pick_element.width",             "22"                            },
8374   { "gfx.editor.button.pick_element.height",            "22"                            },
8375   { "gfx.editor.button.pick_element.pressed_xoffset",   "-100"                          },
8376   { "gfx.editor.button.pick_element.active_yoffset",    "-94"                           },
8377
8378   { "gfx.editor.button.ce_copy_from",                   "RocksDoor.png"                 },
8379   { "gfx.editor.button.ce_copy_from.x",                 "528"                           },
8380   { "gfx.editor.button.ce_copy_from.y",                 "330"                           },
8381   { "gfx.editor.button.ce_copy_from.width",             "22"                            },
8382   { "gfx.editor.button.ce_copy_from.height",            "22"                            },
8383   { "gfx.editor.button.ce_copy_from.pressed_xoffset",   "-100"                          },
8384   { "gfx.editor.button.ce_copy_from.active_yoffset",    "-22"                           },
8385
8386   { "gfx.editor.button.ce_copy_to",                     "RocksDoor.png"                 },
8387   { "gfx.editor.button.ce_copy_to.x",                   "550"                           },
8388   { "gfx.editor.button.ce_copy_to.y",                   "330"                           },
8389   { "gfx.editor.button.ce_copy_to.width",               "22"                            },
8390   { "gfx.editor.button.ce_copy_to.height",              "22"                            },
8391   { "gfx.editor.button.ce_copy_to.pressed_xoffset",     "-100"                          },
8392   { "gfx.editor.button.ce_copy_to.active_yoffset",      "-22"                           },
8393
8394   { "gfx.editor.button.ce_swap",                        "RocksDoor.png"                 },
8395   { "gfx.editor.button.ce_swap.x",                      "572"                           },
8396   { "gfx.editor.button.ce_swap.y",                      "330"                           },
8397   { "gfx.editor.button.ce_swap.width",                  "22"                            },
8398   { "gfx.editor.button.ce_swap.height",                 "22"                            },
8399   { "gfx.editor.button.ce_swap.pressed_xoffset",        "-100"                          },
8400   { "gfx.editor.button.ce_swap.active_yoffset",         "-22"                           },
8401
8402   { "gfx.editor.button.ce_copy",                        "RocksDoor.png"                 },
8403   { "gfx.editor.button.ce_copy.x",                      "550"                           },
8404   { "gfx.editor.button.ce_copy.y",                      "286"                           },
8405   { "gfx.editor.button.ce_copy.width",                  "22"                            },
8406   { "gfx.editor.button.ce_copy.height",                 "22"                            },
8407   { "gfx.editor.button.ce_copy.pressed_xoffset",        "-100"                          },
8408
8409   { "gfx.editor.button.ce_paste",                       "RocksDoor.png"                 },
8410   { "gfx.editor.button.ce_paste.x",                     "572"                           },
8411   { "gfx.editor.button.ce_paste.y",                     "286"                           },
8412   { "gfx.editor.button.ce_paste.width",                 "22"                            },
8413   { "gfx.editor.button.ce_paste.height",                "22"                            },
8414   { "gfx.editor.button.ce_paste.pressed_xoffset",       "-100"                          },
8415
8416   { "gfx.editor.button.cp_copy",                        "RocksDoor.png"                 },
8417   { "gfx.editor.button.cp_copy.x",                      "525"                           },
8418   { "gfx.editor.button.cp_copy.y",                      "50"                            },
8419   { "gfx.editor.button.cp_copy.width",                  "20"                            },
8420   { "gfx.editor.button.cp_copy.height",                 "20"                            },
8421   { "gfx.editor.button.cp_copy.pressed_xoffset",        "-20"                           },
8422
8423   { "gfx.editor.button.cp_paste",                       "RocksDoor.png"                 },
8424   { "gfx.editor.button.cp_paste.x",                     "525"                           },
8425   { "gfx.editor.button.cp_paste.y",                     "70"                            },
8426   { "gfx.editor.button.cp_paste.width",                 "20"                            },
8427   { "gfx.editor.button.cp_paste.height",                "20"                            },
8428   { "gfx.editor.button.cp_paste.pressed_xoffset",       "-20"                           },
8429
8430   { "gfx.editor.button.undo",                           "RocksDoor.png"                 },
8431   { "gfx.editor.button.undo.x",                         "705"                           },
8432   { "gfx.editor.button.undo.y",                         "335"                           },
8433   { "gfx.editor.button.undo.width",                     "30"                            },
8434   { "gfx.editor.button.undo.height",                    "20"                            },
8435   { "gfx.editor.button.undo.pressed_xoffset",           "-100"                          },
8436
8437   { "gfx.editor.button.conf",                           "RocksDoor.png"                 },
8438   { "gfx.editor.button.conf.x",                         "735"                           },
8439   { "gfx.editor.button.conf.y",                         "335"                           },
8440   { "gfx.editor.button.conf.width",                     "30"                            },
8441   { "gfx.editor.button.conf.height",                    "20"                            },
8442   { "gfx.editor.button.conf.pressed_xoffset",           "-100"                          },
8443
8444   { "gfx.editor.button.save",                           "RocksDoor.png"                 },
8445   { "gfx.editor.button.save.x",                         "765"                           },
8446   { "gfx.editor.button.save.y",                         "335"                           },
8447   { "gfx.editor.button.save.width",                     "30"                            },
8448   { "gfx.editor.button.save.height",                    "20"                            },
8449   { "gfx.editor.button.save.pressed_xoffset",           "-100"                          },
8450
8451   { "gfx.editor.button.clear",                          "RocksDoor.png"                 },
8452   { "gfx.editor.button.clear.x",                        "705"                           },
8453   { "gfx.editor.button.clear.y",                        "355"                           },
8454   { "gfx.editor.button.clear.width",                    "30"                            },
8455   { "gfx.editor.button.clear.height",                   "20"                            },
8456   { "gfx.editor.button.clear.pressed_xoffset",          "-100"                          },
8457
8458   { "gfx.editor.button.test",                           "RocksDoor.png"                 },
8459   { "gfx.editor.button.test.x",                         "735"                           },
8460   { "gfx.editor.button.test.y",                         "355"                           },
8461   { "gfx.editor.button.test.width",                     "30"                            },
8462   { "gfx.editor.button.test.height",                    "20"                            },
8463   { "gfx.editor.button.test.pressed_xoffset",           "-100"                          },
8464
8465   { "gfx.editor.button.exit",                           "RocksDoor.png"                 },
8466   { "gfx.editor.button.exit.x",                         "765"                           },
8467   { "gfx.editor.button.exit.y",                         "355"                           },
8468   { "gfx.editor.button.exit.width",                     "30"                            },
8469   { "gfx.editor.button.exit.height",                    "20"                            },
8470   { "gfx.editor.button.exit.pressed_xoffset",           "-100"                          },
8471
8472   { "gfx.editor.input.level_number",                    "RocksDoor.png"                 },
8473   { "gfx.editor.input.level_number.x",                  "529"                           },
8474   { "gfx.editor.input.level_number.y",                  "5"                             },
8475   { "gfx.editor.input.level_number.width",              "42"                            },
8476   { "gfx.editor.input.level_number.height",             "16"                            },
8477   { "gfx.editor.input.level_number.border_size",        "1"                             },
8478
8479   { "setup.input.text",                                 "RocksSP.png"                   },
8480   { "setup.input.text.x",                               "0"                             },
8481   { "setup.input.text.y",                               "0"                             },
8482   { "setup.input.text.width",                           "32"                            },
8483   { "setup.input.text.height",                          "32"                            },
8484   { "setup.input.text.active_xoffset",                  "0"                             },
8485   { "setup.input.text.border_size",                     "0"                             },
8486
8487   { "global.border",                                    "RocksScreen.png"               },
8488   { "global.border.MAIN",                               UNDEFINED_FILENAME              },
8489   { "global.border.SCORES",                             UNDEFINED_FILENAME              },
8490   { "global.border.EDITOR",                             UNDEFINED_FILENAME              },
8491   { "global.border.PLAYING",                            UNDEFINED_FILENAME              },
8492
8493   { "global.door",                                      "RocksDoor.png"                 },
8494
8495   { "global.busy_initial",                              "RocksBusy.png"                 },
8496   { "global.busy_initial.x",                            "0"                             },
8497   { "global.busy_initial.y",                            "0"                             },
8498   { "global.busy_initial.width",                        "32"                            },
8499   { "global.busy_initial.height",                       "32"                            },
8500   { "global.busy_initial.frames",                       "28"                            },
8501   { "global.busy_initial.frames_per_line",              "7"                             },
8502   { "global.busy_initial.delay",                        "2"                             },
8503   { "global.busy",                                      "RocksBusy.png"                 },
8504   { "global.busy.x",                                    "0"                             },
8505   { "global.busy.y",                                    "0"                             },
8506   { "global.busy.width",                                "32"                            },
8507   { "global.busy.height",                               "32"                            },
8508   { "global.busy.frames",                               "28"                            },
8509   { "global.busy.frames_per_line",                      "7"                             },
8510   { "global.busy.delay",                                "2"                             },
8511   { "global.busy_playfield",                            "RocksBusy.png"                 },
8512   { "global.busy_playfield.x",                          "0"                             },
8513   { "global.busy_playfield.y",                          "0"                             },
8514   { "global.busy_playfield.width",                      "32"                            },
8515   { "global.busy_playfield.height",                     "32"                            },
8516   { "global.busy_playfield.frames",                     "28"                            },
8517   { "global.busy_playfield.frames_per_line",            "7"                             },
8518   { "global.busy_playfield.delay",                      "2"                             },
8519
8520   { "global.tile_cursor",                               "RocksMore.png"                 },
8521   { "global.tile_cursor.xpos",                          "10"                            },
8522   { "global.tile_cursor.ypos",                          "7"                             },
8523   { "global.tile_cursor.frames",                        "1"                             },
8524
8525   { "background",                                       UNDEFINED_FILENAME              },
8526   { "background.LOADING_INITIAL",                       UNDEFINED_FILENAME              },
8527   { "background.LOADING",                               UNDEFINED_FILENAME              },
8528   { "background.TITLE_INITIAL",                         UNDEFINED_FILENAME              },
8529   { "background.TITLE",                                 UNDEFINED_FILENAME              },
8530   { "background.MAIN",                                  UNDEFINED_FILENAME              },
8531   { "background.NAMES",                                 UNDEFINED_FILENAME              },
8532   { "background.LEVELS",                                UNDEFINED_FILENAME              },
8533   { "background.LEVELNR",                               UNDEFINED_FILENAME              },
8534   { "background.SCORES",                                UNDEFINED_FILENAME              },
8535   { "background.SCOREINFO",                             UNDEFINED_FILENAME              },
8536   { "background.EDITOR",                                UNDEFINED_FILENAME              },
8537   { "background.INFO",                                  UNDEFINED_FILENAME              },
8538   { "background.INFO[ELEMENTS]",                        UNDEFINED_FILENAME              },
8539   { "background.INFO[MUSIC]",                           UNDEFINED_FILENAME              },
8540   { "background.INFO[CREDITS]",                         UNDEFINED_FILENAME              },
8541   { "background.INFO[PROGRAM]",                         UNDEFINED_FILENAME              },
8542   { "background.INFO[VERSION]",                         UNDEFINED_FILENAME              },
8543   { "background.INFO[LEVELSET]",                        UNDEFINED_FILENAME              },
8544   { "background.SETUP",                                 UNDEFINED_FILENAME              },
8545   { "background.PLAYING",                               UNDEFINED_FILENAME              },
8546   { "background.DOOR",                                  UNDEFINED_FILENAME              },
8547   { "background.TAPE",                                  "RocksDoor.png"                 },
8548   { "background.TAPE.x",                                "200"                           },
8549   { "background.TAPE.y",                                "280"                           },
8550   { "background.TAPE.width",                            "100"                           },
8551   { "background.TAPE.height",                           "100"                           },
8552   { "background.PANEL",                                 "RocksDoor.png"                 },
8553   { "background.PANEL.x",                               "400"                           },
8554   { "background.PANEL.y",                               "0"                             },
8555   { "background.PANEL.width",                           "100"                           },
8556   { "background.PANEL.height",                          "280"                           },
8557   { "background.PALETTE",                               "RocksDoor.png"                 },
8558   { "background.PALETTE.x",                             "500"                           },
8559   { "background.PALETTE.y",                             "0"                             },
8560   { "background.PALETTE.width",                         "100"                           },
8561   { "background.PALETTE.height",                        "280"                           },
8562   { "background.TOOLBOX",                               "RocksDoor.png"                 },
8563   { "background.TOOLBOX.x",                             "700"                           },
8564   { "background.TOOLBOX.y",                             "236"                           },
8565   { "background.TOOLBOX.width",                         "100"                           },
8566   { "background.TOOLBOX.height",                        "144"                           },
8567
8568   { "background.titlescreen_initial_1",                 UNDEFINED_FILENAME              },
8569   { "background.titlescreen_initial_2",                 UNDEFINED_FILENAME              },
8570   { "background.titlescreen_initial_3",                 UNDEFINED_FILENAME              },
8571   { "background.titlescreen_initial_4",                 UNDEFINED_FILENAME              },
8572   { "background.titlescreen_initial_5",                 UNDEFINED_FILENAME              },
8573   { "background.titlescreen_1",                         UNDEFINED_FILENAME              },
8574   { "background.titlescreen_2",                         UNDEFINED_FILENAME              },
8575   { "background.titlescreen_3",                         UNDEFINED_FILENAME              },
8576   { "background.titlescreen_4",                         UNDEFINED_FILENAME              },
8577   { "background.titlescreen_5",                         UNDEFINED_FILENAME              },
8578   { "background.titlemessage_initial_1",                UNDEFINED_FILENAME              },
8579   { "background.titlemessage_initial_2",                UNDEFINED_FILENAME              },
8580   { "background.titlemessage_initial_3",                UNDEFINED_FILENAME              },
8581   { "background.titlemessage_initial_4",                UNDEFINED_FILENAME              },
8582   { "background.titlemessage_initial_5",                UNDEFINED_FILENAME              },
8583   { "background.titlemessage_1",                        UNDEFINED_FILENAME              },
8584   { "background.titlemessage_2",                        UNDEFINED_FILENAME              },
8585   { "background.titlemessage_3",                        UNDEFINED_FILENAME              },
8586   { "background.titlemessage_4",                        UNDEFINED_FILENAME              },
8587   { "background.titlemessage_5",                        UNDEFINED_FILENAME              },
8588
8589   { "background.envelope_1",                            "RocksScreen.png"               },
8590   { "background.envelope_1.x",                          "0"                             },
8591   { "background.envelope_1.y",                          "0"                             },
8592   { "background.envelope_1.width",                      "560"                           },
8593   { "background.envelope_1.height",                     "560"                           },
8594   { "background.envelope_1.anim_mode",                  "default"                       },
8595   { "background.envelope_1.draw_masked",                "false"                         },
8596   { "background.envelope_2",                            "RocksScreen.png"               },
8597   { "background.envelope_2.x",                          "0"                             },
8598   { "background.envelope_2.y",                          "0"                             },
8599   { "background.envelope_2.width",                      "560"                           },
8600   { "background.envelope_2.height",                     "560"                           },
8601   { "background.envelope_2.anim_mode",                  "default"                       },
8602   { "background.envelope_2.draw_masked",                "false"                         },
8603   { "background.envelope_3",                            "RocksScreen.png"               },
8604   { "background.envelope_3.x",                          "0"                             },
8605   { "background.envelope_3.y",                          "0"                             },
8606   { "background.envelope_3.width",                      "560"                           },
8607   { "background.envelope_3.height",                     "560"                           },
8608   { "background.envelope_3.anim_mode",                  "default"                       },
8609   { "background.envelope_3.draw_masked",                "false"                         },
8610   { "background.envelope_4",                            "RocksScreen.png"               },
8611   { "background.envelope_4.x",                          "0"                             },
8612   { "background.envelope_4.y",                          "0"                             },
8613   { "background.envelope_4.width",                      "560"                           },
8614   { "background.envelope_4.height",                     "560"                           },
8615   { "background.envelope_4.anim_mode",                  "default"                       },
8616   { "background.envelope_4.draw_masked",                "false"                         },
8617
8618   { "background.request",                               "RocksScreen.png"               },
8619   { "background.request.x",                             "562"                           },
8620   { "background.request.y",                             "56"                            },
8621   { "background.request.width",                         "108"                           },
8622   { "background.request.height",                        "288"                           },
8623   { "background.request.anim_mode",                     "default"                       },
8624   { "background.request.draw_masked",                   "false"                         },
8625
8626   { "titlescreen_initial_1",                            UNDEFINED_FILENAME              },
8627   { "titlescreen_initial_2",                            UNDEFINED_FILENAME              },
8628   { "titlescreen_initial_3",                            UNDEFINED_FILENAME              },
8629   { "titlescreen_initial_4",                            UNDEFINED_FILENAME              },
8630   { "titlescreen_initial_5",                            UNDEFINED_FILENAME              },
8631   { "titlescreen_1",                                    UNDEFINED_FILENAME              },
8632   { "titlescreen_2",                                    UNDEFINED_FILENAME              },
8633   { "titlescreen_3",                                    UNDEFINED_FILENAME              },
8634   { "titlescreen_4",                                    UNDEFINED_FILENAME              },
8635   { "titlescreen_5",                                    UNDEFINED_FILENAME              },
8636
8637   { "gfx.door_1.part_1",                                "RocksDoor.png"                 },
8638   { "gfx.door_1.part_1.x",                              "0"                             },
8639   { "gfx.door_1.part_1.y",                              "0"                             },
8640   { "gfx.door_1.part_1.width",                          "100"                           },
8641   { "gfx.door_1.part_1.height",                         "77"                            },
8642   { "gfx.door_1.part_1.frames",                         "1"                             },
8643   { "gfx.door_1.part_2",                                "RocksDoor.png"                 },
8644   { "gfx.door_1.part_2.x",                              "0"                             },
8645   { "gfx.door_1.part_2.y",                              "77"                            },
8646   { "gfx.door_1.part_2.width",                          "100"                           },
8647   { "gfx.door_1.part_2.height",                         "63"                            },
8648   { "gfx.door_1.part_2.frames",                         "1"                             },
8649   { "gfx.door_1.part_3",                                "RocksDoor.png"                 },
8650   { "gfx.door_1.part_3.x",                              "0"                             },
8651   { "gfx.door_1.part_3.y",                              "140"                           },
8652   { "gfx.door_1.part_3.width",                          "100"                           },
8653   { "gfx.door_1.part_3.height",                         "63"                            },
8654   { "gfx.door_1.part_3.frames",                         "1"                             },
8655   { "gfx.door_1.part_4",                                "RocksDoor.png"                 },
8656   { "gfx.door_1.part_4.x",                              "0"                             },
8657   { "gfx.door_1.part_4.y",                              "203"                           },
8658   { "gfx.door_1.part_4.width",                          "100"                           },
8659   { "gfx.door_1.part_4.height",                         "77"                            },
8660   { "gfx.door_1.part_4.frames",                         "1"                             },
8661   { "gfx.door_1.part_5",                                "RocksDoor.png"                 },
8662   { "gfx.door_1.part_5.x",                              "100"                           },
8663   { "gfx.door_1.part_5.y",                              "0"                             },
8664   { "gfx.door_1.part_5.width",                          "100"                           },
8665   { "gfx.door_1.part_5.height",                         "77"                            },
8666   { "gfx.door_1.part_5.frames",                         "1"                             },
8667   { "gfx.door_1.part_6",                                "RocksDoor.png"                 },
8668   { "gfx.door_1.part_6.x",                              "100"                           },
8669   { "gfx.door_1.part_6.y",                              "77"                            },
8670   { "gfx.door_1.part_6.width",                          "100"                           },
8671   { "gfx.door_1.part_6.height",                         "63"                            },
8672   { "gfx.door_1.part_6.frames",                         "1"                             },
8673   { "gfx.door_1.part_7",                                "RocksDoor.png"                 },
8674   { "gfx.door_1.part_7.x",                              "100"                           },
8675   { "gfx.door_1.part_7.y",                              "140"                           },
8676   { "gfx.door_1.part_7.width",                          "100"                           },
8677   { "gfx.door_1.part_7.height",                         "63"                            },
8678   { "gfx.door_1.part_7.frames",                         "1"                             },
8679   { "gfx.door_1.part_8",                                "RocksDoor.png"                 },
8680   { "gfx.door_1.part_8.x",                              "100"                           },
8681   { "gfx.door_1.part_8.y",                              "203"                           },
8682   { "gfx.door_1.part_8.width",                          "100"                           },
8683   { "gfx.door_1.part_8.height",                         "77"                            },
8684   { "gfx.door_1.part_8.frames",                         "1"                             },
8685
8686   { "gfx.door_2.part_1",                                "RocksDoor.png"                 },
8687   { "gfx.door_2.part_1.x",                              "0"                             },
8688   { "gfx.door_2.part_1.y",                              "280"                           },
8689   { "gfx.door_2.part_1.width",                          "100"                           },
8690   { "gfx.door_2.part_1.height",                         "50"                            },
8691   { "gfx.door_2.part_1.frames",                         "1"                             },
8692   { "gfx.door_2.part_2",                                "RocksDoor.png"                 },
8693   { "gfx.door_2.part_2.x",                              "0"                             },
8694   { "gfx.door_2.part_2.y",                              "330"                           },
8695   { "gfx.door_2.part_2.width",                          "100"                           },
8696   { "gfx.door_2.part_2.height",                         "50"                            },
8697   { "gfx.door_2.part_2.frames",                         "1"                             },
8698   { "gfx.door_2.part_3",                                "RocksDoor.png"                 },
8699   { "gfx.door_2.part_3.x",                              "100"                           },
8700   { "gfx.door_2.part_3.y",                              "280"                           },
8701   { "gfx.door_2.part_3.width",                          "100"                           },
8702   { "gfx.door_2.part_3.height",                         "50"                            },
8703   { "gfx.door_2.part_3.frames",                         "1"                             },
8704   { "gfx.door_2.part_4",                                "RocksDoor.png"                 },
8705   { "gfx.door_2.part_4.x",                              "100"                           },
8706   { "gfx.door_2.part_4.y",                              "330"                           },
8707   { "gfx.door_2.part_4.width",                          "100"                           },
8708   { "gfx.door_2.part_4.height",                         "50"                            },
8709   { "gfx.door_2.part_4.frames",                         "1"                             },
8710   { "gfx.door_2.part_5",                                UNDEFINED_FILENAME              },
8711   { "gfx.door_2.part_6",                                UNDEFINED_FILENAME              },
8712   { "gfx.door_2.part_7",                                UNDEFINED_FILENAME              },
8713   { "gfx.door_2.part_8",                                UNDEFINED_FILENAME              },
8714
8715   { "door_2.top_border_correction",                     "RocksDoor.png"                 },
8716   { "door_2.top_border_correction.x",                   "600"                           },
8717   { "door_2.top_border_correction.y",                   "0"                             },
8718   { "door_2.top_border_correction.width",               "108"                           },
8719   { "door_2.top_border_correction.height",              "8"                             },
8720
8721   // the last image entry apparently gets overwritten by very last entry
8722   // of "image_config[]"; so far this bug could not be found and fixed
8723   { "last_image_entry_bug",                             UNDEFINED_FILENAME              },
8724
8725
8726   // ==========================================================================
8727   // non-image definitions
8728   // ==========================================================================
8729
8730   // the following directives are not associated with an image, but
8731   // probably make sense to be defined in "graphicsinfo.conf", too
8732
8733   // keyword to start parser: "CONFIG_VARS_START" <-- do not change!
8734
8735   { "[title_initial].fade_mode",                        "fade"                          },
8736   { "[title_initial].fade_delay",                       "500"                           },
8737   { "[title_initial].post_delay",                       "250"                           },
8738   { "[title_initial].auto_delay",                       "-1"                            },
8739   { "[title_initial].auto_delay_unit",                  "ms"                            },
8740   { "[title].fade_mode",                                "fade"                          },
8741   { "[title].fade_delay",                               "500"                           },
8742   { "[title].post_delay",                               "250"                           },
8743   { "[title].auto_delay",                               "-1"                            },
8744   { "[title].auto_delay_unit",                          "ms"                            },
8745
8746   { "[titlescreen_initial].sort_priority",              "0"                             },
8747   { "[titlescreen_initial].fade_mode",                  ARG_DEFAULT                     },
8748   { "[titlescreen_initial].fade_delay",                 ARG_DEFAULT                     },
8749   { "[titlescreen_initial].post_delay",                 ARG_DEFAULT                     },
8750   { "[titlescreen_initial].auto_delay",                 ARG_DEFAULT                     },
8751   { "[titlescreen_initial].auto_delay_unit",            ARG_DEFAULT                     },
8752   { "[titlescreen].sort_priority",                      "0"                             },
8753   { "[titlescreen].fade_mode",                          ARG_DEFAULT                     },
8754   { "[titlescreen].fade_delay",                         ARG_DEFAULT                     },
8755   { "[titlescreen].post_delay",                         ARG_DEFAULT                     },
8756   { "[titlescreen].auto_delay",                         ARG_DEFAULT                     },
8757   { "[titlescreen].auto_delay_unit",                    ARG_DEFAULT                     },
8758
8759   { "titlescreen_initial_1.sort_priority",              ARG_DEFAULT                     },
8760   { "titlescreen_initial_1.fade_mode",                  ARG_DEFAULT                     },
8761   { "titlescreen_initial_1.fade_delay",                 ARG_DEFAULT                     },
8762   { "titlescreen_initial_1.post_delay",                 ARG_DEFAULT                     },
8763   { "titlescreen_initial_1.auto_delay",                 ARG_DEFAULT                     },
8764   { "titlescreen_initial_1.auto_delay_unit",            ARG_DEFAULT                     },
8765   { "titlescreen_initial_2.sort_priority",              ARG_DEFAULT                     },
8766   { "titlescreen_initial_2.fade_mode",                  ARG_DEFAULT                     },
8767   { "titlescreen_initial_2.fade_delay",                 ARG_DEFAULT                     },
8768   { "titlescreen_initial_2.post_delay",                 ARG_DEFAULT                     },
8769   { "titlescreen_initial_2.auto_delay",                 ARG_DEFAULT                     },
8770   { "titlescreen_initial_2.auto_delay_unit",            ARG_DEFAULT                     },
8771   { "titlescreen_initial_3.sort_priority",              ARG_DEFAULT                     },
8772   { "titlescreen_initial_3.fade_mode",                  ARG_DEFAULT                     },
8773   { "titlescreen_initial_3.fade_delay",                 ARG_DEFAULT                     },
8774   { "titlescreen_initial_3.post_delay",                 ARG_DEFAULT                     },
8775   { "titlescreen_initial_3.auto_delay",                 ARG_DEFAULT                     },
8776   { "titlescreen_initial_3.auto_delay_unit",            ARG_DEFAULT                     },
8777   { "titlescreen_initial_4.sort_priority",              ARG_DEFAULT                     },
8778   { "titlescreen_initial_4.fade_mode",                  ARG_DEFAULT                     },
8779   { "titlescreen_initial_4.fade_delay",                 ARG_DEFAULT                     },
8780   { "titlescreen_initial_4.post_delay",                 ARG_DEFAULT                     },
8781   { "titlescreen_initial_4.auto_delay",                 ARG_DEFAULT                     },
8782   { "titlescreen_initial_4.auto_delay_unit",            ARG_DEFAULT                     },
8783   { "titlescreen_initial_5.sort_priority",              ARG_DEFAULT                     },
8784   { "titlescreen_initial_5.fade_mode",                  ARG_DEFAULT                     },
8785   { "titlescreen_initial_5.fade_delay",                 ARG_DEFAULT                     },
8786   { "titlescreen_initial_5.post_delay",                 ARG_DEFAULT                     },
8787   { "titlescreen_initial_5.auto_delay",                 ARG_DEFAULT                     },
8788   { "titlescreen_initial_5.auto_delay_unit",            ARG_DEFAULT                     },
8789   { "titlescreen_1.sort_priority",                      ARG_DEFAULT                     },
8790   { "titlescreen_1.fade_mode",                          ARG_DEFAULT                     },
8791   { "titlescreen_1.fade_delay",                         ARG_DEFAULT                     },
8792   { "titlescreen_1.post_delay",                         ARG_DEFAULT                     },
8793   { "titlescreen_1.auto_delay",                         ARG_DEFAULT                     },
8794   { "titlescreen_1.auto_delay_unit",                    ARG_DEFAULT                     },
8795   { "titlescreen_2.sort_priority",                      ARG_DEFAULT                     },
8796   { "titlescreen_2.fade_mode",                          ARG_DEFAULT                     },
8797   { "titlescreen_2.fade_delay",                         ARG_DEFAULT                     },
8798   { "titlescreen_2.post_delay",                         ARG_DEFAULT                     },
8799   { "titlescreen_2.auto_delay",                         ARG_DEFAULT                     },
8800   { "titlescreen_2.auto_delay_unit",                    ARG_DEFAULT                     },
8801   { "titlescreen_3.sort_priority",                      ARG_DEFAULT                     },
8802   { "titlescreen_3.fade_mode",                          ARG_DEFAULT                     },
8803   { "titlescreen_3.fade_delay",                         ARG_DEFAULT                     },
8804   { "titlescreen_3.post_delay",                         ARG_DEFAULT                     },
8805   { "titlescreen_3.auto_delay",                         ARG_DEFAULT                     },
8806   { "titlescreen_3.auto_delay_unit",                    ARG_DEFAULT                     },
8807   { "titlescreen_4.sort_priority",                      ARG_DEFAULT                     },
8808   { "titlescreen_4.fade_mode",                          ARG_DEFAULT                     },
8809   { "titlescreen_4.fade_delay",                         ARG_DEFAULT                     },
8810   { "titlescreen_4.post_delay",                         ARG_DEFAULT                     },
8811   { "titlescreen_4.auto_delay",                         ARG_DEFAULT                     },
8812   { "titlescreen_4.auto_delay_unit",                    ARG_DEFAULT                     },
8813   { "titlescreen_5.sort_priority",                      ARG_DEFAULT                     },
8814   { "titlescreen_5.fade_mode",                          ARG_DEFAULT                     },
8815   { "titlescreen_5.fade_delay",                         ARG_DEFAULT                     },
8816   { "titlescreen_5.post_delay",                         ARG_DEFAULT                     },
8817   { "titlescreen_5.auto_delay",                         ARG_DEFAULT                     },
8818   { "titlescreen_5.auto_delay_unit",                    ARG_DEFAULT                     },
8819
8820   { "[titlemessage_initial].x",                         "-1"                            },
8821   { "[titlemessage_initial].y",                         "-1"                            },
8822   { "[titlemessage_initial].width",                     "-1"                            },
8823   { "[titlemessage_initial].height",                    "-1"                            },
8824   { "[titlemessage_initial].chars",                     "-1"                            },
8825   { "[titlemessage_initial].lines",                     "-1"                            },
8826   { "[titlemessage_initial].align",                     "center"                        },
8827   { "[titlemessage_initial].valign",                    "middle"                        },
8828   { "[titlemessage_initial].font",                      "font.text_1"                   },
8829   { "[titlemessage_initial].autowrap",                  "false"                         },
8830   { "[titlemessage_initial].centered",                  "false"                         },
8831   { "[titlemessage_initial].parse_comments",            "false"                         },
8832   { "[titlemessage_initial].sort_priority",             "0"                             },
8833   { "[titlemessage_initial].fade_mode",                 ARG_DEFAULT                     },
8834   { "[titlemessage_initial].fade_delay",                ARG_DEFAULT                     },
8835   { "[titlemessage_initial].post_delay",                ARG_DEFAULT                     },
8836   { "[titlemessage_initial].auto_delay",                ARG_DEFAULT                     },
8837   { "[titlemessage_initial].auto_delay_unit",           ARG_DEFAULT                     },
8838   { "[titlemessage].x",                                 "-1"                            },
8839   { "[titlemessage].y",                                 "-1"                            },
8840   { "[titlemessage].width",                             "-1"                            },
8841   { "[titlemessage].height",                            "-1"                            },
8842   { "[titlemessage].chars",                             "-1"                            },
8843   { "[titlemessage].lines",                             "-1"                            },
8844   { "[titlemessage].align",                             "center"                        },
8845   { "[titlemessage].valign",                            "middle"                        },
8846   { "[titlemessage].font",                              "font.text_1"                   },
8847   { "[titlemessage].autowrap",                          "false"                         },
8848   { "[titlemessage].centered",                          "false"                         },
8849   { "[titlemessage].parse_comments",                    "false"                         },
8850   { "[titlemessage].sort_priority",                     "0"                             },
8851   { "[titlemessage].fade_mode",                         ARG_DEFAULT                     },
8852   { "[titlemessage].fade_delay",                        ARG_DEFAULT                     },
8853   { "[titlemessage].post_delay",                        ARG_DEFAULT                     },
8854   { "[titlemessage].auto_delay",                        ARG_DEFAULT                     },
8855   { "[titlemessage].auto_delay_unit",                   ARG_DEFAULT                     },
8856
8857   { "titlemessage_initial_1.x",                         ARG_DEFAULT                     },
8858   { "titlemessage_initial_1.y",                         ARG_DEFAULT                     },
8859   { "titlemessage_initial_1.width",                     ARG_DEFAULT                     },
8860   { "titlemessage_initial_1.height",                    ARG_DEFAULT                     },
8861   { "titlemessage_initial_1.chars",                     ARG_DEFAULT                     },
8862   { "titlemessage_initial_1.lines",                     ARG_DEFAULT                     },
8863   { "titlemessage_initial_1.align",                     ARG_DEFAULT                     },
8864   { "titlemessage_initial_1.valign",                    ARG_DEFAULT                     },
8865   { "titlemessage_initial_1.font",                      ARG_DEFAULT                     },
8866   { "titlemessage_initial_1.autowrap",                  ARG_DEFAULT                     },
8867   { "titlemessage_initial_1.centered",                  ARG_DEFAULT                     },
8868   { "titlemessage_initial_1.parse_comments",            ARG_DEFAULT                     },
8869   { "titlemessage_initial_1.sort_priority",             ARG_DEFAULT                     },
8870   { "titlemessage_initial_1.fade_mode",                 ARG_DEFAULT                     },
8871   { "titlemessage_initial_1.fade_delay",                ARG_DEFAULT                     },
8872   { "titlemessage_initial_1.post_delay",                ARG_DEFAULT                     },
8873   { "titlemessage_initial_1.auto_delay",                ARG_DEFAULT                     },
8874   { "titlemessage_initial_1.auto_delay_unit",           ARG_DEFAULT                     },
8875   { "titlemessage_initial_2.x",                         ARG_DEFAULT                     },
8876   { "titlemessage_initial_2.y",                         ARG_DEFAULT                     },
8877   { "titlemessage_initial_2.width",                     ARG_DEFAULT                     },
8878   { "titlemessage_initial_2.height",                    ARG_DEFAULT                     },
8879   { "titlemessage_initial_2.chars",                     ARG_DEFAULT                     },
8880   { "titlemessage_initial_2.lines",                     ARG_DEFAULT                     },
8881   { "titlemessage_initial_2.align",                     ARG_DEFAULT                     },
8882   { "titlemessage_initial_2.valign",                    ARG_DEFAULT                     },
8883   { "titlemessage_initial_2.font",                      ARG_DEFAULT                     },
8884   { "titlemessage_initial_2.autowrap",                  ARG_DEFAULT                     },
8885   { "titlemessage_initial_2.centered",                  ARG_DEFAULT                     },
8886   { "titlemessage_initial_2.parse_comments",            ARG_DEFAULT                     },
8887   { "titlemessage_initial_2.sort_priority",             ARG_DEFAULT                     },
8888   { "titlemessage_initial_2.fade_mode",                 ARG_DEFAULT                     },
8889   { "titlemessage_initial_2.fade_delay",                ARG_DEFAULT                     },
8890   { "titlemessage_initial_2.post_delay",                ARG_DEFAULT                     },
8891   { "titlemessage_initial_2.auto_delay",                ARG_DEFAULT                     },
8892   { "titlemessage_initial_2.auto_delay_unit",           ARG_DEFAULT                     },
8893   { "titlemessage_initial_3.x",                         ARG_DEFAULT                     },
8894   { "titlemessage_initial_3.y",                         ARG_DEFAULT                     },
8895   { "titlemessage_initial_3.width",                     ARG_DEFAULT                     },
8896   { "titlemessage_initial_3.height",                    ARG_DEFAULT                     },
8897   { "titlemessage_initial_3.chars",                     ARG_DEFAULT                     },
8898   { "titlemessage_initial_3.lines",                     ARG_DEFAULT                     },
8899   { "titlemessage_initial_3.align",                     ARG_DEFAULT                     },
8900   { "titlemessage_initial_3.valign",                    ARG_DEFAULT                     },
8901   { "titlemessage_initial_3.font",                      ARG_DEFAULT                     },
8902   { "titlemessage_initial_3.autowrap",                  ARG_DEFAULT                     },
8903   { "titlemessage_initial_3.centered",                  ARG_DEFAULT                     },
8904   { "titlemessage_initial_3.parse_comments",            ARG_DEFAULT                     },
8905   { "titlemessage_initial_3.sort_priority",             ARG_DEFAULT                     },
8906   { "titlemessage_initial_3.fade_mode",                 ARG_DEFAULT                     },
8907   { "titlemessage_initial_3.fade_delay",                ARG_DEFAULT                     },
8908   { "titlemessage_initial_3.post_delay",                ARG_DEFAULT                     },
8909   { "titlemessage_initial_3.auto_delay",                ARG_DEFAULT                     },
8910   { "titlemessage_initial_3.auto_delay_unit",           ARG_DEFAULT                     },
8911   { "titlemessage_initial_4.x",                         ARG_DEFAULT                     },
8912   { "titlemessage_initial_4.y",                         ARG_DEFAULT                     },
8913   { "titlemessage_initial_4.width",                     ARG_DEFAULT                     },
8914   { "titlemessage_initial_4.height",                    ARG_DEFAULT                     },
8915   { "titlemessage_initial_4.chars",                     ARG_DEFAULT                     },
8916   { "titlemessage_initial_4.lines",                     ARG_DEFAULT                     },
8917   { "titlemessage_initial_4.align",                     ARG_DEFAULT                     },
8918   { "titlemessage_initial_4.valign",                    ARG_DEFAULT                     },
8919   { "titlemessage_initial_4.font",                      ARG_DEFAULT                     },
8920   { "titlemessage_initial_4.autowrap",                  ARG_DEFAULT                     },
8921   { "titlemessage_initial_4.centered",                  ARG_DEFAULT                     },
8922   { "titlemessage_initial_4.parse_comments",            ARG_DEFAULT                     },
8923   { "titlemessage_initial_4.sort_priority",             ARG_DEFAULT                     },
8924   { "titlemessage_initial_4.fade_mode",                 ARG_DEFAULT                     },
8925   { "titlemessage_initial_4.fade_delay",                ARG_DEFAULT                     },
8926   { "titlemessage_initial_4.post_delay",                ARG_DEFAULT                     },
8927   { "titlemessage_initial_4.auto_delay",                ARG_DEFAULT                     },
8928   { "titlemessage_initial_4.auto_delay_unit",           ARG_DEFAULT                     },
8929   { "titlemessage_initial_5.x",                         ARG_DEFAULT                     },
8930   { "titlemessage_initial_5.y",                         ARG_DEFAULT                     },
8931   { "titlemessage_initial_5.width",                     ARG_DEFAULT                     },
8932   { "titlemessage_initial_5.height",                    ARG_DEFAULT                     },
8933   { "titlemessage_initial_5.chars",                     ARG_DEFAULT                     },
8934   { "titlemessage_initial_5.lines",                     ARG_DEFAULT                     },
8935   { "titlemessage_initial_5.align",                     ARG_DEFAULT                     },
8936   { "titlemessage_initial_5.valign",                    ARG_DEFAULT                     },
8937   { "titlemessage_initial_5.font",                      ARG_DEFAULT                     },
8938   { "titlemessage_initial_5.autowrap",                  ARG_DEFAULT                     },
8939   { "titlemessage_initial_5.centered",                  ARG_DEFAULT                     },
8940   { "titlemessage_initial_5.parse_comments",            ARG_DEFAULT                     },
8941   { "titlemessage_initial_5.sort_priority",             ARG_DEFAULT                     },
8942   { "titlemessage_initial_5.fade_mode",                 ARG_DEFAULT                     },
8943   { "titlemessage_initial_5.fade_delay",                ARG_DEFAULT                     },
8944   { "titlemessage_initial_5.post_delay",                ARG_DEFAULT                     },
8945   { "titlemessage_initial_5.auto_delay",                ARG_DEFAULT                     },
8946   { "titlemessage_initial_5.auto_delay_unit",           ARG_DEFAULT                     },
8947   { "titlemessage_1.x",                                 ARG_DEFAULT                     },
8948   { "titlemessage_1.y",                                 ARG_DEFAULT                     },
8949   { "titlemessage_1.width",                             ARG_DEFAULT                     },
8950   { "titlemessage_1.height",                            ARG_DEFAULT                     },
8951   { "titlemessage_1.chars",                             ARG_DEFAULT                     },
8952   { "titlemessage_1.lines",                             ARG_DEFAULT                     },
8953   { "titlemessage_1.align",                             ARG_DEFAULT                     },
8954   { "titlemessage_1.valign",                            ARG_DEFAULT                     },
8955   { "titlemessage_1.font",                              ARG_DEFAULT                     },
8956   { "titlemessage_1.autowrap",                          ARG_DEFAULT                     },
8957   { "titlemessage_1.centered",                          ARG_DEFAULT                     },
8958   { "titlemessage_1.parse_comments",                    ARG_DEFAULT                     },
8959   { "titlemessage_1.sort_priority",                     ARG_DEFAULT                     },
8960   { "titlemessage_1.fade_mode",                         ARG_DEFAULT                     },
8961   { "titlemessage_1.fade_delay",                        ARG_DEFAULT                     },
8962   { "titlemessage_1.post_delay",                        ARG_DEFAULT                     },
8963   { "titlemessage_1.auto_delay",                        ARG_DEFAULT                     },
8964   { "titlemessage_1.auto_delay_unit",                   ARG_DEFAULT                     },
8965   { "titlemessage_2.x",                                 ARG_DEFAULT                     },
8966   { "titlemessage_2.y",                                 ARG_DEFAULT                     },
8967   { "titlemessage_2.width",                             ARG_DEFAULT                     },
8968   { "titlemessage_2.height",                            ARG_DEFAULT                     },
8969   { "titlemessage_2.chars",                             ARG_DEFAULT                     },
8970   { "titlemessage_2.lines",                             ARG_DEFAULT                     },
8971   { "titlemessage_2.align",                             ARG_DEFAULT                     },
8972   { "titlemessage_2.valign",                            ARG_DEFAULT                     },
8973   { "titlemessage_2.font",                              ARG_DEFAULT                     },
8974   { "titlemessage_2.autowrap",                          ARG_DEFAULT                     },
8975   { "titlemessage_2.centered",                          ARG_DEFAULT                     },
8976   { "titlemessage_2.parse_comments",                    ARG_DEFAULT                     },
8977   { "titlemessage_2.sort_priority",                     ARG_DEFAULT                     },
8978   { "titlemessage_2.fade_mode",                         ARG_DEFAULT                     },
8979   { "titlemessage_2.fade_delay",                        ARG_DEFAULT                     },
8980   { "titlemessage_2.post_delay",                        ARG_DEFAULT                     },
8981   { "titlemessage_2.auto_delay",                        ARG_DEFAULT                     },
8982   { "titlemessage_2.auto_delay_unit",                   ARG_DEFAULT                     },
8983   { "titlemessage_3.x",                                 ARG_DEFAULT                     },
8984   { "titlemessage_3.y",                                 ARG_DEFAULT                     },
8985   { "titlemessage_3.width",                             ARG_DEFAULT                     },
8986   { "titlemessage_3.height",                            ARG_DEFAULT                     },
8987   { "titlemessage_3.chars",                             ARG_DEFAULT                     },
8988   { "titlemessage_3.lines",                             ARG_DEFAULT                     },
8989   { "titlemessage_3.align",                             ARG_DEFAULT                     },
8990   { "titlemessage_3.valign",                            ARG_DEFAULT                     },
8991   { "titlemessage_3.font",                              ARG_DEFAULT                     },
8992   { "titlemessage_3.autowrap",                          ARG_DEFAULT                     },
8993   { "titlemessage_3.centered",                          ARG_DEFAULT                     },
8994   { "titlemessage_3.parse_comments",                    ARG_DEFAULT                     },
8995   { "titlemessage_3.sort_priority",                     ARG_DEFAULT                     },
8996   { "titlemessage_3.fade_mode",                         ARG_DEFAULT                     },
8997   { "titlemessage_3.fade_delay",                        ARG_DEFAULT                     },
8998   { "titlemessage_3.post_delay",                        ARG_DEFAULT                     },
8999   { "titlemessage_3.auto_delay",                        ARG_DEFAULT                     },
9000   { "titlemessage_3.auto_delay_unit",                   ARG_DEFAULT                     },
9001   { "titlemessage_4.x",                                 ARG_DEFAULT                     },
9002   { "titlemessage_4.y",                                 ARG_DEFAULT                     },
9003   { "titlemessage_4.width",                             ARG_DEFAULT                     },
9004   { "titlemessage_4.height",                            ARG_DEFAULT                     },
9005   { "titlemessage_4.chars",                             ARG_DEFAULT                     },
9006   { "titlemessage_4.lines",                             ARG_DEFAULT                     },
9007   { "titlemessage_4.align",                             ARG_DEFAULT                     },
9008   { "titlemessage_4.valign",                            ARG_DEFAULT                     },
9009   { "titlemessage_4.font",                              ARG_DEFAULT                     },
9010   { "titlemessage_4.autowrap",                          ARG_DEFAULT                     },
9011   { "titlemessage_4.centered",                          ARG_DEFAULT                     },
9012   { "titlemessage_4.parse_comments",                    ARG_DEFAULT                     },
9013   { "titlemessage_4.sort_priority",                     ARG_DEFAULT                     },
9014   { "titlemessage_4.fade_mode",                         ARG_DEFAULT                     },
9015   { "titlemessage_4.fade_delay",                        ARG_DEFAULT                     },
9016   { "titlemessage_4.post_delay",                        ARG_DEFAULT                     },
9017   { "titlemessage_4.auto_delay",                        ARG_DEFAULT                     },
9018   { "titlemessage_4.auto_delay_unit",                   ARG_DEFAULT                     },
9019   { "titlemessage_5.x",                                 ARG_DEFAULT                     },
9020   { "titlemessage_5.y",                                 ARG_DEFAULT                     },
9021   { "titlemessage_5.width",                             ARG_DEFAULT                     },
9022   { "titlemessage_5.height",                            ARG_DEFAULT                     },
9023   { "titlemessage_5.chars",                             ARG_DEFAULT                     },
9024   { "titlemessage_5.lines",                             ARG_DEFAULT                     },
9025   { "titlemessage_5.align",                             ARG_DEFAULT                     },
9026   { "titlemessage_5.valign",                            ARG_DEFAULT                     },
9027   { "titlemessage_5.font",                              ARG_DEFAULT                     },
9028   { "titlemessage_5.autowrap",                          ARG_DEFAULT                     },
9029   { "titlemessage_5.centered",                          ARG_DEFAULT                     },
9030   { "titlemessage_5.parse_comments",                    ARG_DEFAULT                     },
9031   { "titlemessage_5.sort_priority",                     ARG_DEFAULT                     },
9032   { "titlemessage_5.fade_mode",                         ARG_DEFAULT                     },
9033   { "titlemessage_5.fade_delay",                        ARG_DEFAULT                     },
9034   { "titlemessage_5.post_delay",                        ARG_DEFAULT                     },
9035   { "titlemessage_5.auto_delay",                        ARG_DEFAULT                     },
9036   { "titlemessage_5.auto_delay_unit",                   ARG_DEFAULT                     },
9037
9038   { "readme.x",                                         "-1"                            },
9039   { "readme.y",                                         "-1"                            },
9040   { "readme.width",                                     "-1"                            },
9041   { "readme.height",                                    "-1"                            },
9042   { "readme.chars",                                     "-1"                            },
9043   { "readme.lines",                                     "-1"                            },
9044   { "readme.align",                                     "center"                        },
9045   { "readme.valign",                                    "top"                           },
9046   { "readme.font",                                      "font.info.levelset"            },
9047   { "readme.autowrap",                                  "true"                          },
9048   { "readme.centered",                                  "false"                         },
9049   { "readme.parse_comments",                            "true"                          },
9050   { "readme.sort_priority",                             "0"                             },
9051
9052   { "global.num_toons",                                 "20"                            },
9053
9054   { "border.draw_masked.TITLE",                         "false"                         },
9055   { "border.draw_masked.MAIN",                          "false"                         },
9056   { "border.draw_masked.NAMES",                         "false"                         },
9057   { "border.draw_masked.LEVELS",                        "false"                         },
9058   { "border.draw_masked.LEVELNR",                       "false"                         },
9059   { "border.draw_masked.SCORES",                        "false"                         },
9060   { "border.draw_masked.SCOREINFO",                     "false"                         },
9061   { "border.draw_masked.EDITOR",                        "false"                         },
9062   { "border.draw_masked.INFO",                          "false"                         },
9063   { "border.draw_masked.SETUP",                         "false"                         },
9064   { "border.draw_masked.PLAYING",                       "false"                         },
9065   { "border.draw_masked.DOOR",                          "false"                         },
9066
9067   { "border.draw_masked_when_fading",                   "true"                          },
9068
9069   { "init.busy_initial.x",                              "-1"                            },
9070   { "init.busy_initial.y",                              "-1"                            },
9071   { "init.busy_initial.align",                          "center"                        },
9072   { "init.busy_initial.valign",                         "middle"                        },
9073   { "init.busy.x",                                      "-1"                            },
9074   { "init.busy.y",                                      "-1"                            },
9075   { "init.busy.align",                                  "center"                        },
9076   { "init.busy.valign",                                 "middle"                        },
9077   { "init.busy_playfield.x",                            "-1"                            },
9078   { "init.busy_playfield.y",                            "-1"                            },
9079   { "init.busy_playfield.align",                        "center"                        },
9080   { "init.busy_playfield.valign",                       "middle"                        },
9081
9082   { "menu.enter_menu.fade_mode",                        "none"                          },
9083   { "menu.enter_menu.fade_delay",                       "250"                           },
9084   { "menu.enter_menu.post_delay",                       "125"                           },
9085   { "menu.leave_menu.fade_mode",                        "none"                          },
9086   { "menu.leave_menu.fade_delay",                       "250"                           },
9087   { "menu.leave_menu.post_delay",                       "125"                           },
9088   { "menu.enter_screen.fade_mode",                      "fade"                          },
9089   { "menu.enter_screen.fade_delay",                     "250"                           },
9090   { "menu.enter_screen.post_delay",                     "125"                           },
9091   { "menu.leave_screen.fade_mode",                      "fade"                          },
9092   { "menu.leave_screen.fade_delay",                     "250"                           },
9093   { "menu.leave_screen.post_delay",                     "125"                           },
9094   { "menu.next_screen.fade_mode",                       "crossfade"                     },
9095   { "menu.next_screen.fade_delay",                      "250"                           },
9096   { "menu.next_screen.post_delay",                      "125"                           },
9097   { "menu.enter_screen.TITLE.fade_mode",                "fade"                          },
9098   { "menu.enter_screen.TITLE.fade_delay",               "500"                           },
9099   { "menu.enter_screen.TITLE.post_delay",               "250"                           },
9100   { "menu.enter_screen.TITLE.auto_delay",               "-1"                            },
9101   { "menu.enter_screen.TITLE.auto_delay_unit",          "-1"                            },
9102   { "menu.enter_screen.SCORES.fade_mode",               ARG_DEFAULT                     },
9103   { "menu.enter_screen.SCORES.fade_delay",              ARG_DEFAULT                     },
9104   { "menu.enter_screen.SCORES.post_delay",              ARG_DEFAULT                     },
9105   { "menu.enter_screen.SCOREINFO.fade_mode",            ARG_DEFAULT                     },
9106   { "menu.enter_screen.SCOREINFO.fade_delay",           ARG_DEFAULT                     },
9107   { "menu.enter_screen.SCOREINFO.post_delay",           ARG_DEFAULT                     },
9108   { "menu.enter_screen.EDITOR.fade_mode",               ARG_DEFAULT                     },
9109   { "menu.enter_screen.EDITOR.fade_delay",              ARG_DEFAULT                     },
9110   { "menu.enter_screen.EDITOR.post_delay",              ARG_DEFAULT                     },
9111   { "menu.enter_screen.INFO.fade_mode",                 ARG_DEFAULT                     },
9112   { "menu.enter_screen.INFO.fade_delay",                ARG_DEFAULT                     },
9113   { "menu.enter_screen.INFO.post_delay",                ARG_DEFAULT                     },
9114   { "menu.enter_screen.PLAYING.fade_mode",              ARG_DEFAULT                     },
9115   { "menu.enter_screen.PLAYING.fade_delay",             ARG_DEFAULT                     },
9116   { "menu.enter_screen.PLAYING.post_delay",             ARG_DEFAULT                     },
9117   { "menu.leave_screen.TITLE.fade_mode",                "fade"                          },
9118   { "menu.leave_screen.TITLE.fade_delay",               "500"                           },
9119   { "menu.leave_screen.TITLE.post_delay",               "250"                           },
9120   { "menu.leave_screen.TITLE.auto_delay",               "-1"                            },
9121   { "menu.leave_screen.TITLE.auto_delay_unit",          "-1"                            },
9122   { "menu.leave_screen.SCORES.fade_mode",               ARG_DEFAULT                     },
9123   { "menu.leave_screen.SCORES.fade_delay",              ARG_DEFAULT                     },
9124   { "menu.leave_screen.SCORES.post_delay",              ARG_DEFAULT                     },
9125   { "menu.leave_screen.SCOREINFO.fade_mode",            ARG_DEFAULT                     },
9126   { "menu.leave_screen.SCOREINFO.fade_delay",           ARG_DEFAULT                     },
9127   { "menu.leave_screen.SCOREINFO.post_delay",           ARG_DEFAULT                     },
9128   { "menu.leave_screen.EDITOR.fade_mode",               ARG_DEFAULT                     },
9129   { "menu.leave_screen.EDITOR.fade_delay",              ARG_DEFAULT                     },
9130   { "menu.leave_screen.EDITOR.post_delay",              ARG_DEFAULT                     },
9131   { "menu.leave_screen.INFO.fade_mode",                 ARG_DEFAULT                     },
9132   { "menu.leave_screen.INFO.fade_delay",                ARG_DEFAULT                     },
9133   { "menu.leave_screen.INFO.post_delay",                ARG_DEFAULT                     },
9134   { "menu.leave_screen.PLAYING.fade_mode",              ARG_DEFAULT                     },
9135   { "menu.leave_screen.PLAYING.fade_delay",             ARG_DEFAULT                     },
9136   { "menu.leave_screen.PLAYING.post_delay",             ARG_DEFAULT                     },
9137   { "menu.next_screen.TITLE.fade_mode",                 "fade"                          },
9138   { "menu.next_screen.TITLE.fade_delay",                "500"                           },
9139   { "menu.next_screen.TITLE.post_delay",                "250"                           },
9140   { "menu.next_screen.TITLE.auto_delay",                "-1"                            },
9141   { "menu.next_screen.TITLE.auto_delay_unit",           "-1"                            },
9142   { "menu.next_screen.INFO.fade_mode",                  ARG_DEFAULT                     },
9143   { "menu.next_screen.INFO.fade_delay",                 ARG_DEFAULT                     },
9144   { "menu.next_screen.INFO.post_delay",                 ARG_DEFAULT                     },
9145
9146   { "menu.draw_xoffset",                                "0"                             },
9147   { "menu.draw_yoffset",                                "0"                             },
9148   { "menu.draw_xoffset.MAIN",                           "0"                             },
9149   { "menu.draw_yoffset.MAIN",                           "0"                             },
9150   { "menu.draw_xoffset.NAMES",                          "0"                             },
9151   { "menu.draw_yoffset.NAMES",                          "0"                             },
9152   { "menu.draw_xoffset.LEVELS",                         "0"                             },
9153   { "menu.draw_yoffset.LEVELS",                         "0"                             },
9154   { "menu.draw_xoffset.LEVELNR",                        "0"                             },
9155   { "menu.draw_yoffset.LEVELNR",                        "0"                             },
9156   { "menu.draw_xoffset.SCORES",                         "0"                             },
9157   { "menu.draw_yoffset.SCORES",                         "0"                             },
9158   { "menu.draw_xoffset.SCOREINFO",                      "0"                             },
9159   { "menu.draw_yoffset.SCOREINFO",                      "0"                             },
9160   { "menu.draw_xoffset.EDITOR",                         "0"                             },
9161   { "menu.draw_yoffset.EDITOR",                         "0"                             },
9162   { "menu.draw_xoffset.INFO",                           "0"                             },
9163   { "menu.draw_yoffset.INFO",                           "0"                             },
9164   { "menu.draw_xoffset.INFO[TITLE]",                    "0"                             },
9165   { "menu.draw_yoffset.INFO[TITLE]",                    "0"                             },
9166   { "menu.draw_xoffset.INFO[ELEMENTS]",                 "0"                             },
9167   { "menu.draw_yoffset.INFO[ELEMENTS]",                 "0"                             },
9168   { "menu.draw_xoffset.INFO[MUSIC]",                    "0"                             },
9169   { "menu.draw_yoffset.INFO[MUSIC]",                    "0"                             },
9170   { "menu.draw_xoffset.INFO[CREDITS]",                  "0"                             },
9171   { "menu.draw_yoffset.INFO[CREDITS]",                  "0"                             },
9172   { "menu.draw_xoffset.INFO[PROGRAM]",                  "0"                             },
9173   { "menu.draw_yoffset.INFO[PROGRAM]",                  "0"                             },
9174   { "menu.draw_xoffset.INFO[VERSION]",                  "0"                             },
9175   { "menu.draw_yoffset.INFO[VERSION]",                  "0"                             },
9176   { "menu.draw_xoffset.INFO[LEVELSET]",                 "0"                             },
9177   { "menu.draw_yoffset.INFO[LEVELSET]",                 "0"                             },
9178   { "menu.draw_xoffset.SETUP",                          "0"                             },
9179   { "menu.draw_yoffset.SETUP",                          "0"                             },
9180   { "menu.draw_xoffset.SETUP[GAME]",                    "0"                             },
9181   { "menu.draw_yoffset.SETUP[GAME]",                    "0"                             },
9182   { "menu.draw_xoffset.SETUP[ENGINES]",                 "0"                             },
9183   { "menu.draw_yoffset.SETUP[ENGINES]",                 "0"                             },
9184   { "menu.draw_xoffset.SETUP[EDITOR]",                  "0"                             },
9185   { "menu.draw_yoffset.SETUP[EDITOR]",                  "0"                             },
9186   { "menu.draw_xoffset.SETUP[GRAPHICS]",                "0"                             },
9187   { "menu.draw_yoffset.SETUP[GRAPHICS]",                "0"                             },
9188   { "menu.draw_xoffset.SETUP[SOUND]",                   "0"                             },
9189   { "menu.draw_yoffset.SETUP[SOUND]",                   "0"                             },
9190   { "menu.draw_xoffset.SETUP[ARTWORK]",                 "0"                             },
9191   { "menu.draw_yoffset.SETUP[ARTWORK]",                 "0"                             },
9192   { "menu.draw_xoffset.SETUP[INPUT]",                   "0"                             },
9193   { "menu.draw_yoffset.SETUP[INPUT]",                   "0"                             },
9194   { "menu.draw_xoffset.SETUP[TOUCH]",                   "0"                             },
9195   { "menu.draw_yoffset.SETUP[TOUCH]",                   "0"                             },
9196   { "menu.draw_xoffset.SETUP[SHORTCUTS]",               "0"                             },
9197   { "menu.draw_yoffset.SETUP[SHORTCUTS]",               "0"                             },
9198   { "menu.draw_xoffset.SETUP[SHORTCUTS_1]",             "0"                             },
9199   { "menu.draw_yoffset.SETUP[SHORTCUTS_1]",             "0"                             },
9200   { "menu.draw_xoffset.SETUP[SHORTCUTS_2]",             "0"                             },
9201   { "menu.draw_yoffset.SETUP[SHORTCUTS_2]",             "0"                             },
9202   { "menu.draw_xoffset.SETUP[SHORTCUTS_3]",             "0"                             },
9203   { "menu.draw_yoffset.SETUP[SHORTCUTS_3]",             "0"                             },
9204   { "menu.draw_xoffset.SETUP[SHORTCUTS_4]",             "0"                             },
9205   { "menu.draw_yoffset.SETUP[SHORTCUTS_4]",             "0"                             },
9206   { "menu.draw_xoffset.SETUP[SHORTCUTS_5]",             "0"                             },
9207   { "menu.draw_yoffset.SETUP[SHORTCUTS_5]",             "0"                             },
9208   { "menu.draw_xoffset.SETUP[SHORTCUTS_6]",             "0"                             },
9209   { "menu.draw_yoffset.SETUP[SHORTCUTS_6]",             "0"                             },
9210   { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]",          "0"                             },
9211   { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]",          "0"                             },
9212   { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]",            "0"                             },
9213   { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]",            "0"                             },
9214
9215   { "menu.scrollbar_xoffset",                           "0"                             },
9216
9217   { "menu.list.SETUP[CHOOSE_OTHER].align",              "left"                          },
9218   { "menu.list.SETUP[CHOOSE_OTHER].valign",             "top"                           },
9219
9220   { "menu.list_size",                                   "-1"                            },
9221   { "menu.list_size.NAMES",                             "-1"                            },
9222   { "menu.list_size.LEVELS",                            "-1"                            },
9223   { "menu.list_size.LEVELNR",                           "-1"                            },
9224   { "menu.list_size.SCORES",                            "-1"                            },
9225   { "menu.list_size.INFO",                              "-1"                            },
9226   { "menu.list_size.INFO[ELEMENTS]",                    "-1"                            },
9227   { "menu.list_size.SETUP",                             "-1"                            },
9228
9229   { "menu.list_entry_size.INFO[ELEMENTS]",              "-1"                            },
9230
9231   { "menu.tile_size.INFO[ELEMENTS]",                    "-1"                            },
9232
9233   { "menu.left_spacing.SCOREINFO",                      "16"                            },
9234   { "menu.left_spacing.INFO",                           "16"                            },
9235   { "menu.left_spacing.INFO[TITLE]",                    "16"                            },
9236   { "menu.left_spacing.INFO[ELEMENTS]",                 "16"                            },
9237   { "menu.left_spacing.INFO[MUSIC]",                    "16"                            },
9238   { "menu.left_spacing.INFO[CREDITS]",                  "16"                            },
9239   { "menu.left_spacing.INFO[PROGRAM]",                  "16"                            },
9240   { "menu.left_spacing.INFO[VERSION]",                  "16"                            },
9241   { "menu.left_spacing.INFO[LEVELSET]",                 "16"                            },
9242   { "menu.left_spacing.SETUP[INPUT]",                   "16"                            },
9243
9244   { "menu.middle_spacing.INFO[ELEMENTS]",               "16"                            },
9245
9246   { "menu.right_spacing.SCOREINFO",                     "16"                            },
9247   { "menu.right_spacing.INFO",                          "16"                            },
9248   { "menu.right_spacing.INFO[TITLE]",                   "16"                            },
9249   { "menu.right_spacing.INFO[ELEMENTS]",                "16"                            },
9250   { "menu.right_spacing.INFO[MUSIC]",                   "16"                            },
9251   { "menu.right_spacing.INFO[CREDITS]",                 "16"                            },
9252   { "menu.right_spacing.INFO[PROGRAM]",                 "16"                            },
9253   { "menu.right_spacing.INFO[VERSION]",                 "16"                            },
9254   { "menu.right_spacing.INFO[LEVELSET]",                "16"                            },
9255   { "menu.right_spacing.SETUP[INPUT]",                  "16"                            },
9256
9257   { "menu.top_spacing.SCOREINFO",                       "100"                           },
9258   { "menu.top_spacing.INFO",                            "100"                           },
9259   { "menu.top_spacing.INFO[TITLE]",                     "100"                           },
9260   { "menu.top_spacing.INFO[ELEMENTS]",                  "100"                           },
9261   { "menu.top_spacing.INFO[MUSIC]",                     "100"                           },
9262   { "menu.top_spacing.INFO[CREDITS]",                   "100"                           },
9263   { "menu.top_spacing.INFO[PROGRAM]",                   "100"                           },
9264   { "menu.top_spacing.INFO[VERSION]",                   "100"                           },
9265   { "menu.top_spacing.INFO[LEVELSET]",                  "100"                           },
9266   { "menu.top_spacing.SETUP[INPUT]",                    "100"                           },
9267
9268   { "menu.bottom_spacing.SCOREINFO",                    "20"                            },
9269   { "menu.bottom_spacing.INFO",                         "20"                            },
9270   { "menu.bottom_spacing.INFO[TITLE]",                  "20"                            },
9271   { "menu.bottom_spacing.INFO[ELEMENTS]",               "20"                            },
9272   { "menu.bottom_spacing.INFO[MUSIC]",                  "20"                            },
9273   { "menu.bottom_spacing.INFO[CREDITS]",                "20"                            },
9274   { "menu.bottom_spacing.INFO[PROGRAM]",                "20"                            },
9275   { "menu.bottom_spacing.INFO[VERSION]",                "20"                            },
9276   { "menu.bottom_spacing.INFO[LEVELSET]",               "20"                            },
9277   { "menu.bottom_spacing.SETUP[INPUT]",                 "20"                            },
9278
9279   { "menu.paragraph_spacing.SCOREINFO",                 "-2"                            },
9280   { "menu.paragraph_spacing.INFO",                      "-3"                            },
9281   { "menu.paragraph_spacing.INFO[TITLE]",               "-3"                            },
9282   { "menu.paragraph_spacing.INFO[ELEMENTS]",            "-3"                            },
9283   { "menu.paragraph_spacing.INFO[MUSIC]",               "-3"                            },
9284   { "menu.paragraph_spacing.INFO[CREDITS]",             "-3"                            },
9285   { "menu.paragraph_spacing.INFO[PROGRAM]",             "-3"                            },
9286   { "menu.paragraph_spacing.INFO[VERSION]",             "-2"                            },
9287   { "menu.paragraph_spacing.INFO[LEVELSET]",            "-3"                            },
9288   { "menu.paragraph_spacing.SETUP[INPUT]",              "-1"                            },
9289
9290   { "menu.headline1_spacing.SCOREINFO",                 "-2"                            },
9291   { "menu.headline1_spacing.INFO",                      "-2"                            },
9292   { "menu.headline1_spacing.INFO[TITLE]",               "-2"                            },
9293   { "menu.headline1_spacing.INFO[ELEMENTS]",            "-2"                            },
9294   { "menu.headline1_spacing.INFO[MUSIC]",               "-2"                            },
9295   { "menu.headline1_spacing.INFO[CREDITS]",             "-2"                            },
9296   { "menu.headline1_spacing.INFO[PROGRAM]",             "-2"                            },
9297   { "menu.headline1_spacing.INFO[VERSION]",             "-2"                            },
9298   { "menu.headline1_spacing.INFO[LEVELSET]",            "-2"                            },
9299   { "menu.headline1_spacing.SETUP[INPUT]",              "-2"                            },
9300
9301   { "menu.headline2_spacing.SCOREINFO",                 "-1"                            },
9302   { "menu.headline2_spacing.INFO",                      "-1"                            },
9303   { "menu.headline2_spacing.INFO[TITLE]",               "-1"                            },
9304   { "menu.headline2_spacing.INFO[ELEMENTS]",            "-1"                            },
9305   { "menu.headline2_spacing.INFO[MUSIC]",               "-1"                            },
9306   { "menu.headline2_spacing.INFO[CREDITS]",             "-1"                            },
9307   { "menu.headline2_spacing.INFO[PROGRAM]",             "-1"                            },
9308   { "menu.headline2_spacing.INFO[VERSION]",             "-1"                            },
9309   { "menu.headline2_spacing.INFO[LEVELSET]",            "-1"                            },
9310   { "menu.headline2_spacing.SETUP[INPUT]",              "-1"                            },
9311
9312   { "menu.line_spacing.SCOREINFO",                      "0"                             },
9313   { "menu.line_spacing.INFO",                           "0"                             },
9314   { "menu.line_spacing.INFO[TITLE]",                    "0"                             },
9315   { "menu.line_spacing.INFO[ELEMENTS]",                 "0"                             },
9316   { "menu.line_spacing.INFO[MUSIC]",                    "0"                             },
9317   { "menu.line_spacing.INFO[CREDITS]",                  "0"                             },
9318   { "menu.line_spacing.INFO[PROGRAM]",                  "0"                             },
9319   { "menu.line_spacing.INFO[VERSION]",                  "0"                             },
9320   { "menu.line_spacing.INFO[LEVELSET]",                 "0"                             },
9321   { "menu.line_spacing.SETUP[INPUT]",                   "0"                             },
9322
9323   { "menu.extra_spacing.SCOREINFO",                     "2"                             },
9324   { "menu.extra_spacing.INFO",                          "2"                             },
9325   { "menu.extra_spacing.INFO[TITLE]",                   "2"                             },
9326   { "menu.extra_spacing.INFO[ELEMENTS]",                "4"                             },
9327   { "menu.extra_spacing.INFO[MUSIC]",                   "2"                             },
9328   { "menu.extra_spacing.INFO[CREDITS]",                 "2"                             },
9329   { "menu.extra_spacing.INFO[PROGRAM]",                 "2"                             },
9330   { "menu.extra_spacing.INFO[VERSION]",                 "2"                             },
9331   { "menu.extra_spacing.INFO[LEVELSET]",                "2"                             },
9332   { "menu.extra_spacing.SETUP[INPUT]",                  "2"                             },
9333
9334   { "main.button.name.x",                               "0"                             },
9335   { "main.button.name.y",                               "64"                            },
9336   { "main.button.levels.x",                             "0"                             },
9337   { "main.button.levels.y",                             "96"                            },
9338   { "main.button.scores.x",                             "0"                             },
9339   { "main.button.scores.y",                             "128"                           },
9340   { "main.button.editor.x",                             "0"                             },
9341   { "main.button.editor.y",                             "160"                           },
9342   { "main.button.info.x",                               "0"                             },
9343   { "main.button.info.y",                               "192"                           },
9344   { "main.button.game.x",                               "0"                             },
9345   { "main.button.game.y",                               "224"                           },
9346   { "main.button.setup.x",                              "0"                             },
9347   { "main.button.setup.y",                              "256"                           },
9348   { "main.button.quit.x",                               "0"                             },
9349   { "main.button.quit.y",                               "288"                           },
9350
9351   { "main.button.first_level.x",                        "-1"                            },
9352   { "main.button.first_level.y",                        "-1"                            },
9353   { "main.button.last_level.x",                         "-1"                            },
9354   { "main.button.last_level.y",                         "-1"                            },
9355   { "main.button.level_number.x",                       "-1"                            },
9356   { "main.button.level_number.y",                       "-1"                            },
9357
9358   { "main.button.prev_level.x",                         "320"                           },
9359   { "main.button.prev_level.y",                         "96"                            },
9360   { "main.button.next_level.x",                         "448"                           },
9361   { "main.button.next_level.y",                         "96"                            },
9362
9363   { "main.button.insert_solution.x",                    "-1"                            },
9364   { "main.button.insert_solution.y",                    "-1"                            },
9365   { "main.button.play_solution.x",                      "-1"                            },
9366   { "main.button.play_solution.y",                      "-1"                            },
9367
9368   { "main.button.levelset_info.x",                      "-1"                            },
9369   { "main.button.levelset_info.y",                      "-1"                            },
9370
9371   { "main.button.switch_ecs_aga.x",                     "-1"                            },
9372   { "main.button.switch_ecs_aga.y",                     "-1"                            },
9373
9374   { "main.text.name.x",                                 "-1"                            },
9375   { "main.text.name.y",                                 "-1"                            },
9376   { "main.text.name.width",                             "-1"                            },
9377   { "main.text.name.height",                            "-1"                            },
9378   { "main.text.name.align",                             "left"                          },
9379   { "main.text.name.valign",                            "top"                           },
9380   { "main.text.name.font",                              "font.menu_1"                   },
9381   { "main.text.levels.x",                               "-1"                            },
9382   { "main.text.levels.y",                               "-1"                            },
9383   { "main.text.levels.width",                           "-1"                            },
9384   { "main.text.levels.height",                          "-1"                            },
9385   { "main.text.levels.align",                           "left"                          },
9386   { "main.text.levels.valign",                          "top"                           },
9387   { "main.text.levels.font",                            "font.menu_1"                   },
9388   { "main.text.scores.x",                               "-1"                            },
9389   { "main.text.scores.y",                               "-1"                            },
9390   { "main.text.scores.width",                           "-1"                            },
9391   { "main.text.scores.height",                          "-1"                            },
9392   { "main.text.scores.align",                           "left"                          },
9393   { "main.text.scores.valign",                          "top"                           },
9394   { "main.text.scores.font",                            "font.menu_1"                   },
9395   { "main.text.editor.x",                               "-1"                            },
9396   { "main.text.editor.y",                               "-1"                            },
9397   { "main.text.editor.width",                           "-1"                            },
9398   { "main.text.editor.height",                          "-1"                            },
9399   { "main.text.editor.align",                           "left"                          },
9400   { "main.text.editor.valign",                          "top"                           },
9401   { "main.text.editor.font",                            "font.menu_1"                   },
9402   { "main.text.info.x",                                 "-1"                            },
9403   { "main.text.info.y",                                 "-1"                            },
9404   { "main.text.info.width",                             "-1"                            },
9405   { "main.text.info.height",                            "-1"                            },
9406   { "main.text.info.align",                             "left"                          },
9407   { "main.text.info.valign",                            "top"                           },
9408   { "main.text.info.font",                              "font.menu_1"                   },
9409   { "main.text.game.x",                                 "-1"                            },
9410   { "main.text.game.y",                                 "-1"                            },
9411   { "main.text.game.width",                             "-1"                            },
9412   { "main.text.game.height",                            "-1"                            },
9413   { "main.text.game.align",                             "left"                          },
9414   { "main.text.game.valign",                            "top"                           },
9415   { "main.text.game.font",                              "font.menu_1"                   },
9416   { "main.text.setup.x",                                "-1"                            },
9417   { "main.text.setup.y",                                "-1"                            },
9418   { "main.text.setup.width",                            "-1"                            },
9419   { "main.text.setup.height",                           "-1"                            },
9420   { "main.text.setup.align",                            "left"                          },
9421   { "main.text.setup.valign",                           "top"                           },
9422   { "main.text.setup.font",                             "font.menu_1"                   },
9423   { "main.text.quit.x",                                 "-1"                            },
9424   { "main.text.quit.y",                                 "-1"                            },
9425   { "main.text.quit.width",                             "-1"                            },
9426   { "main.text.quit.height",                            "-1"                            },
9427   { "main.text.quit.align",                             "left"                          },
9428   { "main.text.quit.valign",                            "top"                           },
9429   { "main.text.quit.font",                              "font.menu_1"                   },
9430
9431   { "main.text.first_level.x",                          "488"                           },
9432   { "main.text.first_level.y",                          "98"                            },
9433   { "main.text.first_level.align",                      "left"                          },
9434   { "main.text.first_level.valign",                     "top"                           },
9435   { "main.text.first_level.digits",                     "3"                             },
9436   { "main.text.first_level.font",                       "font.text_3"                   },
9437   { "main.text.last_level.x",                           "488"                           },
9438   { "main.text.last_level.y",                           "112"                           },
9439   { "main.text.last_level.align",                       "left"                          },
9440   { "main.text.last_level.valign",                      "top"                           },
9441   { "main.text.last_level.digits",                      "3"                             },
9442   { "main.text.last_level.font",                        "font.text_3"                   },
9443   { "main.text.level_number.x",                         "352"                           },
9444   { "main.text.level_number.y",                         "96"                            },
9445   { "main.text.level_number.align",                     "left"                          },
9446   { "main.text.level_number.valign",                    "top"                           },
9447   { "main.text.level_number.digits",                    "3"                             },
9448   { "main.text.level_number.font",                      "font.value_1"                  },
9449   { "main.text.level_info_1.x",                         "272"                           },
9450   { "main.text.level_info_1.y",                         "352"                           },
9451   { "main.text.level_info_1.align",                     "center"                        },
9452   { "main.text.level_info_1.valign",                    "top"                           },
9453   { "main.text.level_info_1.chars",                     "-1"                            },
9454   { "main.text.level_info_1.font",                      "font.text_1"                   },
9455   { "main.text.level_info_2.x",                         "272"                           },
9456   { "main.text.level_info_2.y",                         "523"                           },
9457   { "main.text.level_info_2.align",                     "center"                        },
9458   { "main.text.level_info_2.valign",                    "top"                           },
9459   { "main.text.level_info_2.chars",                     "-1"                            },
9460   { "main.text.level_info_2.font",                      "font.text_2"                   },
9461   { "main.text.level_info_2.font_header",               "font.text_4"                   },
9462   { "main.text.level_name.x",                           "-1"                            },
9463   { "main.text.level_name.y",                           "-1"                            },
9464   { "main.text.level_name.align",                       "left"                          },
9465   { "main.text.level_name.valign",                      "top"                           },
9466   { "main.text.level_name.chars",                       "-1"                            },
9467   { "main.text.level_name.font",                        "font.text_2"                   },
9468   { "main.text.level_author.x",                         "-1"                            },
9469   { "main.text.level_author.y",                         "-1"                            },
9470   { "main.text.level_author.align",                     "left"                          },
9471   { "main.text.level_author.valign",                    "top"                           },
9472   { "main.text.level_author.chars",                     "-1"                            },
9473   { "main.text.level_author.font",                      "font.text_2"                   },
9474   { "main.text.level_year.x",                           "-1"                            },
9475   { "main.text.level_year.y",                           "-1"                            },
9476   { "main.text.level_year.align",                       "left"                          },
9477   { "main.text.level_year.valign",                      "top"                           },
9478   { "main.text.level_year.digits",                      "-1"                            },
9479   { "main.text.level_year.font",                        "font.text_2"                   },
9480   { "main.text.level_imported_from.x",                  "-1"                            },
9481   { "main.text.level_imported_from.y",                  "-1"                            },
9482   { "main.text.level_imported_from.align",              "left"                          },
9483   { "main.text.level_imported_from.valign",             "top"                           },
9484   { "main.text.level_imported_from.chars",              "-1"                            },
9485   { "main.text.level_imported_from.font",               "font.text_2"                   },
9486   { "main.text.level_imported_by.x",                    "-1"                            },
9487   { "main.text.level_imported_by.y",                    "-1"                            },
9488   { "main.text.level_imported_by.align",                "left"                          },
9489   { "main.text.level_imported_by.valign",               "top"                           },
9490   { "main.text.level_imported_by.chars",                "-1"                            },
9491   { "main.text.level_imported_by.font",                 "font.text_2"                   },
9492   { "main.text.level_tested_by.x",                      "-1"                            },
9493   { "main.text.level_tested_by.y",                      "-1"                            },
9494   { "main.text.level_tested_by.align",                  "left"                          },
9495   { "main.text.level_tested_by.valign",                 "top"                           },
9496   { "main.text.level_tested_by.chars",                  "-1"                            },
9497   { "main.text.level_tested_by.font",                   "font.text_2"                   },
9498   { "main.text.title_1.x",                              "272"                           },
9499   { "main.text.title_1.y",                              "8"                             },
9500   { "main.text.title_1.align",                          "center"                        },
9501   { "main.text.title_1.valign",                         "top"                           },
9502   { "main.text.title_1.font",                           "font.title_1"                  },
9503   { "main.text.title_2.x",                              "272"                           },
9504   { "main.text.title_2.y",                              "46"                            },
9505   { "main.text.title_2.align",                          "center"                        },
9506   { "main.text.title_2.valign",                         "top"                           },
9507   { "main.text.title_2.font",                           "font.title_2"                  },
9508   { "main.text.title_3.x",                              "272"                           },
9509   { "main.text.title_3.y",                              "326"                           },
9510   { "main.text.title_3.align",                          "center"                        },
9511   { "main.text.title_3.valign",                         "top"                           },
9512   { "main.text.title_3.font",                           "font.title_2"                  },
9513
9514   { "main.input.name.x",                                "-1"                            },
9515   { "main.input.name.y",                                "-1"                            },
9516   { "main.input.name.align",                            "left"                          },
9517   { "main.input.name.valign",                           "top"                           },
9518   { "main.input.name.font",                             "font.input_1"                  },
9519
9520   { "main.network_players.x",                           "68"                            },
9521   { "main.network_players.y",                           "448"                           },
9522   { "main.network_players.align",                       "center"                        },
9523   { "main.network_players.valign",                      "middle"                        },
9524   { "main.network_players.font",                        "font.main.network_players"     },
9525   { "main.network_players.tile_size",                   "16"                            },
9526   { "main.network_players.border_size",                 "2"                             },
9527
9528   { "main.preview_players.x",                           "474"                           },
9529   { "main.preview_players.y",                           "448"                           },
9530   { "main.preview_players.align",                       "center"                        },
9531   { "main.preview_players.valign",                      "middle"                        },
9532   { "main.preview_players.tile_size",                   "32"                            },
9533   { "main.preview_players.border_size",                 "2"                             },
9534   { "main.preview_players.vertical",                    "false"                         },
9535   { "main.preview_players.xoffset",                     "-1"                            },
9536   { "main.preview_players.yoffset",                     "-1"                            },
9537
9538   { "setup.button.prev_player.x",                       "320"                           },
9539   { "setup.button.prev_player.y",                       "64"                            },
9540   { "setup.button.next_player.x",                       "384"                           },
9541   { "setup.button.next_player.y",                       "64"                            },
9542
9543   { "setup.button.touch_back.x",                        "0"                             },
9544   { "setup.button.touch_back.y",                        "0"                             },
9545   { "setup.button.touch_next.x",                        "-60"                           },
9546   { "setup.button.touch_next.y",                        "0"                             },
9547   { "setup.button.touch_back2.x",                       "0"                             },
9548   { "setup.button.touch_back2.y",                       "-60"                           },
9549   { "setup.button.touch_next2.x",                       "-60"                           },
9550   { "setup.button.touch_next2.y",                       "-60"                           },
9551
9552   { "scores.button.prev_level.x",                       "-1"                            },
9553   { "scores.button.prev_level.y",                       "-1"                            },
9554   { "scores.button.next_level.x",                       "-1"                            },
9555   { "scores.button.next_level.y",                       "-1"                            },
9556
9557   { "scores.button.prev_score.x",                       "-1"                            },
9558   { "scores.button.prev_score.y",                       "-1"                            },
9559   { "scores.button.next_score.x",                       "-1"                            },
9560   { "scores.button.next_score.y",                       "-1"                            },
9561
9562   { "scores.button.play_tape.x",                        "-1"                            },
9563   { "scores.button.play_tape.y",                        "-1"                            },
9564
9565   { "preview.x",                                        "272"                           },
9566   { "preview.y",                                        "380"                           },
9567   { "preview.align",                                    "center"                        },
9568   { "preview.valign",                                   "top"                           },
9569   { "preview.xsize",                                    "66"                            },
9570   { "preview.ysize",                                    "34"                            },
9571   { "preview.xoffset",                                  "0"                             },
9572   { "preview.yoffset",                                  "0"                             },
9573   { "preview.tile_size",                                "4"                             },
9574   { "preview.step_offset",                              "1"                             },
9575   { "preview.step_delay",                               "50"                            },
9576   { "preview.anim_mode",                                "default"                       },
9577
9578   { "door_1.part_1.x",                                  "0"                             },
9579   { "door_1.part_1.y",                                  "0"                             },
9580   { "door_1.part_1.step_xoffset",                       "3"                             },
9581   { "door_1.part_1.step_yoffset",                       "1"                             },
9582   { "door_1.part_1.step_delay",                         "10"                            },
9583   { "door_1.part_1.start_step",                         "0"                             },
9584   { "door_1.part_1.start_step_opening",                 "0"                             },
9585   { "door_1.part_1.start_step_closing",                 "0"                             },
9586   { "door_1.part_1.draw_masked",                        "true"                          },
9587   { "door_1.part_1.draw_order",                         "3"                             },
9588   { "door_1.part_2.x",                                  "0"                             },
9589   { "door_1.part_2.y",                                  "77"                            },
9590   { "door_1.part_2.step_xoffset",                       "3"                             },
9591   { "door_1.part_2.step_yoffset",                       "1"                             },
9592   { "door_1.part_2.step_delay",                         "10"                            },
9593   { "door_1.part_2.start_step",                         "0"                             },
9594   { "door_1.part_2.start_step_opening",                 "0"                             },
9595   { "door_1.part_2.start_step_closing",                 "0"                             },
9596   { "door_1.part_2.draw_masked",                        "true"                          },
9597   { "door_1.part_2.draw_order",                         "5"                             },
9598   { "door_1.part_3.x",                                  "0"                             },
9599   { "door_1.part_3.y",                                  "140"                           },
9600   { "door_1.part_3.step_xoffset",                       "3"                             },
9601   { "door_1.part_3.step_yoffset",                       "1"                             },
9602   { "door_1.part_3.step_delay",                         "10"                            },
9603   { "door_1.part_3.start_step",                         "0"                             },
9604   { "door_1.part_3.start_step_opening",                 "0"                             },
9605   { "door_1.part_3.start_step_closing",                 "0"                             },
9606   { "door_1.part_3.draw_masked",                        "true"                          },
9607   { "door_1.part_3.draw_order",                         "4"                             },
9608   { "door_1.part_4.x",                                  "0"                             },
9609   { "door_1.part_4.y",                                  "203"                           },
9610   { "door_1.part_4.step_xoffset",                       "3"                             },
9611   { "door_1.part_4.step_yoffset",                       "1"                             },
9612   { "door_1.part_4.step_delay",                         "10"                            },
9613   { "door_1.part_4.start_step",                         "0"                             },
9614   { "door_1.part_4.start_step_opening",                 "0"                             },
9615   { "door_1.part_4.start_step_closing",                 "0"                             },
9616   { "door_1.part_4.draw_masked",                        "true"                          },
9617   { "door_1.part_4.draw_order",                         "6"                             },
9618   { "door_1.part_5.x",                                  "0"                             },
9619   { "door_1.part_5.y",                                  "0"                             },
9620   { "door_1.part_5.step_xoffset",                       "-3"                            },
9621   { "door_1.part_5.step_yoffset",                       "-1"                            },
9622   { "door_1.part_5.step_delay",                         "10"                            },
9623   { "door_1.part_5.start_step",                         "0"                             },
9624   { "door_1.part_5.start_step_opening",                 "0"                             },
9625   { "door_1.part_5.start_step_closing",                 "0"                             },
9626   { "door_1.part_5.draw_masked",                        "true"                          },
9627   { "door_1.part_5.draw_order",                         "1"                             },
9628   { "door_1.part_6.x",                                  "0"                             },
9629   { "door_1.part_6.y",                                  "77"                            },
9630   { "door_1.part_6.step_xoffset",                       "-3"                            },
9631   { "door_1.part_6.step_yoffset",                       "-1"                            },
9632   { "door_1.part_6.step_delay",                         "10"                            },
9633   { "door_1.part_6.start_step",                         "0"                             },
9634   { "door_1.part_6.start_step_opening",                 "0"                             },
9635   { "door_1.part_6.start_step_closing",                 "0"                             },
9636   { "door_1.part_6.draw_masked",                        "true"                          },
9637   { "door_1.part_6.draw_order",                         "7"                             },
9638   { "door_1.part_7.x",                                  "0"                             },
9639   { "door_1.part_7.y",                                  "140"                           },
9640   { "door_1.part_7.step_xoffset",                       "-3"                            },
9641   { "door_1.part_7.step_yoffset",                       "-1"                            },
9642   { "door_1.part_7.step_delay",                         "10"                            },
9643   { "door_1.part_7.start_step",                         "0"                             },
9644   { "door_1.part_7.start_step_opening",                 "0"                             },
9645   { "door_1.part_7.start_step_closing",                 "0"                             },
9646   { "door_1.part_7.draw_masked",                        "true"                          },
9647   { "door_1.part_7.draw_order",                         "2"                             },
9648   { "door_1.part_8.x",                                  "0"                             },
9649   { "door_1.part_8.y",                                  "203"                           },
9650   { "door_1.part_8.step_xoffset",                       "-3"                            },
9651   { "door_1.part_8.step_yoffset",                       "-1"                            },
9652   { "door_1.part_8.step_delay",                         "10"                            },
9653   { "door_1.part_8.start_step",                         "0"                             },
9654   { "door_1.part_8.start_step_opening",                 "0"                             },
9655   { "door_1.part_8.start_step_closing",                 "0"                             },
9656   { "door_1.part_8.draw_masked",                        "true"                          },
9657   { "door_1.part_8.draw_order",                         "8"                             },
9658
9659   { "door_2.part_1.x",                                  "0"                             },
9660   { "door_2.part_1.y",                                  "0"                             },
9661   { "door_2.part_1.step_xoffset",                       "3"                             },
9662   { "door_2.part_1.step_yoffset",                       "1"                             },
9663   { "door_2.part_1.step_delay",                         "10"                            },
9664   { "door_2.part_1.start_step",                         "0"                             },
9665   { "door_2.part_1.start_step_opening",                 "0"                             },
9666   { "door_2.part_1.start_step_closing",                 "0"                             },
9667   { "door_2.part_1.draw_masked",                        "true"                          },
9668   { "door_2.part_1.draw_order",                         "2"                             },
9669   { "door_2.part_2.x",                                  "0"                             },
9670   { "door_2.part_2.y",                                  "50"                            },
9671   { "door_2.part_2.step_xoffset",                       "3"                             },
9672   { "door_2.part_2.step_yoffset",                       "1"                             },
9673   { "door_2.part_2.step_delay",                         "10"                            },
9674   { "door_2.part_2.start_step",                         "0"                             },
9675   { "door_2.part_2.start_step_opening",                 "0"                             },
9676   { "door_2.part_2.start_step_closing",                 "0"                             },
9677   { "door_2.part_2.draw_masked",                        "true"                          },
9678   { "door_2.part_2.draw_order",                         "3"                             },
9679   { "door_2.part_3.x",                                  "0"                             },
9680   { "door_2.part_3.y",                                  "0"                             },
9681   { "door_2.part_3.step_xoffset",                       "-3"                            },
9682   { "door_2.part_3.step_yoffset",                       "-1"                            },
9683   { "door_2.part_3.step_delay",                         "10"                            },
9684   { "door_2.part_3.start_step",                         "0"                             },
9685   { "door_2.part_3.start_step_opening",                 "0"                             },
9686   { "door_2.part_3.start_step_closing",                 "0"                             },
9687   { "door_2.part_3.draw_masked",                        "true"                          },
9688   { "door_2.part_3.draw_order",                         "1"                             },
9689   { "door_2.part_4.x",                                  "0"                             },
9690   { "door_2.part_4.y",                                  "50"                            },
9691   { "door_2.part_4.step_xoffset",                       "-3"                            },
9692   { "door_2.part_4.step_yoffset",                       "-1"                            },
9693   { "door_2.part_4.step_delay",                         "10"                            },
9694   { "door_2.part_4.start_step",                         "0"                             },
9695   { "door_2.part_4.start_step_opening",                 "0"                             },
9696   { "door_2.part_4.start_step_closing",                 "0"                             },
9697   { "door_2.part_4.draw_masked",                        "true"                          },
9698   { "door_2.part_4.draw_order",                         "4"                             },
9699   { "door_2.part_5.x",                                  "-1"                            },
9700   { "door_2.part_5.y",                                  "-1"                            },
9701   { "door_2.part_5.step_xoffset",                       "0"                             },
9702   { "door_2.part_5.step_yoffset",                       "0"                             },
9703   { "door_2.part_5.step_delay",                         "0"                             },
9704   { "door_2.part_5.start_step",                         "0"                             },
9705   { "door_2.part_5.start_step_opening",                 "0"                             },
9706   { "door_2.part_5.start_step_closing",                 "0"                             },
9707   { "door_2.part_5.draw_masked",                        "true"                          },
9708   { "door_2.part_5.draw_order",                         "0"                             },
9709   { "door_2.part_6.x",                                  "-1"                            },
9710   { "door_2.part_6.y",                                  "-1"                            },
9711   { "door_2.part_6.step_xoffset",                       "0"                             },
9712   { "door_2.part_6.step_yoffset",                       "0"                             },
9713   { "door_2.part_6.step_delay",                         "0"                             },
9714   { "door_2.part_6.start_step",                         "0"                             },
9715   { "door_2.part_6.start_step_opening",                 "0"                             },
9716   { "door_2.part_6.start_step_closing",                 "0"                             },
9717   { "door_2.part_6.draw_masked",                        "true"                          },
9718   { "door_2.part_6.draw_order",                         "0"                             },
9719   { "door_2.part_7.x",                                  "-1"                            },
9720   { "door_2.part_7.y",                                  "-1"                            },
9721   { "door_2.part_7.step_xoffset",                       "0"                             },
9722   { "door_2.part_7.step_yoffset",                       "0"                             },
9723   { "door_2.part_7.step_delay",                         "0"                             },
9724   { "door_2.part_7.start_step",                         "0"                             },
9725   { "door_2.part_7.start_step_opening",                 "0"                             },
9726   { "door_2.part_7.start_step_closing",                 "0"                             },
9727   { "door_2.part_7.draw_masked",                        "true"                          },
9728   { "door_2.part_7.draw_order",                         "0"                             },
9729   { "door_2.part_8.x",                                  "-1"                            },
9730   { "door_2.part_8.y",                                  "-1"                            },
9731   { "door_2.part_8.step_xoffset",                       "0"                             },
9732   { "door_2.part_8.step_yoffset",                       "0"                             },
9733   { "door_2.part_8.step_delay",                         "0"                             },
9734   { "door_2.part_8.start_step",                         "0"                             },
9735   { "door_2.part_8.start_step_opening",                 "0"                             },
9736   { "door_2.part_8.start_step_closing",                 "0"                             },
9737   { "door_2.part_8.draw_masked",                        "true"                          },
9738   { "door_2.part_8.draw_order",                         "0"                             },
9739
9740   { "door_1.panel.x",                                   "0"                             },
9741   { "door_1.panel.y",                                   "0"                             },
9742   { "door_1.panel.step_xoffset",                        "0"                             },
9743   { "door_1.panel.step_yoffset",                        "1"                             },
9744   { "door_1.panel.step_delay",                          "10"                            },
9745   { "door_1.panel.start_step",                          "246"                           },
9746   { "door_1.panel.start_step_opening",                  "0"                             },
9747   { "door_1.panel.start_step_closing",                  "0"                             },
9748   { "door_1.panel.draw_masked",                         "false"                         },
9749   { "door_1.panel.draw_order",                          "0"                             },
9750
9751   { "door_2.panel.x",                                   "0"                             },
9752   { "door_2.panel.y",                                   "0"                             },
9753   { "door_2.panel.step_xoffset",                        "0"                             },
9754   { "door_2.panel.step_yoffset",                        "1"                             },
9755   { "door_2.panel.step_delay",                          "10"                            },
9756   { "door_2.panel.start_step",                          "66"                            },
9757   { "door_2.panel.start_step_opening",                  "0"                             },
9758   { "door_2.panel.start_step_closing",                  "0"                             },
9759   { "door_2.panel.draw_masked",                         "false"                         },
9760   { "door_2.panel.draw_order",                          "0"                             },
9761
9762   { "door_1.width",                                     "-1"                            },
9763   { "door_1.height",                                    "-1"                            },
9764   { "door_1.step_offset",                               "2"                             },
9765   { "door_1.step_delay",                                "10"                            },
9766   { "door_1.post_delay",                                "100"                           },
9767   { "door_1.anim_mode",                                 "default"                       },
9768
9769   { "door_2.width",                                     "-1"                            },
9770   { "door_2.height",                                    "-1"                            },
9771   { "door_2.step_offset",                               "2"                             },
9772   { "door_2.step_delay",                                "10"                            },
9773   { "door_2.post_delay",                                "100"                           },
9774   { "door_2.anim_mode",                                 "default"                       },
9775
9776   { "game.panel.level_number.x",                        "51"                            },
9777   { "game.panel.level_number.y",                        "20"                            },
9778   { "game.panel.level_number.align",                    "center"                        },
9779   { "game.panel.level_number.valign",                   "top"                           },
9780   { "game.panel.level_number.digits",                   "-1"                            },
9781   { "game.panel.level_number.font",                     "font.text_2"                   },
9782   { "game.panel.level_number.font_narrow",              "font.text_1"                   },
9783   { "game.panel.level_number.draw_masked",              "true"                          },
9784   { "game.panel.level_number.draw_order",               "0"                             },
9785   { "game.panel.level_number.class",                    "none"                          },
9786   { "game.panel.level_number.style",                    "none"                          },
9787
9788   { "game.panel.gems.x",                                "50"                            },
9789   { "game.panel.gems.y",                                "54"                            },
9790   { "game.panel.gems.align",                            "center"                        },
9791   { "game.panel.gems.valign",                           "top"                           },
9792   { "game.panel.gems.digits",                           "3"                             },
9793   { "game.panel.gems.font",                             "font.text_2"                   },
9794   { "game.panel.gems.draw_masked",                      "true"                          },
9795   { "game.panel.gems.draw_order",                       "0"                             },
9796   { "game.panel.gems.class",                            "none"                          },
9797   { "game.panel.gems.style",                            "none"                          },
9798
9799   { "game.panel.gems_needed.x",                         "-1"                            },
9800   { "game.panel.gems_needed.y",                         "-1"                            },
9801   { "game.panel.gems_needed.align",                     "left"                          },
9802   { "game.panel.gems_needed.valign",                    "top"                           },
9803   { "game.panel.gems_needed.digits",                    "-1"                            },
9804   { "game.panel.gems_needed.font",                      "font.text_2"                   },
9805   { "game.panel.gems_needed.draw_masked",               "true"                          },
9806   { "game.panel.gems_needed.draw_order",                "0"                             },
9807   { "game.panel.gems_needed.class",                     "none"                          },
9808   { "game.panel.gems_needed.style",                     "none"                          },
9809
9810   { "game.panel.gems_collected.x",                      "-1"                            },
9811   { "game.panel.gems_collected.y",                      "-1"                            },
9812   { "game.panel.gems_collected.align",                  "left"                          },
9813   { "game.panel.gems_collected.valign",                 "top"                           },
9814   { "game.panel.gems_collected.digits",                 "-1"                            },
9815   { "game.panel.gems_collected.font",                   "font.text_2"                   },
9816   { "game.panel.gems_collected.draw_masked",            "true"                          },
9817   { "game.panel.gems_collected.draw_order",             "0"                             },
9818   { "game.panel.gems_collected.class",                  "none"                          },
9819   { "game.panel.gems_collected.style",                  "none"                          },
9820
9821   { "game.panel.gems_score.x",                          "-1"                            },
9822   { "game.panel.gems_score.y",                          "-1"                            },
9823   { "game.panel.gems_score.align",                      "left"                          },
9824   { "game.panel.gems_score.valign",                     "top"                           },
9825   { "game.panel.gems_score.digits",                     "-1"                            },
9826   { "game.panel.gems_score.font",                       "font.text_2"                   },
9827   { "game.panel.gems_score.draw_masked",                "true"                          },
9828   { "game.panel.gems_score.draw_order",                 "0"                             },
9829   { "game.panel.gems_score.class",                      "none"                          },
9830   { "game.panel.gems_score.style",                      "none"                          },
9831
9832   { "game.panel.inventory_count.x",                     "50"                            },
9833   { "game.panel.inventory_count.y",                     "89"                            },
9834   { "game.panel.inventory_count.align",                 "center"                        },
9835   { "game.panel.inventory_count.valign",                "top"                           },
9836   { "game.panel.inventory_count.digits",                "-1"                            },
9837   { "game.panel.inventory_count.font",                  "font.text_2"                   },
9838   { "game.panel.inventory_count.font_narrow",           "font.text_1"                   },
9839   { "game.panel.inventory_count.draw_masked",           "true"                          },
9840   { "game.panel.inventory_count.draw_order",            "0"                             },
9841   { "game.panel.inventory_count.class",                 "none"                          },
9842   { "game.panel.inventory_count.style",                 "none"                          },
9843
9844   { "game.panel.inventory_first_1.x",                   "-1"                            },
9845   { "game.panel.inventory_first_1.y",                   "-1"                            },
9846   { "game.panel.inventory_first_1.tile_size",           "16"                            },
9847   { "game.panel.inventory_first_1.draw_masked",         "false"                         },
9848   { "game.panel.inventory_first_1.draw_order",          "0"                             },
9849   { "game.panel.inventory_first_1.class",               "none"                          },
9850   { "game.panel.inventory_first_1.style",               "none"                          },
9851   { "game.panel.inventory_first_2.x",                   "-1"                            },
9852   { "game.panel.inventory_first_2.y",                   "-1"                            },
9853   { "game.panel.inventory_first_2.tile_size",           "16"                            },
9854   { "game.panel.inventory_first_2.draw_masked",         "false"                         },
9855   { "game.panel.inventory_first_2.draw_order",          "0"                             },
9856   { "game.panel.inventory_first_2.class",               "none"                          },
9857   { "game.panel.inventory_first_2.style",               "none"                          },
9858   { "game.panel.inventory_first_3.x",                   "-1"                            },
9859   { "game.panel.inventory_first_3.y",                   "-1"                            },
9860   { "game.panel.inventory_first_3.tile_size",           "16"                            },
9861   { "game.panel.inventory_first_3.draw_masked",         "false"                         },
9862   { "game.panel.inventory_first_3.draw_order",          "0"                             },
9863   { "game.panel.inventory_first_3.class",               "none"                          },
9864   { "game.panel.inventory_first_3.style",               "none"                          },
9865   { "game.panel.inventory_first_4.x",                   "-1"                            },
9866   { "game.panel.inventory_first_4.y",                   "-1"                            },
9867   { "game.panel.inventory_first_4.tile_size",           "16"                            },
9868   { "game.panel.inventory_first_4.draw_masked",         "false"                         },
9869   { "game.panel.inventory_first_4.draw_order",          "0"                             },
9870   { "game.panel.inventory_first_4.class",               "none"                          },
9871   { "game.panel.inventory_first_4.style",               "none"                          },
9872   { "game.panel.inventory_first_5.x",                   "-1"                            },
9873   { "game.panel.inventory_first_5.y",                   "-1"                            },
9874   { "game.panel.inventory_first_5.tile_size",           "16"                            },
9875   { "game.panel.inventory_first_5.draw_masked",         "false"                         },
9876   { "game.panel.inventory_first_5.draw_order",          "0"                             },
9877   { "game.panel.inventory_first_5.class",               "none"                          },
9878   { "game.panel.inventory_first_5.style",               "none"                          },
9879   { "game.panel.inventory_first_6.x",                   "-1"                            },
9880   { "game.panel.inventory_first_6.y",                   "-1"                            },
9881   { "game.panel.inventory_first_6.tile_size",           "16"                            },
9882   { "game.panel.inventory_first_6.draw_masked",         "false"                         },
9883   { "game.panel.inventory_first_6.draw_order",          "0"                             },
9884   { "game.panel.inventory_first_6.class",               "none"                          },
9885   { "game.panel.inventory_first_6.style",               "none"                          },
9886   { "game.panel.inventory_first_7.x",                   "-1"                            },
9887   { "game.panel.inventory_first_7.y",                   "-1"                            },
9888   { "game.panel.inventory_first_7.tile_size",           "16"                            },
9889   { "game.panel.inventory_first_7.draw_masked",         "false"                         },
9890   { "game.panel.inventory_first_7.draw_order",          "0"                             },
9891   { "game.panel.inventory_first_7.class",               "none"                          },
9892   { "game.panel.inventory_first_7.style",               "none"                          },
9893   { "game.panel.inventory_first_8.x",                   "-1"                            },
9894   { "game.panel.inventory_first_8.y",                   "-1"                            },
9895   { "game.panel.inventory_first_8.tile_size",           "16"                            },
9896   { "game.panel.inventory_first_8.draw_masked",         "false"                         },
9897   { "game.panel.inventory_first_8.draw_order",          "0"                             },
9898   { "game.panel.inventory_first_8.class",               "none"                          },
9899   { "game.panel.inventory_first_8.style",               "none"                          },
9900
9901   { "game.panel.inventory_last_1.x",                    "-1"                            },
9902   { "game.panel.inventory_last_1.y",                    "-1"                            },
9903   { "game.panel.inventory_last_1.tile_size",            "16"                            },
9904   { "game.panel.inventory_last_1.draw_masked",          "false"                         },
9905   { "game.panel.inventory_last_1.draw_order",           "0"                             },
9906   { "game.panel.inventory_last_1.class",                "none"                          },
9907   { "game.panel.inventory_last_1.style",                "none"                          },
9908   { "game.panel.inventory_last_2.x",                    "-1"                            },
9909   { "game.panel.inventory_last_2.y",                    "-1"                            },
9910   { "game.panel.inventory_last_2.tile_size",            "16"                            },
9911   { "game.panel.inventory_last_2.draw_masked",          "false"                         },
9912   { "game.panel.inventory_last_2.draw_order",           "0"                             },
9913   { "game.panel.inventory_last_2.class",                "none"                          },
9914   { "game.panel.inventory_last_2.style",                "none"                          },
9915   { "game.panel.inventory_last_3.x",                    "-1"                            },
9916   { "game.panel.inventory_last_3.y",                    "-1"                            },
9917   { "game.panel.inventory_last_3.tile_size",            "16"                            },
9918   { "game.panel.inventory_last_3.draw_masked",          "false"                         },
9919   { "game.panel.inventory_last_3.draw_order",           "0"                             },
9920   { "game.panel.inventory_last_3.class",                "none"                          },
9921   { "game.panel.inventory_last_3.style",                "none"                          },
9922   { "game.panel.inventory_last_4.x",                    "-1"                            },
9923   { "game.panel.inventory_last_4.y",                    "-1"                            },
9924   { "game.panel.inventory_last_4.tile_size",            "16"                            },
9925   { "game.panel.inventory_last_4.draw_masked",          "false"                         },
9926   { "game.panel.inventory_last_4.draw_order",           "0"                             },
9927   { "game.panel.inventory_last_4.class",                "none"                          },
9928   { "game.panel.inventory_last_4.style",                "none"                          },
9929   { "game.panel.inventory_last_5.x",                    "-1"                            },
9930   { "game.panel.inventory_last_5.y",                    "-1"                            },
9931   { "game.panel.inventory_last_5.tile_size",            "16"                            },
9932   { "game.panel.inventory_last_5.draw_masked",          "false"                         },
9933   { "game.panel.inventory_last_5.draw_order",           "0"                             },
9934   { "game.panel.inventory_last_5.class",                "none"                          },
9935   { "game.panel.inventory_last_5.style",                "none"                          },
9936   { "game.panel.inventory_last_6.x",                    "-1"                            },
9937   { "game.panel.inventory_last_6.y",                    "-1"                            },
9938   { "game.panel.inventory_last_6.tile_size",            "16"                            },
9939   { "game.panel.inventory_last_6.draw_masked",          "false"                         },
9940   { "game.panel.inventory_last_6.draw_order",           "0"                             },
9941   { "game.panel.inventory_last_6.class",                "none"                          },
9942   { "game.panel.inventory_last_6.style",                "none"                          },
9943   { "game.panel.inventory_last_7.x",                    "-1"                            },
9944   { "game.panel.inventory_last_7.y",                    "-1"                            },
9945   { "game.panel.inventory_last_7.tile_size",            "16"                            },
9946   { "game.panel.inventory_last_7.draw_masked",          "false"                         },
9947   { "game.panel.inventory_last_7.draw_order",           "0"                             },
9948   { "game.panel.inventory_last_7.class",                "none"                          },
9949   { "game.panel.inventory_last_7.style",                "none"                          },
9950   { "game.panel.inventory_last_8.x",                    "-1"                            },
9951   { "game.panel.inventory_last_8.y",                    "-1"                            },
9952   { "game.panel.inventory_last_8.tile_size",            "16"                            },
9953   { "game.panel.inventory_last_8.draw_masked",          "false"                         },
9954   { "game.panel.inventory_last_8.draw_order",           "0"                             },
9955   { "game.panel.inventory_last_8.class",                "none"                          },
9956   { "game.panel.inventory_last_8.style",                "none"                          },
9957
9958   { "game.panel.key_1.x",                               "18"                            },
9959   { "game.panel.key_1.y",                               "123"                           },
9960   { "game.panel.key_1.tile_size",                       "16"                            },
9961   { "game.panel.key_1.draw_masked",                     "false"                         },
9962   { "game.panel.key_1.draw_order",                      "0"                             },
9963   { "game.panel.key_1.class",                           "none"                          },
9964   { "game.panel.key_1.style",                           "none"                          },
9965   { "game.panel.key_2.x",                               "34"                            },
9966   { "game.panel.key_2.y",                               "123"                           },
9967   { "game.panel.key_2.tile_size",                       "16"                            },
9968   { "game.panel.key_2.draw_masked",                     "false"                         },
9969   { "game.panel.key_2.draw_order",                      "0"                             },
9970   { "game.panel.key_2.class",                           "none"                          },
9971   { "game.panel.key_2.style",                           "none"                          },
9972   { "game.panel.key_3.x",                               "50"                            },
9973   { "game.panel.key_3.y",                               "123"                           },
9974   { "game.panel.key_3.tile_size",                       "16"                            },
9975   { "game.panel.key_3.draw_masked",                     "false"                         },
9976   { "game.panel.key_3.draw_order",                      "0"                             },
9977   { "game.panel.key_3.class",                           "none"                          },
9978   { "game.panel.key_3.style",                           "none"                          },
9979   { "game.panel.key_4.x",                               "66"                            },
9980   { "game.panel.key_4.y",                               "123"                           },
9981   { "game.panel.key_4.tile_size",                       "16"                            },
9982   { "game.panel.key_4.draw_masked",                     "false"                         },
9983   { "game.panel.key_4.draw_order",                      "0"                             },
9984   { "game.panel.key_4.class",                           "none"                          },
9985   { "game.panel.key_4.style",                           "none"                          },
9986   { "game.panel.key_5.x",                               "-1"                            },
9987   { "game.panel.key_5.y",                               "-1"                            },
9988   { "game.panel.key_5.tile_size",                       "16"                            },
9989   { "game.panel.key_5.draw_masked",                     "false"                         },
9990   { "game.panel.key_5.draw_order",                      "0"                             },
9991   { "game.panel.key_5.class",                           "none"                          },
9992   { "game.panel.key_5.style",                           "none"                          },
9993   { "game.panel.key_6.x",                               "-1"                            },
9994   { "game.panel.key_6.y",                               "-1"                            },
9995   { "game.panel.key_6.tile_size",                       "16"                            },
9996   { "game.panel.key_6.draw_masked",                     "false"                         },
9997   { "game.panel.key_6.draw_order",                      "0"                             },
9998   { "game.panel.key_6.class",                           "none"                          },
9999   { "game.panel.key_6.style",                           "none"                          },
10000   { "game.panel.key_7.x",                               "-1"                            },
10001   { "game.panel.key_7.y",                               "-1"                            },
10002   { "game.panel.key_7.tile_size",                       "16"                            },
10003   { "game.panel.key_7.draw_masked",                     "false"                         },
10004   { "game.panel.key_7.draw_order",                      "0"                             },
10005   { "game.panel.key_7.class",                           "none"                          },
10006   { "game.panel.key_7.style",                           "none"                          },
10007   { "game.panel.key_8.x",                               "-1"                            },
10008   { "game.panel.key_8.y",                               "-1"                            },
10009   { "game.panel.key_8.tile_size",                       "16"                            },
10010   { "game.panel.key_8.draw_masked",                     "false"                         },
10011   { "game.panel.key_8.draw_order",                      "0"                             },
10012   { "game.panel.key_8.class",                           "none"                          },
10013   { "game.panel.key_8.style",                           "none"                          },
10014   { "game.panel.key_white.x",                           "-1"                            },
10015   { "game.panel.key_white.y",                           "-1"                            },
10016   { "game.panel.key_white.tile_size",                   "16"                            },
10017   { "game.panel.key_white.draw_masked",                 "false"                         },
10018   { "game.panel.key_white.draw_order",                  "0"                             },
10019   { "game.panel.key_white.class",                       "none"                          },
10020   { "game.panel.key_white.style",                       "none"                          },
10021   { "game.panel.key_white_count.x",                     "-1"                            },
10022   { "game.panel.key_white_count.y",                     "-1"                            },
10023   { "game.panel.key_white_count.align",                 "left"                          },
10024   { "game.panel.key_white_count.valign",                "top"                           },
10025   { "game.panel.key_white_count.digits",                "-1"                            },
10026   { "game.panel.key_white_count.font",                  "font.text_2"                   },
10027   { "game.panel.key_white_count.draw_masked",           "true"                          },
10028   { "game.panel.key_white_count.draw_order",            "0"                             },
10029   { "game.panel.key_white_count.class",                 "none"                          },
10030   { "game.panel.key_white_count.style",                 "none"                          },
10031
10032   { "game.panel.score.x",                               "50"                            },
10033   { "game.panel.score.y",                               "159"                           },
10034   { "game.panel.score.align",                           "center"                        },
10035   { "game.panel.score.valign",                          "top"                           },
10036   { "game.panel.score.digits",                          "-1"                            },
10037   { "game.panel.score.font",                            "font.text_2"                   },
10038   { "game.panel.score.font_narrow",                     "font.text_1"                   },
10039   { "game.panel.score.draw_masked",                     "true"                          },
10040   { "game.panel.score.draw_order",                      "0"                             },
10041   { "game.panel.score.class",                           "none"                          },
10042   { "game.panel.score.style",                           "none"                          },
10043
10044   { "game.panel.highscore.x",                           "-1"                            },
10045   { "game.panel.highscore.y",                           "-1"                            },
10046   { "game.panel.highscore.align",                       "left"                          },
10047   { "game.panel.highscore.valign",                      "top"                           },
10048   { "game.panel.highscore.digits",                      "-1"                            },
10049   { "game.panel.highscore.font",                        "font.text_2"                   },
10050   { "game.panel.highscore.font_narrow",                 "font.text_1"                   },
10051   { "game.panel.highscore.draw_masked",                 "true"                          },
10052   { "game.panel.highscore.draw_order",                  "0"                             },
10053   { "game.panel.highscore.class",                       "none"                          },
10054   { "game.panel.highscore.style",                       "none"                          },
10055
10056   { "game.panel.time.x",                                "50"                            },
10057   { "game.panel.time.y",                                "194"                           },
10058   { "game.panel.time.align",                            "center"                        },
10059   { "game.panel.time.valign",                           "top"                           },
10060   { "game.panel.time.digits",                           "-1"                            },
10061   { "game.panel.time.font",                             "font.text_2"                   },
10062   { "game.panel.time.font_narrow",                      "font.text_1"                   },
10063   { "game.panel.time.draw_masked",                      "true"                          },
10064   { "game.panel.time.draw_order",                       "0"                             },
10065   { "game.panel.time.class",                            "none"                          },
10066   { "game.panel.time.style",                            "none"                          },
10067
10068   { "game.panel.time_hh.x",                             "-1"                            },
10069   { "game.panel.time_hh.y",                             "-1"                            },
10070   { "game.panel.time_hh.align",                         "left"                          },
10071   { "game.panel.time_hh.valign",                        "top"                           },
10072   { "game.panel.time_hh.digits",                        "2"                             },
10073   { "game.panel.time_hh.font",                          "font.text_2"                   },
10074   { "game.panel.time_hh.draw_masked",                   "true"                          },
10075   { "game.panel.time_hh.draw_order",                    "0"                             },
10076   { "game.panel.time_hh.class",                         "none"                          },
10077   { "game.panel.time_hh.style",                         "none"                          },
10078   { "game.panel.time_mm.x",                             "-1"                            },
10079   { "game.panel.time_mm.y",                             "-1"                            },
10080   { "game.panel.time_mm.align",                         "left"                          },
10081   { "game.panel.time_mm.valign",                        "top"                           },
10082   { "game.panel.time_mm.digits",                        "2"                             },
10083   { "game.panel.time_mm.font",                          "font.text_2"                   },
10084   { "game.panel.time_mm.draw_masked",                   "true"                          },
10085   { "game.panel.time_mm.draw_order",                    "0"                             },
10086   { "game.panel.time_mm.class",                         "none"                          },
10087   { "game.panel.time_mm.style",                         "none"                          },
10088   { "game.panel.time_ss.x",                             "-1"                            },
10089   { "game.panel.time_ss.y",                             "-1"                            },
10090   { "game.panel.time_ss.align",                         "left"                          },
10091   { "game.panel.time_ss.valign",                        "top"                           },
10092   { "game.panel.time_ss.digits",                        "2"                             },
10093   { "game.panel.time_ss.font",                          "font.text_2"                   },
10094   { "game.panel.time_ss.draw_masked",                   "true"                          },
10095   { "game.panel.time_ss.draw_order",                    "0"                             },
10096   { "game.panel.time_ss.class",                         "none"                          },
10097   { "game.panel.time_ss.style",                         "none"                          },
10098
10099   { "game.panel.time_anim.x",                           "5"                             },
10100   { "game.panel.time_anim.y",                           "72"                            },
10101   { "game.panel.time_anim.direction",                   "right"                         },
10102   { "game.panel.time_anim.class",                       "mm_engine_only"                },
10103   { "game.panel.time_anim.style",                       "none"                          },
10104
10105   { "game.panel.health.x",                              "-1"                            },
10106   { "game.panel.health.y",                              "-1"                            },
10107   { "game.panel.health.align",                          "center"                        },
10108   { "game.panel.health.valign",                         "top"                           },
10109   { "game.panel.health.digits",                         "-1"                            },
10110   { "game.panel.health.font",                           "font.text_2"                   },
10111   { "game.panel.health.font_narrow",                    "font.text_1"                   },
10112   { "game.panel.health.draw_masked",                    "true"                          },
10113   { "game.panel.health.draw_order",                     "0"                             },
10114   { "game.panel.health.class",                          "none"                          },
10115   { "game.panel.health.style",                          "none"                          },
10116
10117   { "game.panel.health_anim.x",                         "5"                             },
10118   { "game.panel.health_anim.y",                         "107"                           },
10119   { "game.panel.health_anim.direction",                 "right"                         },
10120   { "game.panel.health_anim.class",                     "mm_engine_only"                },
10121   { "game.panel.health_anim.style",                     "reverse"                       },
10122
10123   { "game.panel.frame.x",                               "-1"                            },
10124   { "game.panel.frame.y",                               "-1"                            },
10125   { "game.panel.frame.align",                           "left"                          },
10126   { "game.panel.frame.valign",                          "top"                           },
10127   { "game.panel.frame.digits",                          "-1"                            },
10128   { "game.panel.frame.font",                            "font.text_2"                   },
10129   { "game.panel.frame.draw_masked",                     "true"                          },
10130   { "game.panel.frame.draw_order",                      "0"                             },
10131   { "game.panel.frame.class",                           "none"                          },
10132   { "game.panel.frame.style",                           "none"                          },
10133
10134   { "game.panel.shield_normal.x",                       "-1"                            },
10135   { "game.panel.shield_normal.y",                       "-1"                            },
10136   { "game.panel.shield_normal.tile_size",               "16"                            },
10137   { "game.panel.shield_normal.draw_masked",             "false"                         },
10138   { "game.panel.shield_normal.draw_order",              "0"                             },
10139   { "game.panel.shield_normal_time.x",                  "-1"                            },
10140   { "game.panel.shield_normal_time.y",                  "-1"                            },
10141   { "game.panel.shield_normal_time.align",              "left"                          },
10142   { "game.panel.shield_normal_time.valign",             "top"                           },
10143   { "game.panel.shield_normal_time.digits",             "-1"                            },
10144   { "game.panel.shield_normal_time.font",               "font.text_2"                   },
10145   { "game.panel.shield_normal_time.draw_masked",        "true"                          },
10146   { "game.panel.shield_normal_time.draw_order",         "0"                             },
10147   { "game.panel.shield_normal_time.class",              "none"                          },
10148   { "game.panel.shield_normal_time.style",              "none"                          },
10149   { "game.panel.shield_deadly.x",                       "-1"                            },
10150   { "game.panel.shield_deadly.y",                       "-1"                            },
10151   { "game.panel.shield_deadly.tile_size",               "16"                            },
10152   { "game.panel.shield_deadly.draw_masked",             "false"                         },
10153   { "game.panel.shield_deadly.draw_order",              "0"                             },
10154   { "game.panel.shield_deadly_time.x",                  "-1"                            },
10155   { "game.panel.shield_deadly_time.y",                  "-1"                            },
10156   { "game.panel.shield_deadly_time.align",              "left"                          },
10157   { "game.panel.shield_deadly_time.valign",             "top"                           },
10158   { "game.panel.shield_deadly_time.digits",             "-1"                            },
10159   { "game.panel.shield_deadly_time.font",               "font.text_2"                   },
10160   { "game.panel.shield_deadly_time.draw_masked",        "true"                          },
10161   { "game.panel.shield_deadly_time.draw_order",         "0"                             },
10162   { "game.panel.shield_deadly_time.class",              "none"                          },
10163   { "game.panel.shield_deadly_time.style",              "none"                          },
10164
10165   { "game.panel.exit.x",                                "-1"                            },
10166   { "game.panel.exit.y",                                "-1"                            },
10167   { "game.panel.exit.tile_size",                        "16"                            },
10168   { "game.panel.exit.draw_masked",                      "false"                         },
10169   { "game.panel.exit.draw_order",                       "0"                             },
10170   { "game.panel.exit.class",                            "none"                          },
10171   { "game.panel.exit.style",                            "none"                          },
10172
10173   { "game.panel.emc_magic_ball.x",                      "-1"                            },
10174   { "game.panel.emc_magic_ball.y",                      "-1"                            },
10175   { "game.panel.emc_magic_ball.tile_size",              "16"                            },
10176   { "game.panel.emc_magic_ball.draw_masked",            "false"                         },
10177   { "game.panel.emc_magic_ball.draw_order",             "0"                             },
10178   { "game.panel.emc_magic_ball_switch.x",               "-1"                            },
10179   { "game.panel.emc_magic_ball_switch.y",               "-1"                            },
10180   { "game.panel.emc_magic_ball_switch.tile_size",       "16"                            },
10181   { "game.panel.emc_magic_ball_switch.draw_masked",     "true"                          },
10182   { "game.panel.emc_magic_ball_switch.draw_order",      "0"                             },
10183   { "game.panel.emc_magic_ball_switch.class",           "none"                          },
10184   { "game.panel.emc_magic_ball_switch.style",           "none"                          },
10185
10186   { "game.panel.light_switch.x",                        "-1"                            },
10187   { "game.panel.light_switch.y",                        "-1"                            },
10188   { "game.panel.light_switch.tile_size",                "16"                            },
10189   { "game.panel.light_switch.draw_masked",              "false"                         },
10190   { "game.panel.light_switch.draw_order",               "0"                             },
10191   { "game.panel.light_switch_time.x",                   "-1"                            },
10192   { "game.panel.light_switch_time.y",                   "-1"                            },
10193   { "game.panel.light_switch_time.align",               "left"                          },
10194   { "game.panel.light_switch_time.valign",              "top"                           },
10195   { "game.panel.light_switch_time.digits",              "-1"                            },
10196   { "game.panel.light_switch_time.font",                "font.text_2"                   },
10197   { "game.panel.light_switch_time.draw_masked",         "true"                          },
10198   { "game.panel.light_switch_time.draw_order",          "0"                             },
10199   { "game.panel.light_switch_time.class",               "none"                          },
10200   { "game.panel.light_switch_time.style",               "none"                          },
10201
10202   { "game.panel.timegate_switch.x",                     "-1"                            },
10203   { "game.panel.timegate_switch.y",                     "-1"                            },
10204   { "game.panel.timegate_switch.tile_size",             "16"                            },
10205   { "game.panel.timegate_switch.draw_masked",           "false"                         },
10206   { "game.panel.timegate_switch.draw_order",            "0"                             },
10207   { "game.panel.timegate_switch_time.x",                "-1"                            },
10208   { "game.panel.timegate_switch_time.y",                "-1"                            },
10209   { "game.panel.timegate_switch_time.align",            "left"                          },
10210   { "game.panel.timegate_switch_time.valign",           "top"                           },
10211   { "game.panel.timegate_switch_time.digits",           "-1"                            },
10212   { "game.panel.timegate_switch_time.font",             "font.text_2"                   },
10213   { "game.panel.timegate_switch_time.draw_masked",      "true"                          },
10214   { "game.panel.timegate_switch_time.draw_order",       "0"                             },
10215   { "game.panel.timegate_switch_time.class",            "none"                          },
10216   { "game.panel.timegate_switch_time.style",            "none"                          },
10217
10218   { "game.panel.switchgate_switch.x",                   "-1"                            },
10219   { "game.panel.switchgate_switch.y",                   "-1"                            },
10220   { "game.panel.switchgate_switch.tile_size",           "16"                            },
10221   { "game.panel.switchgate_switch.draw_masked",         "false"                         },
10222   { "game.panel.switchgate_switch.draw_order",          "0"                             },
10223   { "game.panel.switchgate_switch.class",               "none"                          },
10224   { "game.panel.switchgate_switch.style",               "none"                          },
10225
10226   { "game.panel.emc_lenses.x",                          "-1"                            },
10227   { "game.panel.emc_lenses.y",                          "-1"                            },
10228   { "game.panel.emc_lenses.tile_size",                  "16"                            },
10229   { "game.panel.emc_lenses.draw_masked",                "false"                         },
10230   { "game.panel.emc_lenses.draw_order",                 "0"                             },
10231   { "game.panel.emc_lenses.class",                      "none"                          },
10232   { "game.panel.emc_lenses.style",                      "none"                          },
10233   { "game.panel.emc_lenses_time.x",                     "-1"                            },
10234   { "game.panel.emc_lenses_time.y",                     "-1"                            },
10235   { "game.panel.emc_lenses_time.align",                 "left"                          },
10236   { "game.panel.emc_lenses_time.valign",                "top"                           },
10237   { "game.panel.emc_lenses_time.digits",                "-1"                            },
10238   { "game.panel.emc_lenses_time.font",                  "font.text_2"                   },
10239   { "game.panel.emc_lenses_time.draw_masked",           "true"                          },
10240   { "game.panel.emc_lenses_time.draw_order",            "0"                             },
10241   { "game.panel.emc_lenses_time.class",                 "none"                          },
10242   { "game.panel.emc_lenses_time.style",                 "none"                          },
10243
10244   { "game.panel.emc_magnifier.x",                       "-1"                            },
10245   { "game.panel.emc_magnifier.y",                       "-1"                            },
10246   { "game.panel.emc_magnifier.tile_size",               "16"                            },
10247   { "game.panel.emc_magnifier.draw_masked",             "false"                         },
10248   { "game.panel.emc_magnifier.draw_order",              "0"                             },
10249   { "game.panel.emc_magnifier.class",                   "none"                          },
10250   { "game.panel.emc_magnifier.style",                   "none"                          },
10251   { "game.panel.emc_magnifier_time.x",                  "-1"                            },
10252   { "game.panel.emc_magnifier_time.y",                  "-1"                            },
10253   { "game.panel.emc_magnifier_time.align",              "left"                          },
10254   { "game.panel.emc_magnifier_time.valign",             "top"                           },
10255   { "game.panel.emc_magnifier_time.digits",             "-1"                            },
10256   { "game.panel.emc_magnifier_time.font",               "font.text_2"                   },
10257   { "game.panel.emc_magnifier_time.draw_masked",        "true"                          },
10258   { "game.panel.emc_magnifier_time.draw_order",         "0"                             },
10259   { "game.panel.emc_magnifier_time.class",              "none"                          },
10260   { "game.panel.emc_magnifier_time.style",              "none"                          },
10261
10262   { "game.panel.balloon_switch.x",                      "-1"                            },
10263   { "game.panel.balloon_switch.y",                      "-1"                            },
10264   { "game.panel.balloon_switch.tile_size",              "16"                            },
10265   { "game.panel.balloon_switch.draw_masked",            "false"                         },
10266   { "game.panel.balloon_switch.draw_order",             "0"                             },
10267   { "game.panel.balloon_switch.class",                  "none"                          },
10268   { "game.panel.balloon_switch.style",                  "none"                          },
10269
10270   { "game.panel.dynabomb_number.x",                     "-1"                            },
10271   { "game.panel.dynabomb_number.y",                     "-1"                            },
10272   { "game.panel.dynabomb_number.align",                 "left"                          },
10273   { "game.panel.dynabomb_number.valign",                "top"                           },
10274   { "game.panel.dynabomb_number.digits",                "-1"                            },
10275   { "game.panel.dynabomb_number.font",                  "font.text_2"                   },
10276   { "game.panel.dynabomb_number.draw_masked",           "true"                          },
10277   { "game.panel.dynabomb_number.draw_order",            "0"                             },
10278   { "game.panel.dynabomb_number.class",                 "none"                          },
10279   { "game.panel.dynabomb_number.style",                 "none"                          },
10280   { "game.panel.dynabomb_size.x",                       "-1"                            },
10281   { "game.panel.dynabomb_size.y",                       "-1"                            },
10282   { "game.panel.dynabomb_size.align",                   "left"                          },
10283   { "game.panel.dynabomb_size.valign",                  "top"                           },
10284   { "game.panel.dynabomb_size.digits",                  "-1"                            },
10285   { "game.panel.dynabomb_size.font",                    "font.text_2"                   },
10286   { "game.panel.dynabomb_size.draw_masked",             "true"                          },
10287   { "game.panel.dynabomb_size.draw_order",              "0"                             },
10288   { "game.panel.dynabomb_size.class",                   "none"                          },
10289   { "game.panel.dynabomb_size.style",                   "none"                          },
10290   { "game.panel.dynabomb_power.x",                      "-1"                            },
10291   { "game.panel.dynabomb_power.y",                      "-1"                            },
10292   { "game.panel.dynabomb_power.tile_size",              "16"                            },
10293   { "game.panel.dynabomb_power.draw_masked",            "false"                         },
10294   { "game.panel.dynabomb_power.draw_order",             "0"                             },
10295   { "game.panel.dynabomb_power.class",                  "none"                          },
10296   { "game.panel.dynabomb_power.style",                  "none"                          },
10297
10298   { "game.panel.penguins.x",                            "-1"                            },
10299   { "game.panel.penguins.y",                            "-1"                            },
10300   { "game.panel.penguins.align",                        "left"                          },
10301   { "game.panel.penguins.valign",                       "top"                           },
10302   { "game.panel.penguins.digits",                       "-1"                            },
10303   { "game.panel.penguins.font",                         "font.text_2"                   },
10304   { "game.panel.penguins.draw_masked",                  "true"                          },
10305   { "game.panel.penguins.draw_order",                   "0"                             },
10306   { "game.panel.penguins.class",                        "none"                          },
10307   { "game.panel.penguins.style",                        "none"                          },
10308
10309   { "game.panel.sokoban_objects.x",                     "-1"                            },
10310   { "game.panel.sokoban_objects.y",                     "-1"                            },
10311   { "game.panel.sokoban_objects.align",                 "left"                          },
10312   { "game.panel.sokoban_objects.valign",                "top"                           },
10313   { "game.panel.sokoban_objects.digits",                "-1"                            },
10314   { "game.panel.sokoban_objects.font",                  "font.text_2"                   },
10315   { "game.panel.sokoban_objects.draw_masked",           "true"                          },
10316   { "game.panel.sokoban_objects.draw_order",            "0"                             },
10317   { "game.panel.sokoban_objects.class",                 "none"                          },
10318   { "game.panel.sokoban_objects.style",                 "none"                          },
10319   { "game.panel.sokoban_fields.x",                      "-1"                            },
10320   { "game.panel.sokoban_fields.y",                      "-1"                            },
10321   { "game.panel.sokoban_fields.align",                  "left"                          },
10322   { "game.panel.sokoban_fields.valign",                 "top"                           },
10323   { "game.panel.sokoban_fields.digits",                 "-1"                            },
10324   { "game.panel.sokoban_fields.font",                   "font.text_2"                   },
10325   { "game.panel.sokoban_fields.draw_masked",            "true"                          },
10326   { "game.panel.sokoban_fields.draw_order",             "0"                             },
10327   { "game.panel.sokoban_fields.class",                  "none"                          },
10328   { "game.panel.sokoban_fields.style",                  "none"                          },
10329
10330   { "game.panel.robot_wheel.x",                         "-1"                            },
10331   { "game.panel.robot_wheel.y",                         "-1"                            },
10332   { "game.panel.robot_wheel.tile_size",                 "16"                            },
10333   { "game.panel.robot_wheel.draw_masked",               "false"                         },
10334   { "game.panel.robot_wheel.draw_order",                "0"                             },
10335   { "game.panel.robot_wheel.class",                     "none"                          },
10336   { "game.panel.robot_wheel.style",                     "none"                          },
10337
10338   { "game.panel.conveyor_belt_1.x",                     "-1"                            },
10339   { "game.panel.conveyor_belt_1.y",                     "-1"                            },
10340   { "game.panel.conveyor_belt_1.tile_size",             "16"                            },
10341   { "game.panel.conveyor_belt_1.draw_masked",           "false"                         },
10342   { "game.panel.conveyor_belt_1.draw_order",            "0"                             },
10343   { "game.panel.conveyor_belt_1.class",                 "none"                          },
10344   { "game.panel.conveyor_belt_1.style",                 "none"                          },
10345   { "game.panel.conveyor_belt_1_switch.x",              "-1"                            },
10346   { "game.panel.conveyor_belt_1_switch.y",              "-1"                            },
10347   { "game.panel.conveyor_belt_1_switch.tile_size",      "16"                            },
10348   { "game.panel.conveyor_belt_1_switch.draw_masked",    "false"                         },
10349   { "game.panel.conveyor_belt_1_switch.draw_order",     "0"                             },
10350   { "game.panel.conveyor_belt_1_switch.class",          "none"                          },
10351   { "game.panel.conveyor_belt_1_switch.style",          "none"                          },
10352   { "game.panel.conveyor_belt_2.x",                     "-1"                            },
10353   { "game.panel.conveyor_belt_2.y",                     "-1"                            },
10354   { "game.panel.conveyor_belt_2.tile_size",             "16"                            },
10355   { "game.panel.conveyor_belt_2.draw_masked",           "false"                         },
10356   { "game.panel.conveyor_belt_2.draw_order",            "0"                             },
10357   { "game.panel.conveyor_belt_2.class",                 "none"                          },
10358   { "game.panel.conveyor_belt_2.style",                 "none"                          },
10359   { "game.panel.conveyor_belt_2_switch.x",              "-1"                            },
10360   { "game.panel.conveyor_belt_2_switch.y",              "-1"                            },
10361   { "game.panel.conveyor_belt_2_switch.tile_size",      "16"                            },
10362   { "game.panel.conveyor_belt_2_switch.draw_masked",    "false"                         },
10363   { "game.panel.conveyor_belt_2_switch.draw_order",     "0"                             },
10364   { "game.panel.conveyor_belt_2_switch.class",          "none"                          },
10365   { "game.panel.conveyor_belt_2_switch.style",          "none"                          },
10366   { "game.panel.conveyor_belt_3.x",                     "-1"                            },
10367   { "game.panel.conveyor_belt_3.y",                     "-1"                            },
10368   { "game.panel.conveyor_belt_3.tile_size",             "16"                            },
10369   { "game.panel.conveyor_belt_3.draw_masked",           "false"                         },
10370   { "game.panel.conveyor_belt_3.draw_order",            "0"                             },
10371   { "game.panel.conveyor_belt_3.class",                 "none"                          },
10372   { "game.panel.conveyor_belt_3.style",                 "none"                          },
10373   { "game.panel.conveyor_belt_3_switch.x",              "-1"                            },
10374   { "game.panel.conveyor_belt_3_switch.y",              "-1"                            },
10375   { "game.panel.conveyor_belt_3_switch.tile_size",      "16"                            },
10376   { "game.panel.conveyor_belt_3_switch.draw_masked",    "false"                         },
10377   { "game.panel.conveyor_belt_3_switch.draw_order",     "0"                             },
10378   { "game.panel.conveyor_belt_3_switch.class",          "none"                          },
10379   { "game.panel.conveyor_belt_3_switch.style",          "none"                          },
10380   { "game.panel.conveyor_belt_4.x",                     "-1"                            },
10381   { "game.panel.conveyor_belt_4.y",                     "-1"                            },
10382   { "game.panel.conveyor_belt_4.tile_size",             "16"                            },
10383   { "game.panel.conveyor_belt_4.draw_masked",           "false"                         },
10384   { "game.panel.conveyor_belt_4.draw_order",            "0"                             },
10385   { "game.panel.conveyor_belt_4.class",                 "none"                          },
10386   { "game.panel.conveyor_belt_4.style",                 "none"                          },
10387   { "game.panel.conveyor_belt_4_switch.x",              "-1"                            },
10388   { "game.panel.conveyor_belt_4_switch.y",              "-1"                            },
10389   { "game.panel.conveyor_belt_4_switch.tile_size",      "16"                            },
10390   { "game.panel.conveyor_belt_4_switch.draw_masked",    "false"                         },
10391   { "game.panel.conveyor_belt_4_switch.draw_order",     "0"                             },
10392   { "game.panel.conveyor_belt_4_switch.class",          "none"                          },
10393   { "game.panel.conveyor_belt_4_switch.style",          "none"                          },
10394
10395   { "game.panel.magic_wall.x",                          "-1"                            },
10396   { "game.panel.magic_wall.y",                          "-1"                            },
10397   { "game.panel.magic_wall.tile_size",                  "16"                            },
10398   { "game.panel.magic_wall.draw_masked",                "false"                         },
10399   { "game.panel.magic_wall.draw_order",                 "0"                             },
10400   { "game.panel.magic_wall.class",                      "none"                          },
10401   { "game.panel.magic_wall.style",                      "none"                          },
10402   { "game.panel.magic_wall_time.x",                     "-1"                            },
10403   { "game.panel.magic_wall_time.y",                     "-1"                            },
10404   { "game.panel.magic_wall_time.align",                 "left"                          },
10405   { "game.panel.magic_wall_time.valign",                "top"                           },
10406   { "game.panel.magic_wall_time.digits",                "-1"                            },
10407   { "game.panel.magic_wall_time.font",                  "font.text_2"                   },
10408   { "game.panel.magic_wall_time.draw_masked",           "true"                          },
10409   { "game.panel.magic_wall_time.draw_order",            "0"                             },
10410   { "game.panel.magic_wall_time.class",                 "none"                          },
10411   { "game.panel.magic_wall_time.style",                 "none"                          },
10412
10413   { "game.panel.gravity_state.x",                       "-1"                            },
10414   { "game.panel.gravity_state.y",                       "-1"                            },
10415   { "game.panel.gravity_state.align",                   "left"                          },
10416   { "game.panel.gravity_state.valign",                  "top"                           },
10417   { "game.panel.gravity_state.chars",                   "-1"                            },
10418   { "game.panel.gravity_state.font",                    "font.text_1"                   },
10419   { "game.panel.gravity_state.font_active",             "font.text_2"                   },
10420   { "game.panel.gravity_state.draw_masked",             "true"                          },
10421   { "game.panel.gravity_state.draw_order",              "0"                             },
10422   { "game.panel.gravity_state.class",                   "none"                          },
10423   { "game.panel.gravity_state.style",                   "none"                          },
10424
10425   { "game.panel.graphic_1.x",                           "-1"                            },
10426   { "game.panel.graphic_1.y",                           "-1"                            },
10427   { "game.panel.graphic_1.draw_masked",                 "true"                          },
10428   { "game.panel.graphic_1.draw_order",                  "0"                             },
10429   { "game.panel.graphic_1.class",                       "none"                          },
10430   { "game.panel.graphic_1.style",                       "none"                          },
10431   { "game.panel.graphic_2.x",                           "-1"                            },
10432   { "game.panel.graphic_2.y",                           "-1"                            },
10433   { "game.panel.graphic_2.draw_masked",                 "true"                          },
10434   { "game.panel.graphic_2.draw_order",                  "0"                             },
10435   { "game.panel.graphic_2.class",                       "none"                          },
10436   { "game.panel.graphic_2.style",                       "none"                          },
10437   { "game.panel.graphic_3.x",                           "-1"                            },
10438   { "game.panel.graphic_3.y",                           "-1"                            },
10439   { "game.panel.graphic_3.draw_masked",                 "true"                          },
10440   { "game.panel.graphic_3.draw_order",                  "0"                             },
10441   { "game.panel.graphic_3.class",                       "none"                          },
10442   { "game.panel.graphic_3.style",                       "none"                          },
10443   { "game.panel.graphic_4.x",                           "-1"                            },
10444   { "game.panel.graphic_4.y",                           "-1"                            },
10445   { "game.panel.graphic_4.draw_masked",                 "true"                          },
10446   { "game.panel.graphic_4.draw_order",                  "0"                             },
10447   { "game.panel.graphic_4.class",                       "none"                          },
10448   { "game.panel.graphic_4.style",                       "none"                          },
10449   { "game.panel.graphic_5.x",                           "-1"                            },
10450   { "game.panel.graphic_5.y",                           "-1"                            },
10451   { "game.panel.graphic_5.draw_masked",                 "true"                          },
10452   { "game.panel.graphic_5.draw_order",                  "0"                             },
10453   { "game.panel.graphic_5.class",                       "none"                          },
10454   { "game.panel.graphic_5.style",                       "none"                          },
10455   { "game.panel.graphic_6.x",                           "-1"                            },
10456   { "game.panel.graphic_6.y",                           "-1"                            },
10457   { "game.panel.graphic_6.draw_masked",                 "true"                          },
10458   { "game.panel.graphic_6.draw_order",                  "0"                             },
10459   { "game.panel.graphic_6.class",                       "none"                          },
10460   { "game.panel.graphic_6.style",                       "none"                          },
10461   { "game.panel.graphic_7.x",                           "-1"                            },
10462   { "game.panel.graphic_7.y",                           "-1"                            },
10463   { "game.panel.graphic_7.draw_masked",                 "true"                          },
10464   { "game.panel.graphic_7.draw_order",                  "0"                             },
10465   { "game.panel.graphic_7.class",                       "none"                          },
10466   { "game.panel.graphic_7.style",                       "none"                          },
10467   { "game.panel.graphic_8.x",                           "-1"                            },
10468   { "game.panel.graphic_8.y",                           "-1"                            },
10469   { "game.panel.graphic_8.draw_masked",                 "true"                          },
10470   { "game.panel.graphic_8.draw_order",                  "0"                             },
10471   { "game.panel.graphic_8.class",                       "none"                          },
10472   { "game.panel.graphic_8.style",                       "none"                          },
10473
10474   { "game.panel.element_1.x",                           "-1"                            },
10475   { "game.panel.element_1.y",                           "-1"                            },
10476   { "game.panel.element_1.tile_size",                   "16"                            },
10477   { "game.panel.element_1.element",                     "empty_space"                   },
10478   { "game.panel.element_1.draw_masked",                 "false"                         },
10479   { "game.panel.element_1.draw_order",                  "0"                             },
10480   { "game.panel.element_1.class",                       "none"                          },
10481   { "game.panel.element_1.style",                       "none"                          },
10482   { "game.panel.element_1_count.x",                     "-1"                            },
10483   { "game.panel.element_1_count.y",                     "-1"                            },
10484   { "game.panel.element_1_count.align",                 "left"                          },
10485   { "game.panel.element_1_count.valign",                "top"                           },
10486   { "game.panel.element_1_count.digits",                "-1"                            },
10487   { "game.panel.element_1_count.font",                  "font.text_2"                   },
10488   { "game.panel.element_1_count.element",               "empty_space"                   },
10489   { "game.panel.element_1_count.draw_masked",           "true"                          },
10490   { "game.panel.element_1_count.draw_order",            "0"                             },
10491   { "game.panel.element_1_count.class",                 "none"                          },
10492   { "game.panel.element_1_count.style",                 "none"                          },
10493   { "game.panel.element_2.x",                           "-1"                            },
10494   { "game.panel.element_2.y",                           "-1"                            },
10495   { "game.panel.element_2.tile_size",                   "16"                            },
10496   { "game.panel.element_2.element",                     "empty_space"                   },
10497   { "game.panel.element_2.draw_masked",                 "false"                         },
10498   { "game.panel.element_2.draw_order",                  "0"                             },
10499   { "game.panel.element_2.class",                       "none"                          },
10500   { "game.panel.element_2.style",                       "none"                          },
10501   { "game.panel.element_2_count.x",                     "-1"                            },
10502   { "game.panel.element_2_count.y",                     "-1"                            },
10503   { "game.panel.element_2_count.align",                 "left"                          },
10504   { "game.panel.element_2_count.valign",                "top"                           },
10505   { "game.panel.element_2_count.digits",                "-1"                            },
10506   { "game.panel.element_2_count.font",                  "font.text_2"                   },
10507   { "game.panel.element_2_count.element",               "empty_space"                   },
10508   { "game.panel.element_2_count.draw_masked",           "true"                          },
10509   { "game.panel.element_2_count.draw_order",            "0"                             },
10510   { "game.panel.element_2_count.class",                 "none"                          },
10511   { "game.panel.element_2_count.style",                 "none"                          },
10512   { "game.panel.element_3.x",                           "-1"                            },
10513   { "game.panel.element_3.y",                           "-1"                            },
10514   { "game.panel.element_3.tile_size",                   "16"                            },
10515   { "game.panel.element_3.element",                     "empty_space"                   },
10516   { "game.panel.element_3.draw_masked",                 "false"                         },
10517   { "game.panel.element_3.draw_order",                  "0"                             },
10518   { "game.panel.element_3.class",                       "none"                          },
10519   { "game.panel.element_3.style",                       "none"                          },
10520   { "game.panel.element_3_count.x",                     "-1"                            },
10521   { "game.panel.element_3_count.y",                     "-1"                            },
10522   { "game.panel.element_3_count.align",                 "left"                          },
10523   { "game.panel.element_3_count.valign",                "top"                           },
10524   { "game.panel.element_3_count.digits",                "-1"                            },
10525   { "game.panel.element_3_count.font",                  "font.text_2"                   },
10526   { "game.panel.element_3_count.element",               "empty_space"                   },
10527   { "game.panel.element_3_count.draw_masked",           "true"                          },
10528   { "game.panel.element_3_count.draw_order",            "0"                             },
10529   { "game.panel.element_3_count.class",                 "none"                          },
10530   { "game.panel.element_3_count.style",                 "none"                          },
10531   { "game.panel.element_4.x",                           "-1"                            },
10532   { "game.panel.element_4.y",                           "-1"                            },
10533   { "game.panel.element_4.tile_size",                   "16"                            },
10534   { "game.panel.element_4.element",                     "empty_space"                   },
10535   { "game.panel.element_4.draw_masked",                 "false"                         },
10536   { "game.panel.element_4.draw_order",                  "0"                             },
10537   { "game.panel.element_4.class",                       "none"                          },
10538   { "game.panel.element_4.style",                       "none"                          },
10539   { "game.panel.element_4_count.x",                     "-1"                            },
10540   { "game.panel.element_4_count.y",                     "-1"                            },
10541   { "game.panel.element_4_count.align",                 "left"                          },
10542   { "game.panel.element_4_count.valign",                "top"                           },
10543   { "game.panel.element_4_count.digits",                "-1"                            },
10544   { "game.panel.element_4_count.font",                  "font.text_2"                   },
10545   { "game.panel.element_4_count.element",               "empty_space"                   },
10546   { "game.panel.element_4_count.draw_masked",           "true"                          },
10547   { "game.panel.element_4_count.draw_order",            "0"                             },
10548   { "game.panel.element_4_count.class",                 "none"                          },
10549   { "game.panel.element_4_count.style",                 "none"                          },
10550   { "game.panel.element_5.x",                           "-1"                            },
10551   { "game.panel.element_5.y",                           "-1"                            },
10552   { "game.panel.element_5.tile_size",                   "16"                            },
10553   { "game.panel.element_5.element",                     "empty_space"                   },
10554   { "game.panel.element_5.draw_masked",                 "false"                         },
10555   { "game.panel.element_5.draw_order",                  "0"                             },
10556   { "game.panel.element_5.class",                       "none"                          },
10557   { "game.panel.element_5.style",                       "none"                          },
10558   { "game.panel.element_5_count.x",                     "-1"                            },
10559   { "game.panel.element_5_count.y",                     "-1"                            },
10560   { "game.panel.element_5_count.align",                 "left"                          },
10561   { "game.panel.element_5_count.valign",                "top"                           },
10562   { "game.panel.element_5_count.digits",                "-1"                            },
10563   { "game.panel.element_5_count.font",                  "font.text_2"                   },
10564   { "game.panel.element_5_count.element",               "empty_space"                   },
10565   { "game.panel.element_5_count.draw_masked",           "true"                          },
10566   { "game.panel.element_5_count.draw_order",            "0"                             },
10567   { "game.panel.element_5_count.class",                 "none"                          },
10568   { "game.panel.element_5_count.style",                 "none"                          },
10569   { "game.panel.element_6.x",                           "-1"                            },
10570   { "game.panel.element_6.y",                           "-1"                            },
10571   { "game.panel.element_6.tile_size",                   "16"                            },
10572   { "game.panel.element_6.element",                     "empty_space"                   },
10573   { "game.panel.element_6.draw_masked",                 "false"                         },
10574   { "game.panel.element_6.draw_order",                  "0"                             },
10575   { "game.panel.element_6.class",                       "none"                          },
10576   { "game.panel.element_6.style",                       "none"                          },
10577   { "game.panel.element_6_count.x",                     "-1"                            },
10578   { "game.panel.element_6_count.y",                     "-1"                            },
10579   { "game.panel.element_6_count.align",                 "left"                          },
10580   { "game.panel.element_6_count.valign",                "top"                           },
10581   { "game.panel.element_6_count.digits",                "-1"                            },
10582   { "game.panel.element_6_count.font",                  "font.text_2"                   },
10583   { "game.panel.element_6_count.element",               "empty_space"                   },
10584   { "game.panel.element_6_count.draw_masked",           "true"                          },
10585   { "game.panel.element_6_count.draw_order",            "0"                             },
10586   { "game.panel.element_6_count.class",                 "none"                          },
10587   { "game.panel.element_6_count.style",                 "none"                          },
10588   { "game.panel.element_7.x",                           "-1"                            },
10589   { "game.panel.element_7.y",                           "-1"                            },
10590   { "game.panel.element_7.tile_size",                   "16"                            },
10591   { "game.panel.element_7.element",                     "empty_space"                   },
10592   { "game.panel.element_7.draw_masked",                 "false"                         },
10593   { "game.panel.element_7.draw_order",                  "0"                             },
10594   { "game.panel.element_7.class",                       "none"                          },
10595   { "game.panel.element_7.style",                       "none"                          },
10596   { "game.panel.element_7_count.x",                     "-1"                            },
10597   { "game.panel.element_7_count.y",                     "-1"                            },
10598   { "game.panel.element_7_count.align",                 "left"                          },
10599   { "game.panel.element_7_count.valign",                "top"                           },
10600   { "game.panel.element_7_count.digits",                "-1"                            },
10601   { "game.panel.element_7_count.font",                  "font.text_2"                   },
10602   { "game.panel.element_7_count.element",               "empty_space"                   },
10603   { "game.panel.element_7_count.draw_masked",           "true"                          },
10604   { "game.panel.element_7_count.draw_order",            "0"                             },
10605   { "game.panel.element_7_count.class",                 "none"                          },
10606   { "game.panel.element_7_count.style",                 "none"                          },
10607   { "game.panel.element_8.x",                           "-1"                            },
10608   { "game.panel.element_8.y",                           "-1"                            },
10609   { "game.panel.element_8.tile_size",                   "16"                            },
10610   { "game.panel.element_8.element",                     "empty_space"                   },
10611   { "game.panel.element_8.draw_masked",                 "false"                         },
10612   { "game.panel.element_8.draw_order",                  "0"                             },
10613   { "game.panel.element_8.class",                       "none"                          },
10614   { "game.panel.element_8.style",                       "none"                          },
10615   { "game.panel.element_8_count.x",                     "-1"                            },
10616   { "game.panel.element_8_count.y",                     "-1"                            },
10617   { "game.panel.element_8_count.align",                 "left"                          },
10618   { "game.panel.element_8_count.valign",                "top"                           },
10619   { "game.panel.element_8_count.digits",                "-1"                            },
10620   { "game.panel.element_8_count.font",                  "font.text_2"                   },
10621   { "game.panel.element_8_count.element",               "empty_space"                   },
10622   { "game.panel.element_8_count.draw_masked",           "true"                          },
10623   { "game.panel.element_8_count.draw_order",            "0"                             },
10624   { "game.panel.element_8_count.class",                 "none"                          },
10625   { "game.panel.element_8_count.style",                 "none"                          },
10626
10627   { "game.panel.ce_score_1.x",                          "-1"                            },
10628   { "game.panel.ce_score_1.y",                          "-1"                            },
10629   { "game.panel.ce_score_1.align",                      "left"                          },
10630   { "game.panel.ce_score_1.valign",                     "top"                           },
10631   { "game.panel.ce_score_1.digits",                     "-1"                            },
10632   { "game.panel.ce_score_1.font",                       "font.text_2"                   },
10633   { "game.panel.ce_score_1.element",                    "empty_space"                   },
10634   { "game.panel.ce_score_1.draw_masked",                "true"                          },
10635   { "game.panel.ce_score_1.draw_order",                 "0"                             },
10636   { "game.panel.ce_score_1.class",                      "none"                          },
10637   { "game.panel.ce_score_1.style",                      "none"                          },
10638   { "game.panel.ce_score_1_element.x",                  "-1"                            },
10639   { "game.panel.ce_score_1_element.y",                  "-1"                            },
10640   { "game.panel.ce_score_1_element.tile_size",          "16"                            },
10641   { "game.panel.ce_score_1_element.element",            "empty_space"                   },
10642   { "game.panel.ce_score_1_element.draw_masked",        "false"                         },
10643   { "game.panel.ce_score_1_element.draw_order",         "0"                             },
10644   { "game.panel.ce_score_1_element.class",              "none"                          },
10645   { "game.panel.ce_score_1_element.style",              "none"                          },
10646   { "game.panel.ce_score_2.x",                          "-1"                            },
10647   { "game.panel.ce_score_2.y",                          "-1"                            },
10648   { "game.panel.ce_score_2.align",                      "left"                          },
10649   { "game.panel.ce_score_2.valign",                     "top"                           },
10650   { "game.panel.ce_score_2.digits",                     "-1"                            },
10651   { "game.panel.ce_score_2.font",                       "font.text_2"                   },
10652   { "game.panel.ce_score_2.element",                    "empty_space"                   },
10653   { "game.panel.ce_score_2.draw_masked",                "true"                          },
10654   { "game.panel.ce_score_2.draw_order",                 "0"                             },
10655   { "game.panel.ce_score_2.class",                      "none"                          },
10656   { "game.panel.ce_score_2.style",                      "none"                          },
10657   { "game.panel.ce_score_2_element.x",                  "-1"                            },
10658   { "game.panel.ce_score_2_element.y",                  "-1"                            },
10659   { "game.panel.ce_score_2_element.tile_size",          "16"                            },
10660   { "game.panel.ce_score_2_element.element",            "empty_space"                   },
10661   { "game.panel.ce_score_2_element.draw_masked",        "false"                         },
10662   { "game.panel.ce_score_2_element.draw_order",         "0"                             },
10663   { "game.panel.ce_score_2_element.class",              "none"                          },
10664   { "game.panel.ce_score_2_element.style",              "none"                          },
10665   { "game.panel.ce_score_3.x",                          "-1"                            },
10666   { "game.panel.ce_score_3.y",                          "-1"                            },
10667   { "game.panel.ce_score_3.align",                      "left"                          },
10668   { "game.panel.ce_score_3.valign",                     "top"                           },
10669   { "game.panel.ce_score_3.digits",                     "-1"                            },
10670   { "game.panel.ce_score_3.font",                       "font.text_2"                   },
10671   { "game.panel.ce_score_3.element",                    "empty_space"                   },
10672   { "game.panel.ce_score_3.draw_masked",                "true"                          },
10673   { "game.panel.ce_score_3.draw_order",                 "0"                             },
10674   { "game.panel.ce_score_3.class",                      "none"                          },
10675   { "game.panel.ce_score_3.style",                      "none"                          },
10676   { "game.panel.ce_score_3_element.x",                  "-1"                            },
10677   { "game.panel.ce_score_3_element.y",                  "-1"                            },
10678   { "game.panel.ce_score_3_element.tile_size",          "16"                            },
10679   { "game.panel.ce_score_3_element.element",            "empty_space"                   },
10680   { "game.panel.ce_score_3_element.draw_masked",        "false"                         },
10681   { "game.panel.ce_score_3_element.draw_order",         "0"                             },
10682   { "game.panel.ce_score_3_element.class",              "none"                          },
10683   { "game.panel.ce_score_3_element.style",              "none"                          },
10684   { "game.panel.ce_score_4.x",                          "-1"                            },
10685   { "game.panel.ce_score_4.y",                          "-1"                            },
10686   { "game.panel.ce_score_4.align",                      "left"                          },
10687   { "game.panel.ce_score_4.valign",                     "top"                           },
10688   { "game.panel.ce_score_4.digits",                     "-1"                            },
10689   { "game.panel.ce_score_4.font",                       "font.text_2"                   },
10690   { "game.panel.ce_score_4.element",                    "empty_space"                   },
10691   { "game.panel.ce_score_4.draw_masked",                "true"                          },
10692   { "game.panel.ce_score_4.draw_order",                 "0"                             },
10693   { "game.panel.ce_score_4.class",                      "none"                          },
10694   { "game.panel.ce_score_4.style",                      "none"                          },
10695   { "game.panel.ce_score_4_element.x",                  "-1"                            },
10696   { "game.panel.ce_score_4_element.y",                  "-1"                            },
10697   { "game.panel.ce_score_4_element.tile_size",          "16"                            },
10698   { "game.panel.ce_score_4_element.element",            "empty_space"                   },
10699   { "game.panel.ce_score_4_element.draw_masked",        "false"                         },
10700   { "game.panel.ce_score_4_element.draw_order",         "0"                             },
10701   { "game.panel.ce_score_4_element.class",              "none"                          },
10702   { "game.panel.ce_score_4_element.style",              "none"                          },
10703   { "game.panel.ce_score_5.x",                          "-1"                            },
10704   { "game.panel.ce_score_5.y",                          "-1"                            },
10705   { "game.panel.ce_score_5.align",                      "left"                          },
10706   { "game.panel.ce_score_5.valign",                     "top"                           },
10707   { "game.panel.ce_score_5.digits",                     "-1"                            },
10708   { "game.panel.ce_score_5.font",                       "font.text_2"                   },
10709   { "game.panel.ce_score_5.element",                    "empty_space"                   },
10710   { "game.panel.ce_score_5.draw_masked",                "true"                          },
10711   { "game.panel.ce_score_5.draw_order",                 "0"                             },
10712   { "game.panel.ce_score_5.class",                      "none"                          },
10713   { "game.panel.ce_score_5.style",                      "none"                          },
10714   { "game.panel.ce_score_5_element.x",                  "-1"                            },
10715   { "game.panel.ce_score_5_element.y",                  "-1"                            },
10716   { "game.panel.ce_score_5_element.tile_size",          "16"                            },
10717   { "game.panel.ce_score_5_element.element",            "empty_space"                   },
10718   { "game.panel.ce_score_5_element.draw_masked",        "false"                         },
10719   { "game.panel.ce_score_5_element.draw_order",         "0"                             },
10720   { "game.panel.ce_score_5_element.class",              "none"                          },
10721   { "game.panel.ce_score_5_element.style",              "none"                          },
10722   { "game.panel.ce_score_6.x",                          "-1"                            },
10723   { "game.panel.ce_score_6.y",                          "-1"                            },
10724   { "game.panel.ce_score_6.align",                      "left"                          },
10725   { "game.panel.ce_score_6.valign",                     "top"                           },
10726   { "game.panel.ce_score_6.digits",                     "-1"                            },
10727   { "game.panel.ce_score_6.font",                       "font.text_2"                   },
10728   { "game.panel.ce_score_6.element",                    "empty_space"                   },
10729   { "game.panel.ce_score_6.draw_masked",                "true"                          },
10730   { "game.panel.ce_score_6.draw_order",                 "0"                             },
10731   { "game.panel.ce_score_6.class",                      "none"                          },
10732   { "game.panel.ce_score_6.style",                      "none"                          },
10733   { "game.panel.ce_score_6_element.x",                  "-1"                            },
10734   { "game.panel.ce_score_6_element.y",                  "-1"                            },
10735   { "game.panel.ce_score_6_element.tile_size",          "16"                            },
10736   { "game.panel.ce_score_6_element.element",            "empty_space"                   },
10737   { "game.panel.ce_score_6_element.draw_masked",        "false"                         },
10738   { "game.panel.ce_score_6_element.draw_order",         "0"                             },
10739   { "game.panel.ce_score_6_element.class",              "none"                          },
10740   { "game.panel.ce_score_6_element.style",              "none"                          },
10741   { "game.panel.ce_score_7.x",                          "-1"                            },
10742   { "game.panel.ce_score_7.y",                          "-1"                            },
10743   { "game.panel.ce_score_7.align",                      "left"                          },
10744   { "game.panel.ce_score_7.valign",                     "top"                           },
10745   { "game.panel.ce_score_7.digits",                     "-1"                            },
10746   { "game.panel.ce_score_7.font",                       "font.text_2"                   },
10747   { "game.panel.ce_score_7.element",                    "empty_space"                   },
10748   { "game.panel.ce_score_7.draw_masked",                "true"                          },
10749   { "game.panel.ce_score_7.draw_order",                 "0"                             },
10750   { "game.panel.ce_score_7.class",                      "none"                          },
10751   { "game.panel.ce_score_7.style",                      "none"                          },
10752   { "game.panel.ce_score_7_element.x",                  "-1"                            },
10753   { "game.panel.ce_score_7_element.y",                  "-1"                            },
10754   { "game.panel.ce_score_7_element.tile_size",          "16"                            },
10755   { "game.panel.ce_score_7_element.element",            "empty_space"                   },
10756   { "game.panel.ce_score_7_element.draw_masked",        "false"                         },
10757   { "game.panel.ce_score_7_element.draw_order",         "0"                             },
10758   { "game.panel.ce_score_7_element.class",              "none"                          },
10759   { "game.panel.ce_score_7_element.style",              "none"                          },
10760   { "game.panel.ce_score_8.x",                          "-1"                            },
10761   { "game.panel.ce_score_8.y",                          "-1"                            },
10762   { "game.panel.ce_score_8.align",                      "left"                          },
10763   { "game.panel.ce_score_8.valign",                     "top"                           },
10764   { "game.panel.ce_score_8.digits",                     "-1"                            },
10765   { "game.panel.ce_score_8.font",                       "font.text_2"                   },
10766   { "game.panel.ce_score_8.element",                    "empty_space"                   },
10767   { "game.panel.ce_score_8.draw_masked",                "true"                          },
10768   { "game.panel.ce_score_8.draw_order",                 "0"                             },
10769   { "game.panel.ce_score_8.class",                      "none"                          },
10770   { "game.panel.ce_score_8.style",                      "none"                          },
10771   { "game.panel.ce_score_8_element.x",                  "-1"                            },
10772   { "game.panel.ce_score_8_element.y",                  "-1"                            },
10773   { "game.panel.ce_score_8_element.tile_size",          "16"                            },
10774   { "game.panel.ce_score_8_element.element",            "empty_space"                   },
10775   { "game.panel.ce_score_8_element.draw_masked",        "false"                         },
10776   { "game.panel.ce_score_8_element.draw_order",         "0"                             },
10777   { "game.panel.ce_score_8_element.class",              "none"                          },
10778   { "game.panel.ce_score_8_element.style",              "none"                          },
10779
10780   { "game.panel.player_name.x",                         "-1"                            },
10781   { "game.panel.player_name.y",                         "-1"                            },
10782   { "game.panel.player_name.align",                     "left"                          },
10783   { "game.panel.player_name.valign",                    "top"                           },
10784   { "game.panel.player_name.chars",                     "-1"                            },
10785   { "game.panel.player_name.font",                      "font.text_2"                   },
10786   { "game.panel.player_name.draw_masked",               "true"                          },
10787   { "game.panel.player_name.draw_order",                "0"                             },
10788   { "game.panel.player_name.class",                     "none"                          },
10789   { "game.panel.player_name.style",                     "none"                          },
10790
10791   { "game.panel.level_name.x",                          "-1"                            },
10792   { "game.panel.level_name.y",                          "-1"                            },
10793   { "game.panel.level_name.align",                      "left"                          },
10794   { "game.panel.level_name.valign",                     "top"                           },
10795   { "game.panel.level_name.chars",                      "-1"                            },
10796   { "game.panel.level_name.font",                       "font.text_2"                   },
10797   { "game.panel.level_name.draw_masked",                "true"                          },
10798   { "game.panel.level_name.draw_order",                 "0"                             },
10799   { "game.panel.level_name.class",                      "none"                          },
10800   { "game.panel.level_name.style",                      "none"                          },
10801   { "game.panel.level_author.x",                        "-1"                            },
10802   { "game.panel.level_author.y",                        "-1"                            },
10803   { "game.panel.level_author.align",                    "left"                          },
10804   { "game.panel.level_author.valign",                   "top"                           },
10805   { "game.panel.level_author.chars",                    "-1"                            },
10806   { "game.panel.level_author.font",                     "font.text_2"                   },
10807   { "game.panel.level_author.draw_masked",              "true"                          },
10808   { "game.panel.level_author.draw_order",               "0"                             },
10809   { "game.panel.level_author.class",                    "none"                          },
10810   { "game.panel.level_author.style",                    "none"                          },
10811
10812   { "game.button.stop.x",                               "5"                             },
10813   { "game.button.stop.y",                               "215"                           },
10814   { "game.button.pause.x",                              "35"                            },
10815   { "game.button.pause.y",                              "215"                           },
10816   { "game.button.play.x",                               "65"                            },
10817   { "game.button.play.y",                               "215"                           },
10818   { "game.button.undo.x",                               "-1"                            },
10819   { "game.button.undo.y",                               "-1"                            },
10820   { "game.button.redo.x",                               "-1"                            },
10821   { "game.button.redo.y",                               "-1"                            },
10822   { "game.button.save.x",                               "-1"                            },
10823   { "game.button.save.y",                               "-1"                            },
10824   { "game.button.pause2.x",                             "-1"                            },
10825   { "game.button.pause2.y",                             "-1"                            },
10826   { "game.button.load.x",                               "-1"                            },
10827   { "game.button.load.y",                               "-1"                            },
10828   { "game.button.restart.x",                            "-1"                            },
10829   { "game.button.restart.y",                            "-1"                            },
10830   { "game.button.sound_music.x",                        "5"                             },
10831   { "game.button.sound_music.y",                        "245"                           },
10832   { "game.button.sound_loops.x",                        "35"                            },
10833   { "game.button.sound_loops.y",                        "245"                           },
10834   { "game.button.sound_simple.x",                       "65"                            },
10835   { "game.button.sound_simple.y",                       "245"                           },
10836
10837   { "game.button.panel_stop.x",                         "-1"                            },
10838   { "game.button.panel_stop.y",                         "-1"                            },
10839   { "game.button.panel_pause.x",                        "-1"                            },
10840   { "game.button.panel_pause.y",                        "-1"                            },
10841   { "game.button.panel_play.x",                         "-1"                            },
10842   { "game.button.panel_play.y",                         "-1"                            },
10843   { "game.button.panel_restart.x",                      "-1"                            },
10844   { "game.button.panel_restart.y",                      "-1"                            },
10845   { "game.button.panel_sound_music.x",                  "-1"                            },
10846   { "game.button.panel_sound_music.y",                  "-1"                            },
10847   { "game.button.panel_sound_loops.x",                  "-1"                            },
10848   { "game.button.panel_sound_loops.y",                  "-1"                            },
10849   { "game.button.panel_sound_simple.x",                 "-1"                            },
10850   { "game.button.panel_sound_simple.y",                 "-1"                            },
10851
10852   { "game.button.touch_stop.x",                         "0"                             },
10853   { "game.button.touch_stop.y",                         "0"                             },
10854   { "game.button.touch_pause.x",                        "-60"                           },
10855   { "game.button.touch_pause.y",                        "0"                             },
10856   { "game.button.touch_restart.x",                      "-1"                            },
10857   { "game.button.touch_restart.y",                      "-1"                            },
10858
10859   { "tape.button.eject.x",                              "5"                             },
10860   { "tape.button.eject.y",                              "77"                            },
10861   { "tape.button.stop.x",                               "23"                            },
10862   { "tape.button.stop.y",                               "77"                            },
10863   { "tape.button.pause.x",                              "41"                            },
10864   { "tape.button.pause.y",                              "77"                            },
10865   { "tape.button.record.x",                             "59"                            },
10866   { "tape.button.record.y",                             "77"                            },
10867   { "tape.button.play.x",                               "77"                            },
10868   { "tape.button.play.y",                               "77"                            },
10869
10870   { "tape.button.insert_solution.x",                    "-1"                            },
10871   { "tape.button.insert_solution.y",                    "-1"                            },
10872   { "tape.button.play_solution.x",                      "-1"                            },
10873   { "tape.button.play_solution.y",                      "-1"                            },
10874
10875   { "tape.symbol.eject.x",                              "-1"                            },
10876   { "tape.symbol.eject.y",                              "-1"                            },
10877   { "tape.symbol.stop.x",                               "-1"                            },
10878   { "tape.symbol.stop.y",                               "-1"                            },
10879   { "tape.symbol.pause.x",                              "40"                            },
10880   { "tape.symbol.pause.y",                              "41"                            },
10881   { "tape.symbol.record.x",                             "25"                            },
10882   { "tape.symbol.record.y",                             "41"                            },
10883   { "tape.symbol.play.x",                               "57"                            },
10884   { "tape.symbol.play.y",                               "41"                            },
10885   { "tape.symbol.fast_forward.x",                       "39"                            },
10886   { "tape.symbol.fast_forward.y",                       "42"                            },
10887   { "tape.symbol.warp_forward.x",                       "39"                            },
10888   { "tape.symbol.warp_forward.y",                       "42"                            },
10889   { "tape.symbol.warp_forward_blind.x",                 "39"                            },
10890   { "tape.symbol.warp_forward_blind.y",                 "42"                            },
10891   { "tape.symbol.pause_before_end.x",                   "-1"                            },
10892   { "tape.symbol.pause_before_end.y",                   "-1"                            },
10893   { "tape.symbol.single_step.x",                        "-1"                            },
10894   { "tape.symbol.single_step.y",                        "-1"                            },
10895
10896   { "tape.label.eject.x",                               "-1"                            },
10897   { "tape.label.eject.y",                               "-1"                            },
10898   { "tape.label.stop.x",                                "-1"                            },
10899   { "tape.label.stop.y",                                "-1"                            },
10900   { "tape.label.pause.x",                               "5"                             },
10901   { "tape.label.pause.y",                               "61"                            },
10902   { "tape.label.record.x",                              "5"                             },
10903   { "tape.label.record.y",                              "41"                            },
10904   { "tape.label.play.x",                                "70"                            },
10905   { "tape.label.play.y",                                "41"                            },
10906   { "tape.label.fast_forward.x",                        "5"                             },
10907   { "tape.label.fast_forward.y",                        "42"                            },
10908   { "tape.label.warp_forward.x",                        "5"                             },
10909   { "tape.label.warp_forward.y",                        "42"                            },
10910   { "tape.label.warp_forward_blind.x",                  "5"                             },
10911   { "tape.label.warp_forward_blind.y",                  "42"                            },
10912   { "tape.label.pause_before_end.x",                    "5"                             },
10913   { "tape.label.pause_before_end.y",                    "42"                            },
10914   { "tape.label.single_step.x",                         "57"                            },
10915   { "tape.label.single_step.y",                         "42"                            },
10916
10917   { "tape.label.date.x",                                "5"                             },
10918   { "tape.label.date.y",                                "5"                             },
10919   { "tape.label.time.x",                                "46"                            },
10920   { "tape.label.time.y",                                "55"                            },
10921
10922   { "tape.text.date.x",                                 "7"                             },
10923   { "tape.text.date.y",                                 "19"                            },
10924   { "tape.text.date.align",                             "left"                          },
10925   { "tape.text.date.valign",                            "top"                           },
10926   { "tape.text.date.digits",                            "-1"                            },
10927   { "tape.text.date.xoffset",                           "27"                            },
10928   { "tape.text.date.2nd_xoffset",                       "64"                            },
10929   { "tape.text.date.font",                              "font.tape_recorder"            },
10930   { "tape.text.date.draw_masked",                       "false"                         },
10931
10932   { "tape.text.date_yyyy.x",                            "-1"                            },
10933   { "tape.text.date_yyyy.y",                            "-1"                            },
10934   { "tape.text.date_yyyy.align",                        "left"                          },
10935   { "tape.text.date_yyyy.valign",                       "top"                           },
10936   { "tape.text.date_yyyy.digits",                       "4"                             },
10937   { "tape.text.date_yyyy.font",                         "font.tape_recorder"            },
10938   { "tape.text.date_yyyy.draw_masked",                  "false"                         },
10939   { "tape.text.date_yy.x",                              "-1"                            },
10940   { "tape.text.date_yy.y",                              "-1"                            },
10941   { "tape.text.date_yy.align",                          "left"                          },
10942   { "tape.text.date_yy.valign",                         "top"                           },
10943   { "tape.text.date_yy.digits",                         "2"                             },
10944   { "tape.text.date_yy.font",                           "font.tape_recorder"            },
10945   { "tape.text.date_yy.draw_masked",                    "false"                         },
10946   { "tape.text.date_mon.x",                             "-1"                            },
10947   { "tape.text.date_mon.y",                             "-1"                            },
10948   { "tape.text.date_mon.align",                         "left"                          },
10949   { "tape.text.date_mon.valign",                        "top"                           },
10950   { "tape.text.date_mon.chars",                         "3"                             },
10951   { "tape.text.date_mon.font",                          "font.tape_recorder"            },
10952   { "tape.text.date_mon.draw_masked",                   "false"                         },
10953   { "tape.text.date_mm.x",                              "-1"                            },
10954   { "tape.text.date_mm.y",                              "-1"                            },
10955   { "tape.text.date_mm.align",                          "left"                          },
10956   { "tape.text.date_mm.valign",                         "top"                           },
10957   { "tape.text.date_mm.digits",                         "2"                             },
10958   { "tape.text.date_mm.font",                           "font.tape_recorder"            },
10959   { "tape.text.date_mm.draw_masked",                    "false"                         },
10960   { "tape.text.date_dd.x",                              "-1"                            },
10961   { "tape.text.date_dd.y",                              "-1"                            },
10962   { "tape.text.date_dd.align",                          "left"                          },
10963   { "tape.text.date_dd.valign",                         "top"                           },
10964   { "tape.text.date_dd.digits",                         "2"                             },
10965   { "tape.text.date_dd.font",                           "font.tape_recorder"            },
10966   { "tape.text.date_dd.draw_masked",                    "false"                         },
10967
10968   { "tape.text.time.x",                                 "44"                            },
10969   { "tape.text.time.y",                                 "55"                            },
10970   { "tape.text.time.align",                             "left"                          },
10971   { "tape.text.time.valign",                            "top"                           },
10972   { "tape.text.time.digits",                            "-1"                            },
10973   { "tape.text.time.xoffset",                           "27"                            },
10974   { "tape.text.time.font",                              "font.tape_recorder"            },
10975   { "tape.text.time.draw_masked",                       "false"                         },
10976
10977   { "tape.text.time_hh.x",                              "-1"                            },
10978   { "tape.text.time_hh.y",                              "-1"                            },
10979   { "tape.text.time_hh.align",                          "left"                          },
10980   { "tape.text.time_hh.valign",                         "top"                           },
10981   { "tape.text.time_hh.digits",                         "2"                             },
10982   { "tape.text.time_hh.font",                           "font.tape_recorder"            },
10983   { "tape.text.time_hh.draw_masked",                    "false"                         },
10984   { "tape.text.time_mm.x",                              "-1"                            },
10985   { "tape.text.time_mm.y",                              "-1"                            },
10986   { "tape.text.time_mm.align",                          "left"                          },
10987   { "tape.text.time_mm.valign",                         "top"                           },
10988   { "tape.text.time_mm.digits",                         "2"                             },
10989   { "tape.text.time_mm.font",                           "font.tape_recorder"            },
10990   { "tape.text.time_mm.draw_masked",                    "false"                         },
10991   { "tape.text.time_ss.x",                              "-1"                            },
10992   { "tape.text.time_ss.y",                              "-1"                            },
10993   { "tape.text.time_ss.align",                          "left"                          },
10994   { "tape.text.time_ss.valign",                         "top"                           },
10995   { "tape.text.time_ss.digits",                         "2"                             },
10996   { "tape.text.time_ss.font",                           "font.tape_recorder"            },
10997   { "tape.text.time_ss.draw_masked",                    "false"                         },
10998
10999   { "tape.text.frame.x",                                "-1"                            },
11000   { "tape.text.frame.y",                                "-1"                            },
11001   { "tape.text.frame.align",                            "left"                          },
11002   { "tape.text.frame.valign",                           "top"                           },
11003   { "tape.text.frame.digits",                           "-1"                            },
11004   { "tape.text.frame.font",                             "font.tape_recorder"            },
11005   { "tape.text.frame.draw_masked",                      "false"                         },
11006
11007   { "tape.show_game_buttons",                           "false"                         },
11008
11009   { "editor.button.prev_level.x",                       "5"                             },
11010   { "editor.button.prev_level.y",                       "5"                             },
11011   { "editor.button.next_level.x",                       "79"                            },
11012   { "editor.button.next_level.y",                       "5"                             },
11013
11014   { "editor.button.properties.x",                       "5"                             },
11015   { "editor.button.properties.y",                       "230"                           },
11016
11017   { "editor.button.element_left.x",                     "-1"                            },
11018   { "editor.button.element_left.y",                     "-1"                            },
11019   { "editor.button.element_left.tile_size",             "-1"                            },
11020   { "editor.button.element_middle.x",                   "-1"                            },
11021   { "editor.button.element_middle.y",                   "-1"                            },
11022   { "editor.button.element_middle.tile_size",           "-1"                            },
11023   { "editor.button.element_right.x",                    "-1"                            },
11024   { "editor.button.element_right.y",                    "-1"                            },
11025   { "editor.button.element_right.tile_size",            "-1"                            },
11026
11027   { "editor.button.palette.x",                          "-1"                            },
11028   { "editor.button.palette.y",                          "-1"                            },
11029
11030   { "editor.button.draw_single.x",                      "6"                             },
11031   { "editor.button.draw_single.y",                      "6"                             },
11032   { "editor.button.draw_connected.x",                   "28"                            },
11033   { "editor.button.draw_connected.y",                   "6"                             },
11034   { "editor.button.draw_line.x",                        "50"                            },
11035   { "editor.button.draw_line.y",                        "6"                             },
11036   { "editor.button.draw_arc.x",                         "72"                            },
11037   { "editor.button.draw_arc.y",                         "6"                             },
11038   { "editor.button.draw_rectangle.x",                   "6"                             },
11039   { "editor.button.draw_rectangle.y",                   "28"                            },
11040   { "editor.button.draw_filled_box.x",                  "28"                            },
11041   { "editor.button.draw_filled_box.y",                  "28"                            },
11042   { "editor.button.rotate_up.x",                        "50"                            },
11043   { "editor.button.rotate_up.y",                        "28"                            },
11044   { "editor.button.draw_text.x",                        "72"                            },
11045   { "editor.button.draw_text.y",                        "28"                            },
11046   { "editor.button.flood_fill.x",                       "6"                             },
11047   { "editor.button.flood_fill.y",                       "50"                            },
11048   { "editor.button.rotate_left.x",                      "28"                            },
11049   { "editor.button.rotate_left.y",                      "50"                            },
11050   { "editor.button.zoom_level.x",                       "50"                            },
11051   { "editor.button.zoom_level.y",                       "50"                            },
11052   { "editor.button.rotate_right.x",                     "72"                            },
11053   { "editor.button.rotate_right.y",                     "50"                            },
11054   { "editor.button.draw_random.x",                      "6"                             },
11055   { "editor.button.draw_random.y",                      "72"                            },
11056   { "editor.button.grab_brush.x",                       "28"                            },
11057   { "editor.button.grab_brush.y",                       "72"                            },
11058   { "editor.button.rotate_down.x",                      "50"                            },
11059   { "editor.button.rotate_down.y",                      "72"                            },
11060   { "editor.button.pick_element.x",                     "72"                            },
11061   { "editor.button.pick_element.y",                     "72"                            },
11062
11063   { "editor.button.ce_copy_from.x",                     "28"                            },
11064   { "editor.button.ce_copy_from.y",                     "6"                             },
11065   { "editor.button.ce_copy_to.x",                       "50"                            },
11066   { "editor.button.ce_copy_to.y",                       "6"                             },
11067   { "editor.button.ce_swap.x",                          "72"                            },
11068   { "editor.button.ce_swap.y",                          "6"                             },
11069   { "editor.button.ce_copy.x",                          "6"                             },
11070   { "editor.button.ce_copy.y",                          "72"                            },
11071   { "editor.button.ce_paste.x",                         "28"                            },
11072   { "editor.button.ce_paste.y",                         "72"                            },
11073
11074   { "editor.button.undo.x",                             "5"                             },
11075   { "editor.button.undo.y",                             "99"                            },
11076   { "editor.button.conf.x",                             "35"                            },
11077   { "editor.button.conf.y",                             "99"                            },
11078   { "editor.button.save.x",                             "65"                            },
11079   { "editor.button.save.y",                             "99"                            },
11080   { "editor.button.clear.x",                            "5"                             },
11081   { "editor.button.clear.y",                            "119"                           },
11082   { "editor.button.test.x",                             "35"                            },
11083   { "editor.button.test.y",                             "119"                           },
11084   { "editor.button.exit.x",                             "65"                            },
11085   { "editor.button.exit.y",                             "119"                           },
11086
11087   { "editor.input.level_number.x",                      "29"                            },
11088   { "editor.input.level_number.y",                      "5"                             },
11089
11090   { "editor.palette.x",                                 "5"                             },
11091   { "editor.palette.y",                                 "30"                            },
11092   { "editor.palette.cols",                              "4"                             },
11093   { "editor.palette.rows",                              "10"                            },
11094   { "editor.palette.tile_size",                         "16"                            },
11095   { "editor.palette.show_as_separate_screen",           "false"                         },
11096   { "editor.palette.show_on_element_buttons",           "false"                         },
11097
11098   { "editor.palette.element_left.x",                    "6"                             },
11099   { "editor.palette.element_left.y",                    "258"                           },
11100   { "editor.palette.element_left.tile_size",            "16"                            },
11101   { "editor.palette.element_middle.x",                  "42"                            },
11102   { "editor.palette.element_middle.y",                  "258"                           },
11103   { "editor.palette.element_middle.tile_size",          "16"                            },
11104   { "editor.palette.element_right.x",                   "78"                            },
11105   { "editor.palette.element_right.y",                   "258"                           },
11106   { "editor.palette.element_right.tile_size",           "16"                            },
11107
11108   { "editor.drawingarea.tile_size",                     "16"                            },
11109
11110   { "editor.settings.headline.x",                       "272"                           },
11111   { "editor.settings.headline.y",                       "16"                            },
11112   { "editor.settings.headline.align",                   "center"                        },
11113   { "editor.settings.element_graphic.x",                "24"                            },
11114   { "editor.settings.element_graphic.y",                "64"                            },
11115   { "editor.settings.element_name.x",                   "-1"                            },
11116   { "editor.settings.element_name.y",                   "-1"                            },
11117   { "editor.settings.tabs.x",                           "24"                            },
11118   { "editor.settings.tabs.y",                           "64"                            },
11119   { "editor.settings.tabs.2nd_yoffset",                 "64"                            },
11120   { "editor.settings.tabs.draw_xoffset",                "0"                             },
11121   { "editor.settings.tabs.draw_yoffset",                "8"                             },
11122   { "editor.settings.tooltip.x",                        "-1"                            },
11123   { "editor.settings.tooltip.y",                        "-1"                            },
11124
11125   { "editor.gadget.normal_spacing",                     "4"                             },
11126   { "editor.gadget.small_spacing",                      "2"                             },
11127   { "editor.gadget.tiny_spacing",                       "1"                             },
11128   { "editor.gadget.line_spacing",                       "4"                             },
11129   { "editor.gadget.text_spacing",                       "4"                             },
11130   { "editor.gadget.separator_line.height",              "2"                             },
11131
11132   { "request.button.yes.x",                             "2"                             },
11133   { "request.button.yes.y",                             "250"                           },
11134   { "request.button.no.x",                              "52"                            },
11135   { "request.button.no.y",                              "250"                           },
11136   { "request.button.confirm.x",                         "2"                             },
11137   { "request.button.confirm.y",                         "250"                           },
11138   { "request.button.player_1.x",                        "35"                            },
11139   { "request.button.player_1.y",                        "185"                           },
11140   { "request.button.player_1.draw_player",              "true"                          },
11141   { "request.button.player_1.tile_size",                "16"                            },
11142   { "request.button.player_2.x",                        "65"                            },
11143   { "request.button.player_2.y",                        "215"                           },
11144   { "request.button.player_2.draw_player",              "true"                          },
11145   { "request.button.player_2.tile_size",                "16"                            },
11146   { "request.button.player_3.x",                        "35"                            },
11147   { "request.button.player_3.y",                        "245"                           },
11148   { "request.button.player_3.draw_player",              "true"                          },
11149   { "request.button.player_3.tile_size",                "16"                            },
11150   { "request.button.player_4.x",                        "5"                             },
11151   { "request.button.player_4.y",                        "215"                           },
11152   { "request.button.player_4.draw_player",              "true"                          },
11153   { "request.button.player_4.tile_size",                "16"                            },
11154
11155   { "request.button.touch_yes.x",                       "0"                             },
11156   { "request.button.touch_yes.y",                       "-56"                           },
11157   { "request.button.touch_no.x",                        "-92"                           },
11158   { "request.button.touch_no.y",                        "-56"                           },
11159   { "request.button.touch_confirm.x",                   "0"                             },
11160   { "request.button.touch_confirm.y",                   "-56"                           },
11161
11162   { "request.x",                                        "-1"                            },
11163   { "request.y",                                        "-1"                            },
11164   { "request.width",                                    "120"                           },
11165   { "request.height",                                   "300"                           },
11166   { "request.border_size",                              "10"                            },
11167   { "request.line_spacing",                             "2"                             },
11168   { "request.step_offset",                              "10"                            },
11169   { "request.step_delay",                               "20"                            },
11170   { "request.anim_mode",                                "default"                       },
11171   { "request.align",                                    "center"                        },
11172   { "request.valign",                                   "middle"                        },
11173   { "request.autowrap",                                 "false"                         },
11174   { "request.centered",                                 "true"                          },
11175   { "request.wrap_single_words",                        "true"                          },
11176   { "request.draw_order",                               "-1"                            },
11177
11178   { "global.use_envelope_request",                      "false"                         },
11179
11180   { "game.graphics_engine_version",                     "-1"                            },
11181   { "game.forced_scroll_delay_value",                   "-1"                            },
11182   { "game.forced_scroll_x",                             ARG_UNDEFINED                   },
11183   { "game.forced_scroll_y",                             ARG_UNDEFINED                   },
11184   { "game.use_native_bd_graphics_engine",               "false"                         },
11185   { "game.use_native_emc_graphics_engine",              "false"                         },
11186   { "game.use_native_sp_graphics_engine",               "true"                          },
11187   { "game.use_masked_pushing",                          "false"                         },
11188   { "game.use_masked_elements",                         "false"                         },
11189   { "game.tile_size",                                   "32"                            },
11190
11191   { "[player].boring_delay_fixed",                      "1000"                          },
11192   { "[player].boring_delay_random",                     "1000"                          },
11193   { "[player].sleeping_delay_fixed",                    "2000"                          },
11194   { "[player].sleeping_delay_random",                   "2000"                          },
11195
11196   { "viewport.window.width",                            "672"                           },
11197   { "viewport.window.height",                           "560"                           },
11198   { "viewport.window.min_width",                        "-1"                            },
11199   { "viewport.window.min_height",                       "-1"                            },
11200   { "viewport.window.max_width",                        "-1"                            },
11201   { "viewport.window.max_height",                       "-1"                            },
11202   { "viewport.window.TITLE.width",                      ARG_DEFAULT                     },
11203   { "viewport.window.TITLE.height",                     ARG_DEFAULT                     },
11204
11205   { "viewport.playfield.x",                             "6"                             },
11206   { "viewport.playfield.y",                             "6"                             },
11207   { "viewport.playfield.width",                         "548"                           },
11208   { "viewport.playfield.height",                        "548"                           },
11209   { "viewport.playfield.min_width",                     "-1"                            },
11210   { "viewport.playfield.min_height",                    "-1"                            },
11211   { "viewport.playfield.max_width",                     "-1"                            },
11212   { "viewport.playfield.max_height",                    "-1"                            },
11213   { "viewport.playfield.margin_left",                   "0"                             },
11214   { "viewport.playfield.margin_right",                  "0"                             },
11215   { "viewport.playfield.margin_top",                    "0"                             },
11216   { "viewport.playfield.margin_bottom",                 "0"                             },
11217   { "viewport.playfield.border_left",                   "-1"                            },
11218   { "viewport.playfield.border_right",                  "-1"                            },
11219   { "viewport.playfield.border_top",                    "-1"                            },
11220   { "viewport.playfield.border_bottom",                 "-1"                            },
11221   { "viewport.playfield.border_size",                   "2"                             },
11222   { "viewport.playfield.align_size",                    "16"                            },
11223   { "viewport.playfield.align",                         "left"                          },
11224   { "viewport.playfield.valign",                        "top"                           },
11225   { "viewport.playfield.MAIN.x",                        ARG_DEFAULT                     },
11226   { "viewport.playfield.MAIN.y",                        ARG_DEFAULT                     },
11227   { "viewport.playfield.MAIN.width",                    ARG_DEFAULT                     },
11228   { "viewport.playfield.MAIN.height",                   ARG_DEFAULT                     },
11229   { "viewport.playfield.MAIN.min_width",                ARG_DEFAULT                     },
11230   { "viewport.playfield.MAIN.min_height",               ARG_DEFAULT                     },
11231   { "viewport.playfield.MAIN.max_width",                ARG_DEFAULT                     },
11232   { "viewport.playfield.MAIN.max_height",               ARG_DEFAULT                     },
11233   { "viewport.playfield.MAIN.margin_left",              ARG_DEFAULT                     },
11234   { "viewport.playfield.MAIN.margin_right",             ARG_DEFAULT                     },
11235   { "viewport.playfield.MAIN.margin_top",               ARG_DEFAULT                     },
11236   { "viewport.playfield.MAIN.margin_bottom",            ARG_DEFAULT                     },
11237   { "viewport.playfield.MAIN.border_left",              ARG_DEFAULT                     },
11238   { "viewport.playfield.MAIN.border_right",             ARG_DEFAULT                     },
11239   { "viewport.playfield.MAIN.border_top",               ARG_DEFAULT                     },
11240   { "viewport.playfield.MAIN.border_bottom",            ARG_DEFAULT                     },
11241   { "viewport.playfield.MAIN.border_size",              ARG_DEFAULT                     },
11242   { "viewport.playfield.MAIN.align_size",               ARG_DEFAULT                     },
11243   { "viewport.playfield.MAIN.align",                    ARG_DEFAULT                     },
11244   { "viewport.playfield.MAIN.valign",                   ARG_DEFAULT                     },
11245   { "viewport.playfield.SCORES.x",                      ARG_DEFAULT                     },
11246   { "viewport.playfield.SCORES.y",                      ARG_DEFAULT                     },
11247   { "viewport.playfield.SCORES.width",                  ARG_DEFAULT                     },
11248   { "viewport.playfield.SCORES.height",                 ARG_DEFAULT                     },
11249   { "viewport.playfield.SCORES.min_width",              ARG_DEFAULT                     },
11250   { "viewport.playfield.SCORES.min_height",             ARG_DEFAULT                     },
11251   { "viewport.playfield.SCORES.max_width",              ARG_DEFAULT                     },
11252   { "viewport.playfield.SCORES.max_height",             ARG_DEFAULT                     },
11253   { "viewport.playfield.SCORES.margin_left",            ARG_DEFAULT                     },
11254   { "viewport.playfield.SCORES.margin_right",           ARG_DEFAULT                     },
11255   { "viewport.playfield.SCORES.margin_top",             ARG_DEFAULT                     },
11256   { "viewport.playfield.SCORES.margin_bottom",          ARG_DEFAULT                     },
11257   { "viewport.playfield.SCORES.border_left",            ARG_DEFAULT                     },
11258   { "viewport.playfield.SCORES.border_right",           ARG_DEFAULT                     },
11259   { "viewport.playfield.SCORES.border_top",             ARG_DEFAULT                     },
11260   { "viewport.playfield.SCORES.border_bottom",          ARG_DEFAULT                     },
11261   { "viewport.playfield.SCORES.border_size",            ARG_DEFAULT                     },
11262   { "viewport.playfield.SCORES.align_size",             ARG_DEFAULT                     },
11263   { "viewport.playfield.SCORES.align",                  ARG_DEFAULT                     },
11264   { "viewport.playfield.SCORES.valign",                 ARG_DEFAULT                     },
11265   { "viewport.playfield.EDITOR.x",                      ARG_DEFAULT                     },
11266   { "viewport.playfield.EDITOR.y",                      ARG_DEFAULT                     },
11267   { "viewport.playfield.EDITOR.width",                  ARG_DEFAULT                     },
11268   { "viewport.playfield.EDITOR.height",                 ARG_DEFAULT                     },
11269   { "viewport.playfield.EDITOR.min_width",              ARG_DEFAULT                     },
11270   { "viewport.playfield.EDITOR.min_height",             ARG_DEFAULT                     },
11271   { "viewport.playfield.EDITOR.max_width",              ARG_DEFAULT                     },
11272   { "viewport.playfield.EDITOR.max_height",             ARG_DEFAULT                     },
11273   { "viewport.playfield.EDITOR.margin_left",            ARG_DEFAULT                     },
11274   { "viewport.playfield.EDITOR.margin_right",           ARG_DEFAULT                     },
11275   { "viewport.playfield.EDITOR.margin_top",             ARG_DEFAULT                     },
11276   { "viewport.playfield.EDITOR.margin_bottom",          ARG_DEFAULT                     },
11277   { "viewport.playfield.EDITOR.border_left",            ARG_DEFAULT                     },
11278   { "viewport.playfield.EDITOR.border_right",           ARG_DEFAULT                     },
11279   { "viewport.playfield.EDITOR.border_top",             ARG_DEFAULT                     },
11280   { "viewport.playfield.EDITOR.border_bottom",          ARG_DEFAULT                     },
11281   { "viewport.playfield.EDITOR.border_size",            ARG_DEFAULT                     },
11282   { "viewport.playfield.EDITOR.align_size",             ARG_DEFAULT                     },
11283   { "viewport.playfield.EDITOR.align",                  ARG_DEFAULT                     },
11284   { "viewport.playfield.EDITOR.valign",                 ARG_DEFAULT                     },
11285   { "viewport.playfield.PLAYING.x",                     ARG_DEFAULT                     },
11286   { "viewport.playfield.PLAYING.y",                     ARG_DEFAULT                     },
11287   { "viewport.playfield.PLAYING.width",                 ARG_DEFAULT                     },
11288   { "viewport.playfield.PLAYING.height",                ARG_DEFAULT                     },
11289   { "viewport.playfield.PLAYING.min_width",             ARG_DEFAULT                     },
11290   { "viewport.playfield.PLAYING.min_height",            ARG_DEFAULT                     },
11291   { "viewport.playfield.PLAYING.max_width",             ARG_DEFAULT                     },
11292   { "viewport.playfield.PLAYING.max_height",            ARG_DEFAULT                     },
11293   { "viewport.playfield.PLAYING.margin_left",           ARG_DEFAULT                     },
11294   { "viewport.playfield.PLAYING.margin_right",          ARG_DEFAULT                     },
11295   { "viewport.playfield.PLAYING.margin_top",            ARG_DEFAULT                     },
11296   { "viewport.playfield.PLAYING.margin_bottom",         ARG_DEFAULT                     },
11297   { "viewport.playfield.PLAYING.border_left",           ARG_DEFAULT                     },
11298   { "viewport.playfield.PLAYING.border_right",          ARG_DEFAULT                     },
11299   { "viewport.playfield.PLAYING.border_top",            ARG_DEFAULT                     },
11300   { "viewport.playfield.PLAYING.border_bottom",         ARG_DEFAULT                     },
11301   { "viewport.playfield.PLAYING.border_size",           ARG_DEFAULT                     },
11302   { "viewport.playfield.PLAYING.align_size",            ARG_DEFAULT                     },
11303   { "viewport.playfield.PLAYING.align",                 ARG_DEFAULT                     },
11304   { "viewport.playfield.PLAYING.valign",                ARG_DEFAULT                     },
11305
11306   { "viewport.door_1.x",                                "566"                           },
11307   { "viewport.door_1.y",                                "60"                            },
11308   { "viewport.door_1.width",                            "100"                           },
11309   { "viewport.door_1.height",                           "280"                           },
11310   { "viewport.door_1.border_size",                      "4"                             },
11311   { "viewport.door_1.align",                            "left"                          },
11312   { "viewport.door_1.valign",                           "top"                           },
11313   { "viewport.door_1.MAIN.x",                           ARG_DEFAULT                     },
11314   { "viewport.door_1.MAIN.y",                           ARG_DEFAULT                     },
11315   { "viewport.door_1.MAIN.width",                       ARG_DEFAULT                     },
11316   { "viewport.door_1.MAIN.height",                      ARG_DEFAULT                     },
11317   { "viewport.door_1.MAIN.border_size",                 ARG_DEFAULT                     },
11318   { "viewport.door_1.MAIN.align",                       ARG_DEFAULT                     },
11319   { "viewport.door_1.MAIN.valign",                      ARG_DEFAULT                     },
11320   { "viewport.door_1.SCORES.x",                         ARG_DEFAULT                     },
11321   { "viewport.door_1.SCORES.y",                         ARG_DEFAULT                     },
11322   { "viewport.door_1.SCORES.width",                     ARG_DEFAULT                     },
11323   { "viewport.door_1.SCORES.height",                    ARG_DEFAULT                     },
11324   { "viewport.door_1.SCORES.border_size",               ARG_DEFAULT                     },
11325   { "viewport.door_1.SCORES.align",                     ARG_DEFAULT                     },
11326   { "viewport.door_1.SCORES.valign",                    ARG_DEFAULT                     },
11327   { "viewport.door_1.EDITOR.x",                         ARG_DEFAULT                     },
11328   { "viewport.door_1.EDITOR.y",                         ARG_DEFAULT                     },
11329   { "viewport.door_1.EDITOR.width",                     ARG_DEFAULT                     },
11330   { "viewport.door_1.EDITOR.height",                    ARG_DEFAULT                     },
11331   { "viewport.door_1.EDITOR.border_size",               ARG_DEFAULT                     },
11332   { "viewport.door_1.EDITOR.align",                     ARG_DEFAULT                     },
11333   { "viewport.door_1.EDITOR.valign",                    ARG_DEFAULT                     },
11334   { "viewport.door_1.PLAYING.x",                        ARG_DEFAULT                     },
11335   { "viewport.door_1.PLAYING.y",                        ARG_DEFAULT                     },
11336   { "viewport.door_1.PLAYING.width",                    ARG_DEFAULT                     },
11337   { "viewport.door_1.PLAYING.height",                   ARG_DEFAULT                     },
11338   { "viewport.door_1.PLAYING.border_size",              ARG_DEFAULT                     },
11339   { "viewport.door_1.PLAYING.align",                    ARG_DEFAULT                     },
11340   { "viewport.door_1.PLAYING.valign",                   ARG_DEFAULT                     },
11341
11342   { "viewport.door_2.x",                                "566"                           },
11343   { "viewport.door_2.y",                                "400"                           },
11344   { "viewport.door_2.width",                            "100"                           },
11345   { "viewport.door_2.height",                           "100"                           },
11346   { "viewport.door_2.border_size",                      "4"                             },
11347   { "viewport.door_2.align",                            "left"                          },
11348   { "viewport.door_2.valign",                           "top"                           },
11349   { "viewport.door_2.MAIN.x",                           ARG_DEFAULT                     },
11350   { "viewport.door_2.MAIN.y",                           ARG_DEFAULT                     },
11351   { "viewport.door_2.MAIN.width",                       ARG_DEFAULT                     },
11352   { "viewport.door_2.MAIN.height",                      ARG_DEFAULT                     },
11353   { "viewport.door_2.MAIN.border_size",                 ARG_DEFAULT                     },
11354   { "viewport.door_2.MAIN.align",                       ARG_DEFAULT                     },
11355   { "viewport.door_2.MAIN.valign",                      ARG_DEFAULT                     },
11356   { "viewport.door_2.SCORES.x",                         ARG_DEFAULT                     },
11357   { "viewport.door_2.SCORES.y",                         ARG_DEFAULT                     },
11358   { "viewport.door_2.SCORES.width",                     ARG_DEFAULT                     },
11359   { "viewport.door_2.SCORES.height",                    ARG_DEFAULT                     },
11360   { "viewport.door_2.SCORES.border_size",               ARG_DEFAULT                     },
11361   { "viewport.door_2.SCORES.align",                     ARG_DEFAULT                     },
11362   { "viewport.door_2.SCORES.valign",                    ARG_DEFAULT                     },
11363   { "viewport.door_2.EDITOR.x",                         "566"                           },
11364   { "viewport.door_2.EDITOR.y",                         "356"                           },
11365   { "viewport.door_2.EDITOR.width",                     "100"                           },
11366   { "viewport.door_2.EDITOR.height",                    "144"                           },
11367   { "viewport.door_2.EDITOR.border_size",               "4"                             },
11368   { "viewport.door_2.EDITOR.align",                     "left"                          },
11369   { "viewport.door_2.EDITOR.valign",                    "top"                           },
11370   { "viewport.door_2.PLAYING.x",                        ARG_DEFAULT                     },
11371   { "viewport.door_2.PLAYING.y",                        ARG_DEFAULT                     },
11372   { "viewport.door_2.PLAYING.width",                    ARG_DEFAULT                     },
11373   { "viewport.door_2.PLAYING.height",                   ARG_DEFAULT                     },
11374   { "viewport.door_2.PLAYING.border_size",              ARG_DEFAULT                     },
11375   { "viewport.door_2.PLAYING.align",                    ARG_DEFAULT                     },
11376   { "viewport.door_2.PLAYING.valign",                   ARG_DEFAULT                     },
11377
11378   { NULL,                                               NULL                            }
11379 };