blob: a4e88694f63fe1349b903244c19bf24ab0b7e64a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
|
bin/smc
%%DATADIR%%/editor/level_items.xml
%%DATADIR%%/editor/level_menu.xml
%%DATADIR%%/editor/world_items.xml
%%DATADIR%%/editor/world_menu.xml
%%DATADIR%%/gui/font/Font.xsd
%%DATADIR%%/gui/font/bluebold1024_big.font
%%DATADIR%%/gui/font/bluebold1024_medium.font
%%DATADIR%%/gui/font/default.ttf
%%DATADIR%%/gui/font/default.txt
%%DATADIR%%/gui/font/default_bold.ttf
%%DATADIR%%/gui/font/default_bold.txt
%%DATADIR%%/gui/imagesets/Imageset.xsd
%%DATADIR%%/gui/imagesets/SMCLook256.imageset
%%DATADIR%%/gui/imagesets/SMCLook512.png
%%DATADIR%%/gui/layout/GUILayout.xsd
%%DATADIR%%/gui/layout/box_question.layout
%%DATADIR%%/gui/layout/box_text.layout
%%DATADIR%%/gui/layout/debugtext.layout
%%DATADIR%%/gui/layout/default.layout
%%DATADIR%%/gui/layout/editor.layout
%%DATADIR%%/gui/layout/level_settings/GUILayout.xsd
%%DATADIR%%/gui/layout/level_settings/main.layout
%%DATADIR%%/gui/layout/level_settings/tab_background.layout
%%DATADIR%%/gui/layout/level_settings/tab_global_effect.layout
%%DATADIR%%/gui/layout/level_settings/tab_main.layout
%%DATADIR%%/gui/layout/loading.layout
%%DATADIR%%/gui/layout/menu/GUILayout.xsd
%%DATADIR%%/gui/layout/menu/main.layout
%%DATADIR%%/gui/layout/menu/options_audio.layout
%%DATADIR%%/gui/layout/menu/options_controls.layout
%%DATADIR%%/gui/layout/menu/options_game.layout
%%DATADIR%%/gui/layout/menu/options_video.layout
%%DATADIR%%/gui/layout/menu/start.layout
%%DATADIR%%/gui/layout/statictext.layout
%%DATADIR%%/gui/looknfeel/Falagard.xsd
%%DATADIR%%/gui/looknfeel/TaharezLook.looknfeel
%%DATADIR%%/gui/schemes/GUIScheme.xsd
%%DATADIR%%/gui/schemes/TaharezLook.scheme
%%DATADIR%%/icon/window_32.png
%%DATADIR%%/levels/all.smclvl
%%DATADIR%%/levels/allen_1.smclvl
%%DATADIR%%/levels/bad_evening.smclvl
%%DATADIR%%/levels/cave_1.smclvl
%%DATADIR%%/levels/cave_1_2.smclvl
%%DATADIR%%/levels/cave_1b.smclvl
%%DATADIR%%/levels/clear_night.smclvl
%%DATADIR%%/levels/david_1.smclvl
%%DATADIR%%/levels/desert_ruins.smclvl
%%DATADIR%%/levels/dj_kirby_1.smclvl
%%DATADIR%%/levels/dj_kirby_1_sub.smclvl
%%DATADIR%%/levels/eatomania.smclvl
%%DATADIR%%/levels/empty.smclvl
%%DATADIR%%/levels/flan.smclvl
%%DATADIR%%/levels/flippa_2.smclvl
%%DATADIR%%/levels/flippa_3.smclvl
%%DATADIR%%/levels/flippa_3_desert.smclvl
%%DATADIR%%/levels/flippa_3_ending.smclvl
%%DATADIR%%/levels/flippa_3_green.smclvl
%%DATADIR%%/levels/flippa_3_mushroom.smclvl
%%DATADIR%%/levels/flippa_3_sky.smclvl
%%DATADIR%%/levels/frosty_climber.smclvl
%%DATADIR%%/levels/furball_hills.smclvl
%%DATADIR%%/levels/game_tutorial.smclvl
%%DATADIR%%/levels/green_grounds.smclvl
%%DATADIR%%/levels/houses.smclvl
%%DATADIR%%/levels/icy_tower.smclvl
%%DATADIR%%/levels/ita_1.smclvl
%%DATADIR%%/levels/ita_2.smclvl
%%DATADIR%%/levels/jr_cave.smclvl
%%DATADIR%%/levels/jungle_1.smclvl
%%DATADIR%%/levels/jungle_2.smclvl
%%DATADIR%%/levels/jungle_3.smclvl
%%DATADIR%%/levels/keywest_1.smclvl
%%DATADIR%%/levels/lake_shore_paradise.smclvl
%%DATADIR%%/levels/lvl_1.smclvl
%%DATADIR%%/levels/lvl_10.smclvl
%%DATADIR%%/levels/lvl_1_sub_1.smclvl
%%DATADIR%%/levels/lvl_2.smclvl
%%DATADIR%%/levels/lvl_2_sub_1.smclvl
%%DATADIR%%/levels/lvl_3.smclvl
%%DATADIR%%/levels/lvl_4.smclvl
%%DATADIR%%/levels/lvl_4_sub_1.smclvl
%%DATADIR%%/levels/lvl_5.smclvl
%%DATADIR%%/levels/lvl_6.smclvl
%%DATADIR%%/levels/lvl_7.smclvl
%%DATADIR%%/levels/lvl_8.smclvl
%%DATADIR%%/levels/lvl_9.smclvl
%%DATADIR%%/levels/menu_blue_1.smclvl
%%DATADIR%%/levels/menu_green_1.smclvl
%%DATADIR%%/levels/mountain trials.smclvl
%%DATADIR%%/levels/mt_bon.smclvl
%%DATADIR%%/levels/mt_sec.smclvl
%%DATADIR%%/levels/neverland.smclvl
%%DATADIR%%/levels/night_sky.smclvl
%%DATADIR%%/levels/pasol_1.smclvl
%%DATADIR%%/levels/pasol_2.smclvl
%%DATADIR%%/levels/pasol_3.smclvl
%%DATADIR%%/levels/red8.smclvl
%%DATADIR%%/levels/runaway.smclvl
%%DATADIR%%/levels/sauer2_1.smclvl
%%DATADIR%%/levels/sauer2_10.smclvl
%%DATADIR%%/levels/sauer2_11.smclvl
%%DATADIR%%/levels/sauer2_12.smclvl
%%DATADIR%%/levels/sauer2_13.smclvl
%%DATADIR%%/levels/sauer2_13end.smclvl
%%DATADIR%%/levels/sauer2_14.smclvl
%%DATADIR%%/levels/sauer2_2.smclvl
%%DATADIR%%/levels/sauer2_3.smclvl
%%DATADIR%%/levels/sauer2_4.smclvl
%%DATADIR%%/levels/sauer2_5.smclvl
%%DATADIR%%/levels/sauer2_6.smclvl
%%DATADIR%%/levels/sauer2_7.smclvl
%%DATADIR%%/levels/sauer2_7_boss.smclvl
%%DATADIR%%/levels/sauer2_8.smclvl
%%DATADIR%%/levels/sauer2_9.smclvl
%%DATADIR%%/levels/sauer2_nolin.smclvl
%%DATADIR%%/levels/sauer2_nolin_sub.smclvl
%%DATADIR%%/levels/scaley.smclvl
%%DATADIR%%/levels/space.smclvl
%%DATADIR%%/levels/speed_test.smclvl
%%DATADIR%%/levels/stephan_1.smclvl
%%DATADIR%%/levels/stephan_2.smclvl
%%DATADIR%%/levels/stephan_3.smclvl
%%DATADIR%%/levels/stephan_3_1.smclvl
%%DATADIR%%/levels/stephan_3_2.smclvl
%%DATADIR%%/levels/stephan_4.smclvl
%%DATADIR%%/levels/stephan_4_1.smclvl
%%DATADIR%%/levels/stephan_4_2.smclvl
%%DATADIR%%/levels/stephan_5.smclvl
%%DATADIR%%/levels/stephan_5_1.smclvl
%%DATADIR%%/levels/stephan_5_2.smclvl
%%DATADIR%%/levels/stephane_1.smclvl
%%DATADIR%%/levels/test_1.smclvl
%%DATADIR%%/levels/test_10.smclvl
%%DATADIR%%/levels/test_1_mn.smclvl
%%DATADIR%%/levels/test_2.smclvl
%%DATADIR%%/levels/test_3.smclvl
%%DATADIR%%/levels/test_4.smclvl
%%DATADIR%%/levels/test_5.smclvl
%%DATADIR%%/levels/test_6.smclvl
%%DATADIR%%/levels/test_7.smclvl
%%DATADIR%%/levels/test_8.smclvl
%%DATADIR%%/levels/test_9.smclvl
%%DATADIR%%/levels/test_moving_platform_1.smclvl
%%DATADIR%%/levels/test_pipes.smclvl
%%DATADIR%%/levels/tower_1.smclvl
%%DATADIR%%/levels/tut1_1.smclvl
%%DATADIR%%/levels/under_construction.smclvl
%%DATADIR%%/levels/underground.smclvl
%%DATADIR%%/levels/undergroundsurprise.smclvl
%%DATADIR%%/levels/whatsnow.smclvl
%%DATADIR%%/levels/wn_01.smclvl
%%DATADIR%%/levels/wn_02.smclvl
%%DATADIR%%/levels/wn_03.smclvl
%%DATADIR%%/levels/wn_03_down.smclvl
%%DATADIR%%/levels/wn_04.smclvl
%%DATADIR%%/levels/wn_05.smclvl
%%DATADIR%%/levels/wn_05_top.smclvl
%%DATADIR%%/levels/wn_06.smclvl
%%DATADIR%%/levels/wn_06_down.smclvl
%%DATADIR%%/levels/wn_07.smclvl
%%DATADIR%%/levels/yuki2000.smclvl
%%DATADIR%%/levels/yuki_dungeon.smclvl
%%DATADIR%%/pixmaps/animation/fire_1/1.png
%%DATADIR%%/pixmaps/animation/fire_1/2.png
%%DATADIR%%/pixmaps/animation/fire_1/3.png
%%DATADIR%%/pixmaps/animation/fire_1/4.png
%%DATADIR%%/pixmaps/animation/fire_1/all.txt
%%DATADIR%%/pixmaps/animation/fireball/1.png
%%DATADIR%%/pixmaps/animation/fireball/1.settings
%%DATADIR%%/pixmaps/animation/iceball/1.png
%%DATADIR%%/pixmaps/animation/iceball/1.settings
%%DATADIR%%/pixmaps/animation/light_1/1.png
%%DATADIR%%/pixmaps/animation/light_1/2.png
%%DATADIR%%/pixmaps/animation/light_1/3.png
%%DATADIR%%/pixmaps/animation/particles/axis.png
%%DATADIR%%/pixmaps/animation/particles/axis.settings
%%DATADIR%%/pixmaps/animation/particles/cloud.png
%%DATADIR%%/pixmaps/animation/particles/cloud.settings
%%DATADIR%%/pixmaps/animation/particles/dirt.png
%%DATADIR%%/pixmaps/animation/particles/dirt.settings
%%DATADIR%%/pixmaps/animation/particles/green_ghost_light.png
%%DATADIR%%/pixmaps/animation/particles/green_ghost_light.settings
%%DATADIR%%/pixmaps/animation/particles/ice_1.png
%%DATADIR%%/pixmaps/animation/particles/ice_1.settings
%%DATADIR%%/pixmaps/animation/particles/leaf_brown.png
%%DATADIR%%/pixmaps/animation/particles/leaf_brown.settings
%%DATADIR%%/pixmaps/animation/particles/leaf_green.png
%%DATADIR%%/pixmaps/animation/particles/leaf_green.settings
%%DATADIR%%/pixmaps/animation/particles/light.png
%%DATADIR%%/pixmaps/animation/particles/light.settings
%%DATADIR%%/pixmaps/animation/particles/rain.png
%%DATADIR%%/pixmaps/animation/particles/rain.settings
%%DATADIR%%/pixmaps/animation/particles/rain_small.png
%%DATADIR%%/pixmaps/animation/particles/rain_small.settings
%%DATADIR%%/pixmaps/animation/particles/slime_1.png
%%DATADIR%%/pixmaps/animation/particles/slime_1.settings
%%DATADIR%%/pixmaps/animation/particles/smoke.png
%%DATADIR%%/pixmaps/animation/particles/smoke.settings
%%DATADIR%%/pixmaps/animation/particles/smoke_black.png
%%DATADIR%%/pixmaps/animation/particles/smoke_black.settings
%%DATADIR%%/pixmaps/animation/particles/smoke_grey_big.png
%%DATADIR%%/pixmaps/animation/particles/smoke_grey_big.settings
%%DATADIR%%/pixmaps/animation/particles/snowflake_1.png
%%DATADIR%%/pixmaps/animation/particles/snowflake_1.settings
%%DATADIR%%/pixmaps/animation/particles/star.png
%%DATADIR%%/pixmaps/animation/particles/star.settings
%%DATADIR%%/pixmaps/animation/particles/star_2.png
%%DATADIR%%/pixmaps/animation/particles/star_2.settings
%%DATADIR%%/pixmaps/animation/particles/windtrail_1.png
%%DATADIR%%/pixmaps/animation/particles/windtrail_1_down.settings
%%DATADIR%%/pixmaps/animation/particles/windtrail_1_left.settings
%%DATADIR%%/pixmaps/animation/particles/windtrail_1_right.settings
%%DATADIR%%/pixmaps/animation/particles/windtrail_1_up.settings
%%DATADIR%%/pixmaps/blocks/brick/1_blue.png
%%DATADIR%%/pixmaps/blocks/brick/1_blue.settings
%%DATADIR%%/pixmaps/blocks/brick/1_red.png
%%DATADIR%%/pixmaps/blocks/brick/1_red.settings
%%DATADIR%%/pixmaps/blocks/brick/1_yellow.png
%%DATADIR%%/pixmaps/blocks/brick/1_yellow.settings
%%DATADIR%%/pixmaps/blocks/brick/2_1.png
%%DATADIR%%/pixmaps/blocks/brick/2_1.settings
%%DATADIR%%/pixmaps/blocks/brick/2_2.png
%%DATADIR%%/pixmaps/blocks/brick/2_2.settings
%%DATADIR%%/pixmaps/blocks/cloud/1.png
%%DATADIR%%/pixmaps/blocks/cloud/1.settings
%%DATADIR%%/pixmaps/blocks/extra/blue_x.png
%%DATADIR%%/pixmaps/blocks/extra/blue_x.settings
%%DATADIR%%/pixmaps/blocks/extra/corded.png
%%DATADIR%%/pixmaps/blocks/extra/corded.settings
%%DATADIR%%/pixmaps/blocks/extra/mushroom.png
%%DATADIR%%/pixmaps/blocks/extra/mushroom.settings
%%DATADIR%%/pixmaps/blocks/ice/1.png
%%DATADIR%%/pixmaps/blocks/ice/1.settings
%%DATADIR%%/pixmaps/blocks/ice/2.png
%%DATADIR%%/pixmaps/blocks/ice/2.settings
%%DATADIR%%/pixmaps/blocks/ice/3.png
%%DATADIR%%/pixmaps/blocks/ice/3.settings
%%DATADIR%%/pixmaps/blocks/metal/blue.png
%%DATADIR%%/pixmaps/blocks/metal/blue.settings
%%DATADIR%%/pixmaps/blocks/metal/green.png
%%DATADIR%%/pixmaps/blocks/metal/green.settings
%%DATADIR%%/pixmaps/blocks/metal/grey.png
%%DATADIR%%/pixmaps/blocks/metal/grey.settings
%%DATADIR%%/pixmaps/blocks/metal/red.png
%%DATADIR%%/pixmaps/blocks/metal/red.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_black.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_black.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_blue.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_blue.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_green.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_green.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_grey.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_grey.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_red.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_red.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_violet.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_violet.settings
%%DATADIR%%/pixmaps/blocks/metal/stone_2_yellow.png
%%DATADIR%%/pixmaps/blocks/metal/stone_2_yellow.settings
%%DATADIR%%/pixmaps/blocks/metal/yellow.png
%%DATADIR%%/pixmaps/blocks/metal/yellow.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/metal_1/grey/middle.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/metal_1/grey/middle.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/left.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/left_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/left_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/middle.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/middle.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/right.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/right_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/right_up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/right_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue/up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/left.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/left_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/left_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/middle.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/middle.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/right.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/right_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/right_up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/right_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green/up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/left.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/left_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/left_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/middle.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/middle.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/right.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/right_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/right_up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/right_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange/up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/left.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/left_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/left_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/middle.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/middle.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/right.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/right_down.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/right_up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/right_up.settings
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/up.png
%%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red/up.settings
%%DATADIR%%/pixmaps/blocks/sand/1.png
%%DATADIR%%/pixmaps/blocks/sand/1.settings
%%DATADIR%%/pixmaps/blocks/sand/2.png
%%DATADIR%%/pixmaps/blocks/sand/2.settings
%%DATADIR%%/pixmaps/blocks/screw/1.png
%%DATADIR%%/pixmaps/blocks/screw/1.settings
%%DATADIR%%/pixmaps/blocks/slime/1.png
%%DATADIR%%/pixmaps/blocks/slime/1.settings
%%DATADIR%%/pixmaps/blocks/stone/1.png
%%DATADIR%%/pixmaps/blocks/stone/1.settings
%%DATADIR%%/pixmaps/blocks/stone/2.png
%%DATADIR%%/pixmaps/blocks/stone/2.settings
%%DATADIR%%/pixmaps/blocks/toy/ball_1.png
%%DATADIR%%/pixmaps/blocks/toy/ball_1.settings
%%DATADIR%%/pixmaps/blocks/wood/1.png
%%DATADIR%%/pixmaps/blocks/wood/1.settings
%%DATADIR%%/pixmaps/blocks/wood/2.png
%%DATADIR%%/pixmaps/blocks/wood/2.settings
%%DATADIR%%/pixmaps/clouds/cloudy_1/middle.png
%%DATADIR%%/pixmaps/clouds/cloudy_1/middle.settings
%%DATADIR%%/pixmaps/clouds/default_1/1_left.png
%%DATADIR%%/pixmaps/clouds/default_1/1_left.settings
%%DATADIR%%/pixmaps/clouds/default_1/1_middle.png
%%DATADIR%%/pixmaps/clouds/default_1/1_middle.settings
%%DATADIR%%/pixmaps/clouds/default_1/1_right.settings
%%DATADIR%%/pixmaps/clouds/default_1/2.png
%%DATADIR%%/pixmaps/clouds/default_1/2_big.settings
%%DATADIR%%/pixmaps/clouds/default_1/2_small.settings
%%DATADIR%%/pixmaps/clouds/grey_1/small.png
%%DATADIR%%/pixmaps/clouds/grey_1/small.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/1.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/1.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/10.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/10.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/2.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/2.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/3.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/3.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/4.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/4.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/5.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/5.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/6.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/6.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/7.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/7.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/8.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/8.settings
%%DATADIR%%/pixmaps/clouds/light_yellow_1/9.png
%%DATADIR%%/pixmaps/clouds/light_yellow_1/9.settings
%%DATADIR%%/pixmaps/clouds/lightblue_1/left.png
%%DATADIR%%/pixmaps/clouds/lightblue_1/left.settings
%%DATADIR%%/pixmaps/clouds/lightblue_1/middle.png
%%DATADIR%%/pixmaps/clouds/lightblue_1/middle.settings
%%DATADIR%%/pixmaps/clouds/lightblue_1/right.png
%%DATADIR%%/pixmaps/clouds/lightblue_1/right.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_active.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_front.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_front.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_move_1.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_move_1.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_move_2.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_move_2.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_move_3.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/shell_move_3.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/walk_0.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/walk_0.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/walk_1.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/walk_1.settings
%%DATADIR%%/pixmaps/enemy/bosses/turtle/walk_2.png
%%DATADIR%%/pixmaps/enemy/bosses/turtle/walk_2.settings
%%DATADIR%%/pixmaps/enemy/eato/brown/1.png
%%DATADIR%%/pixmaps/enemy/eato/brown/1.settings
%%DATADIR%%/pixmaps/enemy/eato/brown/2.png
%%DATADIR%%/pixmaps/enemy/eato/brown/2.settings
%%DATADIR%%/pixmaps/enemy/eato/brown/3.png
%%DATADIR%%/pixmaps/enemy/eato/brown/3.settings
%%DATADIR%%/pixmaps/enemy/eato/green/1.png
%%DATADIR%%/pixmaps/enemy/eato/green/1.settings
%%DATADIR%%/pixmaps/enemy/eato/green/2.png
%%DATADIR%%/pixmaps/enemy/eato/green/2.settings
%%DATADIR%%/pixmaps/enemy/eato/green/3.png
%%DATADIR%%/pixmaps/enemy/eato/green/3.settings
%%DATADIR%%/pixmaps/enemy/flyon/blue/closed_1.png
%%DATADIR%%/pixmaps/enemy/flyon/blue/closed_1.settings
%%DATADIR%%/pixmaps/enemy/flyon/blue/closed_2.png
%%DATADIR%%/pixmaps/enemy/flyon/blue/closed_2.settings
%%DATADIR%%/pixmaps/enemy/flyon/blue/open_1.png
%%DATADIR%%/pixmaps/enemy/flyon/blue/open_1.settings
%%DATADIR%%/pixmaps/enemy/flyon/blue/open_2.png
%%DATADIR%%/pixmaps/enemy/flyon/blue/open_2.settings
%%DATADIR%%/pixmaps/enemy/flyon/orange/closed_1.png
%%DATADIR%%/pixmaps/enemy/flyon/orange/closed_1.settings
%%DATADIR%%/pixmaps/enemy/flyon/orange/closed_2.png
%%DATADIR%%/pixmaps/enemy/flyon/orange/closed_2.settings
%%DATADIR%%/pixmaps/enemy/flyon/orange/open_1.png
%%DATADIR%%/pixmaps/enemy/flyon/orange/open_1.settings
%%DATADIR%%/pixmaps/enemy/flyon/orange/open_2.png
%%DATADIR%%/pixmaps/enemy/flyon/orange/open_2.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/dead.png
%%DATADIR%%/pixmaps/enemy/furball/blue/dead.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/turn.png
%%DATADIR%%/pixmaps/enemy/furball/blue/turn.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_1.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_1.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_2.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_2.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_3.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_3.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_4.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_4.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_5.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_5.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_6.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_6.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_7.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_7.settings
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_8.png
%%DATADIR%%/pixmaps/enemy/furball/blue/walk_8.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/dead.png
%%DATADIR%%/pixmaps/enemy/furball/boss/dead.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/hit.png
%%DATADIR%%/pixmaps/enemy/furball/boss/hit.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/turn.png
%%DATADIR%%/pixmaps/enemy/furball/boss/turn.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_1.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_1.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_2.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_2.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_3.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_3.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_4.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_4.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_5.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_5.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_6.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_6.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_7.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_7.settings
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_8.png
%%DATADIR%%/pixmaps/enemy/furball/boss/walk_8.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/dead.png
%%DATADIR%%/pixmaps/enemy/furball/brown/dead.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/turn.png
%%DATADIR%%/pixmaps/enemy/furball/brown/turn.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_1.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_1.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_2.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_2.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_3.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_3.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_4.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_4.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_5.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_5.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_6.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_6.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_7.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_7.settings
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_8.png
%%DATADIR%%/pixmaps/enemy/furball/brown/walk_8.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/1.png
%%DATADIR%%/pixmaps/enemy/gee/electro/1.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/10.png
%%DATADIR%%/pixmaps/enemy/gee/electro/10.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/2.png
%%DATADIR%%/pixmaps/enemy/gee/electro/2.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/3.png
%%DATADIR%%/pixmaps/enemy/gee/electro/3.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/4.png
%%DATADIR%%/pixmaps/enemy/gee/electro/4.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/5.png
%%DATADIR%%/pixmaps/enemy/gee/electro/5.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/6.png
%%DATADIR%%/pixmaps/enemy/gee/electro/6.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/7.png
%%DATADIR%%/pixmaps/enemy/gee/electro/7.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/8.png
%%DATADIR%%/pixmaps/enemy/gee/electro/8.settings
%%DATADIR%%/pixmaps/enemy/gee/electro/9.png
%%DATADIR%%/pixmaps/enemy/gee/electro/9.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/1.png
%%DATADIR%%/pixmaps/enemy/gee/lava/1.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/10.png
%%DATADIR%%/pixmaps/enemy/gee/lava/10.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/2.png
%%DATADIR%%/pixmaps/enemy/gee/lava/2.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/3.png
%%DATADIR%%/pixmaps/enemy/gee/lava/3.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/4.png
%%DATADIR%%/pixmaps/enemy/gee/lava/4.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/5.png
%%DATADIR%%/pixmaps/enemy/gee/lava/5.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/6.png
%%DATADIR%%/pixmaps/enemy/gee/lava/6.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/7.png
%%DATADIR%%/pixmaps/enemy/gee/lava/7.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/8.png
%%DATADIR%%/pixmaps/enemy/gee/lava/8.settings
%%DATADIR%%/pixmaps/enemy/gee/lava/9.png
%%DATADIR%%/pixmaps/enemy/gee/lava/9.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/1.png
%%DATADIR%%/pixmaps/enemy/gee/venom/1.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/10.png
%%DATADIR%%/pixmaps/enemy/gee/venom/10.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/2.png
%%DATADIR%%/pixmaps/enemy/gee/venom/2.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/3.png
%%DATADIR%%/pixmaps/enemy/gee/venom/3.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/4.png
%%DATADIR%%/pixmaps/enemy/gee/venom/4.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/5.png
%%DATADIR%%/pixmaps/enemy/gee/venom/5.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/6.png
%%DATADIR%%/pixmaps/enemy/gee/venom/6.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/7.png
%%DATADIR%%/pixmaps/enemy/gee/venom/7.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/8.png
%%DATADIR%%/pixmaps/enemy/gee/venom/8.settings
%%DATADIR%%/pixmaps/enemy/gee/venom/9.png
%%DATADIR%%/pixmaps/enemy/gee/venom/9.settings
%%DATADIR%%/pixmaps/enemy/krush/big_1.png
%%DATADIR%%/pixmaps/enemy/krush/big_1.settings
%%DATADIR%%/pixmaps/enemy/krush/big_2.png
%%DATADIR%%/pixmaps/enemy/krush/big_2.settings
%%DATADIR%%/pixmaps/enemy/krush/big_3.png
%%DATADIR%%/pixmaps/enemy/krush/big_3.settings
%%DATADIR%%/pixmaps/enemy/krush/big_4.png
%%DATADIR%%/pixmaps/enemy/krush/big_4.settings
%%DATADIR%%/pixmaps/enemy/krush/small_1.png
%%DATADIR%%/pixmaps/enemy/krush/small_1.settings
%%DATADIR%%/pixmaps/enemy/krush/small_2.png
%%DATADIR%%/pixmaps/enemy/krush/small_2.settings
%%DATADIR%%/pixmaps/enemy/krush/small_3.png
%%DATADIR%%/pixmaps/enemy/krush/small_3.settings
%%DATADIR%%/pixmaps/enemy/krush/small_4.png
%%DATADIR%%/pixmaps/enemy/krush/small_4.settings
%%DATADIR%%/pixmaps/enemy/rokko/r.png
%%DATADIR%%/pixmaps/enemy/rokko/r.settings
%%DATADIR%%/pixmaps/enemy/spika/green.png
%%DATADIR%%/pixmaps/enemy/spika/green.settings
%%DATADIR%%/pixmaps/enemy/spika/grey.png
%%DATADIR%%/pixmaps/enemy/spika/grey.settings
%%DATADIR%%/pixmaps/enemy/spika/orange.png
%%DATADIR%%/pixmaps/enemy/spika/orange.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/turn.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/turn.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_1.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_1.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_2.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_2.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_3.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_3.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_4.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_4.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_5.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_5.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_6.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_6.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_7.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_7.settings
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_8.png
%%DATADIR%%/pixmaps/enemy/spikeball/grey/walk_8.settings
%%DATADIR%%/pixmaps/enemy/static/blocks/desert/1.png
%%DATADIR%%/pixmaps/enemy/static/blocks/desert/1.settings
%%DATADIR%%/pixmaps/enemy/static/blocks/spike_1/1_grey.png
%%DATADIR%%/pixmaps/enemy/static/blocks/spike_1/1_grey.settings
%%DATADIR%%/pixmaps/enemy/static/blocks/spike_1/1_orange.png
%%DATADIR%%/pixmaps/enemy/static/blocks/spike_1/1_orange.settings
%%DATADIR%%/pixmaps/enemy/static/blocks/spike_1/2_grey.png
%%DATADIR%%/pixmaps/enemy/static/blocks/spike_1/2_grey.settings
%%DATADIR%%/pixmaps/enemy/static/metal_1/1.png
%%DATADIR%%/pixmaps/enemy/static/metal_1/1.settings
%%DATADIR%%/pixmaps/enemy/static/metal_1/1_up.settings
%%DATADIR%%/pixmaps/enemy/static/saw/default.png
%%DATADIR%%/pixmaps/enemy/static/saw/default.settings
%%DATADIR%%/pixmaps/enemy/static/saw/face_1.png
%%DATADIR%%/pixmaps/enemy/static/saw/face_1.settings
%%DATADIR%%/pixmaps/enemy/thromp/active.png
%%DATADIR%%/pixmaps/enemy/thromp/default.png
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/active.png
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/default.png
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/down.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/down_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/left.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/left_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/right.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/right_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/up.settings
%%DATADIR%%/pixmaps/enemy/thromp/desert_1/up_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/down.settings
%%DATADIR%%/pixmaps/enemy/thromp/down_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/left.settings
%%DATADIR%%/pixmaps/enemy/thromp/left_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/right.settings
%%DATADIR%%/pixmaps/enemy/thromp/right_active.settings
%%DATADIR%%/pixmaps/enemy/thromp/up.settings
%%DATADIR%%/pixmaps/enemy/thromp/up_active.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_active.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_front.png
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_front.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_move_1.png
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_move_1.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_move_2.png
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_move_2.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_move_3.png
%%DATADIR%%/pixmaps/enemy/turtle/green/shell_move_3.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/walk_0.png
%%DATADIR%%/pixmaps/enemy/turtle/green/walk_0.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/walk_1.png
%%DATADIR%%/pixmaps/enemy/turtle/green/walk_1.settings
%%DATADIR%%/pixmaps/enemy/turtle/green/walk_2.png
%%DATADIR%%/pixmaps/enemy/turtle/green/walk_2.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_active.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_front.png
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_front.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_move_1.png
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_move_1.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_move_2.png
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_move_2.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_move_3.png
%%DATADIR%%/pixmaps/enemy/turtle/red/shell_move_3.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/walk_0.png
%%DATADIR%%/pixmaps/enemy/turtle/red/walk_0.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/walk_1.png
%%DATADIR%%/pixmaps/enemy/turtle/red/walk_1.settings
%%DATADIR%%/pixmaps/enemy/turtle/red/walk_2.png
%%DATADIR%%/pixmaps/enemy/turtle/red/walk_2.settings
%%DATADIR%%/pixmaps/game/arrow/small/blue/down.settings
%%DATADIR%%/pixmaps/game/arrow/small/blue/left.settings
%%DATADIR%%/pixmaps/game/arrow/small/blue/right.png
%%DATADIR%%/pixmaps/game/arrow/small/blue/right.settings
%%DATADIR%%/pixmaps/game/arrow/small/blue/up.settings
%%DATADIR%%/pixmaps/game/arrow/small/white/down.settings
%%DATADIR%%/pixmaps/game/arrow/small/white/left.settings
%%DATADIR%%/pixmaps/game/arrow/small/white/right.png
%%DATADIR%%/pixmaps/game/arrow/small/white/right.settings
%%DATADIR%%/pixmaps/game/arrow/small/white/up.settings
%%DATADIR%%/pixmaps/game/background/beach_island.png
%%DATADIR%%/pixmaps/game/background/beach_island.settings
%%DATADIR%%/pixmaps/game/background/blue_hills_1.png
%%DATADIR%%/pixmaps/game/background/blue_hills_1.settings
%%DATADIR%%/pixmaps/game/background/blue_mountains_1.png
%%DATADIR%%/pixmaps/game/background/blue_mountains_1.settings
%%DATADIR%%/pixmaps/game/background/blue_waterhills_1.png
%%DATADIR%%/pixmaps/game/background/blue_waterhills_1.settings
%%DATADIR%%/pixmaps/game/background/desert_dunes_1.png
%%DATADIR%%/pixmaps/game/background/desert_dunes_1.settings
%%DATADIR%%/pixmaps/game/background/desert_hills_1.png
%%DATADIR%%/pixmaps/game/background/desert_hills_1.settings
%%DATADIR%%/pixmaps/game/background/ghost_hills_1.png
%%DATADIR%%/pixmaps/game/background/ghost_hills_1.settings
%%DATADIR%%/pixmaps/game/background/green_grass_1.png
%%DATADIR%%/pixmaps/game/background/green_grass_1.settings
%%DATADIR%%/pixmaps/game/background/green_hills_1.png
%%DATADIR%%/pixmaps/game/background/green_hills_1.settings
%%DATADIR%%/pixmaps/game/background/green_hills_2.png
%%DATADIR%%/pixmaps/game/background/green_hills_2.settings
%%DATADIR%%/pixmaps/game/background/green_junglehills.png
%%DATADIR%%/pixmaps/game/background/green_junglehills.settings
%%DATADIR%%/pixmaps/game/background/low_sand.png
%%DATADIR%%/pixmaps/game/background/low_sand.settings
%%DATADIR%%/pixmaps/game/background/more_hills.png
%%DATADIR%%/pixmaps/game/background/more_hills.settings
%%DATADIR%%/pixmaps/game/background/ocean_green.png
%%DATADIR%%/pixmaps/game/background/ocean_green.settings
%%DATADIR%%/pixmaps/game/background/puffy_clouds.png
%%DATADIR%%/pixmaps/game/background/puffy_clouds.settings
%%DATADIR%%/pixmaps/game/background/sand_hill_1.png
%%DATADIR%%/pixmaps/game/background/sand_hill_1.settings
%%DATADIR%%/pixmaps/game/background/small_green_ballhills_1.png
%%DATADIR%%/pixmaps/game/background/small_green_ballhills_1.settings
%%DATADIR%%/pixmaps/game/background/snow_hills_1.png
%%DATADIR%%/pixmaps/game/background/snow_hills_1.settings
%%DATADIR%%/pixmaps/game/background/stalagtites_background_1.png
%%DATADIR%%/pixmaps/game/background/stalagtites_background_1.settings
%%DATADIR%%/pixmaps/game/background/stalagtites_background_2.png
%%DATADIR%%/pixmaps/game/background/stalagtites_background_2.settings
%%DATADIR%%/pixmaps/game/background/stars_1.png
%%DATADIR%%/pixmaps/game/background/stars_1.settings
%%DATADIR%%/pixmaps/game/box/brown1_1.png
%%DATADIR%%/pixmaps/game/box/brown1_1.settings
%%DATADIR%%/pixmaps/game/box/white1_1.png
%%DATADIR%%/pixmaps/game/box/white1_1.settings
%%DATADIR%%/pixmaps/game/box/yellow/bonus/1.png
%%DATADIR%%/pixmaps/game/box/yellow/bonus/1.settings
%%DATADIR%%/pixmaps/game/box/yellow/bonus/2.png
%%DATADIR%%/pixmaps/game/box/yellow/bonus/2.settings
%%DATADIR%%/pixmaps/game/box/yellow/bonus/3.png
%%DATADIR%%/pixmaps/game/box/yellow/bonus/3.settings
%%DATADIR%%/pixmaps/game/box/yellow/bonus/4.png
%%DATADIR%%/pixmaps/game/box/yellow/bonus/4.settings
%%DATADIR%%/pixmaps/game/box/yellow/bonus/5.png
%%DATADIR%%/pixmaps/game/box/yellow/bonus/5.settings
%%DATADIR%%/pixmaps/game/box/yellow/bonus/6.png
%%DATADIR%%/pixmaps/game/box/yellow/bonus/6.settings
%%DATADIR%%/pixmaps/game/box/yellow/default.png
%%DATADIR%%/pixmaps/game/box/yellow/default.settings
%%DATADIR%%/pixmaps/game/box/yellow/life/1.png
%%DATADIR%%/pixmaps/game/box/yellow/life/1.settings
%%DATADIR%%/pixmaps/game/box/yellow/life/2.png
%%DATADIR%%/pixmaps/game/box/yellow/life/2.settings
%%DATADIR%%/pixmaps/game/box/yellow/life/3.png
%%DATADIR%%/pixmaps/game/box/yellow/life/3.settings
%%DATADIR%%/pixmaps/game/box/yellow/life/4.png
%%DATADIR%%/pixmaps/game/box/yellow/life/4.settings
%%DATADIR%%/pixmaps/game/box/yellow/power_1.png
%%DATADIR%%/pixmaps/game/box/yellow/power_1.settings
%%DATADIR%%/pixmaps/game/box/yellow/spin/1.png
%%DATADIR%%/pixmaps/game/box/yellow/spin/1.settings
%%DATADIR%%/pixmaps/game/box/yellow/spin/2.png
%%DATADIR%%/pixmaps/game/box/yellow/spin/2.settings
%%DATADIR%%/pixmaps/game/box/yellow/spin/3.png
%%DATADIR%%/pixmaps/game/box/yellow/spin/3.settings
%%DATADIR%%/pixmaps/game/box/yellow/spin/4.png
%%DATADIR%%/pixmaps/game/box/yellow/spin/4.settings
%%DATADIR%%/pixmaps/game/box/yellow/spin/5.png
%%DATADIR%%/pixmaps/game/box/yellow/spin/5.settings
%%DATADIR%%/pixmaps/game/box/yellow/spin/disabled.png
%%DATADIR%%/pixmaps/game/box/yellow/spin/disabled.settings
%%DATADIR%%/pixmaps/game/editor/measures/big_h.settings
%%DATADIR%%/pixmaps/game/editor/measures/big_w.settings
%%DATADIR%%/pixmaps/game/editor/measures/duck_h.settings
%%DATADIR%%/pixmaps/game/editor/measures/height.settings
%%DATADIR%%/pixmaps/game/editor/measures/measure.png
%%DATADIR%%/pixmaps/game/editor/measures/normal_jump_h.settings
%%DATADIR%%/pixmaps/game/editor/measures/normal_jump_w.settings
%%DATADIR%%/pixmaps/game/editor/measures/power_jump_h.settings
%%DATADIR%%/pixmaps/game/editor/measures/power_jump_w.settings
%%DATADIR%%/pixmaps/game/editor/measures/run_jump_h.settings
%%DATADIR%%/pixmaps/game/editor/measures/run_jump_w.settings
%%DATADIR%%/pixmaps/game/editor/measures/small_h.settings
%%DATADIR%%/pixmaps/game/editor/measures/small_w.settings
%%DATADIR%%/pixmaps/game/editor/measures/width.settings
%%DATADIR%%/pixmaps/game/editor/special.png
%%DATADIR%%/pixmaps/game/editor/special.settings
%%DATADIR%%/pixmaps/game/editor/unknown.png
%%DATADIR%%/pixmaps/game/editor/unknown.settings
%%DATADIR%%/pixmaps/game/game_over.png
%%DATADIR%%/pixmaps/game/game_over.settings
%%DATADIR%%/pixmaps/game/gold_m.png
%%DATADIR%%/pixmaps/game/gold_m.settings
%%DATADIR%%/pixmaps/game/itembox.png
%%DATADIR%%/pixmaps/game/itembox.settings
%%DATADIR%%/pixmaps/game/items/fireplant.png
%%DATADIR%%/pixmaps/game/items/fireplant.settings
%%DATADIR%%/pixmaps/game/items/fireplant_left.png
%%DATADIR%%/pixmaps/game/items/fireplant_left.settings
%%DATADIR%%/pixmaps/game/items/fireplant_right.png
%%DATADIR%%/pixmaps/game/items/fireplant_right.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/1.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/1.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/10.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/10.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/10_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/1_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/2.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/2.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/2_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/3.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/3.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/3_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/4.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/4.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/4_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/5.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/5.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/5_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/6.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/6.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/6_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/7.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/7.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/7_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/8.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/8.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/8_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/9.png
%%DATADIR%%/pixmaps/game/items/goldpiece/red/9.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/red/9_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/1.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/1.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/10.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/10.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/10_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/1_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/2.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/2.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/2_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/3.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/3.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/3_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/4.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/4.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/4_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/5.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/5.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/5_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/6.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/6.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/6_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/7.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/7.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/7_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/8.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/8.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/8_falling.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/9.png
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/9.settings
%%DATADIR%%/pixmaps/game/items/goldpiece/yellow/9_falling.settings
%%DATADIR%%/pixmaps/game/items/moon_1.png
%%DATADIR%%/pixmaps/game/items/moon_1.settings
%%DATADIR%%/pixmaps/game/items/moon_2.png
%%DATADIR%%/pixmaps/game/items/moon_2.settings
%%DATADIR%%/pixmaps/game/items/mushroom_blue.png
%%DATADIR%%/pixmaps/game/items/mushroom_blue.settings
%%DATADIR%%/pixmaps/game/items/mushroom_ghost.png
%%DATADIR%%/pixmaps/game/items/mushroom_ghost.settings
%%DATADIR%%/pixmaps/game/items/mushroom_green.png
%%DATADIR%%/pixmaps/game/items/mushroom_green.settings
%%DATADIR%%/pixmaps/game/items/mushroom_poison.png
%%DATADIR%%/pixmaps/game/items/mushroom_poison.settings
%%DATADIR%%/pixmaps/game/items/mushroom_red.png
%%DATADIR%%/pixmaps/game/items/mushroom_red.settings
%%DATADIR%%/pixmaps/game/items/star.png
%%DATADIR%%/pixmaps/game/items/star.settings
%%DATADIR%%/pixmaps/game/level/door_red_1.png
%%DATADIR%%/pixmaps/game/level/door_red_1.settings
%%DATADIR%%/pixmaps/game/level/door_wood_1.png
%%DATADIR%%/pixmaps/game/level/door_wood_1.settings
%%DATADIR%%/pixmaps/game/level/door_yellow_1.png
%%DATADIR%%/pixmaps/game/level/door_yellow_1.settings
%%DATADIR%%/pixmaps/game/logo/smc_big_1.png
%%DATADIR%%/pixmaps/game/logo/smc_big_1.settings
%%DATADIR%%/pixmaps/game/maryo_l.png
%%DATADIR%%/pixmaps/game/maryo_l.settings
%%DATADIR%%/pixmaps/game/the_end.png
%%DATADIR%%/pixmaps/game/the_end.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_2_middle.png
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_2_middle_left.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_2_middle_right.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_2_top.png
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_2_top_left.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_2_top_right.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_middle.png
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_middle_left.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_middle_right.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_top.png
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_top_left.settings
%%DATADIR%%/pixmaps/ground/candy_1/candy_cane_top_right.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/bottom/1.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/bottom/1.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/bottom/left.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/bottom/left.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/bottom/right.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/1.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/1.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/left.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/left.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/left_bottom.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/left_bottom.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/left_top.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/right.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/right_bottom.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/top/1.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/top/1.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/top/left.png
%%DATADIR%%/pixmaps/ground/castle_1/ground/top/left.settings
%%DATADIR%%/pixmaps/ground/castle_1/ground/top/right.settings
%%DATADIR%%/pixmaps/ground/desert_1/bones/rackabones_back.png
%%DATADIR%%/pixmaps/ground/desert_1/bones/rackabones_back.settings
%%DATADIR%%/pixmaps/ground/desert_1/bones/rackabones_front.png
%%DATADIR%%/pixmaps/ground/desert_1/bones/rackabones_front.settings
%%DATADIR%%/pixmaps/ground/desert_1/bones/rackabones_middle.png
%%DATADIR%%/pixmaps/ground/desert_1/bones/rackabones_middle.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/1.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/1.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/2.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/2.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/left.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/left.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/right.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/middle/right.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/1.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/1.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/2.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/2.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/left.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/left.settings
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/right.png
%%DATADIR%%/pixmaps/ground/desert_1/ground/top/right.settings
%%DATADIR%%/pixmaps/ground/ghost_1/joist_1.png
%%DATADIR%%/pixmaps/ground/ghost_1/joist_1.settings
%%DATADIR%%/pixmaps/ground/ghost_1/lamp_1.png
%%DATADIR%%/pixmaps/ground/ghost_1/lamp_1.settings
%%DATADIR%%/pixmaps/ground/ghost_1/stone_1.png
%%DATADIR%%/pixmaps/ground/ghost_1/stone_1.settings
%%DATADIR%%/pixmaps/ground/ghost_1/way_1_left.png
%%DATADIR%%/pixmaps/ground/ghost_1/way_1_left.settings
%%DATADIR%%/pixmaps/ground/ghost_1/way_1_middle.png
%%DATADIR%%/pixmaps/ground/ghost_1/way_1_middle.settings
%%DATADIR%%/pixmaps/ground/ghost_1/way_1_right.settings
%%DATADIR%%/pixmaps/ground/ghost_1/window_1.png
%%DATADIR%%/pixmaps/ground/ghost_1/window_1.settings
%%DATADIR%%/pixmaps/ground/green_1/hedges/big_1.png
%%DATADIR%%/pixmaps/ground/green_1/hedges/big_1.settings
%%DATADIR%%/pixmaps/ground/green_1/hedges/medium_1.png
%%DATADIR%%/pixmaps/ground/green_1/hedges/medium_1.settings
%%DATADIR%%/pixmaps/ground/green_1/hedges/medium_2.png
%%DATADIR%%/pixmaps/ground/green_1/hedges/medium_2.settings
%%DATADIR%%/pixmaps/ground/green_1/hedges/small_1.png
%%DATADIR%%/pixmaps/ground/green_1/hedges/small_1.settings
%%DATADIR%%/pixmaps/ground/green_1/hedges/small_2.png
%%DATADIR%%/pixmaps/ground/green_1/hedges/small_2.settings
%%DATADIR%%/pixmaps/ground/green_1/hedges/wild_medium.png
%%DATADIR%%/pixmaps/ground/green_1/hedges/wild_medium.settings
%%DATADIR%%/pixmaps/ground/green_1/kplant.png
%%DATADIR%%/pixmaps/ground/green_1/kplant.settings
%%DATADIR%%/pixmaps/ground/green_1/kplant_head.png
%%DATADIR%%/pixmaps/ground/green_1/kplant_head.settings
%%DATADIR%%/pixmaps/ground/green_1/plant_l.settings
%%DATADIR%%/pixmaps/ground/green_1/plant_m.png
%%DATADIR%%/pixmaps/ground/green_1/plant_m.settings
%%DATADIR%%/pixmaps/ground/green_1/plant_r.png
%%DATADIR%%/pixmaps/ground/green_1/plant_r.settings
%%DATADIR%%/pixmaps/ground/green_1/slider/1/brown/left.png
%%DATADIR%%/pixmaps/ground/green_1/slider/1/brown/left.settings
%%DATADIR%%/pixmaps/ground/green_1/slider/1/brown/middle.png
%%DATADIR%%/pixmaps/ground/green_1/slider/1/brown/middle.settings
%%DATADIR%%/pixmaps/ground/green_1/slider/1/brown/right.png
%%DATADIR%%/pixmaps/ground/green_1/slider/1/brown/right.settings
%%DATADIR%%/pixmaps/ground/green_2/apple_green.png
%%DATADIR%%/pixmaps/ground/green_2/apple_green.settings
%%DATADIR%%/pixmaps/ground/green_2/gras_middle.png
%%DATADIR%%/pixmaps/ground/green_2/gras_middle.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/big_1.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/big_1.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/big_2.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/big_2.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/big_3.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/big_3.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_1.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_1.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_2.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_2.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_3.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_3.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_4.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/cactus_4.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/small_1.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/small_1.settings
%%DATADIR%%/pixmaps/ground/green_2/hedges/small_2.png
%%DATADIR%%/pixmaps/ground/green_2/hedges/small_2.settings
%%DATADIR%%/pixmaps/ground/green_2/tendril.png
%%DATADIR%%/pixmaps/ground/green_2/tendril.settings
%%DATADIR%%/pixmaps/ground/green_2/tendril_top.png
%%DATADIR%%/pixmaps/ground/green_2/tendril_top.settings
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/bottom.png
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/bottom.settings
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/middle.png
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/middle.settings
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/top.png
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/top.settings
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/trunk.png
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/trunk.settings
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/trunk_node.png
%%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree/trunk_node.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/bottom/1.png
%%DATADIR%%/pixmaps/ground/green_3/ground/bottom/1.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/bottom/left.png
%%DATADIR%%/pixmaps/ground/green_3/ground/bottom/left.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/bottom/right.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/1.png
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/1.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/left.png
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/left.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/left_bottom.png
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/left_bottom.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/left_top.png
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/right.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/right_bottom.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/top/1.png
%%DATADIR%%/pixmaps/ground/green_3/ground/top/1.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/top/left.png
%%DATADIR%%/pixmaps/ground/green_3/ground/top/left.settings
%%DATADIR%%/pixmaps/ground/green_3/ground/top/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/beanstalk.png
%%DATADIR%%/pixmaps/ground/jungle_1/beanstalk.settings
%%DATADIR%%/pixmaps/ground/jungle_1/beanstalk_2.png
%%DATADIR%%/pixmaps/ground/jungle_1/beanstalk_2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/beanstalk_2_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/beanstalk_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/berry_1.png
%%DATADIR%%/pixmaps/ground/jungle_1/berry_1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/big_plant_1.png
%%DATADIR%%/pixmaps/ground/jungle_1/big_plant_1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/big_plant_2.png
%%DATADIR%%/pixmaps/ground/jungle_1/big_plant_2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_frame_back.png
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_frame_back.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_frame_back_2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_frame_front.png
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_frame_front.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_frame_front_2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_plank.png
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_plank.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_rope_back.png
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_rope_back.settings
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_rope_front.png
%%DATADIR%%/pixmaps/ground/jungle_1/bridge_rope_front.settings
%%DATADIR%%/pixmaps/ground/jungle_1/grass/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/grass/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/grass/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/grass/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/grass/3.png
%%DATADIR%%/pixmaps/ground/jungle_1/grass/3.settings
%%DATADIR%%/pixmaps/ground/jungle_1/grass/4.png
%%DATADIR%%/pixmaps/ground/jungle_1/grass/4.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/middle/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/middle/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/middle/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/middle/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/left_bottom.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/left_bottom.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/left_top.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/right_bottom.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/right_bottom.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/right_top.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/left_bottom.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/left_bottom.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/left_top.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/right_bottom.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/right_bottom.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/right_top.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/left.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/right.png
%%DATADIR%%/pixmaps/ground/jungle_1/ground/top/right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/kplant.png
%%DATADIR%%/pixmaps/ground/jungle_1/kplant.settings
%%DATADIR%%/pixmaps/ground/jungle_1/kplant_head.png
%%DATADIR%%/pixmaps/ground/jungle_1/kplant_head.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_blue_left.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_blue_left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_blue_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_blue_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_blue_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_brown_left.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_brown_left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_brown_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_brown_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_brown_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_green_left.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_green_left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_green_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_green_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/1_green_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_blue_left.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_blue_left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_blue_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_blue_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_blue_right.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_blue_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_brown_left.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_brown_left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_brown_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_brown_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_brown_right.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_brown_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_green_left.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_green_left.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_green_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_green_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_green_right.png
%%DATADIR%%/pixmaps/ground/jungle_1/slider/2_green_right.settings
%%DATADIR%%/pixmaps/ground/jungle_1/tree/1.png
%%DATADIR%%/pixmaps/ground/jungle_1/tree/1.settings
%%DATADIR%%/pixmaps/ground/jungle_1/tree/1_front.png
%%DATADIR%%/pixmaps/ground/jungle_1/tree/1_front.settings
%%DATADIR%%/pixmaps/ground/jungle_1/tree/2.png
%%DATADIR%%/pixmaps/ground/jungle_1/tree/2.settings
%%DATADIR%%/pixmaps/ground/jungle_1/tree/2_front.png
%%DATADIR%%/pixmaps/ground/jungle_1/tree/2_front.settings
%%DATADIR%%/pixmaps/ground/jungle_1/vine_bottom.png
%%DATADIR%%/pixmaps/ground/jungle_1/vine_bottom.settings
%%DATADIR%%/pixmaps/ground/jungle_1/vine_middle.png
%%DATADIR%%/pixmaps/ground/jungle_1/vine_middle.settings
%%DATADIR%%/pixmaps/ground/jungle_1/vine_top.png
%%DATADIR%%/pixmaps/ground/jungle_1/vine_top.settings
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_blue.png
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_blue.settings
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_green.png
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_green.settings
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_red.png
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_red.settings
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_yellow.png
%%DATADIR%%/pixmaps/ground/jungle_2/hedge/1_yellow.settings
%%DATADIR%%/pixmaps/ground/jungle_2/rope_1_hor.png
%%DATADIR%%/pixmaps/ground/jungle_2/rope_1_hor.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/all.txt
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/left.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/left.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/middle_1.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/middle_1.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/middle_2.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/middle_2.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/right.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold/right.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/left.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/left.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/middle_1.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/middle_1.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/middle_2.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/middle_2.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/right.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/green/right.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/left.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/left.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/middle_1.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/middle_1.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/middle_2.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/middle_2.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/right.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/red/right.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_bottom.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_bottom.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_double_riffle.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_double_riffle.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_riffle.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_riffle.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_riffle_top.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_riffle_top.settings
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_top.png
%%DATADIR%%/pixmaps/ground/mushroom_1/platform/shaft_top.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/left.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/left_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/left_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/left_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/middle.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/middle.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/right.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/right_down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/right_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/right_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/right_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue/up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/left.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/left_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/left_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/left_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/middle.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/middle.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/right.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/right_down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/right_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/right_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/right_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green/up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/left.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/left_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/left_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/left_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/middle.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/middle.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/right.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/right_down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/right_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/right_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/right_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey/up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/left.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/left_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/left_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/left_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/middle.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/middle.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/right.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/right_down.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/right_down.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/right_up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/right_up.settings
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/up.png
%%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red/up.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/down.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/left.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/left_down.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/left_up.png
%%DATADIR%%/pixmaps/ground/sand_1/ground/left_up.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/middle.png
%%DATADIR%%/pixmaps/ground/sand_1/ground/middle.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/right.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/right_down.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/right_up.settings
%%DATADIR%%/pixmaps/ground/sand_1/ground/up.png
%%DATADIR%%/pixmaps/ground/sand_1/ground/up.settings
%%DATADIR%%/pixmaps/ground/sand_1/sphinx_medium.png
%%DATADIR%%/pixmaps/ground/sand_1/sphinx_medium.settings
%%DATADIR%%/pixmaps/ground/sand_1/tendril.png
%%DATADIR%%/pixmaps/ground/sand_1/tendril.settings
%%DATADIR%%/pixmaps/ground/sand_1/tendril_top.png
%%DATADIR%%/pixmaps/ground/sand_1/tendril_top.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/1.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/1.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/2.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/2.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/left.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/left.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/right.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/bottom/right.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/middle/left.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/middle/left.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/middle/right.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/middle/right.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/1.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/1.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/2.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/2.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/left.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/left.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/right.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top/right.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/1.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/1.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/2.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/2.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/left_top.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/right_top.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/left.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/left.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/left_bottom.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/left_bottom.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/left_top.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/right.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/right.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/right_bottom.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/right_bottom.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/right_top.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/1.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/1.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/2.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/2.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/left.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/left.settings
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/right.png
%%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top/right.settings
%%DATADIR%%/pixmaps/ground/snow_1/hills/big_1/top.png
%%DATADIR%%/pixmaps/ground/snow_1/hills/big_1/top.settings
%%DATADIR%%/pixmaps/ground/snow_1/snowman_1.png
%%DATADIR%%/pixmaps/ground/snow_1/snowman_1.settings
%%DATADIR%%/pixmaps/ground/snow_1/trees/balloon/bottom.png
%%DATADIR%%/pixmaps/ground/snow_1/trees/balloon/bottom.settings
%%DATADIR%%/pixmaps/ground/snow_1/trees/balloon/middle.png
%%DATADIR%%/pixmaps/ground/snow_1/trees/balloon/middle.settings
%%DATADIR%%/pixmaps/ground/snow_1/trees/balloon/top.png
%%DATADIR%%/pixmaps/ground/snow_1/trees/balloon/top.settings
%%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1/lights.png
%%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1/lights.settings
%%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1/normal.png
%%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1/normal.settings
%%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1/snow.png
%%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1/snow.settings
%%DATADIR%%/pixmaps/ground/snow_1/windows/medium_1.png
%%DATADIR%%/pixmaps/ground/snow_1/windows/medium_1.settings
%%DATADIR%%/pixmaps/ground/underground/cain.png
%%DATADIR%%/pixmaps/ground/underground/cain.settings
%%DATADIR%%/pixmaps/ground/underground/cain_end.png
%%DATADIR%%/pixmaps/ground/underground/cain_end.settings
%%DATADIR%%/pixmaps/ground/underground/ground/bottom/1.png
%%DATADIR%%/pixmaps/ground/underground/ground/bottom/1.settings
%%DATADIR%%/pixmaps/ground/underground/ground/bottom/left.png
%%DATADIR%%/pixmaps/ground/underground/ground/bottom/left.settings
%%DATADIR%%/pixmaps/ground/underground/ground/bottom/right.png
%%DATADIR%%/pixmaps/ground/underground/ground/bottom/right.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/1.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/1.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/left.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/left.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/left_bottom.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/left_bottom.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/left_top.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/left_top.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/right.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/right.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/right_bottom.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/right_bottom.settings
%%DATADIR%%/pixmaps/ground/underground/ground/middle/right_top.png
%%DATADIR%%/pixmaps/ground/underground/ground/middle/right_top.settings
%%DATADIR%%/pixmaps/ground/underground/ground/top/1.png
%%DATADIR%%/pixmaps/ground/underground/ground/top/1.settings
%%DATADIR%%/pixmaps/ground/underground/ground/top/left.png
%%DATADIR%%/pixmaps/ground/underground/ground/top/left.settings
%%DATADIR%%/pixmaps/ground/underground/ground/top/right.png
%%DATADIR%%/pixmaps/ground/underground/ground/top/right.settings
%%DATADIR%%/pixmaps/ground/underground/rope.png
%%DATADIR%%/pixmaps/ground/underground/rope.settings
%%DATADIR%%/pixmaps/ground/underground/rope_end.png
%%DATADIR%%/pixmaps/ground/underground/rope_end.settings
%%DATADIR%%/pixmaps/hills/blue_1/1_big.png
%%DATADIR%%/pixmaps/hills/blue_1/1_big.settings
%%DATADIR%%/pixmaps/hills/blue_1/1_medium.png
%%DATADIR%%/pixmaps/hills/blue_1/1_medium.settings
%%DATADIR%%/pixmaps/hills/green_1/head.png
%%DATADIR%%/pixmaps/hills/green_1/head.settings
%%DATADIR%%/pixmaps/hills/green_1/middle.png
%%DATADIR%%/pixmaps/hills/green_1/middle.settings
%%DATADIR%%/pixmaps/hills/green_2/big_1.png
%%DATADIR%%/pixmaps/hills/green_2/big_1.settings
%%DATADIR%%/pixmaps/hills/green_2/medium_1.png
%%DATADIR%%/pixmaps/hills/green_2/medium_1.settings
%%DATADIR%%/pixmaps/hills/light_blue_1/head.png
%%DATADIR%%/pixmaps/hills/light_blue_1/head.settings
%%DATADIR%%/pixmaps/hills/light_blue_1/middle.png
%%DATADIR%%/pixmaps/hills/light_blue_1/middle.settings
%%DATADIR%%/pixmaps/hills/very_light_blue_1/1_big.png
%%DATADIR%%/pixmaps/hills/very_light_blue_1/1_big.settings
%%DATADIR%%/pixmaps/hills/very_light_blue_1/1_medium.png
%%DATADIR%%/pixmaps/hills/very_light_blue_1/1_medium.settings
%%DATADIR%%/pixmaps/maryo/all.txt
%%DATADIR%%/pixmaps/maryo/big/climb_left.png
%%DATADIR%%/pixmaps/maryo/big/climb_left.settings
%%DATADIR%%/pixmaps/maryo/big/climb_right.png
%%DATADIR%%/pixmaps/maryo/big/climb_right.settings
%%DATADIR%%/pixmaps/maryo/big/duck_left.settings
%%DATADIR%%/pixmaps/maryo/big/duck_right.png
%%DATADIR%%/pixmaps/maryo/big/duck_right.settings
%%DATADIR%%/pixmaps/maryo/big/fall_left.settings
%%DATADIR%%/pixmaps/maryo/big/fall_left_holding.settings
%%DATADIR%%/pixmaps/maryo/big/fall_right.png
%%DATADIR%%/pixmaps/maryo/big/fall_right.settings
%%DATADIR%%/pixmaps/maryo/big/fall_right_holding.png
%%DATADIR%%/pixmaps/maryo/big/fall_right_holding.settings
%%DATADIR%%/pixmaps/maryo/big/jump_left.settings
%%DATADIR%%/pixmaps/maryo/big/jump_left_holding.settings
%%DATADIR%%/pixmaps/maryo/big/jump_right.png
%%DATADIR%%/pixmaps/maryo/big/jump_right.settings
%%DATADIR%%/pixmaps/maryo/big/jump_right_holding.png
%%DATADIR%%/pixmaps/maryo/big/jump_right_holding.settings
%%DATADIR%%/pixmaps/maryo/big/stand_left.settings
%%DATADIR%%/pixmaps/maryo/big/stand_left_holding.settings
%%DATADIR%%/pixmaps/maryo/big/stand_right.png
%%DATADIR%%/pixmaps/maryo/big/stand_right.settings
%%DATADIR%%/pixmaps/maryo/big/stand_right_holding.png
%%DATADIR%%/pixmaps/maryo/big/stand_right_holding.settings
%%DATADIR%%/pixmaps/maryo/big/up_left.settings
%%DATADIR%%/pixmaps/maryo/big/up_right.png
%%DATADIR%%/pixmaps/maryo/big/up_right.settings
%%DATADIR%%/pixmaps/maryo/big/walk_left_1.settings
%%DATADIR%%/pixmaps/maryo/big/walk_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/big/walk_left_2.settings
%%DATADIR%%/pixmaps/maryo/big/walk_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/big/walk_right_1.png
%%DATADIR%%/pixmaps/maryo/big/walk_right_1.settings
%%DATADIR%%/pixmaps/maryo/big/walk_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/big/walk_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/big/walk_right_2.png
%%DATADIR%%/pixmaps/maryo/big/walk_right_2.settings
%%DATADIR%%/pixmaps/maryo/big/walk_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/big/walk_right_2_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/climb_left.png
%%DATADIR%%/pixmaps/maryo/fire/climb_left.settings
%%DATADIR%%/pixmaps/maryo/fire/climb_right.png
%%DATADIR%%/pixmaps/maryo/fire/climb_right.settings
%%DATADIR%%/pixmaps/maryo/fire/duck_left.settings
%%DATADIR%%/pixmaps/maryo/fire/duck_right.png
%%DATADIR%%/pixmaps/maryo/fire/duck_right.settings
%%DATADIR%%/pixmaps/maryo/fire/fall_left.settings
%%DATADIR%%/pixmaps/maryo/fire/fall_left_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/fall_right.png
%%DATADIR%%/pixmaps/maryo/fire/fall_right.settings
%%DATADIR%%/pixmaps/maryo/fire/fall_right_holding.png
%%DATADIR%%/pixmaps/maryo/fire/fall_right_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/jump_left.settings
%%DATADIR%%/pixmaps/maryo/fire/jump_left_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/jump_right.png
%%DATADIR%%/pixmaps/maryo/fire/jump_right.settings
%%DATADIR%%/pixmaps/maryo/fire/jump_right_holding.png
%%DATADIR%%/pixmaps/maryo/fire/jump_right_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/stand_left.settings
%%DATADIR%%/pixmaps/maryo/fire/stand_left_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/stand_right.png
%%DATADIR%%/pixmaps/maryo/fire/stand_right.settings
%%DATADIR%%/pixmaps/maryo/fire/stand_right_holding.png
%%DATADIR%%/pixmaps/maryo/fire/stand_right_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/throw_left_1.settings
%%DATADIR%%/pixmaps/maryo/fire/throw_left_2.settings
%%DATADIR%%/pixmaps/maryo/fire/throw_right_1.png
%%DATADIR%%/pixmaps/maryo/fire/throw_right_1.settings
%%DATADIR%%/pixmaps/maryo/fire/throw_right_2.png
%%DATADIR%%/pixmaps/maryo/fire/throw_right_2.settings
%%DATADIR%%/pixmaps/maryo/fire/up_left.settings
%%DATADIR%%/pixmaps/maryo/fire/up_right.png
%%DATADIR%%/pixmaps/maryo/fire/up_right.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_left_1.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_left_2.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_right_1.png
%%DATADIR%%/pixmaps/maryo/fire/walk_right_1.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/fire/walk_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_right_2.png
%%DATADIR%%/pixmaps/maryo/fire/walk_right_2.settings
%%DATADIR%%/pixmaps/maryo/fire/walk_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/fire/walk_right_2_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/climb_left.png
%%DATADIR%%/pixmaps/maryo/flying/climb_left.settings
%%DATADIR%%/pixmaps/maryo/flying/climb_right.png
%%DATADIR%%/pixmaps/maryo/flying/climb_right.settings
%%DATADIR%%/pixmaps/maryo/flying/duck_left.settings
%%DATADIR%%/pixmaps/maryo/flying/duck_right.png
%%DATADIR%%/pixmaps/maryo/flying/duck_right.settings
%%DATADIR%%/pixmaps/maryo/flying/duck_right_start.png
%%DATADIR%%/pixmaps/maryo/flying/fall_left.settings
%%DATADIR%%/pixmaps/maryo/flying/fall_left_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/fall_right.png
%%DATADIR%%/pixmaps/maryo/flying/fall_right.settings
%%DATADIR%%/pixmaps/maryo/flying/fall_right_1.png
%%DATADIR%%/pixmaps/maryo/flying/fall_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/flying/fall_right_holding.png
%%DATADIR%%/pixmaps/maryo/flying/fall_right_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_left_1.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_left_2.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_left_3.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_left_4.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_right_1.png
%%DATADIR%%/pixmaps/maryo/flying/fly_right_1.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_right_2.png
%%DATADIR%%/pixmaps/maryo/flying/fly_right_2.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_right_3.png
%%DATADIR%%/pixmaps/maryo/flying/fly_right_3.settings
%%DATADIR%%/pixmaps/maryo/flying/fly_right_4.png
%%DATADIR%%/pixmaps/maryo/flying/fly_right_4.settings
%%DATADIR%%/pixmaps/maryo/flying/jump_left.settings
%%DATADIR%%/pixmaps/maryo/flying/jump_left_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/jump_right.png
%%DATADIR%%/pixmaps/maryo/flying/jump_right.settings
%%DATADIR%%/pixmaps/maryo/flying/jump_right_holding.png
%%DATADIR%%/pixmaps/maryo/flying/jump_right_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/left.settings
%%DATADIR%%/pixmaps/maryo/flying/left_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/right.png
%%DATADIR%%/pixmaps/maryo/flying/right.settings
%%DATADIR%%/pixmaps/maryo/flying/right_holding.png
%%DATADIR%%/pixmaps/maryo/flying/right_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/run_left_1.settings
%%DATADIR%%/pixmaps/maryo/flying/run_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/run_left_2.settings
%%DATADIR%%/pixmaps/maryo/flying/run_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/run_right_1.png
%%DATADIR%%/pixmaps/maryo/flying/run_right_1.settings
%%DATADIR%%/pixmaps/maryo/flying/run_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/flying/run_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/run_right_2.png
%%DATADIR%%/pixmaps/maryo/flying/run_right_2.settings
%%DATADIR%%/pixmaps/maryo/flying/run_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/flying/run_right_2_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/slow_fall_left.settings
%%DATADIR%%/pixmaps/maryo/flying/slow_fall_right.png
%%DATADIR%%/pixmaps/maryo/flying/slow_fall_right.settings
%%DATADIR%%/pixmaps/maryo/flying/up_left.settings
%%DATADIR%%/pixmaps/maryo/flying/up_right.png
%%DATADIR%%/pixmaps/maryo/flying/up_right.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_left_1.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_left_2.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_right_1.png
%%DATADIR%%/pixmaps/maryo/flying/walk_right_1.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/flying/walk_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_right_2.png
%%DATADIR%%/pixmaps/maryo/flying/walk_right_2.settings
%%DATADIR%%/pixmaps/maryo/flying/walk_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/flying/walk_right_2_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/climb_left.png
%%DATADIR%%/pixmaps/maryo/ghost/climb_left.settings
%%DATADIR%%/pixmaps/maryo/ghost/climb_right.png
%%DATADIR%%/pixmaps/maryo/ghost/climb_right.settings
%%DATADIR%%/pixmaps/maryo/ghost/duck_left.settings
%%DATADIR%%/pixmaps/maryo/ghost/duck_right.png
%%DATADIR%%/pixmaps/maryo/ghost/duck_right.settings
%%DATADIR%%/pixmaps/maryo/ghost/fall_left.settings
%%DATADIR%%/pixmaps/maryo/ghost/fall_left_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/fall_right.png
%%DATADIR%%/pixmaps/maryo/ghost/fall_right.settings
%%DATADIR%%/pixmaps/maryo/ghost/fall_right_holding.png
%%DATADIR%%/pixmaps/maryo/ghost/fall_right_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/jump_left.settings
%%DATADIR%%/pixmaps/maryo/ghost/jump_left_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/jump_right.png
%%DATADIR%%/pixmaps/maryo/ghost/jump_right.settings
%%DATADIR%%/pixmaps/maryo/ghost/jump_right_holding.png
%%DATADIR%%/pixmaps/maryo/ghost/jump_right_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/stand_left.settings
%%DATADIR%%/pixmaps/maryo/ghost/stand_left_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/stand_right.png
%%DATADIR%%/pixmaps/maryo/ghost/stand_right.settings
%%DATADIR%%/pixmaps/maryo/ghost/stand_right_holding.png
%%DATADIR%%/pixmaps/maryo/ghost/stand_right_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/up_left.settings
%%DATADIR%%/pixmaps/maryo/ghost/up_right.png
%%DATADIR%%/pixmaps/maryo/ghost/up_right.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_left_1.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_left_2.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_1.png
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_1.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_2.png
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_2.settings
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/ghost/walk_right_2_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/climb_left.png
%%DATADIR%%/pixmaps/maryo/ice/climb_left.settings
%%DATADIR%%/pixmaps/maryo/ice/climb_right.png
%%DATADIR%%/pixmaps/maryo/ice/climb_right.settings
%%DATADIR%%/pixmaps/maryo/ice/duck_left.settings
%%DATADIR%%/pixmaps/maryo/ice/duck_right.png
%%DATADIR%%/pixmaps/maryo/ice/duck_right.settings
%%DATADIR%%/pixmaps/maryo/ice/fall_left.settings
%%DATADIR%%/pixmaps/maryo/ice/fall_left_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/fall_right.png
%%DATADIR%%/pixmaps/maryo/ice/fall_right.settings
%%DATADIR%%/pixmaps/maryo/ice/fall_right_holding.png
%%DATADIR%%/pixmaps/maryo/ice/fall_right_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/jump_left.settings
%%DATADIR%%/pixmaps/maryo/ice/jump_left_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/jump_right.png
%%DATADIR%%/pixmaps/maryo/ice/jump_right.settings
%%DATADIR%%/pixmaps/maryo/ice/jump_right_holding.png
%%DATADIR%%/pixmaps/maryo/ice/jump_right_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/stand_left.settings
%%DATADIR%%/pixmaps/maryo/ice/stand_left_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/stand_right.png
%%DATADIR%%/pixmaps/maryo/ice/stand_right.settings
%%DATADIR%%/pixmaps/maryo/ice/stand_right_holding.png
%%DATADIR%%/pixmaps/maryo/ice/stand_right_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/throw_left_1.settings
%%DATADIR%%/pixmaps/maryo/ice/throw_left_2.settings
%%DATADIR%%/pixmaps/maryo/ice/throw_right_1.png
%%DATADIR%%/pixmaps/maryo/ice/throw_right_1.settings
%%DATADIR%%/pixmaps/maryo/ice/throw_right_2.png
%%DATADIR%%/pixmaps/maryo/ice/throw_right_2.settings
%%DATADIR%%/pixmaps/maryo/ice/up_left.settings
%%DATADIR%%/pixmaps/maryo/ice/up_right.png
%%DATADIR%%/pixmaps/maryo/ice/up_right.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_left_1.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_left_2.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_right_1.png
%%DATADIR%%/pixmaps/maryo/ice/walk_right_1.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/ice/walk_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_right_2.png
%%DATADIR%%/pixmaps/maryo/ice/walk_right_2.settings
%%DATADIR%%/pixmaps/maryo/ice/walk_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/ice/walk_right_2_holding.settings
%%DATADIR%%/pixmaps/maryo/small/climb_left.png
%%DATADIR%%/pixmaps/maryo/small/climb_left.settings
%%DATADIR%%/pixmaps/maryo/small/climb_right.png
%%DATADIR%%/pixmaps/maryo/small/climb_right.settings
%%DATADIR%%/pixmaps/maryo/small/dead_left.settings
%%DATADIR%%/pixmaps/maryo/small/dead_right.png
%%DATADIR%%/pixmaps/maryo/small/dead_right.settings
%%DATADIR%%/pixmaps/maryo/small/duck_left.settings
%%DATADIR%%/pixmaps/maryo/small/duck_right.png
%%DATADIR%%/pixmaps/maryo/small/duck_right.settings
%%DATADIR%%/pixmaps/maryo/small/fall_left.settings
%%DATADIR%%/pixmaps/maryo/small/fall_left_holding.settings
%%DATADIR%%/pixmaps/maryo/small/fall_right.png
%%DATADIR%%/pixmaps/maryo/small/fall_right.settings
%%DATADIR%%/pixmaps/maryo/small/fall_right_holding.png
%%DATADIR%%/pixmaps/maryo/small/fall_right_holding.settings
%%DATADIR%%/pixmaps/maryo/small/jump_left.settings
%%DATADIR%%/pixmaps/maryo/small/jump_left_holding.settings
%%DATADIR%%/pixmaps/maryo/small/jump_right.png
%%DATADIR%%/pixmaps/maryo/small/jump_right.settings
%%DATADIR%%/pixmaps/maryo/small/jump_right_holding.png
%%DATADIR%%/pixmaps/maryo/small/jump_right_holding.settings
%%DATADIR%%/pixmaps/maryo/small/stand_left.settings
%%DATADIR%%/pixmaps/maryo/small/stand_left_holding.settings
%%DATADIR%%/pixmaps/maryo/small/stand_right.png
%%DATADIR%%/pixmaps/maryo/small/stand_right.settings
%%DATADIR%%/pixmaps/maryo/small/stand_right_holding.png
%%DATADIR%%/pixmaps/maryo/small/stand_right_holding.settings
%%DATADIR%%/pixmaps/maryo/small/up_left.settings
%%DATADIR%%/pixmaps/maryo/small/up_right.png
%%DATADIR%%/pixmaps/maryo/small/up_right.settings
%%DATADIR%%/pixmaps/maryo/small/walk_left_1.settings
%%DATADIR%%/pixmaps/maryo/small/walk_left_1_holding.settings
%%DATADIR%%/pixmaps/maryo/small/walk_left_2.settings
%%DATADIR%%/pixmaps/maryo/small/walk_left_2_holding.settings
%%DATADIR%%/pixmaps/maryo/small/walk_right_1.png
%%DATADIR%%/pixmaps/maryo/small/walk_right_1.settings
%%DATADIR%%/pixmaps/maryo/small/walk_right_1_holding.png
%%DATADIR%%/pixmaps/maryo/small/walk_right_1_holding.settings
%%DATADIR%%/pixmaps/maryo/small/walk_right_2.png
%%DATADIR%%/pixmaps/maryo/small/walk_right_2.settings
%%DATADIR%%/pixmaps/maryo/small/walk_right_2_holding.png
%%DATADIR%%/pixmaps/maryo/small/walk_right_2_holding.settings
%%DATADIR%%/pixmaps/menu/audio.png
%%DATADIR%%/pixmaps/menu/audio.settings
%%DATADIR%%/pixmaps/menu/controls.png
%%DATADIR%%/pixmaps/menu/controls.settings
%%DATADIR%%/pixmaps/menu/game.png
%%DATADIR%%/pixmaps/menu/game.settings
%%DATADIR%%/pixmaps/menu/items/audio.png
%%DATADIR%%/pixmaps/menu/items/audio.settings
%%DATADIR%%/pixmaps/menu/items/audio.txt
%%DATADIR%%/pixmaps/menu/items/controls.png
%%DATADIR%%/pixmaps/menu/items/controls.settings
%%DATADIR%%/pixmaps/menu/items/controls.txt
%%DATADIR%%/pixmaps/menu/items/fullscreen.png
%%DATADIR%%/pixmaps/menu/items/fullscreen.settings
%%DATADIR%%/pixmaps/menu/items/fullscreen.txt
%%DATADIR%%/pixmaps/menu/items/game.png
%%DATADIR%%/pixmaps/menu/items/game.settings
%%DATADIR%%/pixmaps/menu/items/game.txt
%%DATADIR%%/pixmaps/menu/items/gamepad.png
%%DATADIR%%/pixmaps/menu/items/gamepad.settings
%%DATADIR%%/pixmaps/menu/items/gamepad.txt
%%DATADIR%%/pixmaps/menu/items/load.png
%%DATADIR%%/pixmaps/menu/items/load.settings
%%DATADIR%%/pixmaps/menu/items/load.txt
%%DATADIR%%/pixmaps/menu/items/music.png
%%DATADIR%%/pixmaps/menu/items/music.settings
%%DATADIR%%/pixmaps/menu/items/music.txt
%%DATADIR%%/pixmaps/menu/items/options.png
%%DATADIR%%/pixmaps/menu/items/options.settings
%%DATADIR%%/pixmaps/menu/items/overworld.png
%%DATADIR%%/pixmaps/menu/items/overworld.settings
%%DATADIR%%/pixmaps/menu/items/overworld.txt
%%DATADIR%%/pixmaps/menu/items/save.png
%%DATADIR%%/pixmaps/menu/items/save.settings
%%DATADIR%%/pixmaps/menu/items/save.txt
%%DATADIR%%/pixmaps/menu/items/sounds.png
%%DATADIR%%/pixmaps/menu/items/sounds.settings
%%DATADIR%%/pixmaps/menu/items/sounds.txt
%%DATADIR%%/pixmaps/menu/items/start.png
%%DATADIR%%/pixmaps/menu/items/start.settings
%%DATADIR%%/pixmaps/menu/items/video.png
%%DATADIR%%/pixmaps/menu/items/video.settings
%%DATADIR%%/pixmaps/menu/items/video.txt
%%DATADIR%%/pixmaps/menu/load.png
%%DATADIR%%/pixmaps/menu/load.settings
%%DATADIR%%/pixmaps/menu/logo_sdl.png
%%DATADIR%%/pixmaps/menu/logo_sdl.settings
%%DATADIR%%/pixmaps/menu/options.png
%%DATADIR%%/pixmaps/menu/options.settings
%%DATADIR%%/pixmaps/menu/quit.png
%%DATADIR%%/pixmaps/menu/quit.settings
%%DATADIR%%/pixmaps/menu/save.png
%%DATADIR%%/pixmaps/menu/save.settings
%%DATADIR%%/pixmaps/menu/start.png
%%DATADIR%%/pixmaps/menu/start.settings
%%DATADIR%%/pixmaps/menu/video.png
%%DATADIR%%/pixmaps/menu/video.settings
%%DATADIR%%/pixmaps/pipes/blue/down.settings
%%DATADIR%%/pixmaps/pipes/blue/hor.settings
%%DATADIR%%/pixmaps/pipes/blue/left.settings
%%DATADIR%%/pixmaps/pipes/blue/right.settings
%%DATADIR%%/pixmaps/pipes/blue/small/down.settings
%%DATADIR%%/pixmaps/pipes/blue/small/hor.settings
%%DATADIR%%/pixmaps/pipes/blue/small/left.settings
%%DATADIR%%/pixmaps/pipes/blue/small/right.settings
%%DATADIR%%/pixmaps/pipes/blue/small/up.png
%%DATADIR%%/pixmaps/pipes/blue/small/up.settings
%%DATADIR%%/pixmaps/pipes/blue/small/ver.png
%%DATADIR%%/pixmaps/pipes/blue/small/ver.settings
%%DATADIR%%/pixmaps/pipes/blue/up.png
%%DATADIR%%/pixmaps/pipes/blue/up.settings
%%DATADIR%%/pixmaps/pipes/blue/ver.png
%%DATADIR%%/pixmaps/pipes/blue/ver.settings
%%DATADIR%%/pixmaps/pipes/green/down.settings
%%DATADIR%%/pixmaps/pipes/green/hor.settings
%%DATADIR%%/pixmaps/pipes/green/left.settings
%%DATADIR%%/pixmaps/pipes/green/right.settings
%%DATADIR%%/pixmaps/pipes/green/small/down.settings
%%DATADIR%%/pixmaps/pipes/green/small/hor.settings
%%DATADIR%%/pixmaps/pipes/green/small/left.settings
%%DATADIR%%/pixmaps/pipes/green/small/right.settings
%%DATADIR%%/pixmaps/pipes/green/small/up.png
%%DATADIR%%/pixmaps/pipes/green/small/up.settings
%%DATADIR%%/pixmaps/pipes/green/small/ver.png
%%DATADIR%%/pixmaps/pipes/green/small/ver.settings
%%DATADIR%%/pixmaps/pipes/green/up.png
%%DATADIR%%/pixmaps/pipes/green/up.settings
%%DATADIR%%/pixmaps/pipes/green/ver.png
%%DATADIR%%/pixmaps/pipes/green/ver.settings
%%DATADIR%%/pixmaps/pipes/grey/down.settings
%%DATADIR%%/pixmaps/pipes/grey/hor.settings
%%DATADIR%%/pixmaps/pipes/grey/left.settings
%%DATADIR%%/pixmaps/pipes/grey/right.settings
%%DATADIR%%/pixmaps/pipes/grey/small/down.settings
%%DATADIR%%/pixmaps/pipes/grey/small/hor.settings
%%DATADIR%%/pixmaps/pipes/grey/small/left.settings
%%DATADIR%%/pixmaps/pipes/grey/small/right.settings
%%DATADIR%%/pixmaps/pipes/grey/small/up.png
%%DATADIR%%/pixmaps/pipes/grey/small/up.settings
%%DATADIR%%/pixmaps/pipes/grey/small/ver.png
%%DATADIR%%/pixmaps/pipes/grey/small/ver.settings
%%DATADIR%%/pixmaps/pipes/grey/up.png
%%DATADIR%%/pixmaps/pipes/grey/up.settings
%%DATADIR%%/pixmaps/pipes/grey/ver.png
%%DATADIR%%/pixmaps/pipes/grey/ver.settings
%%DATADIR%%/pixmaps/pipes/orange/down.settings
%%DATADIR%%/pixmaps/pipes/orange/hor.settings
%%DATADIR%%/pixmaps/pipes/orange/left.settings
%%DATADIR%%/pixmaps/pipes/orange/right.settings
%%DATADIR%%/pixmaps/pipes/orange/small/down.settings
%%DATADIR%%/pixmaps/pipes/orange/small/hor.settings
%%DATADIR%%/pixmaps/pipes/orange/small/left.settings
%%DATADIR%%/pixmaps/pipes/orange/small/right.settings
%%DATADIR%%/pixmaps/pipes/orange/small/up.png
%%DATADIR%%/pixmaps/pipes/orange/small/up.settings
%%DATADIR%%/pixmaps/pipes/orange/small/ver.png
%%DATADIR%%/pixmaps/pipes/orange/small/ver.settings
%%DATADIR%%/pixmaps/pipes/orange/up.png
%%DATADIR%%/pixmaps/pipes/orange/up.settings
%%DATADIR%%/pixmaps/pipes/orange/ver.png
%%DATADIR%%/pixmaps/pipes/orange/ver.settings
%%DATADIR%%/pixmaps/pipes/yellow/down.settings
%%DATADIR%%/pixmaps/pipes/yellow/hor.settings
%%DATADIR%%/pixmaps/pipes/yellow/left.settings
%%DATADIR%%/pixmaps/pipes/yellow/right.settings
%%DATADIR%%/pixmaps/pipes/yellow/small/down.settings
%%DATADIR%%/pixmaps/pipes/yellow/small/hor.settings
%%DATADIR%%/pixmaps/pipes/yellow/small/left.settings
%%DATADIR%%/pixmaps/pipes/yellow/small/right.settings
%%DATADIR%%/pixmaps/pipes/yellow/small/up.png
%%DATADIR%%/pixmaps/pipes/yellow/small/up.settings
%%DATADIR%%/pixmaps/pipes/yellow/small/ver.png
%%DATADIR%%/pixmaps/pipes/yellow/small/ver.settings
%%DATADIR%%/pixmaps/pipes/yellow/up.png
%%DATADIR%%/pixmaps/pipes/yellow/up.settings
%%DATADIR%%/pixmaps/pipes/yellow/ver.png
%%DATADIR%%/pixmaps/pipes/yellow/ver.settings
%%DATADIR%%/pixmaps/signs/default_1/1_danger.png
%%DATADIR%%/pixmaps/signs/default_1/1_danger.settings
%%DATADIR%%/pixmaps/signs/default_1/1_ending.png
%%DATADIR%%/pixmaps/signs/default_1/1_ending.settings
%%DATADIR%%/pixmaps/signs/default_1/1_ending_big.png
%%DATADIR%%/pixmaps/signs/default_1/1_ending_big.settings
%%DATADIR%%/pixmaps/signs/default_1/1_ending_big_left.settings
%%DATADIR%%/pixmaps/signs/default_1/1_ending_left.settings
%%DATADIR%%/pixmaps/signs/default_1/1_ending_left_up.settings
%%DATADIR%%/pixmaps/signs/default_1/1_ending_right_up.png
%%DATADIR%%/pixmaps/signs/default_1/1_ending_right_up.settings
%%DATADIR%%/pixmaps/windows/castle/1.png
%%DATADIR%%/pixmaps/windows/castle/1.settings
%%DATADIR%%/pixmaps/windows/castle/2.png
%%DATADIR%%/pixmaps/windows/castle/2.settings
%%DATADIR%%/pixmaps/windows/castle/3.png
%%DATADIR%%/pixmaps/windows/castle/3.settings
%%DATADIR%%/pixmaps/world/green_1/ground/todo.txt
%%DATADIR%%/pixmaps/world/maryo/small/down.png
%%DATADIR%%/pixmaps/world/maryo/small/down.settings
%%DATADIR%%/pixmaps/world/maryo/small/down_1.png
%%DATADIR%%/pixmaps/world/maryo/small/down_1.settings
%%DATADIR%%/pixmaps/world/maryo/small/down_2.png
%%DATADIR%%/pixmaps/world/maryo/small/down_2.settings
%%DATADIR%%/pixmaps/world/maryo/small/left.png
%%DATADIR%%/pixmaps/world/maryo/small/left.settings
%%DATADIR%%/pixmaps/world/maryo/small/left_1.png
%%DATADIR%%/pixmaps/world/maryo/small/left_1.settings
%%DATADIR%%/pixmaps/world/maryo/small/left_2.png
%%DATADIR%%/pixmaps/world/maryo/small/left_2.settings
%%DATADIR%%/pixmaps/world/maryo/small/right.settings
%%DATADIR%%/pixmaps/world/maryo/small/right_1.settings
%%DATADIR%%/pixmaps/world/maryo/small/right_2.settings
%%DATADIR%%/pixmaps/world/maryo/small/up.png
%%DATADIR%%/pixmaps/world/maryo/small/up.settings
%%DATADIR%%/pixmaps/world/maryo/small/up_1.png
%%DATADIR%%/pixmaps/world/maryo/small/up_1.settings
%%DATADIR%%/pixmaps/world/maryo/small/up_2.png
%%DATADIR%%/pixmaps/world/maryo/small/up_2.settings
%%DATADIR%%/pixmaps/world/objects/bridge/bridge_1.png
%%DATADIR%%/pixmaps/world/objects/bridge/bridge_1.settings
%%DATADIR%%/pixmaps/world/objects/cactus/cactus_man.png
%%DATADIR%%/pixmaps/world/objects/cactus/cactus_man.settings
%%DATADIR%%/pixmaps/world/objects/cactus/desert_cactus.png
%%DATADIR%%/pixmaps/world/objects/cactus/desert_cactus.settings
%%DATADIR%%/pixmaps/world/objects/castle/1.png
%%DATADIR%%/pixmaps/world/objects/castle/1.settings
%%DATADIR%%/pixmaps/world/objects/castle/2.png
%%DATADIR%%/pixmaps/world/objects/castle/2.settings
%%DATADIR%%/pixmaps/world/objects/castle/3.png
%%DATADIR%%/pixmaps/world/objects/castle/3.settings
%%DATADIR%%/pixmaps/world/objects/cloud/light_blue/medium_1.png
%%DATADIR%%/pixmaps/world/objects/cloud/light_blue/medium_1.settings
%%DATADIR%%/pixmaps/world/objects/cloud/light_blue/medium_2.png
%%DATADIR%%/pixmaps/world/objects/cloud/light_blue/medium_2.settings
%%DATADIR%%/pixmaps/world/objects/cloud/light_blue/small_1.png
%%DATADIR%%/pixmaps/world/objects/cloud/light_blue/small_1.settings
%%DATADIR%%/pixmaps/world/objects/extra/compass_rose.png
%%DATADIR%%/pixmaps/world/objects/extra/compass_rose.settings
%%DATADIR%%/pixmaps/world/objects/extra/compass_rose_de.png
%%DATADIR%%/pixmaps/world/objects/grass/small_yellow.png
%%DATADIR%%/pixmaps/world/objects/grass/small_yellow.settings
%%DATADIR%%/pixmaps/world/objects/hedge/green_1.png
%%DATADIR%%/pixmaps/world/objects/hedge/green_1.settings
%%DATADIR%%/pixmaps/world/objects/hill/blue_1.png
%%DATADIR%%/pixmaps/world/objects/hill/blue_1.settings
%%DATADIR%%/pixmaps/world/objects/hill/blue_2.png
%%DATADIR%%/pixmaps/world/objects/hill/blue_2.settings
%%DATADIR%%/pixmaps/world/objects/hill/blue_big.png
%%DATADIR%%/pixmaps/world/objects/hill/blue_big_left.settings
%%DATADIR%%/pixmaps/world/objects/hill/blue_big_right.settings
%%DATADIR%%/pixmaps/world/objects/hill/bluegreen_big.png
%%DATADIR%%/pixmaps/world/objects/hill/bluegreen_big.settings
%%DATADIR%%/pixmaps/world/objects/hill/bluegreen_small.png
%%DATADIR%%/pixmaps/world/objects/hill/bluegreen_small.settings
%%DATADIR%%/pixmaps/world/objects/hill/bluegreen_stone_1.png
%%DATADIR%%/pixmaps/world/objects/hill/bluegreen_stone_1.settings
%%DATADIR%%/pixmaps/world/objects/lake/lake_1.png
%%DATADIR%%/pixmaps/world/objects/lake/lake_1.settings
%%DATADIR%%/pixmaps/world/objects/lake/oasis.png
%%DATADIR%%/pixmaps/world/objects/lake/oasis.settings
%%DATADIR%%/pixmaps/world/objects/mushroom/mushroom.png
%%DATADIR%%/pixmaps/world/objects/mushroom/mushroom_left.settings
%%DATADIR%%/pixmaps/world/objects/mushroom/mushroom_right.settings
%%DATADIR%%/pixmaps/world/objects/pipe/blue_big.png
%%DATADIR%%/pixmaps/world/objects/pipe/blue_big.settings
%%DATADIR%%/pixmaps/world/objects/pipe/blue_small.png
%%DATADIR%%/pixmaps/world/objects/pipe/blue_small.settings
%%DATADIR%%/pixmaps/world/objects/pipe/green_big.png
%%DATADIR%%/pixmaps/world/objects/pipe/green_big.settings
%%DATADIR%%/pixmaps/world/objects/pipe/green_small.png
%%DATADIR%%/pixmaps/world/objects/pipe/green_small.settings
%%DATADIR%%/pixmaps/world/objects/pipe/grey_big.png
%%DATADIR%%/pixmaps/world/objects/pipe/grey_big.settings
%%DATADIR%%/pixmaps/world/objects/pipe/grey_small.png
%%DATADIR%%/pixmaps/world/objects/pipe/grey_small.settings
%%DATADIR%%/pixmaps/world/objects/pipe/yellow_big.png
%%DATADIR%%/pixmaps/world/objects/pipe/yellow_big.settings
%%DATADIR%%/pixmaps/world/objects/pipe/yellow_small.png
%%DATADIR%%/pixmaps/world/objects/pipe/yellow_small.settings
%%DATADIR%%/pixmaps/world/objects/plants/green_1.png
%%DATADIR%%/pixmaps/world/objects/plants/green_1.settings
%%DATADIR%%/pixmaps/world/objects/plants/medium_plant.png
%%DATADIR%%/pixmaps/world/objects/plants/medium_plant.settings
%%DATADIR%%/pixmaps/world/objects/pyramid/medium_orange.png
%%DATADIR%%/pixmaps/world/objects/pyramid/medium_orange.settings
%%DATADIR%%/pixmaps/world/objects/stone/stone.png
%%DATADIR%%/pixmaps/world/objects/stone/stone.settings
%%DATADIR%%/pixmaps/world/objects/stone/stone_2.png
%%DATADIR%%/pixmaps/world/objects/stone/stone_2.settings
%%DATADIR%%/pixmaps/world/objects/stone/stone_2_small.png
%%DATADIR%%/pixmaps/world/objects/stone/stone_2_small.settings
%%DATADIR%%/pixmaps/world/objects/sun/1.png
%%DATADIR%%/pixmaps/world/objects/sun/1.settings
%%DATADIR%%/pixmaps/world/objects/wheels/wind_wheel.png
%%DATADIR%%/pixmaps/world/objects/wheels/wind_wheel.settings
%%DATADIR%%/pixmaps/world/sand_1/bones/1.png
%%DATADIR%%/pixmaps/world/sand_1/bones/1.settings
%%DATADIR%%/pixmaps/world/sand_1/hills/1.png
%%DATADIR%%/pixmaps/world/sand_1/hills/1.settings
%%DATADIR%%/pixmaps/world/sand_1/hills/dune_1.png
%%DATADIR%%/pixmaps/world/sand_1/hills/dune_1.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/cross.png
%%DATADIR%%/pixmaps/world/way/yellow_1/cross.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/leftdown.png
%%DATADIR%%/pixmaps/world/way/yellow_1/leftdown.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/leftright.png
%%DATADIR%%/pixmaps/world/way/yellow_1/leftright.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/leftup.png
%%DATADIR%%/pixmaps/world/way/yellow_1/leftup.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/point.png
%%DATADIR%%/pixmaps/world/way/yellow_1/point.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/rightdown.png
%%DATADIR%%/pixmaps/world/way/yellow_1/rightdown.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/rightup.png
%%DATADIR%%/pixmaps/world/way/yellow_1/rightup.settings
%%DATADIR%%/pixmaps/world/way/yellow_1/updown.png
%%DATADIR%%/pixmaps/world/way/yellow_1/updown.settings
%%DATADIR%%/pixmaps/world/waypoint/default_1.png
%%DATADIR%%/pixmaps/world/waypoint/default_1.settings
%%DATADIR%%/schema/Config.xsd
%%DATADIR%%/schema/Editor_Items.xsd
%%DATADIR%%/schema/Editor_Menu.xsd
%%DATADIR%%/schema/Level.xsd
%%DATADIR%%/schema/Savegame.xsd
%%DATADIR%%/schema/World/Description.xsd
%%DATADIR%%/schema/World/Lines.xsd
%%DATADIR%%/schema/World/World.xsd
%%DATADIR%%/schema/Worlds_User_Data.xsd
%%DATADIR%%/sounds/ambient/hum_medium_pitch_1.ogg
%%DATADIR%%/sounds/ambient/hum_medium_pitch_1.txt
%%DATADIR%%/sounds/ambient/hum_metallic_1.ogg
%%DATADIR%%/sounds/ambient/hum_metallic_1.txt
%%DATADIR%%/sounds/ambient/machine_1.ogg
%%DATADIR%%/sounds/ambient/machine_1.txt
%%DATADIR%%/sounds/ambient/rain_thunder_1.ogg
%%DATADIR%%/sounds/ambient/rain_thunder_1.txt
%%DATADIR%%/sounds/ambient/thunder_1.ogg
%%DATADIR%%/sounds/ambient/thunder_1.txt
%%DATADIR%%/sounds/ambient/thunder_muffled_1.ogg
%%DATADIR%%/sounds/ambient/thunder_muffled_1.txt
%%DATADIR%%/sounds/ambient/thunder_muffled_short_1.ogg
%%DATADIR%%/sounds/ambient/thunder_muffled_short_1.txt
%%DATADIR%%/sounds/ambient/wind_1.ogg
%%DATADIR%%/sounds/ambient/wind_1.txt
%%DATADIR%%/sounds/ambient/wind_desert_1.ogg
%%DATADIR%%/sounds/ambient/wind_desert_1.txt
%%DATADIR%%/sounds/audio_on.ogg
%%DATADIR%%/sounds/babble/long_1.ogg
%%DATADIR%%/sounds/babble/long_1.txt
%%DATADIR%%/sounds/death_box.txt
%%DATADIR%%/sounds/death_box.wav
%%DATADIR%%/sounds/editor/enter.ogg
%%DATADIR%%/sounds/editor/enter.txt
%%DATADIR%%/sounds/editor/leave.ogg
%%DATADIR%%/sounds/editor/leave.txt
%%DATADIR%%/sounds/editor/save.ogg
%%DATADIR%%/sounds/editor/save.txt
%%DATADIR%%/sounds/enemy/boss/furball/hit.txt
%%DATADIR%%/sounds/enemy/boss/furball/hit.wav
%%DATADIR%%/sounds/enemy/boss/furball/hit_failed.txt
%%DATADIR%%/sounds/enemy/boss/furball/hit_failed.wav
%%DATADIR%%/sounds/enemy/boss/turtle/big_hit.ogg
%%DATADIR%%/sounds/enemy/boss/turtle/big_hit.txt
%%DATADIR%%/sounds/enemy/boss/turtle/hit.ogg
%%DATADIR%%/sounds/enemy/boss/turtle/hit.txt
%%DATADIR%%/sounds/enemy/boss/turtle/power_up.ogg
%%DATADIR%%/sounds/enemy/boss/turtle/power_up.txt
%%DATADIR%%/sounds/enemy/boss/turtle/shell_attack.ogg
%%DATADIR%%/sounds/enemy/boss/turtle/shell_attack.txt
%%DATADIR%%/sounds/enemy/eato/die.ogg
%%DATADIR%%/sounds/enemy/eato/die.txt
%%DATADIR%%/sounds/enemy/flyon/die.ogg
%%DATADIR%%/sounds/enemy/flyon/die.txt
%%DATADIR%%/sounds/enemy/furball/die.ogg
%%DATADIR%%/sounds/enemy/furball/die.txt
%%DATADIR%%/sounds/enemy/gee/die.ogg
%%DATADIR%%/sounds/enemy/gee/die.txt
%%DATADIR%%/sounds/enemy/krush/die.ogg
%%DATADIR%%/sounds/enemy/krush/die.txt
%%DATADIR%%/sounds/enemy/rokko/activate.txt
%%DATADIR%%/sounds/enemy/rokko/activate.wav
%%DATADIR%%/sounds/enemy/rokko/hit.txt
%%DATADIR%%/sounds/enemy/rokko/hit.wav
%%DATADIR%%/sounds/enemy/spika/move.ogg
%%DATADIR%%/sounds/enemy/spika/move.txt
%%DATADIR%%/sounds/enemy/thromp/die.ogg
%%DATADIR%%/sounds/enemy/thromp/die.txt
%%DATADIR%%/sounds/enemy/thromp/hit.ogg
%%DATADIR%%/sounds/enemy/thromp/hit.txt
%%DATADIR%%/sounds/enemy/turtle/hit.ogg
%%DATADIR%%/sounds/enemy/turtle/hit.txt
%%DATADIR%%/sounds/enemy/turtle/shell/hit.ogg
%%DATADIR%%/sounds/enemy/turtle/shell/hit.txt
%%DATADIR%%/sounds/enemy/turtle/stand_up.txt
%%DATADIR%%/sounds/enemy/turtle/stand_up.wav
%%DATADIR%%/sounds/enter_pipe.ogg
%%DATADIR%%/sounds/enter_pipe.txt
%%DATADIR%%/sounds/error.ogg
%%DATADIR%%/sounds/error.txt
%%DATADIR%%/sounds/item/empty_box.txt
%%DATADIR%%/sounds/item/empty_box.wav
%%DATADIR%%/sounds/item/fireball.ogg
%%DATADIR%%/sounds/item/fireball.txt
%%DATADIR%%/sounds/item/fireball_explode.txt
%%DATADIR%%/sounds/item/fireball_explode.wav
%%DATADIR%%/sounds/item/fireball_explosion.txt
%%DATADIR%%/sounds/item/fireball_explosion.wav
%%DATADIR%%/sounds/item/fireball_repelled.txt
%%DATADIR%%/sounds/item/fireball_repelled.wav
%%DATADIR%%/sounds/item/fireplant.ogg
%%DATADIR%%/sounds/item/fireplant.txt
%%DATADIR%%/sounds/item/goldpiece_1.ogg
%%DATADIR%%/sounds/item/goldpiece_1.txt
%%DATADIR%%/sounds/item/goldpiece_red.txt
%%DATADIR%%/sounds/item/goldpiece_red.wav
%%DATADIR%%/sounds/item/ice_kill.txt
%%DATADIR%%/sounds/item/ice_kill.wav
%%DATADIR%%/sounds/item/iceball.txt
%%DATADIR%%/sounds/item/iceball.wav
%%DATADIR%%/sounds/item/live_up.ogg
%%DATADIR%%/sounds/item/live_up.txt
%%DATADIR%%/sounds/item/live_up_2.ogg
%%DATADIR%%/sounds/item/live_up_2.txt
%%DATADIR%%/sounds/item/moon.ogg
%%DATADIR%%/sounds/item/moon.txt
%%DATADIR%%/sounds/item/mushroom.ogg
%%DATADIR%%/sounds/item/mushroom.txt
%%DATADIR%%/sounds/item/mushroom_blue.txt
%%DATADIR%%/sounds/item/mushroom_blue.wav
%%DATADIR%%/sounds/item/mushroom_ghost.ogg
%%DATADIR%%/sounds/item/mushroom_ghost.txt
%%DATADIR%%/sounds/item/star_kill.ogg
%%DATADIR%%/sounds/item/star_kill.txt
%%DATADIR%%/sounds/itembox_get.ogg
%%DATADIR%%/sounds/itembox_get.txt
%%DATADIR%%/sounds/itembox_set.ogg
%%DATADIR%%/sounds/leave_pipe.ogg
%%DATADIR%%/sounds/leave_pipe.txt
%%DATADIR%%/sounds/player/dead.ogg
%%DATADIR%%/sounds/player/dead.txt
%%DATADIR%%/sounds/player/ghost_end.ogg
%%DATADIR%%/sounds/player/ghost_end.txt
%%DATADIR%%/sounds/player/jump_big.ogg
%%DATADIR%%/sounds/player/jump_big.txt
%%DATADIR%%/sounds/player/jump_big_power.ogg
%%DATADIR%%/sounds/player/jump_big_power.txt
%%DATADIR%%/sounds/player/jump_ghost.ogg
%%DATADIR%%/sounds/player/jump_ghost.txt
%%DATADIR%%/sounds/player/jump_small.ogg
%%DATADIR%%/sounds/player/jump_small.txt
%%DATADIR%%/sounds/player/jump_small_power.ogg
%%DATADIR%%/sounds/player/jump_small_power.txt
%%DATADIR%%/sounds/player/maryo_au.txt
%%DATADIR%%/sounds/player/maryo_stop.ogg
%%DATADIR%%/sounds/player/maryo_stop.txt
%%DATADIR%%/sounds/player/pickup_item.txt
%%DATADIR%%/sounds/player/pickup_item.wav
%%DATADIR%%/sounds/player/powerdown.ogg
%%DATADIR%%/sounds/player/powerdown.txt
%%DATADIR%%/sounds/savegame_load.ogg
%%DATADIR%%/sounds/savegame_save.ogg
%%DATADIR%%/sounds/sprout_1.ogg
%%DATADIR%%/sounds/sprout_1.txt
%%DATADIR%%/sounds/stomp_1.ogg
%%DATADIR%%/sounds/stomp_1.txt
%%DATADIR%%/sounds/stomp_2.ogg
%%DATADIR%%/sounds/stomp_2.txt
%%DATADIR%%/sounds/stomp_4.ogg
%%DATADIR%%/sounds/stomp_4.txt
%%DATADIR%%/sounds/wall_hit.txt
%%DATADIR%%/sounds/wall_hit.wav
%%DATADIR%%/sounds/waterdrop_1.ogg
%%DATADIR%%/sounds/waterdrop_1.txt
%%DATADIR%%/sounds/waypoint_reached.ogg
%%DATADIR%%/sounds/waypoint_reached.txt
%%DATADIR%%/sounds/wood_1.ogg
%%DATADIR%%/sounds/wood_1.txt
%%DATADIR%%/translations/Secret Maryo Chronicles template.po
%%DATADIR%%/translations/de/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/de/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/el/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/el/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/es/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/es/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/fr/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/fr/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/pl/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/pl/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/ru/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/ru/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/tr/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/tr/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/translations/zh_TW/LC_MESSAGES/Secret Maryo Chronicles.mo
%%DATADIR%%/translations/zh_TW/LC_MESSAGES/Secret Maryo Chronicles.po
%%DATADIR%%/world/test_1/description.xml
%%DATADIR%%/world/test_1/layer.xml
%%DATADIR%%/world/test_1/world.xml
%%DATADIR%%/world/world_1/description.xml
%%DATADIR%%/world/world_1/layer.xml
%%DATADIR%%/world/world_1/world.xml
%%DATADIR%%/world/world_2/description.xml
%%DATADIR%%/world/world_2/layer.xml
%%DATADIR%%/world/world_2/world.xml
%%DATADIR%%/world/world_3/description.xml
%%DATADIR%%/world/world_3/layer.xml
%%DATADIR%%/world/world_3/world.xml
%%DATADIR%%/world/world_4/description.xml
%%DATADIR%%/world/world_4/layer.xml
%%DATADIR%%/world/world_4/world.xml
%%DATADIR%%/world/worlds.xml
@exec mkdir -p %D/%%DATADIR%%/music
@dirrm %%DATADIR%%/world/world_4
@dirrm %%DATADIR%%/world/world_3
@dirrm %%DATADIR%%/world/world_2
@dirrm %%DATADIR%%/world/world_1
@dirrm %%DATADIR%%/world/test_1
@dirrm %%DATADIR%%/world
@dirrm %%DATADIR%%/translations/zh_TW/LC_MESSAGES
@dirrm %%DATADIR%%/translations/zh_TW
@dirrm %%DATADIR%%/translations/tr/LC_MESSAGES
@dirrm %%DATADIR%%/translations/tr
@dirrm %%DATADIR%%/translations/ru/LC_MESSAGES
@dirrm %%DATADIR%%/translations/ru
@dirrm %%DATADIR%%/translations/pl/LC_MESSAGES
@dirrm %%DATADIR%%/translations/pl
@dirrm %%DATADIR%%/translations/fr/LC_MESSAGES
@dirrm %%DATADIR%%/translations/fr
@dirrm %%DATADIR%%/translations/es/LC_MESSAGES
@dirrm %%DATADIR%%/translations/es
@dirrm %%DATADIR%%/translations/el/LC_MESSAGES
@dirrm %%DATADIR%%/translations/el
@dirrm %%DATADIR%%/translations/de/LC_MESSAGES
@dirrm %%DATADIR%%/translations/de
@dirrm %%DATADIR%%/translations
@dirrm %%DATADIR%%/sounds/player
@dirrm %%DATADIR%%/sounds/item
@dirrm %%DATADIR%%/sounds/enemy/turtle/shell
@dirrm %%DATADIR%%/sounds/enemy/turtle
@dirrm %%DATADIR%%/sounds/enemy/thromp
@dirrm %%DATADIR%%/sounds/enemy/spika
@dirrm %%DATADIR%%/sounds/enemy/rokko
@dirrm %%DATADIR%%/sounds/enemy/krush
@dirrm %%DATADIR%%/sounds/enemy/gee
@dirrm %%DATADIR%%/sounds/enemy/furball
@dirrm %%DATADIR%%/sounds/enemy/flyon
@dirrm %%DATADIR%%/sounds/enemy/eato
@dirrm %%DATADIR%%/sounds/enemy/boss/turtle
@dirrm %%DATADIR%%/sounds/enemy/boss/furball
@dirrm %%DATADIR%%/sounds/enemy/boss
@dirrm %%DATADIR%%/sounds/enemy
@dirrm %%DATADIR%%/sounds/editor
@dirrm %%DATADIR%%/sounds/babble
@dirrm %%DATADIR%%/sounds/ambient
@dirrm %%DATADIR%%/sounds
@dirrm %%DATADIR%%/schema/World
@dirrm %%DATADIR%%/schema
@dirrm %%DATADIR%%/pixmaps/world/waypoint
@dirrm %%DATADIR%%/pixmaps/world/way/yellow_1
@dirrm %%DATADIR%%/pixmaps/world/way
@dirrm %%DATADIR%%/pixmaps/world/sand_1/hills
@dirrm %%DATADIR%%/pixmaps/world/sand_1/bones
@dirrm %%DATADIR%%/pixmaps/world/sand_1
@dirrm %%DATADIR%%/pixmaps/world/objects/wheels
@dirrm %%DATADIR%%/pixmaps/world/objects/sun
@dirrm %%DATADIR%%/pixmaps/world/objects/stone
@dirrm %%DATADIR%%/pixmaps/world/objects/pyramid
@dirrm %%DATADIR%%/pixmaps/world/objects/plants
@dirrm %%DATADIR%%/pixmaps/world/objects/pipe
@dirrm %%DATADIR%%/pixmaps/world/objects/mushroom
@dirrm %%DATADIR%%/pixmaps/world/objects/lake
@dirrm %%DATADIR%%/pixmaps/world/objects/hill
@dirrm %%DATADIR%%/pixmaps/world/objects/hedge
@dirrm %%DATADIR%%/pixmaps/world/objects/grass
@dirrm %%DATADIR%%/pixmaps/world/objects/extra
@dirrm %%DATADIR%%/pixmaps/world/objects/cloud/light_blue
@dirrm %%DATADIR%%/pixmaps/world/objects/cloud
@dirrm %%DATADIR%%/pixmaps/world/objects/castle
@dirrm %%DATADIR%%/pixmaps/world/objects/cactus
@dirrm %%DATADIR%%/pixmaps/world/objects/bridge
@dirrm %%DATADIR%%/pixmaps/world/objects
@dirrm %%DATADIR%%/pixmaps/world/maryo/small
@dirrm %%DATADIR%%/pixmaps/world/maryo
@dirrm %%DATADIR%%/pixmaps/world/green_1/ground
@dirrm %%DATADIR%%/pixmaps/world/green_1
@dirrm %%DATADIR%%/pixmaps/world
@dirrm %%DATADIR%%/pixmaps/windows/castle
@dirrm %%DATADIR%%/pixmaps/windows
@dirrm %%DATADIR%%/pixmaps/signs/default_1
@dirrm %%DATADIR%%/pixmaps/signs
@dirrm %%DATADIR%%/pixmaps/pipes/yellow/small
@dirrm %%DATADIR%%/pixmaps/pipes/yellow
@dirrm %%DATADIR%%/pixmaps/pipes/orange/small
@dirrm %%DATADIR%%/pixmaps/pipes/orange
@dirrm %%DATADIR%%/pixmaps/pipes/grey/small
@dirrm %%DATADIR%%/pixmaps/pipes/grey
@dirrm %%DATADIR%%/pixmaps/pipes/green/small
@dirrm %%DATADIR%%/pixmaps/pipes/green
@dirrm %%DATADIR%%/pixmaps/pipes/blue/small
@dirrm %%DATADIR%%/pixmaps/pipes/blue
@dirrm %%DATADIR%%/pixmaps/pipes
@dirrm %%DATADIR%%/pixmaps/menu/items
@dirrm %%DATADIR%%/pixmaps/menu
@dirrm %%DATADIR%%/pixmaps/maryo/small
@dirrm %%DATADIR%%/pixmaps/maryo/ice
@dirrm %%DATADIR%%/pixmaps/maryo/ghost
@dirrm %%DATADIR%%/pixmaps/maryo/flying
@dirrm %%DATADIR%%/pixmaps/maryo/fire
@dirrm %%DATADIR%%/pixmaps/maryo/big
@dirrm %%DATADIR%%/pixmaps/maryo
@dirrm %%DATADIR%%/pixmaps/hills/very_light_blue_1
@dirrm %%DATADIR%%/pixmaps/hills/light_blue_1
@dirrm %%DATADIR%%/pixmaps/hills/green_2
@dirrm %%DATADIR%%/pixmaps/hills/green_1
@dirrm %%DATADIR%%/pixmaps/hills/blue_1
@dirrm %%DATADIR%%/pixmaps/hills
@dirrm %%DATADIR%%/pixmaps/ground/underground/ground/top
@dirrm %%DATADIR%%/pixmaps/ground/underground/ground/middle
@dirrm %%DATADIR%%/pixmaps/ground/underground/ground/bottom
@dirrm %%DATADIR%%/pixmaps/ground/underground/ground
@dirrm %%DATADIR%%/pixmaps/ground/underground
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/windows
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1/green_1
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/trees/fir_1
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/trees/balloon
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/trees
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/hills/big_1
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/hills
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/plain/top
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/plain/middle
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/plain
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/middle
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/top
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive/middle
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/halfmassive
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground/bottom
@dirrm %%DATADIR%%/pixmaps/ground/snow_1/ground
@dirrm %%DATADIR%%/pixmaps/ground/snow_1
@dirrm %%DATADIR%%/pixmaps/ground/sand_1/ground
@dirrm %%DATADIR%%/pixmaps/ground/sand_1
@dirrm %%DATADIR%%/pixmaps/ground/plastic_1/screw_block_red
@dirrm %%DATADIR%%/pixmaps/ground/plastic_1/screw_block_grey
@dirrm %%DATADIR%%/pixmaps/ground/plastic_1/screw_block_green
@dirrm %%DATADIR%%/pixmaps/ground/plastic_1/screw_block_blue
@dirrm %%DATADIR%%/pixmaps/ground/plastic_1
@dirrm %%DATADIR%%/pixmaps/ground/mushroom_1/platform/red
@dirrm %%DATADIR%%/pixmaps/ground/mushroom_1/platform/green
@dirrm %%DATADIR%%/pixmaps/ground/mushroom_1/platform/gold
@dirrm %%DATADIR%%/pixmaps/ground/mushroom_1/platform
@dirrm %%DATADIR%%/pixmaps/ground/mushroom_1
@dirrm %%DATADIR%%/pixmaps/ground/jungle_2/hedge
@dirrm %%DATADIR%%/pixmaps/ground/jungle_2
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/tree
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/slider
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/top
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/top
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/plain/middle
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/plain
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/middle
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/top
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive/middle
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/halfmassive
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground/bottom
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/ground
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1/grass
@dirrm %%DATADIR%%/pixmaps/ground/jungle_1
@dirrm %%DATADIR%%/pixmaps/ground/green_3/ground/top
@dirrm %%DATADIR%%/pixmaps/ground/green_3/ground/middle
@dirrm %%DATADIR%%/pixmaps/ground/green_3/ground/bottom
@dirrm %%DATADIR%%/pixmaps/ground/green_3/ground
@dirrm %%DATADIR%%/pixmaps/ground/green_3
@dirrm %%DATADIR%%/pixmaps/ground/green_2/trees/balloon_tree
@dirrm %%DATADIR%%/pixmaps/ground/green_2/trees
@dirrm %%DATADIR%%/pixmaps/ground/green_2/hedges
@dirrm %%DATADIR%%/pixmaps/ground/green_2
@dirrm %%DATADIR%%/pixmaps/ground/green_1/slider/1/brown
@dirrm %%DATADIR%%/pixmaps/ground/green_1/slider/1
@dirrm %%DATADIR%%/pixmaps/ground/green_1/slider
@dirrm %%DATADIR%%/pixmaps/ground/green_1/hedges
@dirrm %%DATADIR%%/pixmaps/ground/green_1
@dirrm %%DATADIR%%/pixmaps/ground/ghost_1
@dirrm %%DATADIR%%/pixmaps/ground/desert_1/ground/top
@dirrm %%DATADIR%%/pixmaps/ground/desert_1/ground/middle
@dirrm %%DATADIR%%/pixmaps/ground/desert_1/ground
@dirrm %%DATADIR%%/pixmaps/ground/desert_1/bones
@dirrm %%DATADIR%%/pixmaps/ground/desert_1
@dirrm %%DATADIR%%/pixmaps/ground/castle_1/ground/top
@dirrm %%DATADIR%%/pixmaps/ground/castle_1/ground/middle
@dirrm %%DATADIR%%/pixmaps/ground/castle_1/ground/bottom
@dirrm %%DATADIR%%/pixmaps/ground/castle_1/ground
@dirrm %%DATADIR%%/pixmaps/ground/castle_1
@dirrm %%DATADIR%%/pixmaps/ground/candy_1
@dirrm %%DATADIR%%/pixmaps/ground
@dirrm %%DATADIR%%/pixmaps/game/logo
@dirrm %%DATADIR%%/pixmaps/game/level
@dirrm %%DATADIR%%/pixmaps/game/items/goldpiece/yellow
@dirrm %%DATADIR%%/pixmaps/game/items/goldpiece/red
@dirrm %%DATADIR%%/pixmaps/game/items/goldpiece
@dirrm %%DATADIR%%/pixmaps/game/items
@dirrm %%DATADIR%%/pixmaps/game/editor/measures
@dirrm %%DATADIR%%/pixmaps/game/editor
@dirrm %%DATADIR%%/pixmaps/game/box/yellow/spin
@dirrm %%DATADIR%%/pixmaps/game/box/yellow/life
@dirrm %%DATADIR%%/pixmaps/game/box/yellow/bonus
@dirrm %%DATADIR%%/pixmaps/game/box/yellow
@dirrm %%DATADIR%%/pixmaps/game/box
@dirrm %%DATADIR%%/pixmaps/game/background
@dirrm %%DATADIR%%/pixmaps/game/arrow/small/white
@dirrm %%DATADIR%%/pixmaps/game/arrow/small/blue
@dirrm %%DATADIR%%/pixmaps/game/arrow/small
@dirrm %%DATADIR%%/pixmaps/game/arrow
@dirrm %%DATADIR%%/pixmaps/game
@dirrm %%DATADIR%%/pixmaps/enemy/turtle/red
@dirrm %%DATADIR%%/pixmaps/enemy/turtle/green
@dirrm %%DATADIR%%/pixmaps/enemy/turtle
@dirrm %%DATADIR%%/pixmaps/enemy/thromp/desert_1
@dirrm %%DATADIR%%/pixmaps/enemy/thromp
@dirrm %%DATADIR%%/pixmaps/enemy/static/saw
@dirrm %%DATADIR%%/pixmaps/enemy/static/metal_1
@dirrm %%DATADIR%%/pixmaps/enemy/static/blocks/spike_1
@dirrm %%DATADIR%%/pixmaps/enemy/static/blocks/desert
@dirrm %%DATADIR%%/pixmaps/enemy/static/blocks
@dirrm %%DATADIR%%/pixmaps/enemy/static
@dirrm %%DATADIR%%/pixmaps/enemy/spikeball/grey
@dirrm %%DATADIR%%/pixmaps/enemy/spikeball
@dirrm %%DATADIR%%/pixmaps/enemy/spika
@dirrm %%DATADIR%%/pixmaps/enemy/rokko
@dirrm %%DATADIR%%/pixmaps/enemy/krush
@dirrm %%DATADIR%%/pixmaps/enemy/gee/venom
@dirrm %%DATADIR%%/pixmaps/enemy/gee/lava
@dirrm %%DATADIR%%/pixmaps/enemy/gee/electro
@dirrm %%DATADIR%%/pixmaps/enemy/gee
@dirrm %%DATADIR%%/pixmaps/enemy/furball/brown
@dirrm %%DATADIR%%/pixmaps/enemy/furball/boss
@dirrm %%DATADIR%%/pixmaps/enemy/furball/blue
@dirrm %%DATADIR%%/pixmaps/enemy/furball
@dirrm %%DATADIR%%/pixmaps/enemy/flyon/orange
@dirrm %%DATADIR%%/pixmaps/enemy/flyon/blue
@dirrm %%DATADIR%%/pixmaps/enemy/flyon
@dirrm %%DATADIR%%/pixmaps/enemy/eato/green
@dirrm %%DATADIR%%/pixmaps/enemy/eato/brown
@dirrm %%DATADIR%%/pixmaps/enemy/eato
@dirrm %%DATADIR%%/pixmaps/enemy/bosses/turtle
@dirrm %%DATADIR%%/pixmaps/enemy/bosses
@dirrm %%DATADIR%%/pixmaps/enemy
@dirrm %%DATADIR%%/pixmaps/clouds/lightblue_1
@dirrm %%DATADIR%%/pixmaps/clouds/light_yellow_1
@dirrm %%DATADIR%%/pixmaps/clouds/grey_1
@dirrm %%DATADIR%%/pixmaps/clouds/default_1
@dirrm %%DATADIR%%/pixmaps/clouds/cloudy_1
@dirrm %%DATADIR%%/pixmaps/clouds
@dirrm %%DATADIR%%/pixmaps/blocks/wood
@dirrm %%DATADIR%%/pixmaps/blocks/toy
@dirrm %%DATADIR%%/pixmaps/blocks/stone
@dirrm %%DATADIR%%/pixmaps/blocks/slime
@dirrm %%DATADIR%%/pixmaps/blocks/screw
@dirrm %%DATADIR%%/pixmaps/blocks/sand
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/red
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/orange
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/green
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1/blue
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/plastic_1
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/metal_1/grey
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection/metal_1
@dirrm %%DATADIR%%/pixmaps/blocks/pipe/connection
@dirrm %%DATADIR%%/pixmaps/blocks/pipe
@dirrm %%DATADIR%%/pixmaps/blocks/metal
@dirrm %%DATADIR%%/pixmaps/blocks/ice
@dirrm %%DATADIR%%/pixmaps/blocks/extra
@dirrm %%DATADIR%%/pixmaps/blocks/cloud
@dirrm %%DATADIR%%/pixmaps/blocks/brick
@dirrm %%DATADIR%%/pixmaps/blocks
@dirrm %%DATADIR%%/pixmaps/animation/particles
@dirrm %%DATADIR%%/pixmaps/animation/light_1
@dirrm %%DATADIR%%/pixmaps/animation/iceball
@dirrm %%DATADIR%%/pixmaps/animation/fireball
@dirrm %%DATADIR%%/pixmaps/animation/fire_1
@dirrm %%DATADIR%%/pixmaps/animation
@dirrm %%DATADIR%%/pixmaps
@dirrm %%DATADIR%%/music
@dirrm %%DATADIR%%/levels
@dirrm %%DATADIR%%/icon
@dirrm %%DATADIR%%/gui/schemes
@dirrm %%DATADIR%%/gui/looknfeel
@dirrm %%DATADIR%%/gui/layout/menu
@dirrm %%DATADIR%%/gui/layout/level_settings
@dirrm %%DATADIR%%/gui/layout
@dirrm %%DATADIR%%/gui/imagesets
@dirrm %%DATADIR%%/gui/font
@dirrm %%DATADIR%%/gui
@dirrm %%DATADIR%%/editor
@dirrm %%DATADIR%%
|