summaryrefslogtreecommitdiff
path: root/misc/libreoffice/PLIST
blob: 176cc90fccf7b9531faf3e55b4006949b5e5150c (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
@comment $NetBSD: PLIST,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
bin/libreoffice3.5
bin/sbase
bin/scalc
bin/sdraw
bin/simpress
bin/smath
bin/soffice
bin/swriter
share/applications/calc.desktop
share/applications/draw.desktop
share/applications/impress.desktop
share/applications/math.desktop
share/applications/printeradmin.desktop
share/applications/startcenter.desktop
share/applications/writer.desktop
${PKGNAME}/CREDITS.odt
${PKGNAME}/LICENSE
${PKGNAME}/LICENSE.odt
${PKGNAME}/THIRDPARTYLICENSEREADME.html
${PKGNAME}/help/en/default.css
${PKGNAME}/help/en/err.html
${PKGNAME}/help/en/highcontrast1.css
${PKGNAME}/help/en/highcontrast2.css
${PKGNAME}/help/en/highcontrastblack.css
${PKGNAME}/help/en/highcontrastwhite.css
${PKGNAME}/help/en/sbasic.cfg
${PKGNAME}/help/en/sbasic.db
${PKGNAME}/help/en/sbasic.ht
${PKGNAME}/help/en/sbasic.jar
${PKGNAME}/help/en/sbasic.key
${PKGNAME}/help/en/sbasic.tree
${PKGNAME}/help/en/scalc.cfg
${PKGNAME}/help/en/scalc.db
${PKGNAME}/help/en/scalc.ht
${PKGNAME}/help/en/scalc.jar
${PKGNAME}/help/en/scalc.key
${PKGNAME}/help/en/scalc.tree
${PKGNAME}/help/en/schart.cfg
${PKGNAME}/help/en/schart.db
${PKGNAME}/help/en/schart.ht
${PKGNAME}/help/en/schart.jar
${PKGNAME}/help/en/schart.key
${PKGNAME}/help/en/schart.tree
${PKGNAME}/help/en/sdatabase.cfg
${PKGNAME}/help/en/sdatabase.db
${PKGNAME}/help/en/sdatabase.ht
${PKGNAME}/help/en/sdatabase.jar
${PKGNAME}/help/en/sdatabase.key
${PKGNAME}/help/en/sdraw.cfg
${PKGNAME}/help/en/sdraw.db
${PKGNAME}/help/en/sdraw.ht
${PKGNAME}/help/en/sdraw.jar
${PKGNAME}/help/en/sdraw.key
${PKGNAME}/help/en/shared.db
${PKGNAME}/help/en/shared.ht
${PKGNAME}/help/en/shared.jar
${PKGNAME}/help/en/shared.key
${PKGNAME}/help/en/shared.tree
${PKGNAME}/help/en/simpress.cfg
${PKGNAME}/help/en/simpress.db
${PKGNAME}/help/en/simpress.ht
${PKGNAME}/help/en/simpress.jar
${PKGNAME}/help/en/simpress.key
${PKGNAME}/help/en/simpress.tree
${PKGNAME}/help/en/smath.cfg
${PKGNAME}/help/en/smath.db
${PKGNAME}/help/en/smath.ht
${PKGNAME}/help/en/smath.jar
${PKGNAME}/help/en/smath.key
${PKGNAME}/help/en/smath.tree
${PKGNAME}/help/en/swriter.cfg
${PKGNAME}/help/en/swriter.db
${PKGNAME}/help/en/swriter.ht
${PKGNAME}/help/en/swriter.jar
${PKGNAME}/help/en/swriter.key
${PKGNAME}/help/en/swriter.tree
${PKGNAME}/help/idxcaption.xsl
${PKGNAME}/help/idxcontent.xsl
${PKGNAME}/help/main_transform.xsl
${PKGNAME}/presets/autotext/mytexts.bau
${PKGNAME}/presets/basic/Standard/Module1.xba
${PKGNAME}/presets/basic/Standard/dialog.xlb
${PKGNAME}/presets/basic/Standard/script.xlb
${PKGNAME}/presets/basic/dialog.xlc
${PKGNAME}/presets/basic/script.xlc
${PKGNAME}/presets/config/arrowhd.soe
${PKGNAME}/presets/config/autotbl.fmt
${PKGNAME}/presets/config/classic.sog
${PKGNAME}/presets/config/cmyk.soc
${PKGNAME}/presets/config/gallery.soc
${PKGNAME}/presets/config/hatching.soh
${PKGNAME}/presets/config/html.soc
${PKGNAME}/presets/config/libreoffice.soc
${PKGNAME}/presets/config/modern.sog
${PKGNAME}/presets/config/palette.soc
${PKGNAME}/presets/config/scribus.soc
${PKGNAME}/presets/config/standard.sob
${PKGNAME}/presets/config/standard.soc
${PKGNAME}/presets/config/standard.sod
${PKGNAME}/presets/config/standard.soe
${PKGNAME}/presets/config/standard.sog
${PKGNAME}/presets/config/standard.soh
${PKGNAME}/presets/config/styles.sod
${PKGNAME}/presets/config/tango.soc
${PKGNAME}/presets/config/web.soc
${PKGNAME}/presets/database/biblio.odb
${PKGNAME}/presets/database/biblio/biblio.dbf
${PKGNAME}/presets/database/biblio/biblio.dbt
${PKGNAME}/presets/database/evolocal.odb
${PKGNAME}/presets/gallery/sg100.sdv
${PKGNAME}/presets/gallery/sg100.thm
${PKGNAME}/presets/gallery/sg30.sdv
${PKGNAME}/presets/gallery/sg30.thm
${PKGNAME}/program/about.png
${PKGNAME}/program/basprov.uno.so
${PKGNAME}/program/bootstraprc
${PKGNAME}/program/cairocanvas.uno.so
${PKGNAME}/program/canvasfactory.uno.so
${PKGNAME}/program/cde-open-url
${PKGNAME}/program/cmdmail.uno.so
${PKGNAME}/program/configmgr.uno.so
${PKGNAME}/program/desktopbe1.uno.so
${PKGNAME}/program/dlgprov.uno.so
${PKGNAME}/program/expwrap.uno.so
${PKGNAME}/program/fastsax.uno.so
${PKGNAME}/program/fpicker.uno.so
${PKGNAME}/program/fps_office.uno.so
${PKGNAME}/program/fsstorage.uno.so
${PKGNAME}/program/fundamentalrc
${PKGNAME}/program/gdbtrace
${PKGNAME}/program/gengal
${PKGNAME}/program/gengal.bin
${PKGNAME}/program/gnome-open-url
${PKGNAME}/program/gnome-open-url.bin
${PKGNAME}/program/hatchwindowfactory.uno.so
${PKGNAME}/program/i18npool.uno.so
${PKGNAME}/program/i18nsearch.uno.so
${PKGNAME}/program/intro.png
${PKGNAME}/program/kde-open-url
${PKGNAME}/program/libabplo.so
${PKGNAME}/program/libacclo.so
${PKGNAME}/program/libadabasuilo.so
${PKGNAME}/program/libanalysislo.so
${PKGNAME}/program/libanimcorelo.so
${PKGNAME}/program/libavmediagst.so
${PKGNAME}/program/libavmedialo.so
${PKGNAME}/program/libbasctllo.so
${PKGNAME}/program/libbasebmplo.so
${PKGNAME}/program/libbasegfxlo.so
${PKGNAME}/program/libbiblo.so
${PKGNAME}/program/libcached1.so
${PKGNAME}/program/libcalclo.so
${PKGNAME}/program/libcanvastoolslo.so
${PKGNAME}/program/libchartcontrollerlo.so
${PKGNAME}/program/libchartmodello.so
${PKGNAME}/program/libcharttoolslo.so
${PKGNAME}/program/libchartviewlo.so
${PKGNAME}/program/libcollator_data.so
${PKGNAME}/program/libcomphelpgcc3.so
${PKGNAME}/program/libcppcanvaslo.so
${PKGNAME}/program/libctllo.so
${PKGNAME}/program/libcuilo.so
${PKGNAME}/program/libdatelo.so
${PKGNAME}/program/libdbalo.so
${PKGNAME}/program/libdbaselo.so
${PKGNAME}/program/libdbaxmllo.so
${PKGNAME}/program/libdbmmlo.so
${PKGNAME}/program/libdbplo.so
${PKGNAME}/program/libdbpool2.so
${PKGNAME}/program/libdbtoolslo.so
${PKGNAME}/program/libdbulo.so
${PKGNAME}/program/libdeployment.so
${PKGNAME}/program/libdeploymentgui.so
${PKGNAME}/program/libdeploymentmisclo.so
${PKGNAME}/program/libdesktop_detectorlo.so
${PKGNAME}/program/libdict_ja.so
${PKGNAME}/program/libdict_zh.so
${PKGNAME}/program/libdoctoklo.so
${PKGNAME}/program/libdrawinglayerlo.so
${PKGNAME}/program/libeditenglo.so
${PKGNAME}/program/libegilo.so
${PKGNAME}/program/libembobj.so
${PKGNAME}/program/libemboleobj.so
${PKGNAME}/program/libemelo.so
${PKGNAME}/program/libepblo.so
${PKGNAME}/program/libepglo.so
${PKGNAME}/program/libepplo.so
${PKGNAME}/program/libepslo.so
${PKGNAME}/program/libeptlo.so
${PKGNAME}/program/liberalo.so
${PKGNAME}/program/libetilo.so
${PKGNAME}/program/libevtattlo.so
${PKGNAME}/program/libexplo.so
${PKGNAME}/program/libfileacc.so
${PKGNAME}/program/libfilelo.so
${PKGNAME}/program/libfilterconfiglo.so
${PKGNAME}/program/libflashlo.so
${PKGNAME}/program/libflatlo.so
${PKGNAME}/program/libforlo.so
${PKGNAME}/program/libforuilo.so
${PKGNAME}/program/libfrmlo.so
${PKGNAME}/program/libfwelo.so
${PKGNAME}/program/libfwilo.so
${PKGNAME}/program/libfwklo.so
${PKGNAME}/program/libfwllo.so
${PKGNAME}/program/libfwmlo.so
${PKGNAME}/program/libguesslanglo.so
${PKGNAME}/program/libhelplinkerlo.so
${PKGNAME}/program/libhwplo.so
${PKGNAME}/program/libhyphenlo.so
${PKGNAME}/program/libi18nisolang1gcc3.so
${PKGNAME}/program/libi18npaperlo.so
${PKGNAME}/program/libi18nregexplo.so
${PKGNAME}/program/libi18nutilgcc3.so
${PKGNAME}/program/libicdlo.so
${PKGNAME}/program/libicglo.so
${PKGNAME}/program/libidxlo.so
${PKGNAME}/program/libimelo.so
${PKGNAME}/program/libindex_data.so
${PKGNAME}/program/libipblo.so
${PKGNAME}/program/libipdlo.so
${PKGNAME}/program/libipslo.so
${PKGNAME}/program/libiptlo.so
${PKGNAME}/program/libipxlo.so
${PKGNAME}/program/libiralo.so
${PKGNAME}/program/libitglo.so
${PKGNAME}/program/libitilo.so
${PKGNAME}/program/liblnglo.so
${PKGNAME}/program/liblnthlo.so
${PKGNAME}/program/liblocaledata_en.so
${PKGNAME}/program/liblocaledata_es.so
${PKGNAME}/program/liblocaledata_euro.so
${PKGNAME}/program/liblocaledata_others.so
${PKGNAME}/program/libloglo.so
${PKGNAME}/program/liblwpftlo.so
${PKGNAME}/program/libmcnttype.so
${PKGNAME}/program/libmozbootstrap.so
${PKGNAME}/program/libmsfilterlo.so
${PKGNAME}/program/libmswordlo.so
${PKGNAME}/program/libmsworkslo.so
${PKGNAME}/program/libmysqllo.so
${PKGNAME}/program/libnpsoplugin.so
${PKGNAME}/program/libodbcbaselo.so
${PKGNAME}/program/libodbclo.so
${PKGNAME}/program/libodfflatxmllo.so
${PKGNAME}/program/liboffacclo.so
${PKGNAME}/program/liboooimprovecorelo.so
${PKGNAME}/program/libooxlo.so
${PKGNAME}/program/libooxmllo.so
${PKGNAME}/program/libpackage2.so
${PKGNAME}/program/libpcrlo.so
${PKGNAME}/program/libpdffilterlo.so
${PKGNAME}/program/libplacewarelo.so
${PKGNAME}/program/libprotocolhandlerlo.so
${PKGNAME}/program/libpyuno.so
${PKGNAME}/program/librecentfile.so
${PKGNAME}/program/libreslo.so
${PKGNAME}/program/libresourcemodello.so
${PKGNAME}/program/librptlo.so
${PKGNAME}/program/librptuilo.so
${PKGNAME}/program/librptxmllo.so
${PKGNAME}/program/librtftoklo.so
${PKGNAME}/program/libsaxlo.so
${PKGNAME}/program/libsblo.so
${PKGNAME}/program/libscdlo.so
${PKGNAME}/program/libscfiltlo.so
${PKGNAME}/program/libsclo.so
${PKGNAME}/program/libscnlo.so
${PKGNAME}/program/libscriptframe.so
${PKGNAME}/program/libscuilo.so
${PKGNAME}/program/libsdbc2.so
${PKGNAME}/program/libsdbtlo.so
${PKGNAME}/program/libsddlo.so
${PKGNAME}/program/libsdfiltlo.so
${PKGNAME}/program/libsdlo.so
${PKGNAME}/program/libsduilo.so
${PKGNAME}/program/libsfxlo.so
${PKGNAME}/program/libsmdlo.so
${PKGNAME}/program/libsmlo.so
${PKGNAME}/program/libsofficeapp.so
${PKGNAME}/program/libsolverlo.so
${PKGNAME}/program/libsotlo.so
${PKGNAME}/program/libspalo.so
${PKGNAME}/program/libspelllo.so
${PKGNAME}/program/libspl_unxlo.so
${PKGNAME}/program/libspllo.so
${PKGNAME}/program/libsrtrs1.so
${PKGNAME}/program/libsvgfilterlo.so
${PKGNAME}/program/libsvllo.so
${PKGNAME}/program/libsvtlo.so
${PKGNAME}/program/libsvxcorelo.so
${PKGNAME}/program/libsvxlo.so
${PKGNAME}/program/libswdlo.so
${PKGNAME}/program/libswlo.so
${PKGNAME}/program/libswuilo.so
${PKGNAME}/program/libt602filterlo.so
${PKGNAME}/program/libtextconv_dict.so
${PKGNAME}/program/libtextconversiondlgslo.so
${PKGNAME}/program/libtklo.so
${PKGNAME}/program/libtllo.so
${PKGNAME}/program/libtvhlp1.so
${PKGNAME}/program/libucb1.so
${PKGNAME}/program/libucbhelper4gcc3.so
${PKGNAME}/program/libucpchelp1.so
${PKGNAME}/program/libucpfile1.so
${PKGNAME}/program/libucpftp1.so
${PKGNAME}/program/libucphier1.so
${PKGNAME}/program/libucppkg1.so
${PKGNAME}/program/libunopkgapp.so
${PKGNAME}/program/libunordflo.so
${PKGNAME}/program/libunoxmllo.so
${PKGNAME}/program/libupdchklo.so
${PKGNAME}/program/libutllo.so
${PKGNAME}/program/libuuilo.so
${PKGNAME}/program/libvbahelperlo.so
${PKGNAME}/program/libvcllo.so
${PKGNAME}/program/libvclplug_genlo.so
${PKGNAME}/program/libvclplug_gtklo.so
${PKGNAME}/program/libvclplug_svplo.so
${PKGNAME}/program/libvisioimportlo.so
${PKGNAME}/program/libwpftlo.so
${PKGNAME}/program/libwpgimportlo.so
${PKGNAME}/program/libwriterfilterlo.so
${PKGNAME}/program/libxcrlo.so
${PKGNAME}/program/libxmlfalo.so
${PKGNAME}/program/libxmlfdlo.so
${PKGNAME}/program/libxmlsecurity.so
${PKGNAME}/program/libxmxlo.so
${PKGNAME}/program/libxoflo.so
${PKGNAME}/program/libxolo.so
${PKGNAME}/program/libxsec_fw.so
${PKGNAME}/program/libxsec_xmlsec.so
${PKGNAME}/program/libxsltdlglo.so
${PKGNAME}/program/libxsltfilterlo.so
${PKGNAME}/program/libxstor.so
${PKGNAME}/program/localebe1.uno.so
${PKGNAME}/program/mailmerge.py
${PKGNAME}/program/migrationoo2.uno.so
${PKGNAME}/program/migrationoo3.uno.so
${PKGNAME}/program/msforms.uno.so
${PKGNAME}/program/msgbox.py
${PKGNAME}/program/mtfrenderer.uno.so
${PKGNAME}/program/nsplugin
${PKGNAME}/program/officehelper.py
${PKGNAME}/program/oosplash
${PKGNAME}/program/open-url
${PKGNAME}/program/pagein-calc
${PKGNAME}/program/pagein-common
${PKGNAME}/program/pagein-draw
${PKGNAME}/program/pagein-impress
${PKGNAME}/program/pagein-writer
${PKGNAME}/program/passwordcontainer.uno.so
${PKGNAME}/program/pythonloader.py
${PKGNAME}/program/pythonloader.uno.so
${PKGNAME}/program/pythonloader.unorc
${PKGNAME}/program/pyuno.so
${PKGNAME}/program/redirectrc
${PKGNAME}/program/resource/abpen-US.res
${PKGNAME}/program/resource/accen-US.res
${PKGNAME}/program/resource/adabasuien-US.res
${PKGNAME}/program/resource/analysisen-US.res
${PKGNAME}/program/resource/avmediaen-US.res
${PKGNAME}/program/resource/basctlen-US.res
${PKGNAME}/program/resource/biben-US.res
${PKGNAME}/program/resource/calen-US.res
${PKGNAME}/program/resource/chartcontrolleren-US.res
${PKGNAME}/program/resource/cnren-US.res
${PKGNAME}/program/resource/cuien-US.res
${PKGNAME}/program/resource/dateen-US.res
${PKGNAME}/program/resource/dbaen-US.res
${PKGNAME}/program/resource/dbmmen-US.res
${PKGNAME}/program/resource/dbpen-US.res
${PKGNAME}/program/resource/dbuen-US.res
${PKGNAME}/program/resource/dbwen-US.res
${PKGNAME}/program/resource/deploymenten-US.res
${PKGNAME}/program/resource/deploymentguien-US.res
${PKGNAME}/program/resource/dkten-US.res
${PKGNAME}/program/resource/editengen-US.res
${PKGNAME}/program/resource/epsen-US.res
${PKGNAME}/program/resource/euren-US.res
${PKGNAME}/program/resource/foren-US.res
${PKGNAME}/program/resource/foruien-US.res
${PKGNAME}/program/resource/fps_officeen-US.res
${PKGNAME}/program/resource/frmen-US.res
${PKGNAME}/program/resource/fween-US.res
${PKGNAME}/program/resource/galen-US.res
${PKGNAME}/program/resource/impen-US.res
${PKGNAME}/program/resource/ofaen-US.res
${PKGNAME}/program/resource/pcren-US.res
${PKGNAME}/program/resource/pdffilteren-US.res
${PKGNAME}/program/resource/rpten-US.res
${PKGNAME}/program/resource/rptuien-US.res
${PKGNAME}/program/resource/sanen-US.res
${PKGNAME}/program/resource/sben-US.res
${PKGNAME}/program/resource/scen-US.res
${PKGNAME}/program/resource/sdbclen-US.res
${PKGNAME}/program/resource/sdberren-US.res
${PKGNAME}/program/resource/sdbten-US.res
${PKGNAME}/program/resource/sden-US.res
${PKGNAME}/program/resource/sfxen-US.res
${PKGNAME}/program/resource/smen-US.res
${PKGNAME}/program/resource/solveren-US.res
${PKGNAME}/program/resource/spaen-US.res
${PKGNAME}/program/resource/svlen-US.res
${PKGNAME}/program/resource/svten-US.res
${PKGNAME}/program/resource/svxen-US.res
${PKGNAME}/program/resource/swen-US.res
${PKGNAME}/program/resource/t602filteren-US.res
${PKGNAME}/program/resource/textconversiondlgsen-US.res
${PKGNAME}/program/resource/tken-US.res
${PKGNAME}/program/resource/tplen-US.res
${PKGNAME}/program/resource/updchken-US.res
${PKGNAME}/program/resource/upden-US.res
${PKGNAME}/program/resource/uuien-US.res
${PKGNAME}/program/resource/vclen-US.res
${PKGNAME}/program/resource/wzien-US.res
${PKGNAME}/program/resource/xmlsecen-US.res
${PKGNAME}/program/resource/xsltdlgen-US.res
${PKGNAME}/program/sbase
${PKGNAME}/program/scalc
${PKGNAME}/program/sdraw
${PKGNAME}/program/senddoc
${PKGNAME}/program/services/services.rdb
${PKGNAME}/program/setuprc
${PKGNAME}/program/shell/backing_left.png
${PKGNAME}/program/shell/backing_right.png
${PKGNAME}/program/shell/backing_rtl_left.png
${PKGNAME}/program/shell/backing_rtl_right.png
${PKGNAME}/program/shell/backing_space.png
${PKGNAME}/program/simplecanvas.uno.so
${PKGNAME}/program/simpress
${PKGNAME}/program/slideshow.uno.so
${PKGNAME}/program/smath
${PKGNAME}/program/soffice
${PKGNAME}/program/soffice.bin
${PKGNAME}/program/sofficerc
${PKGNAME}/program/spadmin
${PKGNAME}/program/spadmin.bin
${PKGNAME}/program/stringresource.uno.so
${PKGNAME}/program/swriter
${PKGNAME}/program/syssh.uno.so
${PKGNAME}/program/types/offapi.rdb
${PKGNAME}/program/types/oovbaapi.rdb
${PKGNAME}/program/ucpcmis1.uno.so
${PKGNAME}/program/ucpexpand1.uno.so
${PKGNAME}/program/ucpext.uno.so
${PKGNAME}/program/ucptdoc1.uno.so
${PKGNAME}/program/uno.py
${PKGNAME}/program/unohelper.py
${PKGNAME}/program/unoinfo
${PKGNAME}/program/unopkg
${PKGNAME}/program/unopkg.bin
${PKGNAME}/program/unorc
${PKGNAME}/program/updatefeed.uno.so
${PKGNAME}/program/uri-encode
${PKGNAME}/program/vbaevents.uno.so
${PKGNAME}/program/vbaobj.uno.so
${PKGNAME}/program/vbaswobj.uno.so
${PKGNAME}/program/vclcanvas.uno.so
${PKGNAME}/program/versionrc
${PKGNAME}/program/wizards/__init__.py
${PKGNAME}/program/wizards/common/ConfigGroup.py
${PKGNAME}/program/wizards/common/ConfigNode.py
${PKGNAME}/program/wizards/common/ConfigSet.py
${PKGNAME}/program/wizards/common/Configuration.py
${PKGNAME}/program/wizards/common/DebugHelper.py
${PKGNAME}/program/wizards/common/Desktop.py
${PKGNAME}/program/wizards/common/FileAccess.py
${PKGNAME}/program/wizards/common/HelpIds.py
${PKGNAME}/program/wizards/common/Helper.py
${PKGNAME}/program/wizards/common/NoValidPathException.py
${PKGNAME}/program/wizards/common/NumberFormatter.py
${PKGNAME}/program/wizards/common/Properties.py
${PKGNAME}/program/wizards/common/PropertyNames.py
${PKGNAME}/program/wizards/common/PropertySetHelper.py
${PKGNAME}/program/wizards/common/Resource.py
${PKGNAME}/program/wizards/common/SystemDialog.py
${PKGNAME}/program/wizards/common/__init__.py
${PKGNAME}/program/wizards/document/OfficeDocument.py
${PKGNAME}/program/wizards/document/__init__.py
${PKGNAME}/program/wizards/fax/CGFax.py
${PKGNAME}/program/wizards/fax/CGFaxWizard.py
${PKGNAME}/program/wizards/fax/CallWizard.py
${PKGNAME}/program/wizards/fax/FaxDocument.py
${PKGNAME}/program/wizards/fax/FaxWizardDialog.py
${PKGNAME}/program/wizards/fax/FaxWizardDialogConst.py
${PKGNAME}/program/wizards/fax/FaxWizardDialogImpl.py
${PKGNAME}/program/wizards/fax/FaxWizardDialogResources.py
${PKGNAME}/program/wizards/fax/__init__.py
${PKGNAME}/program/wizards/text/TextDocument.py
${PKGNAME}/program/wizards/text/TextFieldHandler.py
${PKGNAME}/program/wizards/text/TextSectionHandler.py
${PKGNAME}/program/wizards/text/ViewHandler.py
${PKGNAME}/program/wizards/text/__init__.py
${PKGNAME}/program/wizards/ui/ControlScroller.py
${PKGNAME}/program/wizards/ui/DocumentPreview.py
${PKGNAME}/program/wizards/ui/ImageList.py
${PKGNAME}/program/wizards/ui/PathSelection.py
${PKGNAME}/program/wizards/ui/PeerConfig.py
${PKGNAME}/program/wizards/ui/UIConsts.py
${PKGNAME}/program/wizards/ui/UnoDialog.py
${PKGNAME}/program/wizards/ui/UnoDialog2.py
${PKGNAME}/program/wizards/ui/WizardDialog.py
${PKGNAME}/program/wizards/ui/XPathSelectionListener.py
${PKGNAME}/program/wizards/ui/__init__.py
${PKGNAME}/program/wizards/ui/event/CommonListener.py
${PKGNAME}/program/wizards/ui/event/DataAware.py
${PKGNAME}/program/wizards/ui/event/ListModelBinder.py
${PKGNAME}/program/wizards/ui/event/RadioDataAware.py
${PKGNAME}/program/wizards/ui/event/UnoDataAware.py
${PKGNAME}/program/wizards/ui/event/__init__.py
${PKGNAME}/readmes/README_en-US
${PKGNAME}/share/Scripts/beanshell/Capitalise/capitalise.bsh
${PKGNAME}/share/Scripts/beanshell/Capitalise/parcel-descriptor.xml
${PKGNAME}/share/Scripts/beanshell/HelloWorld/helloworld.bsh
${PKGNAME}/share/Scripts/beanshell/HelloWorld/parcel-descriptor.xml
${PKGNAME}/share/Scripts/beanshell/Highlight/ButtonPressHandler.bsh
${PKGNAME}/share/Scripts/beanshell/Highlight/ShowDialog.bsh
${PKGNAME}/share/Scripts/beanshell/Highlight/highlighter.bsh
${PKGNAME}/share/Scripts/beanshell/Highlight/parcel-descriptor.xml
${PKGNAME}/share/Scripts/beanshell/MemoryUsage/memusage.bsh
${PKGNAME}/share/Scripts/beanshell/MemoryUsage/parcel-descriptor.xml
${PKGNAME}/share/Scripts/beanshell/WordCount/parcel-descriptor.xml
${PKGNAME}/share/Scripts/beanshell/WordCount/wordcount.bsh
${PKGNAME}/share/Scripts/javascript/ExportSheetsToHTML/exportsheetstohtml.js
${PKGNAME}/share/Scripts/javascript/ExportSheetsToHTML/parcel-descriptor.xml
${PKGNAME}/share/Scripts/javascript/HelloWorld/helloworld.js
${PKGNAME}/share/Scripts/javascript/HelloWorld/parcel-descriptor.xml
${PKGNAME}/share/Scripts/javascript/Highlight/ButtonPressHandler.js
${PKGNAME}/share/Scripts/javascript/Highlight/ShowDialog.js
${PKGNAME}/share/Scripts/javascript/Highlight/parcel-descriptor.xml
${PKGNAME}/share/Scripts/python/Capitalise.py
${PKGNAME}/share/Scripts/python/HelloWorld.py
${PKGNAME}/share/Scripts/python/pythonSamples/TableSample.py
${PKGNAME}/share/autocorr/acor_af-ZA.dat
${PKGNAME}/share/autocorr/acor_bg-BG.dat
${PKGNAME}/share/autocorr/acor_cs-CZ.dat
${PKGNAME}/share/autocorr/acor_da-DK.dat
${PKGNAME}/share/autocorr/acor_de-DE.dat
${PKGNAME}/share/autocorr/acor_en-AU.dat
${PKGNAME}/share/autocorr/acor_en-GB.dat
${PKGNAME}/share/autocorr/acor_en-US.dat
${PKGNAME}/share/autocorr/acor_en-ZA.dat
${PKGNAME}/share/autocorr/acor_es-ES.dat
${PKGNAME}/share/autocorr/acor_eu.dat
${PKGNAME}/share/autocorr/acor_fa-IR.dat
${PKGNAME}/share/autocorr/acor_fi-FI.dat
${PKGNAME}/share/autocorr/acor_fr-FR.dat
${PKGNAME}/share/autocorr/acor_ga-IE.dat
${PKGNAME}/share/autocorr/acor_hr-HR.dat
${PKGNAME}/share/autocorr/acor_hu-HU.dat
${PKGNAME}/share/autocorr/acor_it-IT.dat
${PKGNAME}/share/autocorr/acor_ja-JP.dat
${PKGNAME}/share/autocorr/acor_ko-KR.dat
${PKGNAME}/share/autocorr/acor_lb-LU.dat
${PKGNAME}/share/autocorr/acor_lt-LT.dat
${PKGNAME}/share/autocorr/acor_mn-MN.dat
${PKGNAME}/share/autocorr/acor_nl-BE.dat
${PKGNAME}/share/autocorr/acor_nl-NL.dat
${PKGNAME}/share/autocorr/acor_pl-PL.dat
${PKGNAME}/share/autocorr/acor_pt-BR.dat
${PKGNAME}/share/autocorr/acor_pt-PT.dat
${PKGNAME}/share/autocorr/acor_ru-RU.dat
${PKGNAME}/share/autocorr/acor_sh-ME.dat
${PKGNAME}/share/autocorr/acor_sh-RS.dat
${PKGNAME}/share/autocorr/acor_sh-YU.dat
${PKGNAME}/share/autocorr/acor_sk-SK.dat
${PKGNAME}/share/autocorr/acor_sl-SI.dat
${PKGNAME}/share/autocorr/acor_sr-ME.dat
${PKGNAME}/share/autocorr/acor_sr-RS.dat
${PKGNAME}/share/autocorr/acor_sr-YU.dat
${PKGNAME}/share/autocorr/acor_sv-SE.dat
${PKGNAME}/share/autocorr/acor_tr-TR.dat
${PKGNAME}/share/autocorr/acor_vi-VN.dat
${PKGNAME}/share/autocorr/acor_zh-CN.dat
${PKGNAME}/share/autocorr/acor_zh-TW.dat
${PKGNAME}/share/autotext/en-US/crdbus50.bau
${PKGNAME}/share/autotext/en-US/standard.bau
${PKGNAME}/share/autotext/en-US/template.bau
${PKGNAME}/share/basic/Depot/CommonLang.xba
${PKGNAME}/share/basic/Depot/Currency.xba
${PKGNAME}/share/basic/Depot/Depot.xba
${PKGNAME}/share/basic/Depot/Dialog2.xdl
${PKGNAME}/share/basic/Depot/Dialog3.xdl
${PKGNAME}/share/basic/Depot/Dialog4.xdl
${PKGNAME}/share/basic/Depot/Internet.xba
${PKGNAME}/share/basic/Depot/Lang_de.xba
${PKGNAME}/share/basic/Depot/Lang_en.xba
${PKGNAME}/share/basic/Depot/Lang_es.xba
${PKGNAME}/share/basic/Depot/Lang_fr.xba
${PKGNAME}/share/basic/Depot/Lang_it.xba
${PKGNAME}/share/basic/Depot/Lang_ja.xba
${PKGNAME}/share/basic/Depot/Lang_ko.xba
${PKGNAME}/share/basic/Depot/Lang_sv.xba
${PKGNAME}/share/basic/Depot/Lang_tw.xba
${PKGNAME}/share/basic/Depot/Lang_zh.xba
${PKGNAME}/share/basic/Depot/dialog.xlb
${PKGNAME}/share/basic/Depot/script.xlb
${PKGNAME}/share/basic/Depot/tools.xba
${PKGNAME}/share/basic/Euro/AutoPilotRun.xba
${PKGNAME}/share/basic/Euro/Common.xba
${PKGNAME}/share/basic/Euro/ConvertRun.xba
${PKGNAME}/share/basic/Euro/DlgConvert.xdl
${PKGNAME}/share/basic/Euro/DlgPassword.xdl
${PKGNAME}/share/basic/Euro/Hard.xba
${PKGNAME}/share/basic/Euro/Init.xba
${PKGNAME}/share/basic/Euro/Protect.xba
${PKGNAME}/share/basic/Euro/Soft.xba
${PKGNAME}/share/basic/Euro/Writer.xba
${PKGNAME}/share/basic/Euro/dialog.xlb
${PKGNAME}/share/basic/Euro/script.xlb
${PKGNAME}/share/basic/FormWizard/DBMeta.xba
${PKGNAME}/share/basic/FormWizard/DlgFormDB.xdl
${PKGNAME}/share/basic/FormWizard/FormWizard.xba
${PKGNAME}/share/basic/FormWizard/Language.xba
${PKGNAME}/share/basic/FormWizard/Layouter.xba
${PKGNAME}/share/basic/FormWizard/develop.xba
${PKGNAME}/share/basic/FormWizard/dialog.xlb
${PKGNAME}/share/basic/FormWizard/script.xlb
${PKGNAME}/share/basic/FormWizard/tools.xba
${PKGNAME}/share/basic/Gimmicks/AutoText.xba
${PKGNAME}/share/basic/Gimmicks/ChangeAllChars.xba
${PKGNAME}/share/basic/Gimmicks/GetTexts.xba
${PKGNAME}/share/basic/Gimmicks/ReadDir.xba
${PKGNAME}/share/basic/Gimmicks/ReadFolderDlg.xdl
${PKGNAME}/share/basic/Gimmicks/UserfieldDlg.xdl
${PKGNAME}/share/basic/Gimmicks/Userfields.xba
${PKGNAME}/share/basic/Gimmicks/dialog.xlb
${PKGNAME}/share/basic/Gimmicks/script.xlb
${PKGNAME}/share/basic/ImportWizard/API.xba
${PKGNAME}/share/basic/ImportWizard/DialogModul.xba
${PKGNAME}/share/basic/ImportWizard/FilesModul.xba
${PKGNAME}/share/basic/ImportWizard/ImportDialog.xdl
${PKGNAME}/share/basic/ImportWizard/Language.xba
${PKGNAME}/share/basic/ImportWizard/Main.xba
${PKGNAME}/share/basic/ImportWizard/dialog.xlb
${PKGNAME}/share/basic/ImportWizard/script.xlb
${PKGNAME}/share/basic/Schedule/BankHoliday.xba
${PKGNAME}/share/basic/Schedule/CalendarMain.xba
${PKGNAME}/share/basic/Schedule/CreateTable.xba
${PKGNAME}/share/basic/Schedule/DlgCalendar.xdl
${PKGNAME}/share/basic/Schedule/DlgControl.xba
${PKGNAME}/share/basic/Schedule/GermanHolidays.xba
${PKGNAME}/share/basic/Schedule/Language.xba
${PKGNAME}/share/basic/Schedule/LocalHolidays.xba
${PKGNAME}/share/basic/Schedule/OwnEvents.xba
${PKGNAME}/share/basic/Schedule/dialog.xlb
${PKGNAME}/share/basic/Schedule/script.xlb
${PKGNAME}/share/basic/ScriptBindingLibrary/Highlight.xdl
${PKGNAME}/share/basic/ScriptBindingLibrary/dialog.xlb
${PKGNAME}/share/basic/ScriptBindingLibrary/script.xlb
${PKGNAME}/share/basic/Template/Autotext.xba
${PKGNAME}/share/basic/Template/Correspondence.xba
${PKGNAME}/share/basic/Template/DialogStyles.xdl
${PKGNAME}/share/basic/Template/ModuleAgenda.xba
${PKGNAME}/share/basic/Template/Samples.xba
${PKGNAME}/share/basic/Template/TemplateDialog.xdl
${PKGNAME}/share/basic/Template/dialog.xlb
${PKGNAME}/share/basic/Template/script.xlb
${PKGNAME}/share/basic/Tools/Debug.xba
${PKGNAME}/share/basic/Tools/DlgOverwriteAll.xdl
${PKGNAME}/share/basic/Tools/Listbox.xba
${PKGNAME}/share/basic/Tools/Misc.xba
${PKGNAME}/share/basic/Tools/ModuleControls.xba
${PKGNAME}/share/basic/Tools/Strings.xba
${PKGNAME}/share/basic/Tools/UCB.xba
${PKGNAME}/share/basic/Tools/dialog.xlb
${PKGNAME}/share/basic/Tools/script.xlb
${PKGNAME}/share/basic/Tutorials/Functions.xba
${PKGNAME}/share/basic/Tutorials/RoadMap.xba
${PKGNAME}/share/basic/Tutorials/ShowInfoDialog.xba
${PKGNAME}/share/basic/Tutorials/TutorialClose.xba
${PKGNAME}/share/basic/Tutorials/TutorialCloseDialog.xdl
${PKGNAME}/share/basic/Tutorials/TutorialCreator.xba
${PKGNAME}/share/basic/Tutorials/TutorialOpen.xba
${PKGNAME}/share/basic/Tutorials/TutorialOpenDialog.xdl
${PKGNAME}/share/basic/Tutorials/TutorialsDialog.xdl
${PKGNAME}/share/basic/Tutorials/dialog.xlb
${PKGNAME}/share/basic/Tutorials/script.xlb
${PKGNAME}/share/basic/dialog.xlc
${PKGNAME}/share/basic/script.xlc
${PKGNAME}/share/config/images.zip
${PKGNAME}/share/config/images_brand.zip
${PKGNAME}/share/config/images_crystal.zip
${PKGNAME}/share/config/images_hicontrast.zip
${PKGNAME}/share/config/images_oxygen.zip
${PKGNAME}/share/config/images_tango.zip
${PKGNAME}/share/config/javasettingsunopkginstall.xml
${PKGNAME}/share/config/psetup.xpm
${PKGNAME}/share/config/psetupl.xpm
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/dialogbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/formcontrolsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/insertcontrolsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/macrobar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/translationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/StartModule/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/StartModule/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/StartModule/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/formobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/queryobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/reportobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbbrowser/menubar/compat.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbbrowser/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbquery/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbquery/toolbar/designobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbquery/toolbar/sqlobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbquery/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbrelation/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbrelation/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/Formatting.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/reportcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/resizebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/sectionalignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/sectionshrinkbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbtable/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbtable/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbtdata/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/dbtdata/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sbibliography/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/drawobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formatobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/insertcellsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/previewbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/3dobjectsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/arrowsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/choosemodebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/commentsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/connectorsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/ellipsesbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/gluepointsobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/linesbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/masterviewtoolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/optionsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/positionbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/rectanglesbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/textbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/zoombar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/drawtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/frameobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/insertobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/numobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/oleobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/previewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/3dobjectsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/arrowsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/choosemodebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/commentsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/commontaskbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/connectorsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/ellipsesbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/gluepointsobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/linesbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/masterviewtoolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/optionsbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/outlinetoolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/positionbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/rectanglesbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/slideviewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/slideviewtoolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/textbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/zoombar.xml
${PKGNAME}/share/config/soffice.cfg/modules/smath/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/smath/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/smath/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/smath/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/smath/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/drawtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/frameobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/numobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/oleobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/previewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/drawtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/frameobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/insertobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/numobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/oleobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/previewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/drawtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/frameobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/insertobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/numobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/oleobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/previewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/drawtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/frameobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/navigationobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/numobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/oleobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/previewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/menubar/menubar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/statusbar/statusbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/alignmentbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/arrowshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/basicshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/bezierobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/calloutshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/colorbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/drawbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/drawingobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/drawtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/extrusionobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/findbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/flowchartshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/fontworkobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/fontworkshapetype.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formdesign.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formsfilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formsnavigationbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formtextobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/frameobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/fullscreenbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/graffilterbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/graphicobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/insertbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/insertobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/mediaobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/moreformcontrols.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/numobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/oleobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/optimizetablebar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/previewobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/standardbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/starshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/symbolshapes.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/tableobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/textobjectbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/toolbar.xml
${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/viewerbar.xml
${PKGNAME}/share/config/soffice.cfg/simpress/effects.xml
${PKGNAME}/share/config/soffice.cfg/simpress/transitions.xml
${PKGNAME}/share/config/symbol/l_2people.bmp
${PKGNAME}/share/config/symbol/l_attention1.bmp
${PKGNAME}/share/config/symbol/l_attention2.bmp
${PKGNAME}/share/config/symbol/l_attention3.bmp
${PKGNAME}/share/config/symbol/l_candy.bmp
${PKGNAME}/share/config/symbol/l_face.bmp
${PKGNAME}/share/config/symbol/l_flower.bmp
${PKGNAME}/share/config/symbol/l_ghost.bmp
${PKGNAME}/share/config/symbol/l_halloween.bmp
${PKGNAME}/share/config/symbol/l_home.bmp
${PKGNAME}/share/config/symbol/l_lamp.bmp
${PKGNAME}/share/config/symbol/l_lock.bmp
${PKGNAME}/share/config/symbol/l_page_b.bmp
${PKGNAME}/share/config/symbol/l_page_g.bmp
${PKGNAME}/share/config/symbol/l_page_y.bmp
${PKGNAME}/share/config/symbol/l_people.bmp
${PKGNAME}/share/config/symbol/l_rose.bmp
${PKGNAME}/share/config/symbol/l_save.bmp
${PKGNAME}/share/config/symbol/l_smiley_1.bmp
${PKGNAME}/share/config/symbol/l_smiley_oh.bmp
${PKGNAME}/share/config/symbol/l_smiley_sad.bmp
${PKGNAME}/share/config/symbol/l_snow.bmp
${PKGNAME}/share/config/symbol/l_star.bmp
${PKGNAME}/share/config/symbol/s_arrow-1.bmp
${PKGNAME}/share/config/symbol/s_arrow-2.bmp
${PKGNAME}/share/config/symbol/s_arrow-3.bmp
${PKGNAME}/share/config/symbol/s_arrow-4.bmp
${PKGNAME}/share/config/symbol/s_attention1.bmp
${PKGNAME}/share/config/symbol/s_attention2.bmp
${PKGNAME}/share/config/symbol/s_attention3.bmp
${PKGNAME}/share/config/symbol/s_ball-b.bmp
${PKGNAME}/share/config/symbol/s_ball-g.bmp
${PKGNAME}/share/config/symbol/s_ball-r.bmp
${PKGNAME}/share/config/symbol/s_ball.bmp
${PKGNAME}/share/config/symbol/s_bug.bmp
${PKGNAME}/share/config/symbol/s_clover.bmp
${PKGNAME}/share/config/symbol/s_egg.bmp
${PKGNAME}/share/config/symbol/s_face.bmp
${PKGNAME}/share/config/symbol/s_flower.bmp
${PKGNAME}/share/config/symbol/s_ghost.bmp
${PKGNAME}/share/config/symbol/s_group.bmp
${PKGNAME}/share/config/symbol/s_halloween.bmp
${PKGNAME}/share/config/symbol/s_heart.bmp
${PKGNAME}/share/config/symbol/s_home.bmp
${PKGNAME}/share/config/symbol/s_lock.bmp
${PKGNAME}/share/config/symbol/s_ok-g.bmp
${PKGNAME}/share/config/symbol/s_ok-r.bmp
${PKGNAME}/share/config/symbol/s_ok.bmp
${PKGNAME}/share/config/symbol/s_page_b.bmp
${PKGNAME}/share/config/symbol/s_page_g.bmp
${PKGNAME}/share/config/symbol/s_page_y.bmp
${PKGNAME}/share/config/symbol/s_pen-b.bmp
${PKGNAME}/share/config/symbol/s_pen-g.bmp
${PKGNAME}/share/config/symbol/s_pen-r.bmp
${PKGNAME}/share/config/symbol/s_people.bmp
${PKGNAME}/share/config/symbol/s_smily_1.bmp
${PKGNAME}/share/config/symbol/s_smily_oh.bmp
${PKGNAME}/share/config/symbol/s_smily_sad.bmp
${PKGNAME}/share/config/symbol/s_snow.bmp
${PKGNAME}/share/config/symbol/s_star.bmp
${PKGNAME}/share/config/symbol/s_team.bmp
${PKGNAME}/share/config/symbol/s_x-g.bmp
${PKGNAME}/share/config/symbol/s_x-r.bmp
${PKGNAME}/share/config/symbol/s_x.bmp
${PKGNAME}/share/config/webcast/common.inc
${PKGNAME}/share/config/webcast/common.pl
${PKGNAME}/share/config/webcast/edit.asp
${PKGNAME}/share/config/webcast/edit.pl
${PKGNAME}/share/config/webcast/editpic.asp
${PKGNAME}/share/config/webcast/editpic.pl
${PKGNAME}/share/config/webcast/index.pl
${PKGNAME}/share/config/webcast/poll.asp
${PKGNAME}/share/config/webcast/poll.pl
${PKGNAME}/share/config/webcast/savepic.asp
${PKGNAME}/share/config/webcast/savepic.pl
${PKGNAME}/share/config/webcast/show.asp
${PKGNAME}/share/config/webcast/show.pl
${PKGNAME}/share/config/webcast/webcast.asp
${PKGNAME}/share/config/webcast/webcast.pl
${PKGNAME}/share/config/wizard/form/styles/beige.css
${PKGNAME}/share/config/wizard/form/styles/bgr.css
${PKGNAME}/share/config/wizard/form/styles/dark.css
${PKGNAME}/share/config/wizard/form/styles/grey.css
${PKGNAME}/share/config/wizard/form/styles/ibg.css
${PKGNAME}/share/config/wizard/form/styles/ice.css
${PKGNAME}/share/config/wizard/form/styles/orange.css
${PKGNAME}/share/config/wizard/form/styles/red.css
${PKGNAME}/share/config/wizard/form/styles/violet.css
${PKGNAME}/share/config/wizard/form/styles/water.css
${PKGNAME}/share/config/wizard/web/buttons/glas-blue.zip
${PKGNAME}/share/config/wizard/web/buttons/glas-green.zip
${PKGNAME}/share/config/wizard/web/buttons/glas-red.zip
${PKGNAME}/share/config/wizard/web/buttons/round-gorilla.zip
${PKGNAME}/share/config/wizard/web/buttons/round-white.zip
${PKGNAME}/share/config/wizard/web/buttons/simple.zip
${PKGNAME}/share/config/wizard/web/buttons/square-blue.zip
${PKGNAME}/share/config/wizard/web/buttons/square-gray.zip
${PKGNAME}/share/config/wizard/web/buttons/square-green.zip
${PKGNAME}/share/config/wizard/web/buttons/square-red.zip
${PKGNAME}/share/config/wizard/web/buttons/square-yellow.zip
${PKGNAME}/share/config/wizard/web/images/calc.gif
${PKGNAME}/share/config/wizard/web/images/draw.gif
${PKGNAME}/share/config/wizard/web/images/fls.gif
${PKGNAME}/share/config/wizard/web/images/graphics.gif
${PKGNAME}/share/config/wizard/web/images/html.gif
${PKGNAME}/share/config/wizard/web/images/impress.gif
${PKGNAME}/share/config/wizard/web/images/media.gif
${PKGNAME}/share/config/wizard/web/images/other.gif
${PKGNAME}/share/config/wizard/web/images/pdf.gif
${PKGNAME}/share/config/wizard/web/images/writer.gif
${PKGNAME}/share/config/wizard/web/layouts/diagonal/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_bottom/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_bottom/mainframe.html
${PKGNAME}/share/config/wizard/web/layouts/frame_bottom/tocframe.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_left/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_left/mainframe.html
${PKGNAME}/share/config/wizard/web/layouts/frame_left/tocframe.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_right/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_right/mainframe.html
${PKGNAME}/share/config/wizard/web/layouts/frame_right/tocframe.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_top/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/frame_top/mainframe.html
${PKGNAME}/share/config/wizard/web/layouts/frame_top/tocframe.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/layout.xsl
${PKGNAME}/share/config/wizard/web/layouts/layoutF.xsl
${PKGNAME}/share/config/wizard/web/layouts/layoutX.xsl
${PKGNAME}/share/config/wizard/web/layouts/simple/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/source.xml.xsl
${PKGNAME}/share/config/wizard/web/layouts/table_2/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/table_3/index.html.xsl
${PKGNAME}/share/config/wizard/web/layouts/zigzag/index.html.xsl
${PKGNAME}/share/config/wizard/web/preview.html
${PKGNAME}/share/config/wizard/web/styles/beige.css
${PKGNAME}/share/config/wizard/web/styles/bg.css
${PKGNAME}/share/config/wizard/web/styles/bgr.css
${PKGNAME}/share/config/wizard/web/styles/bgrey.css
${PKGNAME}/share/config/wizard/web/styles/bwb.css
${PKGNAME}/share/config/wizard/web/styles/bwo.css
${PKGNAME}/share/config/wizard/web/styles/dark.css
${PKGNAME}/share/config/wizard/web/styles/dp.css
${PKGNAME}/share/config/wizard/web/styles/forest.css
${PKGNAME}/share/config/wizard/web/styles/green.css
${PKGNAME}/share/config/wizard/web/styles/greenred.css
${PKGNAME}/share/config/wizard/web/styles/grey.css
${PKGNAME}/share/config/wizard/web/styles/ibg.css
${PKGNAME}/share/config/wizard/web/styles/ice.css
${PKGNAME}/share/config/wizard/web/styles/marine.css
${PKGNAME}/share/config/wizard/web/styles/orange.css
${PKGNAME}/share/config/wizard/web/styles/pc_old.css
${PKGNAME}/share/config/wizard/web/styles/red.css
${PKGNAME}/share/config/wizard/web/styles/rgb.css
${PKGNAME}/share/config/wizard/web/styles/strange.css
${PKGNAME}/share/config/wizard/web/styles/violet.css
${PKGNAME}/share/config/wizard/web/styles/water.css
${PKGNAME}/share/dtd/officedocument/1_0/Manifest.dtd
${PKGNAME}/share/dtd/officedocument/1_0/accelerator.dtd
${PKGNAME}/share/dtd/officedocument/1_0/chart.mod
${PKGNAME}/share/dtd/officedocument/1_0/datastyl.mod
${PKGNAME}/share/dtd/officedocument/1_0/defs.mod
${PKGNAME}/share/dtd/officedocument/1_0/dialog.dtd
${PKGNAME}/share/dtd/officedocument/1_0/drawing.mod
${PKGNAME}/share/dtd/officedocument/1_0/dtypes.mod
${PKGNAME}/share/dtd/officedocument/1_0/event.dtd
${PKGNAME}/share/dtd/officedocument/1_0/form.mod
${PKGNAME}/share/dtd/officedocument/1_0/groupuinames.dtd
${PKGNAME}/share/dtd/officedocument/1_0/image.dtd
${PKGNAME}/share/dtd/officedocument/1_0/libraries.dtd
${PKGNAME}/share/dtd/officedocument/1_0/library.dtd
${PKGNAME}/share/dtd/officedocument/1_0/menubar.dtd
${PKGNAME}/share/dtd/officedocument/1_0/meta.mod
${PKGNAME}/share/dtd/officedocument/1_0/module.dtd
${PKGNAME}/share/dtd/officedocument/1_0/nmspace.mod
${PKGNAME}/share/dtd/officedocument/1_0/office.dtd
${PKGNAME}/share/dtd/officedocument/1_0/office.mod
${PKGNAME}/share/dtd/officedocument/1_0/script.mod
${PKGNAME}/share/dtd/officedocument/1_0/settings.mod
${PKGNAME}/share/dtd/officedocument/1_0/statusbar.dtd
${PKGNAME}/share/dtd/officedocument/1_0/style.mod
${PKGNAME}/share/dtd/officedocument/1_0/table.mod
${PKGNAME}/share/dtd/officedocument/1_0/text.mod
${PKGNAME}/share/dtd/officedocument/1_0/toolbar.dtd
${PKGNAME}/share/extensions/dict-en/Lightproof.py
${PKGNAME}/share/extensions/dict-en/Linguistic.xcu
${PKGNAME}/share/extensions/dict-en/META-INF/manifest.xml
${PKGNAME}/share/extensions/dict-en/README.txt
${PKGNAME}/share/extensions/dict-en/README_en_AU.txt
${PKGNAME}/share/extensions/dict-en/README_en_CA.txt
${PKGNAME}/share/extensions/dict-en/README_en_GB.txt
${PKGNAME}/share/extensions/dict-en/README_en_GB_thes.txt
${PKGNAME}/share/extensions/dict-en/README_en_US.txt
${PKGNAME}/share/extensions/dict-en/README_en_ZA.txt
${PKGNAME}/share/extensions/dict-en/README_hyph_en_GB.txt
${PKGNAME}/share/extensions/dict-en/README_hyph_en_US.txt
${PKGNAME}/share/extensions/dict-en/README_lightproof_en.txt
${PKGNAME}/share/extensions/dict-en/WordNet_license.txt
${PKGNAME}/share/extensions/dict-en/affDescription.txt
${PKGNAME}/share/extensions/dict-en/description.xml
${PKGNAME}/share/extensions/dict-en/dialog/OptionsDialog.xcs
${PKGNAME}/share/extensions/dict-en/dialog/OptionsDialog.xcu
${PKGNAME}/share/extensions/dict-en/dialog/en.xdl
${PKGNAME}/share/extensions/dict-en/dialog/en_en_US.default
${PKGNAME}/share/extensions/dict-en/dialog/en_en_US.properties
${PKGNAME}/share/extensions/dict-en/dictionaries.xcu
${PKGNAME}/share/extensions/dict-en/en_AU.aff
${PKGNAME}/share/extensions/dict-en/en_AU.dic
${PKGNAME}/share/extensions/dict-en/en_CA.aff
${PKGNAME}/share/extensions/dict-en/en_CA.dic
${PKGNAME}/share/extensions/dict-en/en_GB.aff
${PKGNAME}/share/extensions/dict-en/en_GB.dic
${PKGNAME}/share/extensions/dict-en/en_US.aff
${PKGNAME}/share/extensions/dict-en/en_US.dic
${PKGNAME}/share/extensions/dict-en/en_ZA.aff
${PKGNAME}/share/extensions/dict-en/en_ZA.dic
${PKGNAME}/share/extensions/dict-en/hyph_en_GB.dic
${PKGNAME}/share/extensions/dict-en/hyph_en_US.dic
${PKGNAME}/share/extensions/dict-en/license.txt
${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_en.py
${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_handler_en.py
${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_impl_en.py
${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_opts_en.py
${PKGNAME}/share/extensions/dict-en/th_en_US_v2.dat
${PKGNAME}/share/extensions/dict-en/th_en_US_v2.idx
${PKGNAME}/share/extensions/dict-es/META-INF/manifest.xml
${PKGNAME}/share/extensions/dict-es/README_es_ES.txt
${PKGNAME}/share/extensions/dict-es/description.xml
${PKGNAME}/share/extensions/dict-es/dictionaries.xcu
${PKGNAME}/share/extensions/dict-es/es_ES.aff
${PKGNAME}/share/extensions/dict-es/es_ES.dic
${PKGNAME}/share/extensions/dict-fr/META-INF/manifest.xml
${PKGNAME}/share/extensions/dict-fr/README_fr.txt
${PKGNAME}/share/extensions/dict-fr/README_hyph_fr.txt
${PKGNAME}/share/extensions/dict-fr/README_thes_fr.txt
${PKGNAME}/share/extensions/dict-fr/description.xml
${PKGNAME}/share/extensions/dict-fr/dictionaries.xcu
${PKGNAME}/share/extensions/dict-fr/fr.aff
${PKGNAME}/share/extensions/dict-fr/fr.dic
${PKGNAME}/share/extensions/dict-fr/hyph-fr.tex
${PKGNAME}/share/extensions/dict-fr/hyph_fr.dic
${PKGNAME}/share/extensions/dict-fr/icon.png
${PKGNAME}/share/extensions/dict-fr/package-description.txt
${PKGNAME}/share/extensions/dict-fr/thes_fr.dat
${PKGNAME}/share/extensions/dict-fr/thes_fr.idx
${PKGNAME}/share/extensions/package.txt
${PKGNAME}/share/extensions/pdfimport/META-INF/manifest.xml
${PKGNAME}/share/extensions/pdfimport/basic/Module1.xba
${PKGNAME}/share/extensions/pdfimport/basic/TargetChooser.xdl
${PKGNAME}/share/extensions/pdfimport/basic/dialog.xlb
${PKGNAME}/share/extensions/pdfimport/basic/impress.png
${PKGNAME}/share/extensions/pdfimport/basic/script.xlb
${PKGNAME}/share/extensions/pdfimport/basic/writer.png
${PKGNAME}/share/extensions/pdfimport/description-en-US.txt
${PKGNAME}/share/extensions/pdfimport/description.xml
${PKGNAME}/share/extensions/pdfimport/images/extension_32.png
${PKGNAME}/share/extensions/pdfimport/pdf_import_filter.xcu
${PKGNAME}/share/extensions/pdfimport/pdf_types.xcu
${PKGNAME}/share/extensions/pdfimport/pdfimport.uno.so
${PKGNAME}/share/extensions/pdfimport/registration/LICENSE
${PKGNAME}/share/extensions/pdfimport/xpdfimport
${PKGNAME}/share/extensions/pdfimport/xpdfimport_err.pdf
${PKGNAME}/share/extensions/presentation-minimizer/META-INF/manifest.xml
${PKGNAME}/share/extensions/presentation-minimizer/SunPresentationMinimizer.uno.so
${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/extension_32.png
${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/minimizepresi_80.png
${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/opt_16.png
${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/opt_26.png
${PKGNAME}/share/extensions/presentation-minimizer/description-en-US.txt
${PKGNAME}/share/extensions/presentation-minimizer/description.xml
${PKGNAME}/share/extensions/presentation-minimizer/registration/LICENSE
${PKGNAME}/share/extensions/presentation-minimizer/registry/data/org/openoffice/Office/Addons.xcu
${PKGNAME}/share/extensions/presentation-minimizer/registry/data/org/openoffice/Office/ProtocolHandler.xcu
${PKGNAME}/share/extensions/presentation-minimizer/registry/data/org/openoffice/Office/extension/SunPresentationMinimizer.xcu
${PKGNAME}/share/extensions/presentation-minimizer/registry/schema/org/openoffice/Office/extension/SunPresentationMinimizer.xcs
${PKGNAME}/share/extensions/script-provider-for-python/META-INF/manifest.xml
${PKGNAME}/share/extensions/script-provider-for-python/components.rdb
${PKGNAME}/share/extensions/script-provider-for-python/description-en-US.txt
${PKGNAME}/share/extensions/script-provider-for-python/description.xml
${PKGNAME}/share/extensions/script-provider-for-python/pythonscript.py
${PKGNAME}/share/extensions/script-provider-for-python/registration/LICENSE
${PKGNAME}/share/fonts/truetype/DejaVuSans-Bold.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSans-BoldOblique.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSans-ExtraLight.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSans-Oblique.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSans.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed-Bold.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed-BoldOblique.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed-Oblique.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansMono-Bold.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansMono-BoldOblique.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansMono-Oblique.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSansMono.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerif-Bold.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerif-BoldItalic.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerif-Italic.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerif.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed-Bold.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed-BoldItalic.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed-Italic.ttf
${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed.ttf
${PKGNAME}/share/fonts/truetype/GenBasB.ttf
${PKGNAME}/share/fonts/truetype/GenBasBI.ttf
${PKGNAME}/share/fonts/truetype/GenBasI.ttf
${PKGNAME}/share/fonts/truetype/GenBasR.ttf
${PKGNAME}/share/fonts/truetype/GenBkBasB.ttf
${PKGNAME}/share/fonts/truetype/GenBkBasBI.ttf
${PKGNAME}/share/fonts/truetype/GenBkBasI.ttf
${PKGNAME}/share/fonts/truetype/GenBkBasR.ttf
${PKGNAME}/share/fonts/truetype/LiberationMono-Bold.ttf
${PKGNAME}/share/fonts/truetype/LiberationMono-BoldItalic.ttf
${PKGNAME}/share/fonts/truetype/LiberationMono-Italic.ttf
${PKGNAME}/share/fonts/truetype/LiberationMono-Regular.ttf
${PKGNAME}/share/fonts/truetype/LiberationSans-Bold.ttf
${PKGNAME}/share/fonts/truetype/LiberationSans-BoldItalic.ttf
${PKGNAME}/share/fonts/truetype/LiberationSans-Italic.ttf
${PKGNAME}/share/fonts/truetype/LiberationSans-Regular.ttf
${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-Bold.ttf
${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-BoldItalic.ttf
${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-Italic.ttf
${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-Regular.ttf
${PKGNAME}/share/fonts/truetype/LiberationSerif-Bold.ttf
${PKGNAME}/share/fonts/truetype/LiberationSerif-BoldItalic.ttf
${PKGNAME}/share/fonts/truetype/LiberationSerif-Italic.ttf
${PKGNAME}/share/fonts/truetype/LiberationSerif-Regular.ttf
${PKGNAME}/share/fonts/truetype/LinBiolinum_RB_G.ttf
${PKGNAME}/share/fonts/truetype/LinBiolinum_RI_G.ttf
${PKGNAME}/share/fonts/truetype/LinBiolinum_R_G.ttf
${PKGNAME}/share/fonts/truetype/LinLibertine_RBI_G.ttf
${PKGNAME}/share/fonts/truetype/LinLibertine_RB_G.ttf
${PKGNAME}/share/fonts/truetype/LinLibertine_RI_G.ttf
${PKGNAME}/share/fonts/truetype/LinLibertine_RZI_G.ttf
${PKGNAME}/share/fonts/truetype/LinLibertine_RZ_G.ttf
${PKGNAME}/share/fonts/truetype/LinLibertine_R_G.ttf
${PKGNAME}/share/fonts/truetype/fc_local.conf
${PKGNAME}/share/fonts/truetype/opens___.ttf
${PKGNAME}/share/gallery/apples.gif
${PKGNAME}/share/gallery/bigapple.gif
${PKGNAME}/share/gallery/bullets/blkpearl.gif
${PKGNAME}/share/gallery/bullets/bluarrow.gif
${PKGNAME}/share/gallery/bullets/bluball.gif
${PKGNAME}/share/gallery/bullets/bludiamd.gif
${PKGNAME}/share/gallery/bullets/bluered.gif
${PKGNAME}/share/gallery/bullets/blusqare.gif
${PKGNAME}/share/gallery/bullets/blustar.gif
${PKGNAME}/share/gallery/bullets/coffee_1.gif
${PKGNAME}/share/gallery/bullets/coffee_2.gif
${PKGNAME}/share/gallery/bullets/coffee_3.gif
${PKGNAME}/share/gallery/bullets/coffee_4.gif
${PKGNAME}/share/gallery/bullets/coffee_5.gif
${PKGNAME}/share/gallery/bullets/con-blue.gif
${PKGNAME}/share/gallery/bullets/con-cyan.gif
${PKGNAME}/share/gallery/bullets/con-green.gif
${PKGNAME}/share/gallery/bullets/con-lilac.gif
${PKGNAME}/share/gallery/bullets/con-oran.gif
${PKGNAME}/share/gallery/bullets/con-pink.gif
${PKGNAME}/share/gallery/bullets/con-red.gif
${PKGNAME}/share/gallery/bullets/con-yellow.gif
${PKGNAME}/share/gallery/bullets/corner_1.gif
${PKGNAME}/share/gallery/bullets/corner_2.gif
${PKGNAME}/share/gallery/bullets/corner_3.gif
${PKGNAME}/share/gallery/bullets/corner_4.gif
${PKGNAME}/share/gallery/bullets/darkball.gif
${PKGNAME}/share/gallery/bullets/darkblue.gif
${PKGNAME}/share/gallery/bullets/gldpearl.gif
${PKGNAME}/share/gallery/bullets/golfball.gif
${PKGNAME}/share/gallery/bullets/grnarrow.gif
${PKGNAME}/share/gallery/bullets/grnball.gif
${PKGNAME}/share/gallery/bullets/grndiamd.gif
${PKGNAME}/share/gallery/bullets/grnpearl.gif
${PKGNAME}/share/gallery/bullets/grnsqare.gif
${PKGNAME}/share/gallery/bullets/grnstar.gif
${PKGNAME}/share/gallery/bullets/gryarrow.gif
${PKGNAME}/share/gallery/bullets/gryball.gif
${PKGNAME}/share/gallery/bullets/grydiamd.gif
${PKGNAME}/share/gallery/bullets/grysqare.gif
${PKGNAME}/share/gallery/bullets/grystar.gif
${PKGNAME}/share/gallery/bullets/orgarrow.gif
${PKGNAME}/share/gallery/bullets/orgball.gif
${PKGNAME}/share/gallery/bullets/orgdiamd.gif
${PKGNAME}/share/gallery/bullets/orgsqare.gif
${PKGNAME}/share/gallery/bullets/orgstar.gif
${PKGNAME}/share/gallery/bullets/pebble_1.gif
${PKGNAME}/share/gallery/bullets/pebble_2.gif
${PKGNAME}/share/gallery/bullets/pebble_3.gif
${PKGNAME}/share/gallery/bullets/poliball.gif
${PKGNAME}/share/gallery/bullets/popcorn_1.gif
${PKGNAME}/share/gallery/bullets/popcorn_2.gif
${PKGNAME}/share/gallery/bullets/rainbow.gif
${PKGNAME}/share/gallery/bullets/redarrow.gif
${PKGNAME}/share/gallery/bullets/redball.gif
${PKGNAME}/share/gallery/bullets/reddiamd.gif
${PKGNAME}/share/gallery/bullets/redsqare.gif
${PKGNAME}/share/gallery/bullets/redstar.gif
${PKGNAME}/share/gallery/bullets/whtpearl.gif
${PKGNAME}/share/gallery/bullets/ylwarrow.gif
${PKGNAME}/share/gallery/bullets/ylwball.gif
${PKGNAME}/share/gallery/bullets/ylwdiamd.gif
${PKGNAME}/share/gallery/bullets/ylwsqare.gif
${PKGNAME}/share/gallery/bullets/ylwstar.gif
${PKGNAME}/share/gallery/flower.gif
${PKGNAME}/share/gallery/flowers.gif
${PKGNAME}/share/gallery/htmlexpo/bludown.gif
${PKGNAME}/share/gallery/htmlexpo/blufirs.gif
${PKGNAME}/share/gallery/htmlexpo/blufirs_.gif
${PKGNAME}/share/gallery/htmlexpo/blulast.gif
${PKGNAME}/share/gallery/htmlexpo/blulast_.gif
${PKGNAME}/share/gallery/htmlexpo/blunav.gif
${PKGNAME}/share/gallery/htmlexpo/blunext.gif
${PKGNAME}/share/gallery/htmlexpo/blunext_.gif
${PKGNAME}/share/gallery/htmlexpo/bluprev.gif
${PKGNAME}/share/gallery/htmlexpo/bluprev_.gif
${PKGNAME}/share/gallery/htmlexpo/blutext.gif
${PKGNAME}/share/gallery/htmlexpo/bluup.gif
${PKGNAME}/share/gallery/htmlexpo/cubdown.gif
${PKGNAME}/share/gallery/htmlexpo/cubfirs.gif
${PKGNAME}/share/gallery/htmlexpo/cubfirs_.gif
${PKGNAME}/share/gallery/htmlexpo/cublast.gif
${PKGNAME}/share/gallery/htmlexpo/cublast_.gif
${PKGNAME}/share/gallery/htmlexpo/cubnav.gif
${PKGNAME}/share/gallery/htmlexpo/cubnext.gif
${PKGNAME}/share/gallery/htmlexpo/cubnext_.gif
${PKGNAME}/share/gallery/htmlexpo/cubprev.gif
${PKGNAME}/share/gallery/htmlexpo/cubprev_.gif
${PKGNAME}/share/gallery/htmlexpo/cubtext.gif
${PKGNAME}/share/gallery/htmlexpo/cubup.gif
${PKGNAME}/share/gallery/htmlexpo/gredown.gif
${PKGNAME}/share/gallery/htmlexpo/grefirs.gif
${PKGNAME}/share/gallery/htmlexpo/grefirs_.gif
${PKGNAME}/share/gallery/htmlexpo/grelast.gif
${PKGNAME}/share/gallery/htmlexpo/grelast_.gif
${PKGNAME}/share/gallery/htmlexpo/grenav.gif
${PKGNAME}/share/gallery/htmlexpo/grenext.gif
${PKGNAME}/share/gallery/htmlexpo/grenext_.gif
${PKGNAME}/share/gallery/htmlexpo/greprev.gif
${PKGNAME}/share/gallery/htmlexpo/greprev_.gif
${PKGNAME}/share/gallery/htmlexpo/gretext.gif
${PKGNAME}/share/gallery/htmlexpo/greup.gif
${PKGNAME}/share/gallery/htmlexpo/simdown.gif
${PKGNAME}/share/gallery/htmlexpo/simfirs.gif
${PKGNAME}/share/gallery/htmlexpo/simfirs_.gif
${PKGNAME}/share/gallery/htmlexpo/simlast.gif
${PKGNAME}/share/gallery/htmlexpo/simlast_.gif
${PKGNAME}/share/gallery/htmlexpo/simnav.gif
${PKGNAME}/share/gallery/htmlexpo/simnext.gif
${PKGNAME}/share/gallery/htmlexpo/simnext_.gif
${PKGNAME}/share/gallery/htmlexpo/simprev.gif
${PKGNAME}/share/gallery/htmlexpo/simprev_.gif
${PKGNAME}/share/gallery/htmlexpo/simtext.gif
${PKGNAME}/share/gallery/htmlexpo/simup.gif
${PKGNAME}/share/gallery/rulers/blkballs.gif
${PKGNAME}/share/gallery/rulers/blurulr1.gif
${PKGNAME}/share/gallery/rulers/blurulr2.gif
${PKGNAME}/share/gallery/rulers/blurulr3.gif
${PKGNAME}/share/gallery/rulers/blurulr4.gif
${PKGNAME}/share/gallery/rulers/blurulr5.gif
${PKGNAME}/share/gallery/rulers/blurulr6.gif
${PKGNAME}/share/gallery/rulers/gldballs.gif
${PKGNAME}/share/gallery/rulers/grnballs.gif
${PKGNAME}/share/gallery/rulers/grnrulr1.gif
${PKGNAME}/share/gallery/rulers/grnrulr2.gif
${PKGNAME}/share/gallery/rulers/grnrulr3.gif
${PKGNAME}/share/gallery/rulers/grnrulr4.gif
${PKGNAME}/share/gallery/rulers/gryrulr1.gif
${PKGNAME}/share/gallery/rulers/gryrulr2.gif
${PKGNAME}/share/gallery/rulers/gryrulr3.gif
${PKGNAME}/share/gallery/rulers/orgrulr1.gif
${PKGNAME}/share/gallery/rulers/redrulr1.gif
${PKGNAME}/share/gallery/rulers/redrulr2.gif
${PKGNAME}/share/gallery/rulers/redrulr3.gif
${PKGNAME}/share/gallery/rulers/redrulr4.gif
${PKGNAME}/share/gallery/rulers/redrulr5.gif
${PKGNAME}/share/gallery/rulers/striped.gif
${PKGNAME}/share/gallery/rulers/whtballs.gif
${PKGNAME}/share/gallery/rulers/ylwrulr1.gif
${PKGNAME}/share/gallery/sg1.sdg
${PKGNAME}/share/gallery/sg1.sdv
${PKGNAME}/share/gallery/sg1.thm
${PKGNAME}/share/gallery/sg2.sdg
${PKGNAME}/share/gallery/sg2.sdv
${PKGNAME}/share/gallery/sg2.thm
${PKGNAME}/share/gallery/sg24.sdg
${PKGNAME}/share/gallery/sg24.sdv
${PKGNAME}/share/gallery/sg24.thm
${PKGNAME}/share/gallery/sg25.sdg
${PKGNAME}/share/gallery/sg25.sdv
${PKGNAME}/share/gallery/sg25.thm
${PKGNAME}/share/gallery/sg3.sdg
${PKGNAME}/share/gallery/sg3.sdv
${PKGNAME}/share/gallery/sg3.thm
${PKGNAME}/share/gallery/sg36.sdg
${PKGNAME}/share/gallery/sg36.sdv
${PKGNAME}/share/gallery/sg36.thm
${PKGNAME}/share/gallery/sg4.sdg
${PKGNAME}/share/gallery/sg4.sdv
${PKGNAME}/share/gallery/sg4.thm
${PKGNAME}/share/gallery/sg9.sdg
${PKGNAME}/share/gallery/sg9.sdv
${PKGNAME}/share/gallery/sg9.thm
${PKGNAME}/share/gallery/sky.gif
${PKGNAME}/share/gallery/sounds/apert.wav
${PKGNAME}/share/gallery/sounds/apert2.wav
${PKGNAME}/share/gallery/sounds/applause.wav
${PKGNAME}/share/gallery/sounds/beam.wav
${PKGNAME}/share/gallery/sounds/beam2.wav
${PKGNAME}/share/gallery/sounds/cow.wav
${PKGNAME}/share/gallery/sounds/curve.wav
${PKGNAME}/share/gallery/sounds/drama.wav
${PKGNAME}/share/gallery/sounds/explos.wav
${PKGNAME}/share/gallery/sounds/falling.wav
${PKGNAME}/share/gallery/sounds/glasses.wav
${PKGNAME}/share/gallery/sounds/gong.wav
${PKGNAME}/share/gallery/sounds/horse.wav
${PKGNAME}/share/gallery/sounds/kling.wav
${PKGNAME}/share/gallery/sounds/kongas.wav
${PKGNAME}/share/gallery/sounds/laser.wav
${PKGNAME}/share/gallery/sounds/left.wav
${PKGNAME}/share/gallery/sounds/nature1.wav
${PKGNAME}/share/gallery/sounds/nature2.wav
${PKGNAME}/share/gallery/sounds/ok.wav
${PKGNAME}/share/gallery/sounds/pluck.wav
${PKGNAME}/share/gallery/sounds/roll.wav
${PKGNAME}/share/gallery/sounds/romans.wav
${PKGNAME}/share/gallery/sounds/soft.wav
${PKGNAME}/share/gallery/sounds/space.wav
${PKGNAME}/share/gallery/sounds/space2.wav
${PKGNAME}/share/gallery/sounds/space3.wav
${PKGNAME}/share/gallery/sounds/sparcle.wav
${PKGNAME}/share/gallery/sounds/strom.wav
${PKGNAME}/share/gallery/sounds/theetone.wav
${PKGNAME}/share/gallery/sounds/top.wav
${PKGNAME}/share/gallery/sounds/train.wav
${PKGNAME}/share/gallery/sounds/untie.wav
${PKGNAME}/share/gallery/sounds/ups.wav
${PKGNAME}/share/gallery/sounds/wallewal.wav
${PKGNAME}/share/gallery/www-back/aqua.jpg
${PKGNAME}/share/gallery/www-back/bathroom.jpg
${PKGNAME}/share/gallery/www-back/blocks.jpg
${PKGNAME}/share/gallery/www-back/blow_green.jpg
${PKGNAME}/share/gallery/www-back/blueblop.jpg
${PKGNAME}/share/gallery/www-back/bulging.jpg
${PKGNAME}/share/gallery/www-back/canvas_blue.jpg
${PKGNAME}/share/gallery/www-back/cheese.jpg
${PKGNAME}/share/gallery/www-back/chocolate.jpg
${PKGNAME}/share/gallery/www-back/citrus.jpg
${PKGNAME}/share/gallery/www-back/confetti.jpg
${PKGNAME}/share/gallery/www-back/daisy.jpg
${PKGNAME}/share/gallery/www-back/fluffy-grey.jpg
${PKGNAME}/share/gallery/www-back/fluffy.jpg
${PKGNAME}/share/gallery/www-back/fuzzy-blue.jpg
${PKGNAME}/share/gallery/www-back/fuzzy-darkgrey.jpg
${PKGNAME}/share/gallery/www-back/fuzzy-grey.jpg
${PKGNAME}/share/gallery/www-back/fuzzy-lightgrey.jpg
${PKGNAME}/share/gallery/www-back/fuzzy_light.jpg
${PKGNAME}/share/gallery/www-back/gregre.gif
${PKGNAME}/share/gallery/www-back/grey.gif
${PKGNAME}/share/gallery/www-back/grypaws.gif
${PKGNAME}/share/gallery/www-back/ice-blue.jpg
${PKGNAME}/share/gallery/www-back/ice-light.jpg
${PKGNAME}/share/gallery/www-back/imitation_leather.jpg
${PKGNAME}/share/gallery/www-back/interstices.jpg
${PKGNAME}/share/gallery/www-back/jeans.jpg
${PKGNAME}/share/gallery/www-back/jeansblk.jpg
${PKGNAME}/share/gallery/www-back/lawn-artificial.jpg
${PKGNAME}/share/gallery/www-back/lawn.jpg
${PKGNAME}/share/gallery/www-back/lightblue-wet.jpg
${PKGNAME}/share/gallery/www-back/linen-fine.jpg
${PKGNAME}/share/gallery/www-back/lino-green.jpg
${PKGNAME}/share/gallery/www-back/liquid-blue.jpg
${PKGNAME}/share/gallery/www-back/marble.jpg
${PKGNAME}/share/gallery/www-back/marble_dark.jpg
${PKGNAME}/share/gallery/www-back/mazes.jpg
${PKGNAME}/share/gallery/www-back/mint.gif
${PKGNAME}/share/gallery/www-back/notes.gif
${PKGNAME}/share/gallery/www-back/pattern.jpg
${PKGNAME}/share/gallery/www-back/pebble-light.jpg
${PKGNAME}/share/gallery/www-back/pink.gif
${PKGNAME}/share/gallery/www-back/pool.jpg
${PKGNAME}/share/gallery/www-back/popcorn.jpg
${PKGNAME}/share/gallery/www-back/purple.jpg
${PKGNAME}/share/gallery/www-back/reddark.jpg
${PKGNAME}/share/gallery/www-back/rings-green.jpg
${PKGNAME}/share/gallery/www-back/rings-orange.jpg
${PKGNAME}/share/gallery/www-back/roses.jpg
${PKGNAME}/share/gallery/www-back/sand-light.jpg
${PKGNAME}/share/gallery/www-back/sand.jpg
${PKGNAME}/share/gallery/www-back/sky.jpg
${PKGNAME}/share/gallery/www-back/soft-structure_grey.jpg
${PKGNAME}/share/gallery/www-back/space.jpg
${PKGNAME}/share/gallery/www-back/stone-dark.jpg
${PKGNAME}/share/gallery/www-back/stone.jpg
${PKGNAME}/share/gallery/www-back/structure.jpg
${PKGNAME}/share/gallery/www-back/structure_darkgreen.gif
${PKGNAME}/share/gallery/www-back/structure_green.jpg
${PKGNAME}/share/gallery/www-back/wall-grey.jpg
${PKGNAME}/share/gallery/www-back/wet-turquoise.jpg
${PKGNAME}/share/gallery/www-back/wood.jpg
${PKGNAME}/share/gallery/www-graf/bluat.gif
${PKGNAME}/share/gallery/www-graf/bluback.gif
${PKGNAME}/share/gallery/www-graf/bludisk.gif
${PKGNAME}/share/gallery/www-graf/bludown.gif
${PKGNAME}/share/gallery/www-graf/bluhome.gif
${PKGNAME}/share/gallery/www-graf/bluinfo.gif
${PKGNAME}/share/gallery/www-graf/bluleft.gif
${PKGNAME}/share/gallery/www-graf/blumail.gif
${PKGNAME}/share/gallery/www-graf/bluminus.gif
${PKGNAME}/share/gallery/www-graf/bluplus.gif
${PKGNAME}/share/gallery/www-graf/bluquest.gif
${PKGNAME}/share/gallery/www-graf/bluright.gif
${PKGNAME}/share/gallery/www-graf/bluup.gif
${PKGNAME}/share/gallery/www-graf/gredisk.gif
${PKGNAME}/share/gallery/www-graf/gredown.gif
${PKGNAME}/share/gallery/www-graf/grehome.gif
${PKGNAME}/share/gallery/www-graf/greinfo.gif
${PKGNAME}/share/gallery/www-graf/greleft.gif
${PKGNAME}/share/gallery/www-graf/gremail.gif
${PKGNAME}/share/gallery/www-graf/greminus.gif
${PKGNAME}/share/gallery/www-graf/greplus.gif
${PKGNAME}/share/gallery/www-graf/grequest.gif
${PKGNAME}/share/gallery/www-graf/greright.gif
${PKGNAME}/share/gallery/www-graf/greup.gif
${PKGNAME}/share/gallery/www-graf/grnat.gif
${PKGNAME}/share/gallery/www-graf/grnback.gif
${PKGNAME}/share/gallery/www-graf/grndisk.gif
${PKGNAME}/share/gallery/www-graf/grndown.gif
${PKGNAME}/share/gallery/www-graf/grnexcla.gif
${PKGNAME}/share/gallery/www-graf/grnhome.gif
${PKGNAME}/share/gallery/www-graf/grninfo.gif
${PKGNAME}/share/gallery/www-graf/grnleft.gif
${PKGNAME}/share/gallery/www-graf/grnmail.gif
${PKGNAME}/share/gallery/www-graf/grnminus.gif
${PKGNAME}/share/gallery/www-graf/grnplus.gif
${PKGNAME}/share/gallery/www-graf/grnquest.gif
${PKGNAME}/share/gallery/www-graf/grnright.gif
${PKGNAME}/share/gallery/www-graf/grnup.gif
${PKGNAME}/share/gallery/www-graf/gryat.gif
${PKGNAME}/share/gallery/www-graf/gryback.gif
${PKGNAME}/share/gallery/www-graf/grydisk.gif
${PKGNAME}/share/gallery/www-graf/grydown.gif
${PKGNAME}/share/gallery/www-graf/gryhome.gif
${PKGNAME}/share/gallery/www-graf/gryinfo.gif
${PKGNAME}/share/gallery/www-graf/gryleft.gif
${PKGNAME}/share/gallery/www-graf/grymail.gif
${PKGNAME}/share/gallery/www-graf/gryminus.gif
${PKGNAME}/share/gallery/www-graf/gryplus.gif
${PKGNAME}/share/gallery/www-graf/gryquest.gif
${PKGNAME}/share/gallery/www-graf/gryright.gif
${PKGNAME}/share/gallery/www-graf/gryup.gif
${PKGNAME}/share/gallery/www-graf/men@work.gif
${PKGNAME}/share/gallery/www-graf/orgat.gif
${PKGNAME}/share/gallery/www-graf/orgback.gif
${PKGNAME}/share/gallery/www-graf/orgdisk.gif
${PKGNAME}/share/gallery/www-graf/orgdown.gif
${PKGNAME}/share/gallery/www-graf/orghome.gif
${PKGNAME}/share/gallery/www-graf/orginfo.gif
${PKGNAME}/share/gallery/www-graf/orgleft.gif
${PKGNAME}/share/gallery/www-graf/orgmail.gif
${PKGNAME}/share/gallery/www-graf/orgminus.gif
${PKGNAME}/share/gallery/www-graf/orgplus.gif
${PKGNAME}/share/gallery/www-graf/orgquest.gif
${PKGNAME}/share/gallery/www-graf/orgright.gif
${PKGNAME}/share/gallery/www-graf/orgup.gif
${PKGNAME}/share/gallery/www-graf/redat.gif
${PKGNAME}/share/gallery/www-graf/redback.gif
${PKGNAME}/share/gallery/www-graf/reddisk.gif
${PKGNAME}/share/gallery/www-graf/reddown.gif
${PKGNAME}/share/gallery/www-graf/redhome.gif
${PKGNAME}/share/gallery/www-graf/redinfo.gif
${PKGNAME}/share/gallery/www-graf/redleft.gif
${PKGNAME}/share/gallery/www-graf/redmail.gif
${PKGNAME}/share/gallery/www-graf/redminus.gif
${PKGNAME}/share/gallery/www-graf/redplus.gif
${PKGNAME}/share/gallery/www-graf/redquest.gif
${PKGNAME}/share/gallery/www-graf/redright.gif
${PKGNAME}/share/gallery/www-graf/redup.gif
${PKGNAME}/share/gallery/www-graf/turdown.gif
${PKGNAME}/share/gallery/www-graf/turhome.gif
${PKGNAME}/share/gallery/www-graf/turleft.gif
${PKGNAME}/share/gallery/www-graf/turright.gif
${PKGNAME}/share/gallery/www-graf/turup.gif
${PKGNAME}/share/gallery/www-graf/viohome.gif
${PKGNAME}/share/gallery/www-graf/violeft.gif
${PKGNAME}/share/gallery/www-graf/vioright.gif
${PKGNAME}/share/gallery/www-graf/vioup.gif
${PKGNAME}/share/gallery/www-graf/ylwdown.gif
${PKGNAME}/share/gallery/www-graf/ylwhome.gif
${PKGNAME}/share/gallery/www-graf/ylwleft.gif
${PKGNAME}/share/gallery/www-graf/ylwmail.gif
${PKGNAME}/share/gallery/www-graf/ylwright.gif
${PKGNAME}/share/gallery/www-graf/ylwup.gif
${PKGNAME}/share/psprint/driver/SGENPRT.PS
${PKGNAME}/share/psprint/driver/SGENT42.PS
${PKGNAME}/share/psprint/fontmetric/Courier-Bold.afm
${PKGNAME}/share/psprint/fontmetric/Courier-BoldOblique.afm
${PKGNAME}/share/psprint/fontmetric/Courier-Oblique.afm
${PKGNAME}/share/psprint/fontmetric/Courier.afm
${PKGNAME}/share/psprint/fontmetric/Helvetica-Bold.afm
${PKGNAME}/share/psprint/fontmetric/Helvetica-BoldOblique.afm
${PKGNAME}/share/psprint/fontmetric/Helvetica-Oblique.afm
${PKGNAME}/share/psprint/fontmetric/Helvetica.afm
${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-Book.afm
${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-BookOblique.afm
${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-Demi.afm
${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-DemiOblique.afm
${PKGNAME}/share/psprint/fontmetric/ITCBookman-Demi.afm
${PKGNAME}/share/psprint/fontmetric/ITCBookman-DemiItalic.afm
${PKGNAME}/share/psprint/fontmetric/ITCBookman-Light.afm
${PKGNAME}/share/psprint/fontmetric/ITCBookman-LightItalic.afm
${PKGNAME}/share/psprint/fontmetric/ITCZapfChancery-MediumItalic.afm
${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-Bold.afm
${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-BoldItalic.afm
${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-Italic.afm
${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-Roman.afm
${PKGNAME}/share/psprint/fontmetric/Palatino-Bold.afm
${PKGNAME}/share/psprint/fontmetric/Palatino-BoldItalic.afm
${PKGNAME}/share/psprint/fontmetric/Palatino-Italic.afm
${PKGNAME}/share/psprint/fontmetric/Palatino-Roman.afm
${PKGNAME}/share/psprint/fontmetric/Symbol.afm
${PKGNAME}/share/psprint/fontmetric/Times-Bold.afm
${PKGNAME}/share/psprint/fontmetric/Times-BoldItalic.afm
${PKGNAME}/share/psprint/fontmetric/Times-Italic.afm
${PKGNAME}/share/psprint/fontmetric/Times-Roman.afm
${PKGNAME}/share/psprint/fontmetric/ZapfDingbats.afm
${PKGNAME}/share/psprint/psprint.conf
${PKGNAME}/share/registry/Langpack-en-US.xcd
${PKGNAME}/share/registry/base.xcd
${PKGNAME}/share/registry/calc.xcd
${PKGNAME}/share/registry/draw.xcd
${PKGNAME}/share/registry/graphicfilter.xcd
${PKGNAME}/share/registry/impress.xcd
${PKGNAME}/share/registry/lingucomponent.xcd
${PKGNAME}/share/registry/main.xcd
${PKGNAME}/share/registry/math.xcd
${PKGNAME}/share/registry/oo-ad-ldap.xcd.sample
${PKGNAME}/share/registry/oo-ldap.xcd.sample
${PKGNAME}/share/registry/pyuno.xcd
${PKGNAME}/share/registry/res/fcfg_langpack_en-US.xcd
${PKGNAME}/share/registry/writer.xcd
${PKGNAME}/share/registry/xsltfilter.xcd
${PKGNAME}/share/template/common/layout/lyt-aqua.otp
${PKGNAME}/share/template/common/layout/lyt-blackandwhite.otp
${PKGNAME}/share/template/common/layout/lyt-bluegrey.otp
${PKGNAME}/share/template/common/layout/lyt-bluelinesgrad.otp
${PKGNAME}/share/template/common/layout/lyt-bluetitledown.otp
${PKGNAME}/share/template/common/layout/lyt-book.otp
${PKGNAME}/share/template/common/layout/lyt-brown.otp
${PKGNAME}/share/template/common/layout/lyt-charglow.otp
${PKGNAME}/share/template/common/layout/lyt-forest.otp
${PKGNAME}/share/template/common/layout/lyt-frepa.otp
${PKGNAME}/share/template/common/layout/lyt-glacier.otp
${PKGNAME}/share/template/common/layout/lyt-greengradlines.otp
${PKGNAME}/share/template/common/layout/lyt-keyboard.otp
${PKGNAME}/share/template/common/layout/lyt-movwaves.otp
${PKGNAME}/share/template/common/layout/lyt-numdark.otp
${PKGNAME}/share/template/common/layout/lyt-ocean.otp
${PKGNAME}/share/template/common/layout/lyt-organic.otp
${PKGNAME}/share/template/common/layout/lyt-paper.otp
${PKGNAME}/share/template/common/layout/lyt-rededges.otp
${PKGNAME}/share/template/common/layout/lyt-roundedrect.otp
${PKGNAME}/share/template/common/layout/lyt-sunrise.otp
${PKGNAME}/share/template/common/layout/lyt-techpoly.otp
${PKGNAME}/share/template/common/layout/lyt-tunnel.otp
${PKGNAME}/share/template/common/layout/lyt-water.otp
${PKGNAME}/share/template/common/layout/lyt-wine.otp
${PKGNAME}/share/template/en-US/internal/html.stw
${PKGNAME}/share/template/en-US/internal/idxexample.odt
${PKGNAME}/share/template/en-US/presnt/prs-novelty.otp
${PKGNAME}/share/template/en-US/presnt/prs-strategy.otp
${PKGNAME}/share/template/en-US/wizard/agenda/10grey.ott
${PKGNAME}/share/template/en-US/wizard/agenda/1simple.ott
${PKGNAME}/share/template/en-US/wizard/agenda/2elegant.ott
${PKGNAME}/share/template/en-US/wizard/agenda/3modern.ott
${PKGNAME}/share/template/en-US/wizard/agenda/4classic.ott
${PKGNAME}/share/template/en-US/wizard/agenda/5blue.ott
${PKGNAME}/share/template/en-US/wizard/agenda/6orange.ott
${PKGNAME}/share/template/en-US/wizard/agenda/7red.ott
${PKGNAME}/share/template/en-US/wizard/agenda/8green.ott
${PKGNAME}/share/template/en-US/wizard/agenda/9colorful.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-10grey.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-1simple.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-2elegant.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-3modern.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-4classic.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-5blue.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-6orange.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-7red.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-8green.ott
${PKGNAME}/share/template/en-US/wizard/agenda/aw-9colorful.ott
${PKGNAME}/share/template/en-US/wizard/fax/bus-classic-pri_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/bus-classic_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/bus-modern-pri_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/bus-modern_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/pri-bottle_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/pri-fax_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/pri-lines_f.ott
${PKGNAME}/share/template/en-US/wizard/fax/pri-marine_f.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-01.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-011.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-012.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-02.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-021.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-022.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-03.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-031.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-032.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-04.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-041.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-042.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-05.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-051.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-052.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-06.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-061.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-062.ott
${PKGNAME}/share/template/en-US/wizard/report/cnt-default.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-01.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-02.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-03.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-04.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-05.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-06.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-07.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-08.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-09.ott
${PKGNAME}/share/template/en-US/wizard/report/stl-default.ott
${PKGNAME}/share/template/en-US/wizard/styles/black_white.ots
${PKGNAME}/share/template/en-US/wizard/styles/blackberry.ots
${PKGNAME}/share/template/en-US/wizard/styles/default.ots
${PKGNAME}/share/template/en-US/wizard/styles/diner.ots
${PKGNAME}/share/template/en-US/wizard/styles/fall.ots
${PKGNAME}/share/template/en-US/wizard/styles/glacier.ots
${PKGNAME}/share/template/en-US/wizard/styles/green_grapes.ots
${PKGNAME}/share/template/en-US/wizard/styles/jeans.ots
${PKGNAME}/share/template/en-US/wizard/styles/marine.ots
${PKGNAME}/share/template/en-US/wizard/styles/millennium.ots
${PKGNAME}/share/template/en-US/wizard/styles/nature.ots
${PKGNAME}/share/template/en-US/wizard/styles/neon.ots
${PKGNAME}/share/template/en-US/wizard/styles/night.ots
${PKGNAME}/share/template/en-US/wizard/styles/nostalgic.ots
${PKGNAME}/share/template/en-US/wizard/styles/pastell.ots
${PKGNAME}/share/template/en-US/wizard/styles/pool.ots
${PKGNAME}/share/template/en-US/wizard/styles/pumpkin.ots
${PKGNAME}/share/template/en-US/wizard/styles/xos.ots
${PKGNAME}/share/template/wizard/bitmap/Import_1.bmp
${PKGNAME}/share/template/wizard/bitmap/Import_3.bmp
${PKGNAME}/share/template/wizard/bitmap/Import_4.bmp
${PKGNAME}/share/template/wizard/bitmap/MS-Import_2-1.bmp
${PKGNAME}/share/template/wizard/bitmap/MS-Import_2-2.bmp
${PKGNAME}/share/template/wizard/bitmap/MS-Import_2-3.bmp
${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-1.bmp
${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-2.bmp
${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-3.bmp
${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-4.bmp
${PKGNAME}/share/template/wizard/bitmap/brasil.gif
${PKGNAME}/share/template/wizard/bitmap/cancel_down.bmp
${PKGNAME}/share/template/wizard/bitmap/cancel_up.bmp
${PKGNAME}/share/template/wizard/bitmap/china.gif
${PKGNAME}/share/template/wizard/bitmap/denmark.gif
${PKGNAME}/share/template/wizard/bitmap/down.bmp
${PKGNAME}/share/template/wizard/bitmap/end.bmp
${PKGNAME}/share/template/wizard/bitmap/euro_1.bmp
${PKGNAME}/share/template/wizard/bitmap/euro_2.bmp
${PKGNAME}/share/template/wizard/bitmap/euro_3.bmp
${PKGNAME}/share/template/wizard/bitmap/finland.gif
${PKGNAME}/share/template/wizard/bitmap/france.gif
${PKGNAME}/share/template/wizard/bitmap/ftpconnected.gif
${PKGNAME}/share/template/wizard/bitmap/ftpconnecting.gif
${PKGNAME}/share/template/wizard/bitmap/ftperror.gif
${PKGNAME}/share/template/wizard/bitmap/ftpunknown.gif
${PKGNAME}/share/template/wizard/bitmap/germany.wmf
${PKGNAME}/share/template/wizard/bitmap/greece.gif
${PKGNAME}/share/template/wizard/bitmap/italia.gif
${PKGNAME}/share/template/wizard/bitmap/japan.gif
${PKGNAME}/share/template/wizard/bitmap/maximize.bmp
${PKGNAME}/share/template/wizard/bitmap/minimize.bmp
${PKGNAME}/share/template/wizard/bitmap/netherlands.gif
${PKGNAME}/share/template/wizard/bitmap/okay_down.bmp
${PKGNAME}/share/template/wizard/bitmap/okay_up.bmp
${PKGNAME}/share/template/wizard/bitmap/polska.gif
${PKGNAME}/share/template/wizard/bitmap/portugal.gif
${PKGNAME}/share/template/wizard/bitmap/report.bmp
${PKGNAME}/share/template/wizard/bitmap/russia.gif
${PKGNAME}/share/template/wizard/bitmap/spain.gif
${PKGNAME}/share/template/wizard/bitmap/sweden.gif
${PKGNAME}/share/template/wizard/bitmap/taiwan.gif
${PKGNAME}/share/template/wizard/bitmap/turkey.gif
${PKGNAME}/share/template/wizard/bitmap/tutorial_background.gif
${PKGNAME}/share/template/wizard/bitmap/up.bmp
${PKGNAME}/share/template/wizard/bitmap/usa.gif
${PKGNAME}/share/template/wizard/letter/bg/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/bg/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/bg/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/bg/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/bg/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/bg/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/bg/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/bg/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/bg/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/bg/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/cs/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/cs/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/cs/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/cs/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/cs/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/cs/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/cs/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/cs/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/cs/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/cs/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/da/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/da/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/da/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/da/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/da/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/da/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/da/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/da/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/da/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/da/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/de/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/de/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/de/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/de/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/de/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/de/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/de/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/de/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/de/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/de/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/en-GB/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/en-US/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/es/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/es/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/es/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/es/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/es/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/es/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/es/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/es/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/es/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/es/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/eu/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/eu/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/eu/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/eu/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/eu/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/eu/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/eu/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/eu/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/eu/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/eu/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/fr/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/fr/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/fr/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/fr/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/fr/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/fr/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/fr/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/fr/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/fr/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/fr/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/hu/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/hu/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/hu/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/hu/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/hu/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/hu/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/hu/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/hu/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/hu/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/hu/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/it/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/it/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/it/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/it/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/it/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/it/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/it/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/it/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/it/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/it/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/ja/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/ja/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/ja/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/ja/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/ja/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/ja/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/ja/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/ja/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/ja/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/ja/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/km/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/km/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/km/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/km/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/km/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/km/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/km/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/km/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/km/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/km/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/ko/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/ko/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/ko/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/ko/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/ko/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/ko/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/ko/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/ko/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/ko/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/ko/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/nl/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/nl/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/nl/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/nl/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/nl/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/nl/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/nl/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/nl/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/nl/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/nl/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/pl/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/pl/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/pl/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/pl/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/pl/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/pl/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/pl/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/pl/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/pl/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/pl/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/pt-BR/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/pt/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/pt/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/pt/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/pt/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/pt/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/pt/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/pt/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/pt/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/pt/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/pt/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/ru/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/ru/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/ru/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/ru/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/ru/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/ru/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/ru/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/ru/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/ru/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/ru/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/sk/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/sk/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/sk/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/sk/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/sk/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/sk/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/sk/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/sk/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/sk/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/sk/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/sl/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/sl/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/sl/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/sl/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/sl/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/sl/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/sl/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/sl/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/sl/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/sl/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/sv/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/sv/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/sv/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/sv/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/sv/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/sv/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/sv/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/sv/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/sv/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/sv/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/tr/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/tr/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/tr/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/tr/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/tr/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/tr/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/tr/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/tr/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/tr/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/tr/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/vi/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/vi/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/vi/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/vi/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/vi/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/vi/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/vi/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/vi/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/vi/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/vi/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/zh-CN/pri-redline_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/bus-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/bus-modern_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/bus-office_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/off-elegant_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/off-modern_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/off-office_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/pri-bottle_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/pri-mail_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/pri-marine_l.ott
${PKGNAME}/share/template/wizard/letter/zh-TW/pri-redline_l.ott
${PKGNAME}/share/wordbook/en-GB.dic
${PKGNAME}/share/wordbook/en-US.dic
${PKGNAME}/share/wordbook/sl.dic
${PKGNAME}/share/wordbook/technical.dic
${PKGNAME}/share/xdg/base.desktop
${PKGNAME}/share/xdg/calc.desktop
${PKGNAME}/share/xdg/draw.desktop
${PKGNAME}/share/xdg/impress.desktop
${PKGNAME}/share/xdg/javafilter.desktop
${PKGNAME}/share/xdg/math.desktop
${PKGNAME}/share/xdg/printeradmin.desktop
${PKGNAME}/share/xdg/qstart.desktop
${PKGNAME}/share/xdg/startcenter.desktop
${PKGNAME}/share/xdg/writer.desktop
${PKGNAME}/share/xslt/common/math.xsl
${PKGNAME}/share/xslt/common/measure_conversion.xsl
${PKGNAME}/share/xslt/docbook/DocBookTemplate.stw
${PKGNAME}/share/xslt/docbook/docbooktosoffheadings.xsl
${PKGNAME}/share/xslt/docbook/sofftodocbookheadings.xsl
${PKGNAME}/share/xslt/export/common/body.xsl
${PKGNAME}/share/xslt/export/common/ooo2ms_docpr.xsl
${PKGNAME}/share/xslt/export/common/styles/style_collector.xsl
${PKGNAME}/share/xslt/export/common/styles/style_mapping_css.xsl
${PKGNAME}/share/xslt/export/common/table/table.xsl
${PKGNAME}/share/xslt/export/common/table/table_cells.xsl
${PKGNAME}/share/xslt/export/common/table/table_columns.xsl
${PKGNAME}/share/xslt/export/common/table/table_rows.xsl
${PKGNAME}/share/xslt/export/common/table_of_content.xsl
${PKGNAME}/share/xslt/export/spreadsheetml/formular.xsl
${PKGNAME}/share/xslt/export/spreadsheetml/ooo2spreadsheetml.xsl
${PKGNAME}/share/xslt/export/spreadsheetml/style_mapping.xsl
${PKGNAME}/share/xslt/export/spreadsheetml/styles.xsl
${PKGNAME}/share/xslt/export/spreadsheetml/table.xsl
${PKGNAME}/share/xslt/export/uof/odf2uof_presentation.xsl
${PKGNAME}/share/xslt/export/uof/odf2uof_spreadsheet.xsl
${PKGNAME}/share/xslt/export/uof/odf2uof_text.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_border.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_custom_draw.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_draw.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_field.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_list.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_page.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_path.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_settings.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_table.xsl
${PKGNAME}/share/xslt/export/wordml/ooo2wordml_text.xsl
${PKGNAME}/share/xslt/export/xhtml/body.xsl
${PKGNAME}/share/xslt/export/xhtml/header.xsl
${PKGNAME}/share/xslt/export/xhtml/opendoc2xhtml.xsl
${PKGNAME}/share/xslt/export/xhtml/table.xsl
${PKGNAME}/share/xslt/import/common/ms2ooo_docpr.xsl
${PKGNAME}/share/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
${PKGNAME}/share/xslt/import/uof/uof2odf_presentation.xsl
${PKGNAME}/share/xslt/import/uof/uof2odf_spreadsheet.xsl
${PKGNAME}/share/xslt/import/uof/uof2odf_text.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_custom_draw.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_draw.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_field.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_list.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_page.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_path.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_props.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_settings.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_table.xsl
${PKGNAME}/share/xslt/import/wordml/wordml2ooo_text.xsl
${PKGNAME}/ure-link
${PKGNAME}/ure/bin/regcomp
${PKGNAME}/ure/bin/regcomp.bin
${PKGNAME}/ure/bin/regmerge
${PKGNAME}/ure/bin/regview
${PKGNAME}/ure/bin/startup.sh
${PKGNAME}/ure/bin/uno
${PKGNAME}/ure/bin/uno.bin
${PKGNAME}/ure/lib/acceptor.uno.so
${PKGNAME}/ure/lib/binaryurp.uno.so
${PKGNAME}/ure/lib/bootstrap.uno.so
${PKGNAME}/ure/lib/connector.uno.so
${PKGNAME}/ure/lib/introspection.uno.so
${PKGNAME}/ure/lib/invocadapt.uno.so
${PKGNAME}/ure/lib/invocation.uno.so
${PKGNAME}/ure/lib/jvmfwk3rc
${PKGNAME}/ure/lib/libaffine_uno_uno.so
${PKGNAME}/ure/lib/libgcc3_uno.so
${PKGNAME}/ure/lib/libjvmaccessgcc3.so.3
${PKGNAME}/ure/lib/libjvmfwk.so.3
${PKGNAME}/ure/lib/liblog_uno_uno.so
${PKGNAME}/ure/lib/libreg.so.3
${PKGNAME}/ure/lib/libsal_textenc.so
${PKGNAME}/ure/lib/libstore.so.3
${PKGNAME}/ure/lib/libuno_cppu.so.3
${PKGNAME}/ure/lib/libuno_cppuhelpergcc3.so.3
${PKGNAME}/ure/lib/libuno_purpenvhelpergcc3.so.3
${PKGNAME}/ure/lib/libuno_sal.so.3
${PKGNAME}/ure/lib/libuno_salhelpergcc3.so.3
${PKGNAME}/ure/lib/libunsafe_uno_uno.so
${PKGNAME}/ure/lib/libxmlreader.so
${PKGNAME}/ure/lib/namingservice.uno.so
${PKGNAME}/ure/lib/proxyfac.uno.so
${PKGNAME}/ure/lib/reflection.uno.so
${PKGNAME}/ure/lib/stocservices.uno.so
${PKGNAME}/ure/lib/streams.uno.so
${PKGNAME}/ure/lib/textinstream.uno.so
${PKGNAME}/ure/lib/textoutstream.uno.so
${PKGNAME}/ure/lib/unorc
${PKGNAME}/ure/lib/uuresolver.uno.so
${PKGNAME}/ure/share/misc/services.rdb
${PKGNAME}/ure/share/misc/types.rdb
@pkgdir ${PKGNAME}/presets/Scripts
@pkgdir ${PKGNAME}/presets/autocorr
@pkgdir ${PKGNAME}/presets/backup
@pkgdir ${PKGNAME}/presets/psprint/driver
@pkgdir ${PKGNAME}/presets/psprint/fontmetric
@pkgdir ${PKGNAME}/presets/store
@pkgdir ${PKGNAME}/presets/temp
@pkgdir ${PKGNAME}/presets/template
@pkgdir ${PKGNAME}/presets/uno_packages/cache
@pkgdir ${PKGNAME}/presets/wordbook
@pkgdir ${PKGNAME}/program/addin
@pkgdir ${PKGNAME}/program/plugin
@pkgdir ${PKGNAME}/share/prereg
@pkgdir ${PKGNAME}/share/samples/en-US
@pkgdir ${PKGNAME}/share/uno_packages/cache