aboutsummaryrefslogtreecommitdiff
path: root/games/warmux/pkg-plist
blob: 4f1f566ad773d24ea587dbdead2e5067d7da4dc6 (plain) (blame)
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
bin/warmux
%%SERVER%%bin/warmux-index-server
bin/warmux-list-games
%%SERVER%%bin/warmux-server
man/man6/warmux.6.gz
share/applications/warmux.desktop
%%NLS%%share/locale/bg/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/bs/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/ca/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/cpf/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/cs/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/da/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/de/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/el/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/eo/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/es/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/et/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/fa/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/fi/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/fr/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/gl/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/he/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/hu/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/it/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/ja_JP/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/kw/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/lv/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/nb/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/nl/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/nn/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/pl/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/pt/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/ro/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/ru/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/sk/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/sl/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/sv/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/tr/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/uk/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/warmux.mo
%%NLS%%share/locale/zh_TW/LC_MESSAGES/warmux.mo
share/pixmaps/warmux_128x128.png
%%DATADIR%%/.nomedia
%%DATADIR%%/authors.dtd
%%DATADIR%%/authors.xml
%%DATADIR%%/body/aliases.xml
%%DATADIR%%/body/all_skins_objects/baseball_cap.png
%%DATADIR%%/body/all_skins_objects/baseball_tshirt.png
%%DATADIR%%/body/all_skins_objects/belt.png
%%DATADIR%%/body/all_skins_objects/c1.png
%%DATADIR%%/body/all_skins_objects/c2.png
%%DATADIR%%/body/all_skins_objects/cowboy_hat.png
%%DATADIR%%/body/all_skins_objects/foothelmet1.png
%%DATADIR%%/body/all_skins_objects/foothelmet2.png
%%DATADIR%%/body/all_skins_objects/helmet.png
%%DATADIR%%/body/all_skins_objects/hoop.png
%%DATADIR%%/body/all_skins_objects/hula.png
%%DATADIR%%/body/all_skins_objects/jetpack-fire.png
%%DATADIR%%/body/all_skins_objects/jetpack.png
%%DATADIR%%/body/all_skins_objects/yoyo.png
%%DATADIR%%/body/beastie/arm1left.png
%%DATADIR%%/body/beastie/arm1right.png
%%DATADIR%%/body/beastie/arm2left.png
%%DATADIR%%/body/beastie/arm2right.png
%%DATADIR%%/body/beastie/arm3left.png
%%DATADIR%%/body/beastie/arm3right.png
%%DATADIR%%/body/beastie/back.png
%%DATADIR%%/body/beastie/black_arm1left.png
%%DATADIR%%/body/beastie/black_arm1right.png
%%DATADIR%%/body/beastie/black_arm2left.png
%%DATADIR%%/body/beastie/black_arm2right.png
%%DATADIR%%/body/beastie/black_arm3left.png
%%DATADIR%%/body/beastie/black_arm3right.png
%%DATADIR%%/body/beastie/black_back.png
%%DATADIR%%/body/beastie/black_body.png
%%DATADIR%%/body/beastie/black_eyelid.png
%%DATADIR%%/body/beastie/black_eyes.png
%%DATADIR%%/body/beastie/black_footleft.png
%%DATADIR%%/body/beastie/black_footright.png
%%DATADIR%%/body/beastie/black_hat.png
%%DATADIR%%/body/beastie/black_head.png
%%DATADIR%%/body/beastie/black_hornoverleft.png
%%DATADIR%%/body/beastie/black_hornoverright.png
%%DATADIR%%/body/beastie/black_hornunderleft.png
%%DATADIR%%/body/beastie/black_hornunderright.png
%%DATADIR%%/body/beastie/black_noze.png
%%DATADIR%%/body/beastie/black_pupil.png
%%DATADIR%%/body/beastie/black_tail.png
%%DATADIR%%/body/beastie/body.png
%%DATADIR%%/body/beastie/config.xml
%%DATADIR%%/body/beastie/dead.png
%%DATADIR%%/body/beastie/eyelid.png
%%DATADIR%%/body/beastie/eyes.png
%%DATADIR%%/body/beastie/footleft.png
%%DATADIR%%/body/beastie/footright.png
%%DATADIR%%/body/beastie/hat.png
%%DATADIR%%/body/beastie/head.png
%%DATADIR%%/body/beastie/hornoverleft.png
%%DATADIR%%/body/beastie/hornoverright.png
%%DATADIR%%/body/beastie/hornunderleft.png
%%DATADIR%%/body/beastie/hornunderright.png
%%DATADIR%%/body/beastie/noze.png
%%DATADIR%%/body/beastie/pupil.png
%%DATADIR%%/body/beastie/sick_head.png
%%DATADIR%%/body/beastie/tail.png
%%DATADIR%%/body/body.dtd
%%DATADIR%%/body/bugzilla/arm1left.png
%%DATADIR%%/body/bugzilla/arm1right.png
%%DATADIR%%/body/bugzilla/arm2left.png
%%DATADIR%%/body/bugzilla/arm2right.png
%%DATADIR%%/body/bugzilla/arm3left.png
%%DATADIR%%/body/bugzilla/arm3right.png
%%DATADIR%%/body/bugzilla/back.png
%%DATADIR%%/body/bugzilla/black_arm1left.png
%%DATADIR%%/body/bugzilla/black_arm1right.png
%%DATADIR%%/body/bugzilla/black_arm2left.png
%%DATADIR%%/body/bugzilla/black_arm2right.png
%%DATADIR%%/body/bugzilla/black_arm3left.png
%%DATADIR%%/body/bugzilla/black_arm3right.png
%%DATADIR%%/body/bugzilla/black_back.png
%%DATADIR%%/body/bugzilla/black_body.png
%%DATADIR%%/body/bugzilla/black_eyelid.png
%%DATADIR%%/body/bugzilla/black_eyes.png
%%DATADIR%%/body/bugzilla/black_footleft.png
%%DATADIR%%/body/bugzilla/black_footright.png
%%DATADIR%%/body/bugzilla/black_hat.png
%%DATADIR%%/body/bugzilla/black_head.png
%%DATADIR%%/body/bugzilla/black_hornoverleft.png
%%DATADIR%%/body/bugzilla/black_hornoverright.png
%%DATADIR%%/body/bugzilla/black_hornunderleft.png
%%DATADIR%%/body/bugzilla/black_hornunderright.png
%%DATADIR%%/body/bugzilla/black_noze.png
%%DATADIR%%/body/bugzilla/black_pupil.png
%%DATADIR%%/body/bugzilla/black_tail.png
%%DATADIR%%/body/bugzilla/body.png
%%DATADIR%%/body/bugzilla/config.xml
%%DATADIR%%/body/bugzilla/dead.png
%%DATADIR%%/body/bugzilla/eyelid.png
%%DATADIR%%/body/bugzilla/eyes.png
%%DATADIR%%/body/bugzilla/footleft.png
%%DATADIR%%/body/bugzilla/footright.png
%%DATADIR%%/body/bugzilla/hat.png
%%DATADIR%%/body/bugzilla/head.png
%%DATADIR%%/body/bugzilla/hornoverleft.png
%%DATADIR%%/body/bugzilla/hornoverright.png
%%DATADIR%%/body/bugzilla/hornunderleft.png
%%DATADIR%%/body/bugzilla/hornunderright.png
%%DATADIR%%/body/bugzilla/noze.png
%%DATADIR%%/body/bugzilla/pupil.png
%%DATADIR%%/body/bugzilla/sick_head.png
%%DATADIR%%/body/bugzilla/tail.png
%%DATADIR%%/body/clothes.xml
%%DATADIR%%/body/firefox/arm1left.png
%%DATADIR%%/body/firefox/arm1right.png
%%DATADIR%%/body/firefox/arm2left.png
%%DATADIR%%/body/firefox/arm2right.png
%%DATADIR%%/body/firefox/arm3left.png
%%DATADIR%%/body/firefox/arm3right.png
%%DATADIR%%/body/firefox/back.png
%%DATADIR%%/body/firefox/black_arm1left.png
%%DATADIR%%/body/firefox/black_arm1right.png
%%DATADIR%%/body/firefox/black_arm2left.png
%%DATADIR%%/body/firefox/black_arm2right.png
%%DATADIR%%/body/firefox/black_arm3left.png
%%DATADIR%%/body/firefox/black_arm3right.png
%%DATADIR%%/body/firefox/black_back.png
%%DATADIR%%/body/firefox/black_body.png
%%DATADIR%%/body/firefox/black_eyelid.png
%%DATADIR%%/body/firefox/black_eyes.png
%%DATADIR%%/body/firefox/black_footleft.png
%%DATADIR%%/body/firefox/black_footright.png
%%DATADIR%%/body/firefox/black_hat.png
%%DATADIR%%/body/firefox/black_head.png
%%DATADIR%%/body/firefox/black_hornoverleft.png
%%DATADIR%%/body/firefox/black_hornoverright.png
%%DATADIR%%/body/firefox/black_hornunderleft.png
%%DATADIR%%/body/firefox/black_hornunderright.png
%%DATADIR%%/body/firefox/black_noze.png
%%DATADIR%%/body/firefox/black_pupil.png
%%DATADIR%%/body/firefox/black_tail.png
%%DATADIR%%/body/firefox/body.png
%%DATADIR%%/body/firefox/config.xml
%%DATADIR%%/body/firefox/dead.png
%%DATADIR%%/body/firefox/eyelid.png
%%DATADIR%%/body/firefox/eyes.png
%%DATADIR%%/body/firefox/footleft.png
%%DATADIR%%/body/firefox/footright.png
%%DATADIR%%/body/firefox/hat.png
%%DATADIR%%/body/firefox/head.png
%%DATADIR%%/body/firefox/hornoverleft.png
%%DATADIR%%/body/firefox/hornoverright.png
%%DATADIR%%/body/firefox/hornunderleft.png
%%DATADIR%%/body/firefox/hornunderright.png
%%DATADIR%%/body/firefox/noze.png
%%DATADIR%%/body/firefox/pupil.png
%%DATADIR%%/body/firefox/sick_head.png
%%DATADIR%%/body/firefox/tail.png
%%DATADIR%%/body/gnu/arm1left.png
%%DATADIR%%/body/gnu/arm1right.png
%%DATADIR%%/body/gnu/arm2left.png
%%DATADIR%%/body/gnu/arm2right.png
%%DATADIR%%/body/gnu/arm3left.png
%%DATADIR%%/body/gnu/arm3right.png
%%DATADIR%%/body/gnu/back.png
%%DATADIR%%/body/gnu/black_arm1left.png
%%DATADIR%%/body/gnu/black_arm1right.png
%%DATADIR%%/body/gnu/black_arm2left.png
%%DATADIR%%/body/gnu/black_arm2right.png
%%DATADIR%%/body/gnu/black_arm3left.png
%%DATADIR%%/body/gnu/black_arm3right.png
%%DATADIR%%/body/gnu/black_back.png
%%DATADIR%%/body/gnu/black_body.png
%%DATADIR%%/body/gnu/black_eyelid.png
%%DATADIR%%/body/gnu/black_eyes.png
%%DATADIR%%/body/gnu/black_footleft.png
%%DATADIR%%/body/gnu/black_footright.png
%%DATADIR%%/body/gnu/black_hat.png
%%DATADIR%%/body/gnu/black_head.png
%%DATADIR%%/body/gnu/black_hornoverleft.png
%%DATADIR%%/body/gnu/black_hornoverright.png
%%DATADIR%%/body/gnu/black_hornunderleft.png
%%DATADIR%%/body/gnu/black_hornunderright.png
%%DATADIR%%/body/gnu/black_noze.png
%%DATADIR%%/body/gnu/black_pupil.png
%%DATADIR%%/body/gnu/black_tail.png
%%DATADIR%%/body/gnu/body.png
%%DATADIR%%/body/gnu/config.xml
%%DATADIR%%/body/gnu/dead.png
%%DATADIR%%/body/gnu/eyelid.png
%%DATADIR%%/body/gnu/eyes.png
%%DATADIR%%/body/gnu/footleft.png
%%DATADIR%%/body/gnu/footright.png
%%DATADIR%%/body/gnu/hat.png
%%DATADIR%%/body/gnu/head.png
%%DATADIR%%/body/gnu/hornoverleft.png
%%DATADIR%%/body/gnu/hornoverright.png
%%DATADIR%%/body/gnu/hornunderleft.png
%%DATADIR%%/body/gnu/hornunderright.png
%%DATADIR%%/body/gnu/noze.png
%%DATADIR%%/body/gnu/pupil.png
%%DATADIR%%/body/gnu/sick_head.png
%%DATADIR%%/body/gnu/tail.png
%%DATADIR%%/body/hexley/arm1left.png
%%DATADIR%%/body/hexley/arm1right.png
%%DATADIR%%/body/hexley/arm2left.png
%%DATADIR%%/body/hexley/arm2right.png
%%DATADIR%%/body/hexley/arm3left.png
%%DATADIR%%/body/hexley/arm3right.png
%%DATADIR%%/body/hexley/back.png
%%DATADIR%%/body/hexley/black_arm1left.png
%%DATADIR%%/body/hexley/black_arm1right.png
%%DATADIR%%/body/hexley/black_arm2left.png
%%DATADIR%%/body/hexley/black_arm2right.png
%%DATADIR%%/body/hexley/black_arm3left.png
%%DATADIR%%/body/hexley/black_arm3right.png
%%DATADIR%%/body/hexley/black_back.png
%%DATADIR%%/body/hexley/black_body.png
%%DATADIR%%/body/hexley/black_eyelid.png
%%DATADIR%%/body/hexley/black_eyes.png
%%DATADIR%%/body/hexley/black_footleft.png
%%DATADIR%%/body/hexley/black_footright.png
%%DATADIR%%/body/hexley/black_hat.png
%%DATADIR%%/body/hexley/black_head.png
%%DATADIR%%/body/hexley/black_hornleft.png
%%DATADIR%%/body/hexley/black_hornoverleft.png
%%DATADIR%%/body/hexley/black_hornoverright.png
%%DATADIR%%/body/hexley/black_hornright.png
%%DATADIR%%/body/hexley/black_hornunderleft.png
%%DATADIR%%/body/hexley/black_hornunderright.png
%%DATADIR%%/body/hexley/black_noze.png
%%DATADIR%%/body/hexley/black_pupil.png
%%DATADIR%%/body/hexley/black_tail.png
%%DATADIR%%/body/hexley/body.png
%%DATADIR%%/body/hexley/config.xml
%%DATADIR%%/body/hexley/dead.png
%%DATADIR%%/body/hexley/eyelid.png
%%DATADIR%%/body/hexley/eyes.png
%%DATADIR%%/body/hexley/footleft.png
%%DATADIR%%/body/hexley/footright.png
%%DATADIR%%/body/hexley/hat.png
%%DATADIR%%/body/hexley/head.png
%%DATADIR%%/body/hexley/hornleft.png
%%DATADIR%%/body/hexley/hornoveleft.png
%%DATADIR%%/body/hexley/hornoverleft.png
%%DATADIR%%/body/hexley/hornoverright.png
%%DATADIR%%/body/hexley/hornright.png
%%DATADIR%%/body/hexley/hornunderleft.png
%%DATADIR%%/body/hexley/hornunderright.png
%%DATADIR%%/body/hexley/noze.png
%%DATADIR%%/body/hexley/pupil.png
%%DATADIR%%/body/hexley/sick_head.png
%%DATADIR%%/body/hexley/tail.png
%%DATADIR%%/body/konqi/arm1left.png
%%DATADIR%%/body/konqi/arm1right.png
%%DATADIR%%/body/konqi/arm2left.png
%%DATADIR%%/body/konqi/arm2right.png
%%DATADIR%%/body/konqi/arm3left.png
%%DATADIR%%/body/konqi/arm3right.png
%%DATADIR%%/body/konqi/back.png
%%DATADIR%%/body/konqi/black_arm1left.png
%%DATADIR%%/body/konqi/black_arm1right.png
%%DATADIR%%/body/konqi/black_arm2left.png
%%DATADIR%%/body/konqi/black_arm2right.png
%%DATADIR%%/body/konqi/black_arm3left.png
%%DATADIR%%/body/konqi/black_arm3right.png
%%DATADIR%%/body/konqi/black_back.png
%%DATADIR%%/body/konqi/black_body.png
%%DATADIR%%/body/konqi/black_eyelid.png
%%DATADIR%%/body/konqi/black_eyes.png
%%DATADIR%%/body/konqi/black_footleft.png
%%DATADIR%%/body/konqi/black_footright.png
%%DATADIR%%/body/konqi/black_hat.png
%%DATADIR%%/body/konqi/black_head.png
%%DATADIR%%/body/konqi/black_hornoverleft.png
%%DATADIR%%/body/konqi/black_hornoverright.png
%%DATADIR%%/body/konqi/black_hornunderleft.png
%%DATADIR%%/body/konqi/black_hornunderright.png
%%DATADIR%%/body/konqi/black_noze.png
%%DATADIR%%/body/konqi/black_pupil.png
%%DATADIR%%/body/konqi/black_tail.png
%%DATADIR%%/body/konqi/body.png
%%DATADIR%%/body/konqi/config.xml
%%DATADIR%%/body/konqi/dead.png
%%DATADIR%%/body/konqi/eyelid.png
%%DATADIR%%/body/konqi/eyes.png
%%DATADIR%%/body/konqi/footleft.png
%%DATADIR%%/body/konqi/footright.png
%%DATADIR%%/body/konqi/hat.png
%%DATADIR%%/body/konqi/head.png
%%DATADIR%%/body/konqi/hornoverleft.png
%%DATADIR%%/body/konqi/hornoverright.png
%%DATADIR%%/body/konqi/hornunderleft.png
%%DATADIR%%/body/konqi/hornunderright.png
%%DATADIR%%/body/konqi/noze.png
%%DATADIR%%/body/konqi/pupil.png
%%DATADIR%%/body/konqi/sick_head.png
%%DATADIR%%/body/konqi/tail.png
%%DATADIR%%/body/movements.xml
%%DATADIR%%/body/php/arm1left.png
%%DATADIR%%/body/php/arm1right.png
%%DATADIR%%/body/php/arm2left.png
%%DATADIR%%/body/php/arm2right.png
%%DATADIR%%/body/php/arm3left.png
%%DATADIR%%/body/php/arm3right.png
%%DATADIR%%/body/php/back.png
%%DATADIR%%/body/php/black_arm1left.png
%%DATADIR%%/body/php/black_arm1right.png
%%DATADIR%%/body/php/black_arm2left.png
%%DATADIR%%/body/php/black_arm2right.png
%%DATADIR%%/body/php/black_arm3left.png
%%DATADIR%%/body/php/black_arm3right.png
%%DATADIR%%/body/php/black_back.png
%%DATADIR%%/body/php/black_body.png
%%DATADIR%%/body/php/black_eyelid.png
%%DATADIR%%/body/php/black_eyes.png
%%DATADIR%%/body/php/black_footleft.png
%%DATADIR%%/body/php/black_footright.png
%%DATADIR%%/body/php/black_hat.png
%%DATADIR%%/body/php/black_head.png
%%DATADIR%%/body/php/black_hornleft.png
%%DATADIR%%/body/php/black_hornoverleft.png
%%DATADIR%%/body/php/black_hornoverright.png
%%DATADIR%%/body/php/black_hornright.png
%%DATADIR%%/body/php/black_hornunderleft.png
%%DATADIR%%/body/php/black_hornunderright.png
%%DATADIR%%/body/php/black_noze.png
%%DATADIR%%/body/php/black_pupil.png
%%DATADIR%%/body/php/black_tail.png
%%DATADIR%%/body/php/body.png
%%DATADIR%%/body/php/config.xml
%%DATADIR%%/body/php/dead.png
%%DATADIR%%/body/php/eyelid.png
%%DATADIR%%/body/php/eyes.png
%%DATADIR%%/body/php/footleft.png
%%DATADIR%%/body/php/footright.png
%%DATADIR%%/body/php/hat.png
%%DATADIR%%/body/php/head.png
%%DATADIR%%/body/php/hornoverleft.png
%%DATADIR%%/body/php/hornoverright.png
%%DATADIR%%/body/php/hornrightright.png
%%DATADIR%%/body/php/hornunderleft.png
%%DATADIR%%/body/php/hornunderright.png
%%DATADIR%%/body/php/noze.png
%%DATADIR%%/body/php/pupil.png
%%DATADIR%%/body/php/sick_head.png
%%DATADIR%%/body/php/tail.png
%%DATADIR%%/body/pidgin/arm1left.png
%%DATADIR%%/body/pidgin/arm1right.png
%%DATADIR%%/body/pidgin/arm2left.png
%%DATADIR%%/body/pidgin/arm2right.png
%%DATADIR%%/body/pidgin/arm3left.png
%%DATADIR%%/body/pidgin/arm3right.png
%%DATADIR%%/body/pidgin/back.png
%%DATADIR%%/body/pidgin/black_arm1left.png
%%DATADIR%%/body/pidgin/black_arm1right.png
%%DATADIR%%/body/pidgin/black_arm2left.png
%%DATADIR%%/body/pidgin/black_arm2right.png
%%DATADIR%%/body/pidgin/black_arm3left.png
%%DATADIR%%/body/pidgin/black_arm3right.png
%%DATADIR%%/body/pidgin/black_back.png
%%DATADIR%%/body/pidgin/black_body.png
%%DATADIR%%/body/pidgin/black_eyelid.png
%%DATADIR%%/body/pidgin/black_eyes.png
%%DATADIR%%/body/pidgin/black_footleft.png
%%DATADIR%%/body/pidgin/black_footright.png
%%DATADIR%%/body/pidgin/black_hat.png
%%DATADIR%%/body/pidgin/black_head.png
%%DATADIR%%/body/pidgin/black_hornoverleft.png
%%DATADIR%%/body/pidgin/black_hornoverright.png
%%DATADIR%%/body/pidgin/black_hornunderleft.png
%%DATADIR%%/body/pidgin/black_hornunderright.png
%%DATADIR%%/body/pidgin/black_noze.png
%%DATADIR%%/body/pidgin/black_pupil.png
%%DATADIR%%/body/pidgin/black_tail.png
%%DATADIR%%/body/pidgin/body.png
%%DATADIR%%/body/pidgin/config.xml
%%DATADIR%%/body/pidgin/dead.png
%%DATADIR%%/body/pidgin/eyelid.png
%%DATADIR%%/body/pidgin/eyes.png
%%DATADIR%%/body/pidgin/footleft.png
%%DATADIR%%/body/pidgin/footright.png
%%DATADIR%%/body/pidgin/hat.png
%%DATADIR%%/body/pidgin/head.png
%%DATADIR%%/body/pidgin/hornoverleft.png
%%DATADIR%%/body/pidgin/hornoverright.png
%%DATADIR%%/body/pidgin/hornunderleft.png
%%DATADIR%%/body/pidgin/hornunderright.png
%%DATADIR%%/body/pidgin/noze.png
%%DATADIR%%/body/pidgin/pupil.png
%%DATADIR%%/body/pidgin/sick_head.png
%%DATADIR%%/body/pidgin/tail.png
%%DATADIR%%/body/postfix/arm1left.png
%%DATADIR%%/body/postfix/arm1right.png
%%DATADIR%%/body/postfix/arm2left.png
%%DATADIR%%/body/postfix/arm2right.png
%%DATADIR%%/body/postfix/arm3left.png
%%DATADIR%%/body/postfix/arm3right.png
%%DATADIR%%/body/postfix/back.png
%%DATADIR%%/body/postfix/black_arm1left.png
%%DATADIR%%/body/postfix/black_arm1right.png
%%DATADIR%%/body/postfix/black_arm2left.png
%%DATADIR%%/body/postfix/black_arm2right.png
%%DATADIR%%/body/postfix/black_arm3left.png
%%DATADIR%%/body/postfix/black_arm3right.png
%%DATADIR%%/body/postfix/black_back.png
%%DATADIR%%/body/postfix/black_body.png
%%DATADIR%%/body/postfix/black_eyelid.png
%%DATADIR%%/body/postfix/black_eyes.png
%%DATADIR%%/body/postfix/black_footleft.png
%%DATADIR%%/body/postfix/black_footright.png
%%DATADIR%%/body/postfix/black_hat.png
%%DATADIR%%/body/postfix/black_head.png
%%DATADIR%%/body/postfix/black_hornleft.png
%%DATADIR%%/body/postfix/black_hornoverleft.png
%%DATADIR%%/body/postfix/black_hornoverright.png
%%DATADIR%%/body/postfix/black_hornright.png
%%DATADIR%%/body/postfix/black_hornunderleft.png
%%DATADIR%%/body/postfix/black_hornunderright.png
%%DATADIR%%/body/postfix/black_noze.png
%%DATADIR%%/body/postfix/black_pupil.png
%%DATADIR%%/body/postfix/black_tail.png
%%DATADIR%%/body/postfix/body.png
%%DATADIR%%/body/postfix/config.xml
%%DATADIR%%/body/postfix/dead.png
%%DATADIR%%/body/postfix/eyelid.png
%%DATADIR%%/body/postfix/eyes.png
%%DATADIR%%/body/postfix/footleft.png
%%DATADIR%%/body/postfix/footright.png
%%DATADIR%%/body/postfix/hat.png
%%DATADIR%%/body/postfix/head.png
%%DATADIR%%/body/postfix/hornleft.png
%%DATADIR%%/body/postfix/hornoverleft.png
%%DATADIR%%/body/postfix/hornoverright.png
%%DATADIR%%/body/postfix/hornright.png
%%DATADIR%%/body/postfix/hornunderleft.png
%%DATADIR%%/body/postfix/hornunderright.png
%%DATADIR%%/body/postfix/noze.png
%%DATADIR%%/body/postfix/pupil.png
%%DATADIR%%/body/postfix/sick_head.png
%%DATADIR%%/body/postfix/tail.png
%%DATADIR%%/body/skeletons.xml
%%DATADIR%%/body/snort/arm1left.png
%%DATADIR%%/body/snort/arm1right.png
%%DATADIR%%/body/snort/arm2left.png
%%DATADIR%%/body/snort/arm2right.png
%%DATADIR%%/body/snort/arm3left.png
%%DATADIR%%/body/snort/arm3right.png
%%DATADIR%%/body/snort/back.png
%%DATADIR%%/body/snort/black_arm1left.png
%%DATADIR%%/body/snort/black_arm1right.png
%%DATADIR%%/body/snort/black_arm2left.png
%%DATADIR%%/body/snort/black_arm2right.png
%%DATADIR%%/body/snort/black_arm3left.png
%%DATADIR%%/body/snort/black_arm3right.png
%%DATADIR%%/body/snort/black_back.png
%%DATADIR%%/body/snort/black_body.png
%%DATADIR%%/body/snort/black_eyelid.png
%%DATADIR%%/body/snort/black_eyes.png
%%DATADIR%%/body/snort/black_footleft.png
%%DATADIR%%/body/snort/black_footright.png
%%DATADIR%%/body/snort/black_hat.png
%%DATADIR%%/body/snort/black_head.png
%%DATADIR%%/body/snort/black_hornoverleft.png
%%DATADIR%%/body/snort/black_hornoverright.png
%%DATADIR%%/body/snort/black_hornunderleft.png
%%DATADIR%%/body/snort/black_hornunderright.png
%%DATADIR%%/body/snort/black_noze.png
%%DATADIR%%/body/snort/black_pupil.png
%%DATADIR%%/body/snort/black_tail.png
%%DATADIR%%/body/snort/body.png
%%DATADIR%%/body/snort/config.xml
%%DATADIR%%/body/snort/dead.png
%%DATADIR%%/body/snort/eyelid.png
%%DATADIR%%/body/snort/eyes.png
%%DATADIR%%/body/snort/footleft.png
%%DATADIR%%/body/snort/footright.png
%%DATADIR%%/body/snort/hat.png
%%DATADIR%%/body/snort/head.png
%%DATADIR%%/body/snort/hornoverleft.png
%%DATADIR%%/body/snort/hornoverright.png
%%DATADIR%%/body/snort/hornunderleft.png
%%DATADIR%%/body/snort/hornunderright.png
%%DATADIR%%/body/snort/noze.png
%%DATADIR%%/body/snort/pupil.png
%%DATADIR%%/body/snort/sick_head.png
%%DATADIR%%/body/snort/tail.png
%%DATADIR%%/body/spip/arm1left.png
%%DATADIR%%/body/spip/arm1right.png
%%DATADIR%%/body/spip/arm2left.png
%%DATADIR%%/body/spip/arm2right.png
%%DATADIR%%/body/spip/arm3left.png
%%DATADIR%%/body/spip/arm3right.png
%%DATADIR%%/body/spip/back.png
%%DATADIR%%/body/spip/black_arm1left.png
%%DATADIR%%/body/spip/black_arm1right.png
%%DATADIR%%/body/spip/black_arm2left.png
%%DATADIR%%/body/spip/black_arm2right.png
%%DATADIR%%/body/spip/black_arm3left.png
%%DATADIR%%/body/spip/black_arm3right.png
%%DATADIR%%/body/spip/black_back.png
%%DATADIR%%/body/spip/black_body.png
%%DATADIR%%/body/spip/black_eyelid.png
%%DATADIR%%/body/spip/black_eyes.png
%%DATADIR%%/body/spip/black_footleft.png
%%DATADIR%%/body/spip/black_footright.png
%%DATADIR%%/body/spip/black_hat.png
%%DATADIR%%/body/spip/black_head.png
%%DATADIR%%/body/spip/black_hornoverleft.png
%%DATADIR%%/body/spip/black_hornoverright.png
%%DATADIR%%/body/spip/black_hornunderleft.png
%%DATADIR%%/body/spip/black_hornunderright.png
%%DATADIR%%/body/spip/black_noze.png
%%DATADIR%%/body/spip/black_pupil.png
%%DATADIR%%/body/spip/black_tail.png
%%DATADIR%%/body/spip/body.png
%%DATADIR%%/body/spip/config.xml
%%DATADIR%%/body/spip/dead.png
%%DATADIR%%/body/spip/eyelid.png
%%DATADIR%%/body/spip/eyes.png
%%DATADIR%%/body/spip/footleft.png
%%DATADIR%%/body/spip/footright.png
%%DATADIR%%/body/spip/hat.png
%%DATADIR%%/body/spip/head.png
%%DATADIR%%/body/spip/hornoverleft.png
%%DATADIR%%/body/spip/hornoverright.png
%%DATADIR%%/body/spip/hornunderleft.png
%%DATADIR%%/body/spip/hornunderright.png
%%DATADIR%%/body/spip/noze.png
%%DATADIR%%/body/spip/pupil.png
%%DATADIR%%/body/spip/sick_head.png
%%DATADIR%%/body/spip/tail.png
%%DATADIR%%/body/suse/arm1left.png
%%DATADIR%%/body/suse/arm1right.png
%%DATADIR%%/body/suse/arm2left.png
%%DATADIR%%/body/suse/arm2right.png
%%DATADIR%%/body/suse/arm3left.png
%%DATADIR%%/body/suse/arm3right.png
%%DATADIR%%/body/suse/back.png
%%DATADIR%%/body/suse/black_arm1left.png
%%DATADIR%%/body/suse/black_arm1right.png
%%DATADIR%%/body/suse/black_arm2left.png
%%DATADIR%%/body/suse/black_arm2right.png
%%DATADIR%%/body/suse/black_arm3left.png
%%DATADIR%%/body/suse/black_arm3right.png
%%DATADIR%%/body/suse/black_back.png
%%DATADIR%%/body/suse/black_body.png
%%DATADIR%%/body/suse/black_eyelid.png
%%DATADIR%%/body/suse/black_eyes.png
%%DATADIR%%/body/suse/black_footleft.png
%%DATADIR%%/body/suse/black_footright.png
%%DATADIR%%/body/suse/black_hat.png
%%DATADIR%%/body/suse/black_head.png
%%DATADIR%%/body/suse/black_hornoverleft.png
%%DATADIR%%/body/suse/black_hornoverright.png
%%DATADIR%%/body/suse/black_hornunderleft.png
%%DATADIR%%/body/suse/black_hornunderright.png
%%DATADIR%%/body/suse/black_noze.png
%%DATADIR%%/body/suse/black_pupil.png
%%DATADIR%%/body/suse/black_tail.png
%%DATADIR%%/body/suse/body.png
%%DATADIR%%/body/suse/config.xml
%%DATADIR%%/body/suse/dead.png
%%DATADIR%%/body/suse/eyelid.png
%%DATADIR%%/body/suse/eyes.png
%%DATADIR%%/body/suse/footleft.png
%%DATADIR%%/body/suse/footright.png
%%DATADIR%%/body/suse/hat.png
%%DATADIR%%/body/suse/head.png
%%DATADIR%%/body/suse/hornoverleft.png
%%DATADIR%%/body/suse/hornoverright.png
%%DATADIR%%/body/suse/hornunderleft.png
%%DATADIR%%/body/suse/hornunderright.png
%%DATADIR%%/body/suse/noze.png
%%DATADIR%%/body/suse/pupil.png
%%DATADIR%%/body/suse/sick_head.png
%%DATADIR%%/body/suse/tail.png
%%DATADIR%%/body/thunderbird/arm1left.png
%%DATADIR%%/body/thunderbird/arm1right.png
%%DATADIR%%/body/thunderbird/arm2left.png
%%DATADIR%%/body/thunderbird/arm2right.png
%%DATADIR%%/body/thunderbird/arm3left.png
%%DATADIR%%/body/thunderbird/arm3right.png
%%DATADIR%%/body/thunderbird/back.png
%%DATADIR%%/body/thunderbird/black_arm1left.png
%%DATADIR%%/body/thunderbird/black_arm1right.png
%%DATADIR%%/body/thunderbird/black_arm2left.png
%%DATADIR%%/body/thunderbird/black_arm2right.png
%%DATADIR%%/body/thunderbird/black_arm3left.png
%%DATADIR%%/body/thunderbird/black_arm3right.png
%%DATADIR%%/body/thunderbird/black_back.png
%%DATADIR%%/body/thunderbird/black_body.png
%%DATADIR%%/body/thunderbird/black_eyelid.png
%%DATADIR%%/body/thunderbird/black_eyes.png
%%DATADIR%%/body/thunderbird/black_footleft.png
%%DATADIR%%/body/thunderbird/black_footright.png
%%DATADIR%%/body/thunderbird/black_hat.png
%%DATADIR%%/body/thunderbird/black_head.png
%%DATADIR%%/body/thunderbird/black_hornleft.png
%%DATADIR%%/body/thunderbird/black_hornoverleft.png
%%DATADIR%%/body/thunderbird/black_hornoverright.png
%%DATADIR%%/body/thunderbird/black_hornright.png
%%DATADIR%%/body/thunderbird/black_hornunderleft.png
%%DATADIR%%/body/thunderbird/black_hornunderright.png
%%DATADIR%%/body/thunderbird/black_noze.png
%%DATADIR%%/body/thunderbird/black_pupil.png
%%DATADIR%%/body/thunderbird/black_tail.png
%%DATADIR%%/body/thunderbird/body.png
%%DATADIR%%/body/thunderbird/config.xml
%%DATADIR%%/body/thunderbird/dead.png
%%DATADIR%%/body/thunderbird/eyelid.png
%%DATADIR%%/body/thunderbird/eyes.png
%%DATADIR%%/body/thunderbird/footleft.png
%%DATADIR%%/body/thunderbird/footright.png
%%DATADIR%%/body/thunderbird/hat.png
%%DATADIR%%/body/thunderbird/head.png
%%DATADIR%%/body/thunderbird/hornleft.png
%%DATADIR%%/body/thunderbird/hornoverleft.png
%%DATADIR%%/body/thunderbird/hornoverright.png
%%DATADIR%%/body/thunderbird/hornright.png
%%DATADIR%%/body/thunderbird/hornunderleft.png
%%DATADIR%%/body/thunderbird/hornunderright.png
%%DATADIR%%/body/thunderbird/noze.png
%%DATADIR%%/body/thunderbird/pupil.png
%%DATADIR%%/body/thunderbird/sick_head.png
%%DATADIR%%/body/thunderbird/tail.png
%%DATADIR%%/body/tux/arm1left.png
%%DATADIR%%/body/tux/arm1right.png
%%DATADIR%%/body/tux/arm2left.png
%%DATADIR%%/body/tux/arm2right.png
%%DATADIR%%/body/tux/arm3left.png
%%DATADIR%%/body/tux/arm3right.png
%%DATADIR%%/body/tux/back.png
%%DATADIR%%/body/tux/black_arm1left.png
%%DATADIR%%/body/tux/black_arm1right.png
%%DATADIR%%/body/tux/black_arm2left.png
%%DATADIR%%/body/tux/black_arm2right.png
%%DATADIR%%/body/tux/black_arm3left.png
%%DATADIR%%/body/tux/black_arm3right.png
%%DATADIR%%/body/tux/black_back.png
%%DATADIR%%/body/tux/black_body.png
%%DATADIR%%/body/tux/black_eyelid.png
%%DATADIR%%/body/tux/black_eyes.png
%%DATADIR%%/body/tux/black_footleft.png
%%DATADIR%%/body/tux/black_footright.png
%%DATADIR%%/body/tux/black_hat.png
%%DATADIR%%/body/tux/black_head.png
%%DATADIR%%/body/tux/black_hornoverleft.png
%%DATADIR%%/body/tux/black_hornoverright.png
%%DATADIR%%/body/tux/black_hornunderleft.png
%%DATADIR%%/body/tux/black_hornunderright.png
%%DATADIR%%/body/tux/black_noze.png
%%DATADIR%%/body/tux/black_pupil.png
%%DATADIR%%/body/tux/black_tail.png
%%DATADIR%%/body/tux/body.png
%%DATADIR%%/body/tux/config.xml
%%DATADIR%%/body/tux/dead.png
%%DATADIR%%/body/tux/eyelid.png
%%DATADIR%%/body/tux/eyes.png
%%DATADIR%%/body/tux/footleft.png
%%DATADIR%%/body/tux/footright.png
%%DATADIR%%/body/tux/hat.png
%%DATADIR%%/body/tux/head.png
%%DATADIR%%/body/tux/hornoverleft.png
%%DATADIR%%/body/tux/hornoverright.png
%%DATADIR%%/body/tux/hornunderleft.png
%%DATADIR%%/body/tux/hornunderright.png
%%DATADIR%%/body/tux/noze.png
%%DATADIR%%/body/tux/pupil.png
%%DATADIR%%/body/tux/sick_head.png
%%DATADIR%%/body/tux/tail.png
%%DATADIR%%/body/wilber/arm1left.png
%%DATADIR%%/body/wilber/arm1right.png
%%DATADIR%%/body/wilber/arm2left.png
%%DATADIR%%/body/wilber/arm2right.png
%%DATADIR%%/body/wilber/arm3left.png
%%DATADIR%%/body/wilber/arm3right.png
%%DATADIR%%/body/wilber/back.png
%%DATADIR%%/body/wilber/black_arm1left.png
%%DATADIR%%/body/wilber/black_arm1right.png
%%DATADIR%%/body/wilber/black_arm2left.png
%%DATADIR%%/body/wilber/black_arm2right.png
%%DATADIR%%/body/wilber/black_arm3left.png
%%DATADIR%%/body/wilber/black_arm3right.png
%%DATADIR%%/body/wilber/black_back.png
%%DATADIR%%/body/wilber/black_body.png
%%DATADIR%%/body/wilber/black_eyelid.png
%%DATADIR%%/body/wilber/black_eyes.png
%%DATADIR%%/body/wilber/black_footleft.png
%%DATADIR%%/body/wilber/black_footright.png
%%DATADIR%%/body/wilber/black_hat.png
%%DATADIR%%/body/wilber/black_head.png
%%DATADIR%%/body/wilber/black_hornoverleft.png
%%DATADIR%%/body/wilber/black_hornoverright.png
%%DATADIR%%/body/wilber/black_hornunderleft.png
%%DATADIR%%/body/wilber/black_hornunderright.png
%%DATADIR%%/body/wilber/black_noze.png
%%DATADIR%%/body/wilber/black_pupil.png
%%DATADIR%%/body/wilber/black_tail.png
%%DATADIR%%/body/wilber/body.png
%%DATADIR%%/body/wilber/config.xml
%%DATADIR%%/body/wilber/dead.png
%%DATADIR%%/body/wilber/eyelid.png
%%DATADIR%%/body/wilber/eyes.png
%%DATADIR%%/body/wilber/footleft.png
%%DATADIR%%/body/wilber/footright.png
%%DATADIR%%/body/wilber/hat.png
%%DATADIR%%/body/wilber/head.png
%%DATADIR%%/body/wilber/hornoverleft.png
%%DATADIR%%/body/wilber/hornoverright.png
%%DATADIR%%/body/wilber/hornunderleft.png
%%DATADIR%%/body/wilber/hornunderright.png
%%DATADIR%%/body/wilber/noze.png
%%DATADIR%%/body/wilber/pupil.png
%%DATADIR%%/body/wilber/sick_head.png
%%DATADIR%%/body/wilber/tail.png
%%DATADIR%%/body/workrave/arm1left.png
%%DATADIR%%/body/workrave/arm1right.png
%%DATADIR%%/body/workrave/arm2left.png
%%DATADIR%%/body/workrave/arm2right.png
%%DATADIR%%/body/workrave/arm3left.png
%%DATADIR%%/body/workrave/arm3right.png
%%DATADIR%%/body/workrave/back.png
%%DATADIR%%/body/workrave/black_arm1left.png
%%DATADIR%%/body/workrave/black_arm1right.png
%%DATADIR%%/body/workrave/black_arm2left.png
%%DATADIR%%/body/workrave/black_arm2right.png
%%DATADIR%%/body/workrave/black_arm3left.png
%%DATADIR%%/body/workrave/black_arm3right.png
%%DATADIR%%/body/workrave/black_back.png
%%DATADIR%%/body/workrave/black_body.png
%%DATADIR%%/body/workrave/black_eyelid.png
%%DATADIR%%/body/workrave/black_eyes.png
%%DATADIR%%/body/workrave/black_footleft.png
%%DATADIR%%/body/workrave/black_footright.png
%%DATADIR%%/body/workrave/black_hat.png
%%DATADIR%%/body/workrave/black_head.png
%%DATADIR%%/body/workrave/black_hornleft.png
%%DATADIR%%/body/workrave/black_hornoverleft.png
%%DATADIR%%/body/workrave/black_hornoverright.png
%%DATADIR%%/body/workrave/black_hornright.png
%%DATADIR%%/body/workrave/black_hornunderleft.png
%%DATADIR%%/body/workrave/black_hornunderright.png
%%DATADIR%%/body/workrave/black_noze.png
%%DATADIR%%/body/workrave/black_pupil.png
%%DATADIR%%/body/workrave/black_tail.png
%%DATADIR%%/body/workrave/body.png
%%DATADIR%%/body/workrave/config.xml
%%DATADIR%%/body/workrave/dead.png
%%DATADIR%%/body/workrave/eyelid.png
%%DATADIR%%/body/workrave/eyes.png
%%DATADIR%%/body/workrave/footleft.png
%%DATADIR%%/body/workrave/footright.png
%%DATADIR%%/body/workrave/hat.png
%%DATADIR%%/body/workrave/head.png
%%DATADIR%%/body/workrave/hornleft.png
%%DATADIR%%/body/workrave/hornoverleft.png
%%DATADIR%%/body/workrave/hornoverright.png
%%DATADIR%%/body/workrave/hornright.png
%%DATADIR%%/body/workrave/hornunderleft.png
%%DATADIR%%/body/workrave/hornunderright.png
%%DATADIR%%/body/workrave/noze.png
%%DATADIR%%/body/workrave/pupil.png
%%DATADIR%%/body/workrave/sick_head.png
%%DATADIR%%/body/workrave/tail.png
%%DATADIR%%/cursors.dtd
%%DATADIR%%/cursors.xml
%%DATADIR%%/font/Ubuntu-R.ttf
%%DATADIR%%/font/VL-Gothic-Regular.ttf
%%DATADIR%%/font/wqy-microhei-lite.ttc
%%DATADIR%%/game_mode/benchmark.xml
%%DATADIR%%/game_mode/blitz.xml
%%DATADIR%%/game_mode/classic.xml
%%DATADIR%%/game_mode/default_objects.xml
%%DATADIR%%/game_mode/game_mode.dtd
%%DATADIR%%/game_mode/objects.dtd
%%DATADIR%%/game_mode/skin_viewer.xml
%%DATADIR%%/game_mode/unlimited.xml
%%DATADIR%%/graphism.dtd
%%DATADIR%%/graphism.xml
%%DATADIR%%/icon/install.ico
%%DATADIR%%/icon/install.svg
%%DATADIR%%/icon/install.xpm
%%DATADIR%%/icon/install_128x128.png
%%DATADIR%%/icon/install_32x32.png
%%DATADIR%%/icon/install_64x64.png
%%DATADIR%%/icon/uninstall.ico
%%DATADIR%%/icon/uninstall.svg
%%DATADIR%%/icon/uninstall.xpm
%%DATADIR%%/icon/uninstall_128x128.png
%%DATADIR%%/icon/uninstall_32x32.png
%%DATADIR%%/icon/uninstall_64x64.png
%%DATADIR%%/icon/warmux.icns
%%DATADIR%%/icon/warmux.ico
%%DATADIR%%/icon/warmux.mbm
%%DATADIR%%/icon/warmux.mif
%%DATADIR%%/icon/warmux.svg
%%DATADIR%%/icon/warmux.xpm
%%DATADIR%%/icon/warmux_128x128.png
%%DATADIR%%/icon/warmux_128x128.xpm
%%DATADIR%%/icon/warmux_256x256.png
%%DATADIR%%/icon/warmux_32x32.png
%%DATADIR%%/icon/warmux_512x512.png
%%DATADIR%%/icon/warmux_64x64.png
%%DATADIR%%/interface/not_skin/background_control_interface.png
%%DATADIR%%/interface/not_skin/background_help.png
%%DATADIR%%/interface/not_skin/background_interface.png
%%DATADIR%%/interface/not_skin/background_replay.png
%%DATADIR%%/interface/not_skin/readme.txt
%%DATADIR%%/interface/not_skin/small_background_interface.png
%%DATADIR%%/interface/whitetheme/arrow_jump.png
%%DATADIR%%/interface/whitetheme/arrow_turn.png
%%DATADIR%%/interface/whitetheme/box_big.png
%%DATADIR%%/interface/whitetheme/box_big_hide.png
%%DATADIR%%/interface/whitetheme/box_little.png
%%DATADIR%%/interface/whitetheme/box_little_hide.png
%%DATADIR%%/interface/whitetheme/clock.png
%%DATADIR%%/interface/whitetheme/clock_emergency.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-down.left.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-down.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-down.right.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-left.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-right.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-top.left.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-top.png
%%DATADIR%%/interface/whitetheme/cursors/arrow-top.right.png
%%DATADIR%%/interface/whitetheme/cursors/hand-cursor.png
%%DATADIR%%/interface/whitetheme/cursors/hand-fire.png
%%DATADIR%%/interface/whitetheme/cursors/hand-move.png
%%DATADIR%%/interface/whitetheme/cursors/here-from-left.png
%%DATADIR%%/interface/whitetheme/cursors/here-from-right.png
%%DATADIR%%/interface/whitetheme/hourglass.png
%%DATADIR%%/interface/whitetheme/lastfire.png
%%DATADIR%%/interface/whitetheme/pointer.png
%%DATADIR%%/interface/whitetheme/wind.png
%%DATADIR%%/interface/whitetheme/wind_indicator.png
%%DATADIR%%/map/abyss/background.jpg
%%DATADIR%%/map/abyss/bubble.png
%%DATADIR%%/map/abyss/config.xml
%%DATADIR%%/map/abyss/foreground.png
%%DATADIR%%/map/abyss/preview.jpg
%%DATADIR%%/map/apocalypse/apocalypse.jpg
%%DATADIR%%/map/apocalypse/apocalypse.png
%%DATADIR%%/map/apocalypse/config.xml
%%DATADIR%%/map/apocalypse/mini.jpg
%%DATADIR%%/map/apocalypse/vent.png
%%DATADIR%%/map/aquarium/background.png
%%DATADIR%%/map/aquarium/config.xml
%%DATADIR%%/map/aquarium/preview.jpg
%%DATADIR%%/map/aquarium/sky.jpg
%%DATADIR%%/map/arbre/arbre.png
%%DATADIR%%/map/arbre/config.xml
%%DATADIR%%/map/arbre/fond.jpg
%%DATADIR%%/map/arbre/gland-anim.png
%%DATADIR%%/map/arbre/preview.jpg
%%DATADIR%%/map/arcaderoom/background.jpg
%%DATADIR%%/map/arcaderoom/config.xml
%%DATADIR%%/map/arcaderoom/map.png
%%DATADIR%%/map/arcaderoom/preview.jpg
%%DATADIR%%/map/arcaderoom/wind_particle.png
%%DATADIR%%/map/bankiz/bankiz.png
%%DATADIR%%/map/bankiz/config.xml
%%DATADIR%%/map/bankiz/flocon.png
%%DATADIR%%/map/bankiz/preview.jpg
%%DATADIR%%/map/bankiz/sky.jpg
%%DATADIR%%/map/banquise/background.jpg
%%DATADIR%%/map/banquise/banquise.png
%%DATADIR%%/map/banquise/config.xml
%%DATADIR%%/map/banquise/flocon.png
%%DATADIR%%/map/banquise/preview.jpg
%%DATADIR%%/map/battlenight/battlenight-all.jpg
%%DATADIR%%/map/battlenight/battlenight-bg.jpg
%%DATADIR%%/map/battlenight/battlenight-fg.png
%%DATADIR%%/map/battlenight/config.xml
%%DATADIR%%/map/birds/config.xml
%%DATADIR%%/map/birds/map.png
%%DATADIR%%/map/birds/one_layer_sky.jpg
%%DATADIR%%/map/birds/particule.png
%%DATADIR%%/map/birds/preview.jpg
%%DATADIR%%/map/birds/sky_layer-0.jpg
%%DATADIR%%/map/birds/sky_layer-1.png
%%DATADIR%%/map/birds/sky_layer-2.png
%%DATADIR%%/map/catacombes/background1.png
%%DATADIR%%/map/catacombes/config.xml
%%DATADIR%%/map/catacombes/preview.jpg
%%DATADIR%%/map/catacombes/sky1.jpg
%%DATADIR%%/map/champignon/background.png
%%DATADIR%%/map/champignon/config.xml
%%DATADIR%%/map/champignon/preview.jpg
%%DATADIR%%/map/champignon/sky.jpg
%%DATADIR%%/map/cheese/config.xml
%%DATADIR%%/map/cheese/emmental.png
%%DATADIR%%/map/cheese/minicheese.png
%%DATADIR%%/map/cheese/preview.jpg
%%DATADIR%%/map/cheese/sky.jpg
%%DATADIR%%/map/chess/config.xml
%%DATADIR%%/map/chess/map.png
%%DATADIR%%/map/chess/preview.jpg
%%DATADIR%%/map/chess/sky.jpg
%%DATADIR%%/map/chess/sky0.png
%%DATADIR%%/map/chess/sky1.png
%%DATADIR%%/map/construction/config.xml
%%DATADIR%%/map/construction/map.png
%%DATADIR%%/map/construction/preview.jpg
%%DATADIR%%/map/construction/raindrop.png
%%DATADIR%%/map/construction/sky.jpg
%%DATADIR%%/map/construction/sky0.png
%%DATADIR%%/map/construction/sky1.png
%%DATADIR%%/map/construction/sky2.png
%%DATADIR%%/map/country/config.xml
%%DATADIR%%/map/country/map.png
%%DATADIR%%/map/country/preview.jpg
%%DATADIR%%/map/country/sky.jpg
%%DATADIR%%/map/crystal/config.xml
%%DATADIR%%/map/crystal/crystal.png
%%DATADIR%%/map/crystal/preview.jpg
%%DATADIR%%/map/crystal/sky.jpg
%%DATADIR%%/map/desert/config.xml
%%DATADIR%%/map/desert/desert.png
%%DATADIR%%/map/desert/desert_bg.jpg
%%DATADIR%%/map/desert/desert_preview.jpg
%%DATADIR%%/map/easterisland/config.xml
%%DATADIR%%/map/easterisland/map.png
%%DATADIR%%/map/easterisland/preview.jpg
%%DATADIR%%/map/easterisland/sky.jpg
%%DATADIR%%/map/easterisland/wp.png
%%DATADIR%%/map/electronik/background.png
%%DATADIR%%/map/electronik/config.xml
%%DATADIR%%/map/electronik/preview.jpg
%%DATADIR%%/map/electronik/sky.jpg
%%DATADIR%%/map/farm/config.xml
%%DATADIR%%/map/farm/map.png
%%DATADIR%%/map/farm/one_layer_sky.jpg
%%DATADIR%%/map/farm/particule.png
%%DATADIR%%/map/farm/preview.jpg
%%DATADIR%%/map/farm/sky_layer-0.jpg
%%DATADIR%%/map/farm/sky_layer-1.png
%%DATADIR%%/map/farm/sky_layer-2.png
%%DATADIR%%/map/farm/sky_layer-3.png
%%DATADIR%%/map/frog/config.xml
%%DATADIR%%/map/frog/map.png
%%DATADIR%%/map/frog/preview.jpg
%%DATADIR%%/map/frog/sky.jpg
%%DATADIR%%/map/funky_island/clouds.png
%%DATADIR%%/map/funky_island/config.xml
%%DATADIR%%/map/funky_island/island.png
%%DATADIR%%/map/funky_island/island_bg.jpg
%%DATADIR%%/map/funky_island/preview.jpg
%%DATADIR%%/map/goodandevil/config.xml
%%DATADIR%%/map/goodandevil/goodandevil.png
%%DATADIR%%/map/goodandevil/preview.jpg
%%DATADIR%%/map/goodandevil/sky.jpg
%%DATADIR%%/map/greehills/config.xml
%%DATADIR%%/map/greehills/greenhills.png
%%DATADIR%%/map/greehills/greenhills_sky.jpg
%%DATADIR%%/map/greehills/preview.jpg
%%DATADIR%%/map/greehills/star.png
%%DATADIR%%/map/halloween/config.xml
%%DATADIR%%/map/halloween/map.png
%%DATADIR%%/map/halloween/preview.jpg
%%DATADIR%%/map/halloween/sky.jpg
%%DATADIR%%/map/halloween/wp.png
%%DATADIR%%/map/hell/bones.png
%%DATADIR%%/map/hell/config.xml
%%DATADIR%%/map/hell/hell.png
%%DATADIR%%/map/hell/hellsky.jpg
%%DATADIR%%/map/hell/preview.jpg
%%DATADIR%%/map/hive/bg.jpg
%%DATADIR%%/map/hive/config.xml
%%DATADIR%%/map/hive/fg.png
%%DATADIR%%/map/hive/part_effect_strip.png
%%DATADIR%%/map/hive/preview.jpg
%%DATADIR%%/map/icebergs/config.xml
%%DATADIR%%/map/icebergs/map.png
%%DATADIR%%/map/icebergs/preview.jpg
%%DATADIR%%/map/icebergs/sky.jpg
%%DATADIR%%/map/icebergs/wp.png
%%DATADIR%%/map/island/config.xml
%%DATADIR%%/map/island/island.png
%%DATADIR%%/map/island/preview.jpg
%%DATADIR%%/map/island/sky.jpg
%%DATADIR%%/map/junglemountain/config.xml
%%DATADIR%%/map/junglemountain/drseuss.jpg
%%DATADIR%%/map/junglemountain/dseuss_fg.png
%%DATADIR%%/map/junglemountain/goo_drop.png
%%DATADIR%%/map/junglemountain/preview.jpg
%%DATADIR%%/map/leafs/back.jpg
%%DATADIR%%/map/leafs/birds.png
%%DATADIR%%/map/leafs/config.xml
%%DATADIR%%/map/leafs/front.png
%%DATADIR%%/map/leafs/preview.jpg
%%DATADIR%%/map/lonely_island/config.xml
%%DATADIR%%/map/lonely_island/map.png
%%DATADIR%%/map/lonely_island/preview.jpg
%%DATADIR%%/map/lonely_island/sky.jpg
%%DATADIR%%/map/lonely_island/wind_particules.png
%%DATADIR%%/map/map.dtd
%%DATADIR%%/map/monkeybubble/config.xml
%%DATADIR%%/map/monkeybubble/feuille.png
%%DATADIR%%/map/monkeybubble/map.png
%%DATADIR%%/map/monkeybubble/one_layer_sky.jpg
%%DATADIR%%/map/monkeybubble/preview.jpg
%%DATADIR%%/map/monkeybubble/sky_layer-0.jpg
%%DATADIR%%/map/monkeybubble/sky_layer-1.png
%%DATADIR%%/map/monkeybubble/sky_layer-2.png
%%DATADIR%%/map/monkeybubble/sky_layer-3.png
%%DATADIR%%/map/montagnes/config.xml
%%DATADIR%%/map/montagnes/flocon.png
%%DATADIR%%/map/montagnes/map.png
%%DATADIR%%/map/montagnes/preview.jpg
%%DATADIR%%/map/montagnes/sky.jpg
%%DATADIR%%/map/moon-4m/config.xml
%%DATADIR%%/map/moon-4m/map.png
%%DATADIR%%/map/moon-4m/preview.jpg
%%DATADIR%%/map/moon-4m/sky.jpg
%%DATADIR%%/map/ninja/config.xml
%%DATADIR%%/map/ninja/map.png
%%DATADIR%%/map/ninja/one_layer_sky.jpg
%%DATADIR%%/map/ninja/particule.png
%%DATADIR%%/map/ninja/preview.jpg
%%DATADIR%%/map/ninja/sky_layer-0.jpg
%%DATADIR%%/map/ninja/sky_layer-1.png
%%DATADIR%%/map/ninja/sky_layer-2.png
%%DATADIR%%/map/ninja/sky_layer-3.png
%%DATADIR%%/map/ninja/sky_layer-4.png
%%DATADIR%%/map/ninja/sky_layer-5.png
%%DATADIR%%/map/oktopus/bulle.png
%%DATADIR%%/map/oktopus/config.xml
%%DATADIR%%/map/oktopus/map.png
%%DATADIR%%/map/oktopus/preview.jpg
%%DATADIR%%/map/oktopus/sky.jpg
%%DATADIR%%/map/paint/config.xml
%%DATADIR%%/map/paint/map.png
%%DATADIR%%/map/paint/preview.jpg
%%DATADIR%%/map/paint/sky.png
%%DATADIR%%/map/paradis/config.xml
%%DATADIR%%/map/paradis/decor_paradis.png
%%DATADIR%%/map/paradis/decor_paradis_bg.jpg
%%DATADIR%%/map/paradis/paradis_preview.jpg
%%DATADIR%%/map/pillars/bg.jpg
%%DATADIR%%/map/pillars/config.xml
%%DATADIR%%/map/pillars/fg.png
%%DATADIR%%/map/pillars/preview.jpg
%%DATADIR%%/map/pirates/config.xml
%%DATADIR%%/map/pirates/islands.jpg
%%DATADIR%%/map/pirates/pirates.png
%%DATADIR%%/map/pirates/preview.jpg
%%DATADIR%%/map/prehistorik/config.xml
%%DATADIR%%/map/prehistorik/fond.jpg
%%DATADIR%%/map/prehistorik/prehistorik.png
%%DATADIR%%/map/prehistorik/preview.jpg
%%DATADIR%%/map/pumpkins/config.xml
%%DATADIR%%/map/pumpkins/feuille.png
%%DATADIR%%/map/pumpkins/map.png
%%DATADIR%%/map/pumpkins/preview.jpg
%%DATADIR%%/map/pumpkins/sky.jpg
%%DATADIR%%/map/qingqong/config.xml
%%DATADIR%%/map/qingqong/preview.jpg
%%DATADIR%%/map/qingqong/qingqong.png
%%DATADIR%%/map/qingqong/sky.jpg
%%DATADIR%%/map/random_map.jpg
%%DATADIR%%/map/randomamoebas/config.xml
%%DATADIR%%/map/randomamoebas/preview.jpg
%%DATADIR%%/map/randomamoebas/sky.jpg
%%DATADIR%%/map/randomamoebas/texture.png
%%DATADIR%%/map/randomisland/config.xml
%%DATADIR%%/map/randomisland/palm-tree.png
%%DATADIR%%/map/randomisland/preview.jpg
%%DATADIR%%/map/randomisland/sky.jpg
%%DATADIR%%/map/randomisland/texture.png
%%DATADIR%%/map/randomisland/tresor1.png
%%DATADIR%%/map/randomisland/tresor2.png
%%DATADIR%%/map/snow/config.xml
%%DATADIR%%/map/snow/map.png
%%DATADIR%%/map/snow/one_layer_sky.jpg
%%DATADIR%%/map/snow/particule.png
%%DATADIR%%/map/snow/preview.jpg
%%DATADIR%%/map/space2/config.xml
%%DATADIR%%/map/space2/map.png
%%DATADIR%%/map/space2/preview.jpg
%%DATADIR%%/map/space2/sky.jpg
%%DATADIR%%/map/tic-tac-toe/bg.jpg
%%DATADIR%%/map/tic-tac-toe/config.xml
%%DATADIR%%/map/tic-tac-toe/fg.png
%%DATADIR%%/map/tic-tac-toe/part_effect_strip.png
%%DATADIR%%/map/tic-tac-toe/preview.jpg
%%DATADIR%%/map/towers/config.xml
%%DATADIR%%/map/towers/map.png
%%DATADIR%%/map/towers/preview.jpg
%%DATADIR%%/map/towers/sky.jpg
%%DATADIR%%/map/urbanheights/config.xml
%%DATADIR%%/map/urbanheights/earthstrip.png
%%DATADIR%%/map/urbanheights/radar_bg.jpg
%%DATADIR%%/map/urbanheights/radar_fg.png
%%DATADIR%%/map/urbanheights/radar_pr.jpg
%%DATADIR%%/map/vulcano/background.png
%%DATADIR%%/map/vulcano/config.xml
%%DATADIR%%/map/vulcano/preview.jpg
%%DATADIR%%/map/vulcano/sky2.jpg
%%DATADIR%%/map/wildwestdv/config.xml
%%DATADIR%%/map/wildwestdv/map.png
%%DATADIR%%/map/wildwestdv/preview.jpg
%%DATADIR%%/map/wildwestdv/sky.jpg
%%DATADIR%%/menu.xml
%%DATADIR%%/menu/add_custom_team.png
%%DATADIR%%/menu/annulus_background.png
%%DATADIR%%/menu/annulus_foreground.png
%%DATADIR%%/menu/background.jpg
%%DATADIR%%/menu/background_loading.jpg
%%DATADIR%%/menu/background_main.jpg
%%DATADIR%%/menu/background_network.jpg
%%DATADIR%%/menu/big_left.png
%%DATADIR%%/menu/big_right.png
%%DATADIR%%/menu/bip.png
%%DATADIR%%/menu/button.png
%%DATADIR%%/menu/cancel.png
%%DATADIR%%/menu/check.png
%%DATADIR%%/menu/death_energy.png
%%DATADIR%%/menu/del_custom_team.png
%%DATADIR%%/menu/disabled_back.png
%%DATADIR%%/menu/disabled_front.png
%%DATADIR%%/menu/display_energy.png
%%DATADIR%%/menu/display_name.png
%%DATADIR%%/menu/display_wind_particles.png
%%DATADIR%%/menu/down.png
%%DATADIR%%/menu/enabled.png
%%DATADIR%%/menu/fps.png
%%DATADIR%%/menu/fullscreen.png
%%DATADIR%%/menu/game_mode.png
%%DATADIR%%/menu/gravity.png
%%DATADIR%%/menu/help_game_mode.jpg
%%DATADIR%%/menu/help_ingame.jpg
%%DATADIR%%/menu/help_interface.png
%%DATADIR%%/menu/help_minimap.png
%%DATADIR%%/menu/help_replay.png
%%DATADIR%%/menu/help_shortkeys.png
%%DATADIR%%/menu/help_team_selection.jpg
%%DATADIR%%/menu/help_touch_interface.png
%%DATADIR%%/menu/i_backtobattle.png
%%DATADIR%%/menu/i_benchmark.png
%%DATADIR%%/menu/i_credits.png
%%DATADIR%%/menu/i_help.png
%%DATADIR%%/menu/i_network.png
%%DATADIR%%/menu/i_options.png
%%DATADIR%%/menu/i_play.png
%%DATADIR%%/menu/i_quit.png
%%DATADIR%%/menu/i_replay.png
%%DATADIR%%/menu/i_update.png
%%DATADIR%%/menu/ico_maps.png
%%DATADIR%%/menu/ico_network.png
%%DATADIR%%/menu/ico_skins.png
%%DATADIR%%/menu/ico_sounds.png
%%DATADIR%%/menu/ico_weapons.png
%%DATADIR%%/menu/init_energy.png
%%DATADIR%%/menu/key_alt.png
%%DATADIR%%/menu/key_ctrl.png
%%DATADIR%%/menu/key_shift.png
%%DATADIR%%/menu/left-right_mouse.png
%%DATADIR%%/menu/left.png
%%DATADIR%%/menu/max_energy.png
%%DATADIR%%/menu/minus.png
%%DATADIR%%/menu/multisky.png
%%DATADIR%%/menu/music_enable.png
%%DATADIR%%/menu/padlock.png
%%DATADIR%%/menu/player_local_ai.png
%%DATADIR%%/menu/player_local_human.png
%%DATADIR%%/menu/player_remote_ai.png
%%DATADIR%%/menu/player_remote_human.png
%%DATADIR%%/menu/plus.png
%%DATADIR%%/menu/podium.png
%%DATADIR%%/menu/quit.png
%%DATADIR%%/menu/refresh.png
%%DATADIR%%/menu/resolution.png
%%DATADIR%%/menu/right.png
%%DATADIR%%/menu/save.png
%%DATADIR%%/menu/scroll_on_border.png
%%DATADIR%%/menu/send_txt.png
%%DATADIR%%/menu/sound_effects_enable.png
%%DATADIR%%/menu/sound_frequency.png
%%DATADIR%%/menu/team_number.png
%%DATADIR%%/menu/timing_death.png
%%DATADIR%%/menu/timing_end_turn.png
%%DATADIR%%/menu/timing_switch.png
%%DATADIR%%/menu/timing_turn.png
%%DATADIR%%/menu/up.png
%%DATADIR%%/menu/validate.png
%%DATADIR%%/menu/warning.png
%%DATADIR%%/music/ingame/Mike_Errecart.-.Monkey-bubble.ogg
%%DATADIR%%/music/ingame/Olivier_Militon.-.Apnee.ogg
%%DATADIR%%/music/ingame/Olivier_Militon.-.Apnee2.ogg
%%DATADIR%%/music/ingame/Olivier_Militon.-.Etrange_epouvantable.ogg
%%DATADIR%%/music/ingame/Olivier_Militon.-.Like_a_rock.ogg
%%DATADIR%%/music/ingame/Olivier_Militon.-.Vers_solitaire.ogg
%%DATADIR%%/music/ingame/Olivier_Militon.-.Vogue_a_lame.ogg
%%DATADIR%%/music/ingame/circux.m3u
%%DATADIR%%/music/ingame/circux.ogg
%%DATADIR%%/music/ingame/construction.m3u
%%DATADIR%%/music/ingame/construction.ogg
%%DATADIR%%/music/ingame/diabolicux.m3u
%%DATADIR%%/music/ingame/diabolicux.ogg
%%DATADIR%%/music/ingame/exoticux.m3u
%%DATADIR%%/music/ingame/exoticux.ogg
%%DATADIR%%/music/ingame/fear.m3u
%%DATADIR%%/music/ingame/funfair.m3u
%%DATADIR%%/music/ingame/ingame.m3u
%%DATADIR%%/music/ingame/monkey.m3u
%%DATADIR%%/music/ingame/sea.m3u
%%DATADIR%%/music/ingame/woodlux.m3u
%%DATADIR%%/music/ingame/woodlux.ogg
%%DATADIR%%/music/menu/Divertissement_pour_flute.ogg
%%DATADIR%%/music/menu/menu.m3u
%%DATADIR%%/music/profile.xml
%%DATADIR%%/object/barrel.png
%%DATADIR%%/object/blue_star.png
%%DATADIR%%/object/bonus_box.png
%%DATADIR%%/object/dark_smoke.png
%%DATADIR%%/object/fire.png
%%DATADIR%%/object/ill_bubble.png
%%DATADIR%%/object/kaboom.png
%%DATADIR%%/object/kaboomk.png
%%DATADIR%%/object/medkit.png
%%DATADIR%%/object/pink_star.png
%%DATADIR%%/object/smoke.png
%%DATADIR%%/object/smoke2.png
%%DATADIR%%/object/smoke3.png
%%DATADIR%%/object/smokea.png
%%DATADIR%%/object/star.png
%%DATADIR%%/object/yellow_star.png
%%DATADIR%%/sound/default/misc/box_falling.ogg
%%DATADIR%%/sound/default/misc/box_hitting_ground.ogg
%%DATADIR%%/sound/default/misc/box_picking_up.ogg
%%DATADIR%%/sound/default/misc/cancel.ogg
%%DATADIR%%/sound/default/misc/change_weapon.ogg
%%DATADIR%%/sound/default/misc/character_change.ogg
%%DATADIR%%/sound/default/misc/clic.ogg
%%DATADIR%%/sound/default/misc/countdown-endturn.ogg
%%DATADIR%%/sound/default/misc/end_turn.ogg
%%DATADIR%%/sound/default/misc/error.ogg
%%DATADIR%%/sound/default/misc/frog_music.ogg
%%DATADIR%%/sound/default/misc/newcomer.ogg
%%DATADIR%%/sound/default/misc/ok.ogg
%%DATADIR%%/sound/default/misc/sherif.ogg
%%DATADIR%%/sound/default/misc/sink.ogg
%%DATADIR%%/sound/default/misc/skip_turn.ogg
%%DATADIR%%/sound/default/misc/start_turn.ogg
%%DATADIR%%/sound/default/misc/step.ogg
%%DATADIR%%/sound/default/misc/victory.ogg
%%DATADIR%%/sound/default/misc/weapon_hide.ogg
%%DATADIR%%/sound/default/misc/weapon_show.ogg
%%DATADIR%%/sound/default/profile.xml
%%DATADIR%%/sound/default/voices/backjump.ogg
%%DATADIR%%/sound/default/voices/death1.ogg
%%DATADIR%%/sound/default/voices/death2.ogg
%%DATADIR%%/sound/default/voices/death3.ogg
%%DATADIR%%/sound/default/voices/death4.ogg
%%DATADIR%%/sound/default/voices/death5.ogg
%%DATADIR%%/sound/default/voices/fire1.ogg
%%DATADIR%%/sound/default/voices/fire2.ogg
%%DATADIR%%/sound/default/voices/fire3.ogg
%%DATADIR%%/sound/default/voices/fire4.ogg
%%DATADIR%%/sound/default/voices/fire5.ogg
%%DATADIR%%/sound/default/voices/fire6.ogg
%%DATADIR%%/sound/default/voices/friendly_fire1.ogg
%%DATADIR%%/sound/default/voices/friendly_fire2.ogg
%%DATADIR%%/sound/default/voices/friendly_fire3.ogg
%%DATADIR%%/sound/default/voices/happy1.ogg
%%DATADIR%%/sound/default/voices/injured_high1.ogg
%%DATADIR%%/sound/default/voices/injured_high2.ogg
%%DATADIR%%/sound/default/voices/injured_high3.ogg
%%DATADIR%%/sound/default/voices/injured_high4.ogg
%%DATADIR%%/sound/default/voices/injured_high5.ogg
%%DATADIR%%/sound/default/voices/injured_light1.ogg
%%DATADIR%%/sound/default/voices/injured_light2.ogg
%%DATADIR%%/sound/default/voices/injured_light3.ogg
%%DATADIR%%/sound/default/voices/injured_light4.ogg
%%DATADIR%%/sound/default/voices/injured_light5.ogg
%%DATADIR%%/sound/default/voices/injured_medium1.ogg
%%DATADIR%%/sound/default/voices/injured_medium2.ogg
%%DATADIR%%/sound/default/voices/injured_medium3.ogg
%%DATADIR%%/sound/default/voices/injured_medium4.ogg
%%DATADIR%%/sound/default/voices/injured_medium5.ogg
%%DATADIR%%/sound/default/voices/jump.ogg
%%DATADIR%%/sound/default/voices/out.ogg
%%DATADIR%%/sound/default/voices/suicide.ogg
%%DATADIR%%/sound/default/voices/superjump.ogg
%%DATADIR%%/sound/default/voices/theme1.ogg
%%DATADIR%%/sound/default/voices/theme2.ogg
%%DATADIR%%/sound/default/voices/theme3.ogg
%%DATADIR%%/sound/default/voices/theme4.ogg
%%DATADIR%%/sound/default/voices/theme5.ogg
%%DATADIR%%/sound/default/voices/theme6.ogg
%%DATADIR%%/sound/default/voices/theme7.ogg
%%DATADIR%%/sound/default/voices/theme8.ogg
%%DATADIR%%/sound/default/voices/theme9.ogg
%%DATADIR%%/sound/default/weapons/aircraft_bomb_falling.ogg
%%DATADIR%%/sound/default/weapons/aircraft_flying.ogg
%%DATADIR%%/sound/default/weapons/airhammer_selected.ogg
%%DATADIR%%/sound/default/weapons/airhammer_used.ogg
%%DATADIR%%/sound/default/weapons/anvil_collision.ogg
%%DATADIR%%/sound/default/weapons/anvil_fall.ogg
%%DATADIR%%/sound/default/weapons/auto_rocket_flying.ogg
%%DATADIR%%/sound/default/weapons/baseball.ogg
%%DATADIR%%/sound/default/weapons/blowtorch.ogg
%%DATADIR%%/sound/default/weapons/cluzooka_hit.ogg
%%DATADIR%%/sound/default/weapons/cluzooka_shot.ogg
%%DATADIR%%/sound/default/weapons/construct.ogg
%%DATADIR%%/sound/default/weapons/disco_grenade_music.ogg
%%DATADIR%%/sound/default/weapons/dynamite_exp.ogg
%%DATADIR%%/sound/default/weapons/dynamite_fuze.ogg
%%DATADIR%%/sound/default/weapons/embers1.ogg
%%DATADIR%%/sound/default/weapons/embers2.ogg
%%DATADIR%%/sound/default/weapons/embers3.ogg
%%DATADIR%%/sound/default/weapons/explosion1.ogg
%%DATADIR%%/sound/default/weapons/explosion2.ogg
%%DATADIR%%/sound/default/weapons/explosion3.ogg
%%DATADIR%%/sound/default/weapons/explosion4.ogg
%%DATADIR%%/sound/default/weapons/explosion5.ogg
%%DATADIR%%/sound/default/weapons/explosion6.ogg
%%DATADIR%%/sound/default/weapons/explosion7.ogg
%%DATADIR%%/sound/default/weapons/explosion8.ogg
%%DATADIR%%/sound/default/weapons/explosion9.ogg
%%DATADIR%%/sound/default/weapons/flame.ogg
%%DATADIR%%/sound/default/weapons/footbomb_bounce.ogg
%%DATADIR%%/sound/default/weapons/gnu_bounce.ogg
%%DATADIR%%/sound/default/weapons/grapple_attaching.ogg
%%DATADIR%%/sound/default/weapons/grapple_cable.ogg
%%DATADIR%%/sound/default/weapons/grapple_detaching.ogg
%%DATADIR%%/sound/default/weapons/grenade_bounce.ogg
%%DATADIR%%/sound/default/weapons/gun.ogg
%%DATADIR%%/sound/default/weapons/homerun.ogg
%%DATADIR%%/sound/default/weapons/jetpack.ogg
%%DATADIR%%/sound/default/weapons/load.ogg
%%DATADIR%%/sound/default/weapons/lowgravity.ogg
%%DATADIR%%/sound/default/weapons/m16.ogg
%%DATADIR%%/sound/default/weapons/m16_cartridge.ogg
%%DATADIR%%/sound/default/weapons/mine_beep.ogg
%%DATADIR%%/sound/default/weapons/polecat.ogg
%%DATADIR%%/sound/default/weapons/ricoche1.ogg
%%DATADIR%%/sound/default/weapons/ricoche2.ogg
%%DATADIR%%/sound/default/weapons/ricoche3.ogg
%%DATADIR%%/sound/default/weapons/riot_bomb_exp.ogg
%%DATADIR%%/sound/default/weapons/riot_flying.ogg
%%DATADIR%%/sound/default/weapons/rocket_flying.ogg
%%DATADIR%%/sound/default/weapons/shotgun.ogg
%%DATADIR%%/sound/default/weapons/slap.ogg
%%DATADIR%%/sound/default/weapons/suicide.ogg
%%DATADIR%%/sound/default/weapons/supertux_flying.ogg
%%DATADIR%%/sound/default/weapons/supertux_swimming.ogg
%%DATADIR%%/sound/default/weapons/syringe.ogg
%%DATADIR%%/sound/default/weapons/teleport_land.ogg
%%DATADIR%%/sound/default/weapons/teleport_start.ogg
%%DATADIR%%/sound/profile.dtd
%%DATADIR%%/team/beastie/dead.png
%%DATADIR%%/team/beastie/flag.png
%%DATADIR%%/team/beastie/flag64.png
%%DATADIR%%/team/beastie/team.xml
%%DATADIR%%/team/bugzilla/dead.png
%%DATADIR%%/team/bugzilla/flag.png
%%DATADIR%%/team/bugzilla/flag64.png
%%DATADIR%%/team/bugzilla/team.xml
%%DATADIR%%/team/firefox/dead.png
%%DATADIR%%/team/firefox/flag.png
%%DATADIR%%/team/firefox/flag64.png
%%DATADIR%%/team/firefox/team.xml
%%DATADIR%%/team/gnu/dead.png
%%DATADIR%%/team/gnu/flag.png
%%DATADIR%%/team/gnu/flag64.png
%%DATADIR%%/team/gnu/team.xml
%%DATADIR%%/team/hexley/dead.png
%%DATADIR%%/team/hexley/flag.png
%%DATADIR%%/team/hexley/flag64.png
%%DATADIR%%/team/hexley/team.xml
%%DATADIR%%/team/konqi/dead.png
%%DATADIR%%/team/konqi/flag.png
%%DATADIR%%/team/konqi/flag64.png
%%DATADIR%%/team/konqi/team.xml
%%DATADIR%%/team/php/dead.png
%%DATADIR%%/team/php/flag.png
%%DATADIR%%/team/php/flag64.png
%%DATADIR%%/team/php/team.xml
%%DATADIR%%/team/pidgin/dead.png
%%DATADIR%%/team/pidgin/flag.png
%%DATADIR%%/team/pidgin/flag64.png
%%DATADIR%%/team/pidgin/team.xml
%%DATADIR%%/team/postfix/dead.png
%%DATADIR%%/team/postfix/flag.png
%%DATADIR%%/team/postfix/flag64.png
%%DATADIR%%/team/postfix/team.xml
%%DATADIR%%/team/snort/dead.png
%%DATADIR%%/team/snort/flag.png
%%DATADIR%%/team/snort/flag64.png
%%DATADIR%%/team/snort/team.xml
%%DATADIR%%/team/spip/dead.png
%%DATADIR%%/team/spip/flag.png
%%DATADIR%%/team/spip/flag64.png
%%DATADIR%%/team/spip/team.xml
%%DATADIR%%/team/suse/dead.png
%%DATADIR%%/team/suse/flag.png
%%DATADIR%%/team/suse/flag64.png
%%DATADIR%%/team/suse/team.xml
%%DATADIR%%/team/team.dtd
%%DATADIR%%/team/thunderbird/dead.png
%%DATADIR%%/team/thunderbird/flag.png
%%DATADIR%%/team/thunderbird/flag64.png
%%DATADIR%%/team/thunderbird/team.xml
%%DATADIR%%/team/tux/dead.png
%%DATADIR%%/team/tux/flag.png
%%DATADIR%%/team/tux/flag64.png
%%DATADIR%%/team/tux/team.xml
%%DATADIR%%/team/wilber/dead.png
%%DATADIR%%/team/wilber/flag.png
%%DATADIR%%/team/wilber/flag64.png
%%DATADIR%%/team/wilber/team.xml
%%DATADIR%%/team/workrave/dead.png
%%DATADIR%%/team/workrave/flag.png
%%DATADIR%%/team/workrave/flag64.png
%%DATADIR%%/team/workrave/team.xml
%%DATADIR%%/warmux_default_android_config.xml
%%DATADIR%%/warmux_default_config.xml
%%DATADIR%%/warmux_default_maemo_config.xml
%%DATADIR%%/warmux_default_symbian_config.xml
%%DATADIR%%/water/chocolate/chocolate.png
%%DATADIR%%/water/chocolate/chocolate_drop.png
%%DATADIR%%/water/dirtywater/dirtywater.png
%%DATADIR%%/water/dirtywater/dirtywater_drop.png
%%DATADIR%%/water/lava/lava.png
%%DATADIR%%/water/lava/lava_drop.png
%%DATADIR%%/water/radioactive/radioactive.png
%%DATADIR%%/water/radioactive/radioactive_drop.png
%%DATADIR%%/water/water/water.png
%%DATADIR%%/water/water/water_drop.png
%%DATADIR%%/water/wine/wine.png
%%DATADIR%%/water/wine/wine_drop.png
%%DATADIR%%/weapon/air_attack/air_attack.png
%%DATADIR%%/weapon/air_attack/air_attack_ico.png
%%DATADIR%%/weapon/air_attack/air_attack_plane.png
%%DATADIR%%/weapon/air_attack/obus.png
%%DATADIR%%/weapon/airhammer/airhammer.png
%%DATADIR%%/weapon/airhammer/airhammer_ico.png
%%DATADIR%%/weapon/airhammer/airhammer_impact.png
%%DATADIR%%/weapon/anvil/anvil.png
%%DATADIR%%/weapon/anvil/anvil_ico.png
%%DATADIR%%/weapon/anvil/anvil_launcher.png
%%DATADIR%%/weapon/baseball/baseball.png
%%DATADIR%%/weapon/baseball/baseball_hit.png
%%DATADIR%%/weapon/baseball/baseball_ico.png
%%DATADIR%%/weapon/bazooka/baz_cible.png
%%DATADIR%%/weapon/bazooka/bazooka_auto_ico.png
%%DATADIR%%/weapon/bazooka/bazooka_ico.png
%%DATADIR%%/weapon/bazooka/brown_bazooka.png
%%DATADIR%%/weapon/bazooka/green_bazooka.png
%%DATADIR%%/weapon/bazooka/missile.png
%%DATADIR%%/weapon/bazooka/yellow_bazooka.png
%%DATADIR%%/weapon/blowtorch/blowtorch.png
%%DATADIR%%/weapon/blowtorch/blowtorch_ico.png
%%DATADIR%%/weapon/blowtorch/fire.png
%%DATADIR%%/weapon/bounce_ball/bounce_ball.png
%%DATADIR%%/weapon/bounce_ball/bounce_ball_ico.png
%%DATADIR%%/weapon/cluster_bomb/cluster.png
%%DATADIR%%/weapon/cluster_bomb/clusterbomb.png
%%DATADIR%%/weapon/cluster_bomb/clusterbomb_ico.png
%%DATADIR%%/weapon/cluzooka/cluster.png
%%DATADIR%%/weapon/cluzooka/cluz_ico.png
%%DATADIR%%/weapon/cluzooka/dark_bazooka.png
%%DATADIR%%/weapon/cluzooka/missile.png
%%DATADIR%%/weapon/construct/construct_icon.png
%%DATADIR%%/weapon/construct/construct_icon_mini.png
%%DATADIR%%/weapon/construct/construct_spr.png
%%DATADIR%%/weapon/disco_grenade/disco_grenade.png
%%DATADIR%%/weapon/disco_grenade/disco_grenade_ico.png
%%DATADIR%%/weapon/dynamite/dynamite.png
%%DATADIR%%/weapon/dynamite/dynamite_ani.png
%%DATADIR%%/weapon/dynamite/dynamite_ico.png
%%DATADIR%%/weapon/flamethrower/flame.png
%%DATADIR%%/weapon/flamethrower/flame_bullet.png
%%DATADIR%%/weapon/flamethrower/flame_ico.png
%%DATADIR%%/weapon/footbomb/bilson.png
%%DATADIR%%/weapon/footbomb/footbomb_ico.png
%%DATADIR%%/weapon/gnu/gnu.png
%%DATADIR%%/weapon/gnu/gnu_ico.png
%%DATADIR%%/weapon/gnu/gnulauncher.png
%%DATADIR%%/weapon/grapple/grapple.png
%%DATADIR%%/weapon/grapple/grapple_hook.png
%%DATADIR%%/weapon/grapple/grapple_ico.png
%%DATADIR%%/weapon/grapple/grapple_node.png
%%DATADIR%%/weapon/grenade/grenade.png
%%DATADIR%%/weapon/grenade/grenade_ico.png
%%DATADIR%%/weapon/gun/gun.png
%%DATADIR%%/weapon/gun/gun_bullet.png
%%DATADIR%%/weapon/gun/gun_fire.png
%%DATADIR%%/weapon/gun/gun_ico.png
%%DATADIR%%/weapon/jet_pack/jet_pack_ico.png
%%DATADIR%%/weapon/lowgrav/lowgrav_ico.png
%%DATADIR%%/weapon/m16/m16.png
%%DATADIR%%/weapon/m16/m16_ico.png
%%DATADIR%%/weapon/mine/mine.png
%%DATADIR%%/weapon/mine/mine_anim.png
%%DATADIR%%/weapon/mine/mine_ico.png
%%DATADIR%%/weapon/mine/mine_impact.png
%%DATADIR%%/weapon/parachute/parachute.png
%%DATADIR%%/weapon/parachute/parachute_ico.png
%%DATADIR%%/weapon/polecat/polecat.png
%%DATADIR%%/weapon/polecat/polecat_fart.png
%%DATADIR%%/weapon/polecat/polecat_ico.png
%%DATADIR%%/weapon/polecat/polecatlauncher.png
%%DATADIR%%/weapon/rail_gun/gun_fire.png
%%DATADIR%%/weapon/rail_gun/rail_bullet.png
%%DATADIR%%/weapon/rail_gun/rail_gun.png
%%DATADIR%%/weapon/rail_gun/rail_gun_ico.png
%%DATADIR%%/weapon/rail_gun/rail_gun_laser.png
%%DATADIR%%/weapon/riot_bomb/missile.png
%%DATADIR%%/weapon/riot_bomb/riot_ico.png
%%DATADIR%%/weapon/shotgun/buckshot.png
%%DATADIR%%/weapon/shotgun/shotgun.png
%%DATADIR%%/weapon/shotgun/shotgun_ico.png
%%DATADIR%%/weapon/skip_turn/skipturn.png
%%DATADIR%%/weapon/skip_turn/skipturn_ico.png
%%DATADIR%%/weapon/slap/slap.png
%%DATADIR%%/weapon/slap/slap_ico.png
%%DATADIR%%/weapon/snipe_rifle/gun_fire.png
%%DATADIR%%/weapon/snipe_rifle/snipe_rifle.png
%%DATADIR%%/weapon/snipe_rifle/snipe_rifle_ico.png
%%DATADIR%%/weapon/snipe_rifle/snipe_rifle_laser.png
%%DATADIR%%/weapon/suicide/suicide.png
%%DATADIR%%/weapon/suicide/suicide_ico.png
%%DATADIR%%/weapon/supertux/superman.png
%%DATADIR%%/weapon/supertux/supertux.png
%%DATADIR%%/weapon/supertux/supertux_ico.png
%%DATADIR%%/weapon/syringe/syringe.png
%%DATADIR%%/weapon/syringe/syringe_ico.png
%%DATADIR%%/weapon/teleportation/teleportation.png
%%DATADIR%%/weapon/teleportation/teleportation_ico.png
%%DATADIR%%/weapons.dtd
%%DATADIR%%/weapons.xml