summaryrefslogtreecommitdiffstats
path: root/ios/Mobile.xcodeproj/project.pbxproj
blob: 4981bb13caf48f037f8312f30645489876f37e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 50;
	objects = {

/* Begin PBXBuildFile section */
		BE00F8A021396585001CE2D4 /* loleaflet.html in Resources */ = {isa = PBXBuildFile; fileRef = BE00F89621396585001CE2D4 /* loleaflet.html */; };
		BE00F8A121396585001CE2D4 /* bundle.css in Resources */ = {isa = PBXBuildFile; fileRef = BE00F89721396585001CE2D4 /* bundle.css */; };
		BE00F8A321396585001CE2D4 /* bundle.js in Resources */ = {isa = PBXBuildFile; fileRef = BE00F89921396585001CE2D4 /* bundle.js */; };
		BE00F8A721396585001CE2D4 /* loleaflet-help.html in Resources */ = {isa = PBXBuildFile; fileRef = BE00F89D21396585001CE2D4 /* loleaflet-help.html */; };
		BE00F8A821396585001CE2D4 /* images in Resources */ = {isa = PBXBuildFile; fileRef = BE00F89E21396585001CE2D4 /* images */; };
		BE00F8B5213ED543001CE2D4 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = BE00F8B4213ED543001CE2D4 /* libiconv.tbd */; };
		BE00F8B7213ED573001CE2D4 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = BE00F8B6213ED573001CE2D4 /* libz.tbd */; };
		BE18C7DE226DE09A001AD27E /* Branding in Resources */ = {isa = PBXBuildFile; fileRef = BE18C7DD226DE09A001AD27E /* Branding */; };
		BE2FB29E24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE2FB29D24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.m */; };
		BE512CBA2518DE6E00921C15 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = BE512CB92518DE6400921C15 /* libsqlite3.tbd */; };
		BE5EB5C1213FE29900E0826C /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5B9213FE29900E0826C /* Log.cpp */; };
		BE5EB5C2213FE29900E0826C /* SpookyV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5BA213FE29900E0826C /* SpookyV2.cpp */; };
		BE5EB5C3213FE29900E0826C /* Session.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5BB213FE29900E0826C /* Session.cpp */; };
		BE5EB5C4213FE29900E0826C /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5BC213FE29900E0826C /* Util.cpp */; };
		BE5EB5C5213FE29900E0826C /* MessageQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5BD213FE29900E0826C /* MessageQueue.cpp */; };
		BE5EB5C6213FE29900E0826C /* SigUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5BE213FE29900E0826C /* SigUtil.cpp */; };
		BE5EB5C7213FE29900E0826C /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5BF213FE29900E0826C /* Protocol.cpp */; };
		BE5EB5C8213FE29900E0826C /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5C0213FE29900E0826C /* FileUtil.cpp */; };
		BE5EB5CF213FE2D000E0826C /* ClientSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5CC213FE2D000E0826C /* ClientSession.cpp */; };
		BE5EB5D0213FE2D000E0826C /* TileCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5CD213FE2D000E0826C /* TileCache.cpp */; };
		BE5EB5D22140039100E0826C /* LOOLWSD.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D12140039100E0826C /* LOOLWSD.cpp */; };
		BE5EB5D421400DC100E0826C /* DocumentBroker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D321400DC100E0826C /* DocumentBroker.cpp */; };
		BE5EB5D621401E0F00E0826C /* Storage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D521401E0F00E0826C /* Storage.cpp */; };
		BE5EB5DA2140363100E0826C /* ios.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE5EB5D92140363100E0826C /* ios.mm */; };
		BE5EB5DC2140480B00E0826C /* ICU.dat in Resources */ = {isa = PBXBuildFile; fileRef = BE5EB5DB2140480B00E0826C /* ICU.dat */; };
		BE6362C22153B5B500F4237E /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE6362C12153B5B500F4237E /* MobileCoreServices.framework */; };
		BE7228E22417BC9F000ADABD /* StringVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE7228E02417BC9F000ADABD /* StringVector.cpp */; };
		BE7D6A6B23FAA8B500C2E605 /* loolkitconfig.xcu in Resources */ = {isa = PBXBuildFile; fileRef = BE7D6A6A23FAA8B500C2E605 /* loolkitconfig.xcu */; };
		BE80E43221AD92F700859C97 /* Fonts in Resources */ = {isa = PBXBuildFile; fileRef = BE80E43121AD92F600859C97 /* Fonts */; };
		BE80E45821B68F5700859C97 /* TemplateCollectionViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE80E45721B68F5700859C97 /* TemplateCollectionViewController.mm */; };
		BE80E45E21B6CEF200859C97 /* TemplateSectionHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = BE80E45D21B6CEF200859C97 /* TemplateSectionHeaderView.m */; };
		BE80E46821B7066D00859C97 /* Templates in Resources */ = {isa = PBXBuildFile; fileRef = BE80E46721B7066C00859C97 /* Templates */; };
		BE8D772C2136762500AC58EA /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE8D772B2136762500AC58EA /* AppDelegate.mm */; };
		BE8D772F2136762500AC58EA /* DocumentBrowserViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE8D772E2136762500AC58EA /* DocumentBrowserViewController.mm */; };
		BE8D77322136762500AC58EA /* DocumentViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE8D77312136762500AC58EA /* DocumentViewController.mm */; };
		BE8D77352136762500AC58EA /* CODocument.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE8D77342136762500AC58EA /* CODocument.mm */; };
		BE8D77382136762500AC58EA /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BE8D77362136762500AC58EA /* Main.storyboard */; };
		BE8D773A2136762600AC58EA /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BE8D77392136762600AC58EA /* Assets.xcassets */; };
		BE8D773D2136762600AC58EA /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BE8D773B2136762600AC58EA /* LaunchScreen.storyboard */; };
		BE8D77402136762600AC58EA /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = BE8D773F2136762600AC58EA /* main.m */; };
		BE8D85CA214055F3009F1860 /* offapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85BC214055F2009F1860 /* offapi.rdb */; };
		BE8D85CB214055F3009F1860 /* share in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85BD214055F2009F1860 /* share */; };
		BE8D85CC214055F3009F1860 /* config in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85BE214055F2009F1860 /* config */; };
		BE8D85CE214055F3009F1860 /* oovbaapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C0214055F2009F1860 /* oovbaapi.rdb */; };
		BE8D85CF214055F3009F1860 /* udkapi.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C1214055F2009F1860 /* udkapi.rdb */; };
		BE8D85D0214055F3009F1860 /* services in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C2214055F2009F1860 /* services */; };
		BE8D85D1214055F3009F1860 /* services.rdb in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C3214055F2009F1860 /* services.rdb */; };
		BE8D85D2214055F3009F1860 /* program in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C4214055F3009F1860 /* program */; };
		BE8D85D4214055F3009F1860 /* fundamentalrc in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C6214055F3009F1860 /* fundamentalrc */; };
		BE8D85D5214055F3009F1860 /* unorc in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C7214055F3009F1860 /* unorc */; };
		BE8D85D6214055F3009F1860 /* rc in Resources */ = {isa = PBXBuildFile; fileRef = BE8D85C8214055F3009F1860 /* rc */; };
		BEA2835621467FDD00848631 /* Kit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA2835521467FDD00848631 /* Kit.cpp */; };
		BEA283582146945500848631 /* ChildSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA283572146945500848631 /* ChildSession.cpp */; };
		BEA2835A21470A1C00848631 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEA2835921470A1C00848631 /* WebKit.framework */; };
		BEA2835D21498AD400848631 /* Socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA2835C21498AD400848631 /* Socket.cpp */; };
		BEA28360214ACA8500848631 /* FakeSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA2835F214ACA8500848631 /* FakeSocket.cpp */; };
		BEA28377214FFD8C00848631 /* Unit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA28376214FFD8C00848631 /* Unit.cpp */; };
		BEABFC6824AC94C3004DE339 /* Authorization.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEABFC6624AC94C3004DE339 /* Authorization.cpp */; };
		BEB0E5D921C7CA800085A0CF /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = BEB0E5D821C7CA800085A0CF /* Settings.bundle */; };
		BEBF3EB0246EB1C800415E87 /* RequestDetails.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEBF3EAF246EB1C800415E87 /* RequestDetails.cpp */; };
		BECD984024336DD400016117 /* device-mobile.css in Resources */ = {isa = PBXBuildFile; fileRef = BECD983E24336DD400016117 /* device-mobile.css */; };
		BECD984124336DD400016117 /* device-tablet.css in Resources */ = {isa = PBXBuildFile; fileRef = BECD983F24336DD400016117 /* device-tablet.css */; };
		BEDCC84E2452F82800FB02BD /* MobileApp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEDCC84C2452F82800FB02BD /* MobileApp.cpp */; };
		BEDCC8992456FFAD00FB02BD /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = BEDCC8982456FFAC00FB02BD /* SceneDelegate.m */; };
		BEFB1EE121C29CC70081D757 /* L10n.mm in Sources */ = {isa = PBXBuildFile; fileRef = BEFB1EE021C29CC70081D757 /* L10n.mm */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		BE00F89621396585001CE2D4 /* loleaflet.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = loleaflet.html; path = ../../../loleaflet/dist/loleaflet.html; sourceTree = "<group>"; };
		BE00F89721396585001CE2D4 /* bundle.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; name = bundle.css; path = ../../../loleaflet/dist/bundle.css; sourceTree = "<group>"; };
		BE00F89921396585001CE2D4 /* bundle.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; name = bundle.js; path = ../../../loleaflet/dist/bundle.js; sourceTree = "<group>"; };
		BE00F89D21396585001CE2D4 /* loleaflet-help.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = "loleaflet-help.html"; path = "../../../loleaflet/dist/loleaflet-help.html"; sourceTree = "<group>"; };
		BE00F89E21396585001CE2D4 /* images */ = {isa = PBXFileReference; lastKnownFileType = folder; name = images; path = ../../../loleaflet/dist/images; sourceTree = "<group>"; };
		BE00F8B4213ED543001CE2D4 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
		BE00F8B6213ED573001CE2D4 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
		BE18C7DD226DE09A001AD27E /* Branding */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Branding; path = Mobile/Branding; sourceTree = SOURCE_ROOT; };
		BE28F880228CE04600C00C48 /* langselect.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = langselect.hxx; path = "../../ios-device/desktop/source/app/langselect.hxx"; sourceTree = "<group>"; };
		BE28F881228CE04600C00C48 /* officeipcthread.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = officeipcthread.hxx; path = "../../ios-device/desktop/source/app/officeipcthread.hxx"; sourceTree = "<group>"; };
		BE28F882228CE04600C00C48 /* opencl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opencl.cxx; path = "../../ios-device/desktop/source/app/opencl.cxx"; sourceTree = "<group>"; };
		BE28F883228CE04600C00C48 /* dispatchwatcher.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dispatchwatcher.hxx; path = "../../ios-device/desktop/source/app/dispatchwatcher.hxx"; sourceTree = "<group>"; };
		BE28F884228CE04600C00C48 /* desktopcontext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = desktopcontext.hxx; path = "../../ios-device/desktop/source/app/desktopcontext.hxx"; sourceTree = "<group>"; };
		BE28F885228CE04600C00C48 /* cmdlinehelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = cmdlinehelp.hxx; path = "../../ios-device/desktop/source/app/cmdlinehelp.hxx"; sourceTree = "<group>"; };
		BE28F886228CE04600C00C48 /* desktopcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktopcontext.cxx; path = "../../ios-device/desktop/source/app/desktopcontext.cxx"; sourceTree = "<group>"; };
		BE28F887228CE04600C00C48 /* cmdlineargs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlineargs.cxx; path = "../../ios-device/desktop/source/app/cmdlineargs.cxx"; sourceTree = "<group>"; };
		BE28F888228CE04600C00C48 /* updater.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = updater.cxx; path = "../../ios-device/desktop/source/app/updater.cxx"; sourceTree = "<group>"; };
		BE28F889228CE04600C00C48 /* dispatchwatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchwatcher.cxx; path = "../../ios-device/desktop/source/app/dispatchwatcher.cxx"; sourceTree = "<group>"; };
		BE28F88A228CE04600C00C48 /* userinstall.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = userinstall.hxx; path = "../../ios-device/desktop/source/app/userinstall.hxx"; sourceTree = "<group>"; };
		BE28F88B228CE04600C00C48 /* check_ext_deps.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = check_ext_deps.cxx; path = "../../ios-device/desktop/source/app/check_ext_deps.cxx"; sourceTree = "<group>"; };
		BE28F88C228CE04600C00C48 /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = "../../ios-device/desktop/source/app/app.cxx"; sourceTree = "<group>"; };
		BE28F88D228CE04600C00C48 /* crashreport.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = crashreport.cxx; path = "../../ios-device/desktop/source/app/crashreport.cxx"; sourceTree = "<group>"; };
		BE28F88E228CE04600C00C48 /* updater.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = updater.hxx; path = "../../ios-device/desktop/source/app/updater.hxx"; sourceTree = "<group>"; };
		BE28F88F228CE04600C00C48 /* cmdlineargs.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = cmdlineargs.hxx; path = "../../ios-device/desktop/source/app/cmdlineargs.hxx"; sourceTree = "<group>"; };
		BE28F890228CE04600C00C48 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = main.c; path = "../../ios-device/desktop/source/app/main.c"; sourceTree = "<group>"; };
		BE28F891228CE04700C00C48 /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = "../../ios-device/desktop/source/app/appinit.cxx"; sourceTree = "<group>"; };
		BE28F892228CE04700C00C48 /* sofficemain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sofficemain.cxx; path = "../../ios-device/desktop/source/app/sofficemain.cxx"; sourceTree = "<group>"; };
		BE28F893228CE04700C00C48 /* cmdlinehelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdlinehelp.cxx; path = "../../ios-device/desktop/source/app/cmdlinehelp.cxx"; sourceTree = "<group>"; };
		BE28F894228CE04700C00C48 /* officeipcthread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = officeipcthread.cxx; path = "../../ios-device/desktop/source/app/officeipcthread.cxx"; sourceTree = "<group>"; };
		BE28F895228CE04700C00C48 /* sofficemain.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sofficemain.h; path = "../../ios-device/desktop/source/app/sofficemain.h"; sourceTree = "<group>"; };
		BE28F896228CE04700C00C48 /* langselect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langselect.cxx; path = "../../ios-device/desktop/source/app/langselect.cxx"; sourceTree = "<group>"; };
		BE28F897228CE04700C00C48 /* lockfile2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lockfile2.cxx; path = "../../ios-device/desktop/source/app/lockfile2.cxx"; sourceTree = "<group>"; };
		BE28F898228CE04700C00C48 /* userinstall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = userinstall.cxx; path = "../../ios-device/desktop/source/app/userinstall.cxx"; sourceTree = "<group>"; };
		BE2FB29C24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CollaboraOnlineWebViewKeyboardManager.h; path = CollaboraOnlineWebViewKeyboardManager/CollaboraOnlineWebViewKeyboardManager.h; sourceTree = SOURCE_ROOT; };
		BE2FB29D24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CollaboraOnlineWebViewKeyboardManager.m; path = CollaboraOnlineWebViewKeyboardManager/CollaboraOnlineWebViewKeyboardManager.m; sourceTree = SOURCE_ROOT; };
		BE34D10F218B66B600815297 /* docsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh.cxx; path = "../../ios-device/sw/source/uibase/app/docsh.cxx"; sourceTree = "<group>"; };
		BE34D110218B66B600815297 /* docstyle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstyle.cxx; path = "../../ios-device/sw/source/uibase/app/docstyle.cxx"; sourceTree = "<group>"; };
		BE34D111218B66B600815297 /* docshdrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docshdrw.cxx; path = "../../ios-device/sw/source/uibase/app/docshdrw.cxx"; sourceTree = "<group>"; };
		BE34D112218B66B600815297 /* docshini.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docshini.cxx; path = "../../ios-device/sw/source/uibase/app/docshini.cxx"; sourceTree = "<group>"; };
		BE34D113218B66B600815297 /* swmodul1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodul1.cxx; path = "../../ios-device/sw/source/uibase/app/swmodul1.cxx"; sourceTree = "<group>"; };
		BE34D114218B66B600815297 /* swdllimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = swdllimpl.hxx; path = "../../ios-device/sw/source/uibase/app/swdllimpl.hxx"; sourceTree = "<group>"; };
		BE34D115218B66B600815297 /* swwait.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swwait.cxx; path = "../../ios-device/sw/source/uibase/app/swwait.cxx"; sourceTree = "<group>"; };
		BE34D116218B66B600815297 /* swdll.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swdll.cxx; path = "../../ios-device/sw/source/uibase/app/swdll.cxx"; sourceTree = "<group>"; };
		BE34D117218B66B600815297 /* apphdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apphdl.cxx; path = "../../ios-device/sw/source/uibase/app/apphdl.cxx"; sourceTree = "<group>"; };
		BE34D118218B66B600815297 /* appenv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appenv.cxx; path = "../../ios-device/sw/source/uibase/app/appenv.cxx"; sourceTree = "<group>"; };
		BE34D119218B66B600815297 /* appenv.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = appenv.hxx; path = "../../ios-device/sw/source/uibase/app/appenv.hxx"; sourceTree = "<group>"; };
		BE34D11A218B66B600815297 /* swmodule.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = swmodule.cxx; path = "../../ios-device/sw/source/uibase/app/swmodule.cxx"; sourceTree = "<group>"; };
		BE34D11B218B66B600815297 /* docst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docst.cxx; path = "../../ios-device/sw/source/uibase/app/docst.cxx"; sourceTree = "<group>"; };
		BE34D11C218B66B600815297 /* applab.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = applab.cxx; path = "../../ios-device/sw/source/uibase/app/applab.cxx"; sourceTree = "<group>"; };
		BE34D11D218B66B600815297 /* docsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docsh2.cxx; path = "../../ios-device/sw/source/uibase/app/docsh2.cxx"; sourceTree = "<group>"; };
		BE34D11E218B66B600815297 /* mainwn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mainwn.cxx; path = "../../ios-device/sw/source/uibase/app/mainwn.cxx"; sourceTree = "<group>"; };
		BE34D11F218B66B600815297 /* appopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopt.cxx; path = "../../ios-device/sw/source/uibase/app/appopt.cxx"; sourceTree = "<group>"; };
		BE34D121218B678F00815297 /* annotsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotsh.cxx; path = "../../ios-device/sw/source/uibase/shells/annotsh.cxx"; sourceTree = "<group>"; };
		BE34D122218B678F00815297 /* beziersh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = beziersh.cxx; path = "../../ios-device/sw/source/uibase/shells/beziersh.cxx"; sourceTree = "<group>"; };
		BE34D123218B678F00815297 /* olesh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = olesh.cxx; path = "../../ios-device/sw/source/uibase/shells/olesh.cxx"; sourceTree = "<group>"; };
		BE34D124218B678F00815297 /* drwtxtex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwtxtex.cxx; path = "../../ios-device/sw/source/uibase/shells/drwtxtex.cxx"; sourceTree = "<group>"; };
		BE34D125218B678F00815297 /* textsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh.cxx; path = "../../ios-device/sw/source/uibase/shells/textsh.cxx"; sourceTree = "<group>"; };
		BE34D126218B678F00815297 /* textfld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textfld.cxx; path = "../../ios-device/sw/source/uibase/shells/textfld.cxx"; sourceTree = "<group>"; };
		BE34D127218B678F00815297 /* slotadd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slotadd.cxx; path = "../../ios-device/sw/source/uibase/shells/slotadd.cxx"; sourceTree = "<group>"; };
		BE34D128218B678F00815297 /* listsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = listsh.cxx; path = "../../ios-device/sw/source/uibase/shells/listsh.cxx"; sourceTree = "<group>"; };
		BE34D129218B678F00815297 /* grfshex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfshex.cxx; path = "../../ios-device/sw/source/uibase/shells/grfshex.cxx"; sourceTree = "<group>"; };
		BE34D12A218B679000815297 /* frmsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmsh.cxx; path = "../../ios-device/sw/source/uibase/shells/frmsh.cxx"; sourceTree = "<group>"; };
		BE34D12B218B679000815297 /* basesh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = basesh.cxx; path = "../../ios-device/sw/source/uibase/shells/basesh.cxx"; sourceTree = "<group>"; };
		BE34D12C218B679000815297 /* textidx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textidx.cxx; path = "../../ios-device/sw/source/uibase/shells/textidx.cxx"; sourceTree = "<group>"; };
		BE34D12D218B679000815297 /* txtattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtattr.cxx; path = "../../ios-device/sw/source/uibase/shells/txtattr.cxx"; sourceTree = "<group>"; };
		BE34D12E218B679000815297 /* txtcrsr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtcrsr.cxx; path = "../../ios-device/sw/source/uibase/shells/txtcrsr.cxx"; sourceTree = "<group>"; };
		BE34D12F218B679000815297 /* txtnum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = txtnum.cxx; path = "../../ios-device/sw/source/uibase/shells/txtnum.cxx"; sourceTree = "<group>"; };
		BE34D130218B679000815297 /* drwbassh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwbassh.cxx; path = "../../ios-device/sw/source/uibase/shells/drwbassh.cxx"; sourceTree = "<group>"; };
		BE34D131218B679000815297 /* mediash.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediash.cxx; path = "../../ios-device/sw/source/uibase/shells/mediash.cxx"; sourceTree = "<group>"; };
		BE34D132218B679000815297 /* textdrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textdrw.cxx; path = "../../ios-device/sw/source/uibase/shells/textdrw.cxx"; sourceTree = "<group>"; };
		BE34D133218B679000815297 /* drawsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawsh.cxx; path = "../../ios-device/sw/source/uibase/shells/drawsh.cxx"; sourceTree = "<group>"; };
		BE34D134218B679000815297 /* drformsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drformsh.cxx; path = "../../ios-device/sw/source/uibase/shells/drformsh.cxx"; sourceTree = "<group>"; };
		BE34D135218B679000815297 /* navsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = navsh.cxx; path = "../../ios-device/sw/source/uibase/shells/navsh.cxx"; sourceTree = "<group>"; };
		BE34D136218B679000815297 /* textglos.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textglos.cxx; path = "../../ios-device/sw/source/uibase/shells/textglos.cxx"; sourceTree = "<group>"; };
		BE34D137218B679000815297 /* drawdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdlg.cxx; path = "../../ios-device/sw/source/uibase/shells/drawdlg.cxx"; sourceTree = "<group>"; };
		BE34D138218B679000815297 /* tabsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabsh.cxx; path = "../../ios-device/sw/source/uibase/shells/tabsh.cxx"; sourceTree = "<group>"; };
		BE34D139218B679000815297 /* grfsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfsh.cxx; path = "../../ios-device/sw/source/uibase/shells/grfsh.cxx"; sourceTree = "<group>"; };
		BE34D13A218B679000815297 /* langhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = langhelper.cxx; path = "../../ios-device/sw/source/uibase/shells/langhelper.cxx"; sourceTree = "<group>"; };
		BE34D13B218B679000815297 /* textsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh2.cxx; path = "../../ios-device/sw/source/uibase/shells/textsh2.cxx"; sourceTree = "<group>"; };
		BE34D13C218B679000815297 /* textsh1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsh1.cxx; path = "../../ios-device/sw/source/uibase/shells/textsh1.cxx"; sourceTree = "<group>"; };
		BE34D13D218B679000815297 /* drwtxtsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drwtxtsh.cxx; path = "../../ios-device/sw/source/uibase/shells/drwtxtsh.cxx"; sourceTree = "<group>"; };
		BE34D141218CF8AD00815297 /* menuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuwindow.cxx; path = "../../ios-device/vcl/source/window/menuwindow.cxx"; sourceTree = "<group>"; };
		BE34D142218CF8AD00815297 /* syschild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syschild.cxx; path = "../../ios-device/vcl/source/window/syschild.cxx"; sourceTree = "<group>"; };
		BE34D143218CF8AD00815297 /* accessibility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibility.cxx; path = "../../ios-device/vcl/source/window/accessibility.cxx"; sourceTree = "<group>"; };
		BE34D144218CF8AD00815297 /* debugevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debugevent.cxx; path = "../../ios-device/vcl/source/window/debugevent.cxx"; sourceTree = "<group>"; };
		BE34D145218CF8AD00815297 /* globalization.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = globalization.cxx; path = "../../ios-device/vcl/source/window/globalization.cxx"; sourceTree = "<group>"; };
		BE34D146218CF8AD00815297 /* popupmenuwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = popupmenuwindow.cxx; path = "../../ios-device/vcl/source/window/popupmenuwindow.cxx"; sourceTree = "<group>"; };
		BE34D147218CF8AD00815297 /* accel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accel.cxx; path = "../../ios-device/vcl/source/window/accel.cxx"; sourceTree = "<group>"; };
		BE34D148218CF8AD00815297 /* floatwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = floatwin.cxx; path = "../../ios-device/vcl/source/window/floatwin.cxx"; sourceTree = "<group>"; };
		BE34D149218CF8AD00815297 /* dndeventdispatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndeventdispatcher.cxx; path = "../../ios-device/vcl/source/window/dndeventdispatcher.cxx"; sourceTree = "<group>"; };
		BE34D14A218CF8AD00815297 /* window3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window3.cxx; path = "../../ios-device/vcl/source/window/window3.cxx"; sourceTree = "<group>"; };
		BE34D14B218CF8AD00815297 /* toolbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox.cxx; path = "../../ios-device/vcl/source/window/toolbox.cxx"; sourceTree = "<group>"; };
		BE34D14C218CF8AD00815297 /* syswin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syswin.cxx; path = "../../ios-device/vcl/source/window/syswin.cxx"; sourceTree = "<group>"; };
		BE34D14D218CF8AD00815297 /* menufloatingwindow.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = menufloatingwindow.hxx; path = "../../ios-device/vcl/source/window/menufloatingwindow.hxx"; sourceTree = "<group>"; };
		BE34D14E218CF8AD00815297 /* menu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menu.cxx; path = "../../ios-device/vcl/source/window/menu.cxx"; sourceTree = "<group>"; };
		BE34D14F218CF8AE00815297 /* cursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cursor.cxx; path = "../../ios-device/vcl/source/window/cursor.cxx"; sourceTree = "<group>"; };
		BE34D150218CF8AE00815297 /* taskpanelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskpanelist.cxx; path = "../../ios-device/vcl/source/window/taskpanelist.cxx"; sourceTree = "<group>"; };
		BE34D151218CF8AE00815297 /* window2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window2.cxx; path = "../../ios-device/vcl/source/window/window2.cxx"; sourceTree = "<group>"; };
		BE34D152218CF8AE00815297 /* splitwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = splitwin.cxx; path = "../../ios-device/vcl/source/window/splitwin.cxx"; sourceTree = "<group>"; };
		BE34D153218CF8AE00815297 /* clipping.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipping.cxx; path = "../../ios-device/vcl/source/window/clipping.cxx"; sourceTree = "<group>"; };
		BE34D154218CF8AE00815297 /* window.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = window.cxx; path = "../../ios-device/vcl/source/window/window.cxx"; sourceTree = "<group>"; };
		BE34D155218CF8AE00815297 /* dialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dialog.cxx; path = "../../ios-device/vcl/source/window/dialog.cxx"; sourceTree = "<group>"; };
		BE34D156218CF8AE00815297 /* menuwindow.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = menuwindow.hxx; path = "../../ios-device/vcl/source/window/menuwindow.hxx"; sourceTree = "<group>"; };
		BE34D157218CF8AE00815297 /* split.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split.cxx; path = "../../ios-device/vcl/source/window/split.cxx"; sourceTree = "<group>"; };
		BE34D158218CF8AE00815297 /* stacking.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stacking.cxx; path = "../../ios-device/vcl/source/window/stacking.cxx"; sourceTree = "<group>"; };
		BE34D159218CF8AE00815297 /* dndlistenercontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndlistenercontainer.cxx; path = "../../ios-device/vcl/source/window/dndlistenercontainer.cxx"; sourceTree = "<group>"; };
		BE34D15A218CF8AE00815297 /* legacyaccessibility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = legacyaccessibility.cxx; path = "../../ios-device/vcl/source/window/legacyaccessibility.cxx"; sourceTree = "<group>"; };
		BE34D15B218CF8AE00815297 /* mnemonicengine.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonicengine.cxx; path = "../../ios-device/vcl/source/window/mnemonicengine.cxx"; sourceTree = "<group>"; };
		BE34D15C218CF8AE00815297 /* paint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paint.cxx; path = "../../ios-device/vcl/source/window/paint.cxx"; sourceTree = "<group>"; };
		BE34D15D218CF8AE00815297 /* menufloatingwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menufloatingwindow.cxx; path = "../../ios-device/vcl/source/window/menufloatingwindow.cxx"; sourceTree = "<group>"; };
		BE34D15E218CF8AE00815297 /* builder.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = builder.cxx; path = "../../ios-device/vcl/source/window/builder.cxx"; sourceTree = "<group>"; };
		BE34D15F218CF8AE00815297 /* abstdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = abstdlg.cxx; path = "../../ios-device/vcl/source/window/abstdlg.cxx"; sourceTree = "<group>"; };
		BE34D160218CF8AE00815297 /* dockwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockwin.cxx; path = "../../ios-device/vcl/source/window/dockwin.cxx"; sourceTree = "<group>"; };
		BE34D161218CF8AE00815297 /* introwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = introwin.cxx; path = "../../ios-device/vcl/source/window/introwin.cxx"; sourceTree = "<group>"; };
		BE34D162218CF8AE00815297 /* menubarwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menubarwindow.cxx; path = "../../ios-device/vcl/source/window/menubarwindow.cxx"; sourceTree = "<group>"; };
		BE34D163218CF8AE00815297 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = "../../ios-device/vcl/source/window/settings.cxx"; sourceTree = "<group>"; };
		BE34D164218CF8AF00815297 /* menubarwindow.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = menubarwindow.hxx; path = "../../ios-device/vcl/source/window/menubarwindow.hxx"; sourceTree = "<group>"; };
		BE34D165218CF8AF00815297 /* layout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layout.cxx; path = "../../ios-device/vcl/source/window/layout.cxx"; sourceTree = "<group>"; };
		BE34D166218CF8AF00815297 /* wrkwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wrkwin.cxx; path = "../../ios-device/vcl/source/window/wrkwin.cxx"; sourceTree = "<group>"; };
		BE34D167218CF8AF00815297 /* tabpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabpage.cxx; path = "../../ios-device/vcl/source/window/tabpage.cxx"; sourceTree = "<group>"; };
		BE34D168218CF8AF00815297 /* mnemonic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mnemonic.cxx; path = "../../ios-device/vcl/source/window/mnemonic.cxx"; sourceTree = "<group>"; };
		BE34D169218CF8AF00815297 /* tabdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabdlg.cxx; path = "../../ios-device/vcl/source/window/tabdlg.cxx"; sourceTree = "<group>"; };
		BE34D16A218CF8AF00815297 /* errinf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = errinf.cxx; path = "../../ios-device/vcl/source/window/errinf.cxx"; sourceTree = "<group>"; };
		BE34D16B218CF8AF00815297 /* toolbox2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = toolbox2.cxx; path = "../../ios-device/vcl/source/window/toolbox2.cxx"; sourceTree = "<group>"; };
		BE34D16C218CF8AF00815297 /* dlgctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dlgctrl.cxx; path = "../../ios-device/vcl/source/window/dlgctrl.cxx"; sourceTree = "<group>"; };
		BE34D16D218CF8AF00815297 /* keyevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cxx; path = "../../ios-device/vcl/source/window/keyevent.cxx"; sourceTree = "<group>"; };
		BE34D16E218CF8AF00815297 /* msgbox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = msgbox.cxx; path = "../../ios-device/vcl/source/window/msgbox.cxx"; sourceTree = "<group>"; };
		BE34D16F218CF8AF00815297 /* keycod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = keycod.cxx; path = "../../ios-device/vcl/source/window/keycod.cxx"; sourceTree = "<group>"; };
		BE34D170218CF8AF00815297 /* EnumContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EnumContext.cxx; path = "../../ios-device/vcl/source/window/EnumContext.cxx"; sourceTree = "<group>"; };
		BE34D171218CF8AF00815297 /* seleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = seleng.cxx; path = "../../ios-device/vcl/source/window/seleng.cxx"; sourceTree = "<group>"; };
		BE34D172218CF8AF00815297 /* event.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = event.cxx; path = "../../ios-device/vcl/source/window/event.cxx"; sourceTree = "<group>"; };
		BE34D173218CF8B000815297 /* menuitemlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuitemlist.cxx; path = "../../ios-device/vcl/source/window/menuitemlist.cxx"; sourceTree = "<group>"; };
		BE34D174218CF8B000815297 /* scrwnd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrwnd.cxx; path = "../../ios-device/vcl/source/window/scrwnd.cxx"; sourceTree = "<group>"; };
		BE34D175218CF8B000815297 /* brdwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brdwin.cxx; path = "../../ios-device/vcl/source/window/brdwin.cxx"; sourceTree = "<group>"; };
		BE34D176218CF8B000815297 /* mouse.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mouse.cxx; path = "../../ios-device/vcl/source/window/mouse.cxx"; sourceTree = "<group>"; };
		BE34D177218CF8B000815297 /* accmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accmgr.cxx; path = "../../ios-device/vcl/source/window/accmgr.cxx"; sourceTree = "<group>"; };
		BE34D178218CF8B000815297 /* decoview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = decoview.cxx; path = "../../ios-device/vcl/source/window/decoview.cxx"; sourceTree = "<group>"; };
		BE34D179218CF8B000815297 /* winproc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winproc.cxx; path = "../../ios-device/vcl/source/window/winproc.cxx"; sourceTree = "<group>"; };
		BE34D17A218CF8B000815297 /* dockmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockmgr.cxx; path = "../../ios-device/vcl/source/window/dockmgr.cxx"; sourceTree = "<group>"; };
		BE34D17B218CF8B000815297 /* dlgctrl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dlgctrl.hxx; path = "../../ios-device/vcl/source/window/dlgctrl.hxx"; sourceTree = "<group>"; };
		BE34D17C218CF8B000815297 /* commandevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandevent.cxx; path = "../../ios-device/vcl/source/window/commandevent.cxx"; sourceTree = "<group>"; };
		BE34D17D218CF8B000815297 /* menuitemlist.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = menuitemlist.hxx; path = "../../ios-device/vcl/source/window/menuitemlist.hxx"; sourceTree = "<group>"; };
		BE34D17E218CF8B000815297 /* status.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cxx; path = "../../ios-device/vcl/source/window/status.cxx"; sourceTree = "<group>"; };
		BE34D17F218CF8B000815297 /* debug.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cxx; path = "../../ios-device/vcl/source/window/debug.cxx"; sourceTree = "<group>"; };
		BE34D180218CF8B100815297 /* dockingarea.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dockingarea.cxx; path = "../../ios-device/vcl/source/window/dockingarea.cxx"; sourceTree = "<group>"; };
		BE34D181218CF8B100815297 /* printdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printdlg.cxx; path = "../../ios-device/vcl/source/window/printdlg.cxx"; sourceTree = "<group>"; };
		BE34D18C2190718100815297 /* PivotLayoutTreeList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PivotLayoutTreeList.cxx; path = "../../ios-device/sc/source/ui/dbgui/PivotLayoutTreeList.cxx"; sourceTree = "<group>"; };
		BE34D18D2190718100815297 /* sortdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/sortdlg.cxx"; sourceTree = "<group>"; };
		BE34D18E2190718100815297 /* PivotLayoutDialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PivotLayoutDialog.cxx; path = "../../ios-device/sc/source/ui/dbgui/PivotLayoutDialog.cxx"; sourceTree = "<group>"; };
		BE34D18F2190718100815297 /* subtdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = subtdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/subtdlg.cxx"; sourceTree = "<group>"; };
		BE34D1902190718100815297 /* csvsplits.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = csvsplits.cxx; path = "../../ios-device/sc/source/ui/dbgui/csvsplits.cxx"; sourceTree = "<group>"; };
		BE34D1912190718100815297 /* csvtablebox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = csvtablebox.cxx; path = "../../ios-device/sc/source/ui/dbgui/csvtablebox.cxx"; sourceTree = "<group>"; };
		BE34D1922190718100815297 /* dapitype.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dapitype.cxx; path = "../../ios-device/sc/source/ui/dbgui/dapitype.cxx"; sourceTree = "<group>"; };
		BE34D1932190718100815297 /* scuiimoptdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scuiimoptdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/scuiimoptdlg.cxx"; sourceTree = "<group>"; };
		BE34D1942190718200815297 /* scendlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scendlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/scendlg.cxx"; sourceTree = "<group>"; };
		BE34D1952190718200815297 /* consdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = consdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/consdlg.cxx"; sourceTree = "<group>"; };
		BE34D1962190718200815297 /* foptmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = foptmgr.cxx; path = "../../ios-device/sc/source/ui/dbgui/foptmgr.cxx"; sourceTree = "<group>"; };
		BE34D1972190718200815297 /* asciiopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = asciiopt.cxx; path = "../../ios-device/sc/source/ui/dbgui/asciiopt.cxx"; sourceTree = "<group>"; };
		BE34D1982190718200815297 /* filtdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/filtdlg.cxx"; sourceTree = "<group>"; };
		BE34D1992190718200815297 /* PivotLayoutTreeListData.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PivotLayoutTreeListData.cxx; path = "../../ios-device/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx"; sourceTree = "<group>"; };
		BE34D19A2190718200815297 /* dbnamdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbnamdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/dbnamdlg.cxx"; sourceTree = "<group>"; };
		BE34D19B2190718200815297 /* tpsort.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tpsort.cxx; path = "../../ios-device/sc/source/ui/dbgui/tpsort.cxx"; sourceTree = "<group>"; };
		BE34D19C2190718200815297 /* dpgroupdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dpgroupdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/dpgroupdlg.cxx"; sourceTree = "<group>"; };
		BE34D19D2190718200815297 /* PivotLayoutTreeListBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PivotLayoutTreeListBase.cxx; path = "../../ios-device/sc/source/ui/dbgui/PivotLayoutTreeListBase.cxx"; sourceTree = "<group>"; };
		BE34D19E2190718200815297 /* scuiasciiopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scuiasciiopt.cxx; path = "../../ios-device/sc/source/ui/dbgui/scuiasciiopt.cxx"; sourceTree = "<group>"; };
		BE34D19F2190718200815297 /* dapidata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dapidata.cxx; path = "../../ios-device/sc/source/ui/dbgui/dapidata.cxx"; sourceTree = "<group>"; };
		BE34D1A02190718200815297 /* pfiltdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pfiltdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/pfiltdlg.cxx"; sourceTree = "<group>"; };
		BE34D1A12190718200815297 /* csvruler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = csvruler.cxx; path = "../../ios-device/sc/source/ui/dbgui/csvruler.cxx"; sourceTree = "<group>"; };
		BE34D1A22190718200815297 /* PivotLayoutTreeListLabel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PivotLayoutTreeListLabel.cxx; path = "../../ios-device/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx"; sourceTree = "<group>"; };
		BE34D1A32190718200815297 /* validate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cxx; path = "../../ios-device/sc/source/ui/dbgui/validate.cxx"; sourceTree = "<group>"; };
		BE34D1A42190718200815297 /* tpsubt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tpsubt.cxx; path = "../../ios-device/sc/source/ui/dbgui/tpsubt.cxx"; sourceTree = "<group>"; };
		BE34D1A52190718200815297 /* textimportoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textimportoptions.cxx; path = "../../ios-device/sc/source/ui/dbgui/textimportoptions.cxx"; sourceTree = "<group>"; };
		BE34D1A62190718200815297 /* pvfundlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pvfundlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/pvfundlg.cxx"; sourceTree = "<group>"; };
		BE34D1A72190718200815297 /* csvgrid.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = csvgrid.cxx; path = "../../ios-device/sc/source/ui/dbgui/csvgrid.cxx"; sourceTree = "<group>"; };
		BE34D1A82190718200815297 /* imoptdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imoptdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/imoptdlg.cxx"; sourceTree = "<group>"; };
		BE34D1A92190718200815297 /* csvcontrol.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = csvcontrol.cxx; path = "../../ios-device/sc/source/ui/dbgui/csvcontrol.cxx"; sourceTree = "<group>"; };
		BE34D1AA2190718200815297 /* sortkeydlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sortkeydlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/sortkeydlg.cxx"; sourceTree = "<group>"; };
		BE34D1AB2190718300815297 /* sfiltdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfiltdlg.cxx; path = "../../ios-device/sc/source/ui/dbgui/sfiltdlg.cxx"; sourceTree = "<group>"; };
		BE34D1AD219076CA00815297 /* tabvwsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh2.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh2.cxx"; sourceTree = "<group>"; };
		BE34D1AE219076CA00815297 /* cellsh4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh4.cxx; path = "../../ios-device/sc/source/ui/view/cellsh4.cxx"; sourceTree = "<group>"; };
		BE34D1AF219076CA00815297 /* tabvwsha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsha.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsha.cxx"; sourceTree = "<group>"; };
		BE34D1B0219076CA00815297 /* tabvwshd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshd.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshd.cxx"; sourceTree = "<group>"; };
		BE34D1B1219076CA00815297 /* notemark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = notemark.cxx; path = "../../ios-device/sc/source/ui/view/notemark.cxx"; sourceTree = "<group>"; };
		BE34D1B2219076CA00815297 /* tabvwshf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshf.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshf.cxx"; sourceTree = "<group>"; };
		BE34D1B3219076CA00815297 /* tabview3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview3.cxx; path = "../../ios-device/sc/source/ui/view/tabview3.cxx"; sourceTree = "<group>"; };
		BE34D1B4219076CA00815297 /* tabview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview.cxx; path = "../../ios-device/sc/source/ui/view/tabview.cxx"; sourceTree = "<group>"; };
		BE34D1B5219076CA00815297 /* tabview2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview2.cxx; path = "../../ios-device/sc/source/ui/view/tabview2.cxx"; sourceTree = "<group>"; };
		BE34D1B6219076CA00815297 /* tabvwshg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshg.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshg.cxx"; sourceTree = "<group>"; };
		BE34D1B7219076CA00815297 /* waitoff.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = waitoff.cxx; path = "../../ios-device/sc/source/ui/view/waitoff.cxx"; sourceTree = "<group>"; };
		BE34D1B8219076CA00815297 /* select.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = select.cxx; path = "../../ios-device/sc/source/ui/view/select.cxx"; sourceTree = "<group>"; };
		BE34D1B9219076CA00815297 /* viewfun4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun4.cxx; path = "../../ios-device/sc/source/ui/view/viewfun4.cxx"; sourceTree = "<group>"; };
		BE34D1BA219076CA00815297 /* viewfun3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun3.cxx; path = "../../ios-device/sc/source/ui/view/viewfun3.cxx"; sourceTree = "<group>"; };
		BE34D1BB219076CA00815297 /* pgbrksh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pgbrksh.cxx; path = "../../ios-device/sc/source/ui/view/pgbrksh.cxx"; sourceTree = "<group>"; };
		BE34D1BC219076CA00815297 /* cliputil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cliputil.cxx; path = "../../ios-device/sc/source/ui/view/cliputil.cxx"; sourceTree = "<group>"; };
		BE34D1BD219076CA00815297 /* gridwin4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin4.cxx; path = "../../ios-device/sc/source/ui/view/gridwin4.cxx"; sourceTree = "<group>"; };
		BE34D1BE219076CA00815297 /* drawvie3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawvie3.cxx; path = "../../ios-device/sc/source/ui/view/drawvie3.cxx"; sourceTree = "<group>"; };
		BE34D1BF219076CA00815297 /* viewfun6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun6.cxx; path = "../../ios-device/sc/source/ui/view/viewfun6.cxx"; sourceTree = "<group>"; };
		BE34D1C0219076CA00815297 /* drawutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawutil.cxx; path = "../../ios-device/sc/source/ui/view/drawutil.cxx"; sourceTree = "<group>"; };
		BE34D1C1219076CB00815297 /* cellsh3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh3.cxx; path = "../../ios-device/sc/source/ui/view/cellsh3.cxx"; sourceTree = "<group>"; };
		BE34D1C2219076CB00815297 /* dbfunc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc.cxx; path = "../../ios-device/sc/source/ui/view/dbfunc.cxx"; sourceTree = "<group>"; };
		BE34D1C3219076CB00815297 /* selectionstate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectionstate.cxx; path = "../../ios-device/sc/source/ui/view/selectionstate.cxx"; sourceTree = "<group>"; };
		BE34D1C4219076CB00815297 /* hintwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hintwin.cxx; path = "../../ios-device/sc/source/ui/view/hintwin.cxx"; sourceTree = "<group>"; };
		BE34D1C5219076CB00815297 /* tabvwsh3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh3.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh3.cxx"; sourceTree = "<group>"; };
		BE34D1C6219076CB00815297 /* tabvwshb.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshb.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshb.cxx"; sourceTree = "<group>"; };
		BE34D1C7219076CB00815297 /* tabcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabcont.cxx; path = "../../ios-device/sc/source/ui/view/tabcont.cxx"; sourceTree = "<group>"; };
		BE34D1C8219076CB00815297 /* auditsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = auditsh.cxx; path = "../../ios-device/sc/source/ui/view/auditsh.cxx"; sourceTree = "<group>"; };
		BE34D1C9219076CB00815297 /* viewfunc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfunc.cxx; path = "../../ios-device/sc/source/ui/view/viewfunc.cxx"; sourceTree = "<group>"; };
		BE34D1CA219076CB00815297 /* dbfunc4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc4.cxx; path = "../../ios-device/sc/source/ui/view/dbfunc4.cxx"; sourceTree = "<group>"; };
		BE34D1CB219076CB00815297 /* tabvwsh8.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh8.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh8.cxx"; sourceTree = "<group>"; };
		BE34D1CC219076CB00815297 /* dbfunc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc2.cxx; path = "../../ios-device/sc/source/ui/view/dbfunc2.cxx"; sourceTree = "<group>"; };
		BE34D1CD219076CB00815297 /* pfuncache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pfuncache.cxx; path = "../../ios-device/sc/source/ui/view/pfuncache.cxx"; sourceTree = "<group>"; };
		BE34D1CE219076CB00815297 /* invmerge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = invmerge.cxx; path = "../../ios-device/sc/source/ui/view/invmerge.cxx"; sourceTree = "<group>"; };
		BE34D1CF219076CB00815297 /* cellmergeoption.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellmergeoption.cxx; path = "../../ios-device/sc/source/ui/view/cellmergeoption.cxx"; sourceTree = "<group>"; };
		BE34D1D0219076CB00815297 /* cellsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh.cxx; path = "../../ios-device/sc/source/ui/view/cellsh.cxx"; sourceTree = "<group>"; };
		BE34D1D1219076CB00815297 /* cellsh1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh1.cxx; path = "../../ios-device/sc/source/ui/view/cellsh1.cxx"; sourceTree = "<group>"; };
		BE34D1D2219076CC00815297 /* gridwin3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin3.cxx; path = "../../ios-device/sc/source/ui/view/gridwin3.cxx"; sourceTree = "<group>"; };
		BE34D1D3219076CC00815297 /* reffact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = reffact.cxx; path = "../../ios-device/sc/source/ui/view/reffact.cxx"; sourceTree = "<group>"; };
		BE34D1D4219076CC00815297 /* editsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = editsh.cxx; path = "../../ios-device/sc/source/ui/view/editsh.cxx"; sourceTree = "<group>"; };
		BE34D1D5219076CC00815297 /* tabvwsh9.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh9.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh9.cxx"; sourceTree = "<group>"; };
		BE34D1D6219076CC00815297 /* tabview4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview4.cxx; path = "../../ios-device/sc/source/ui/view/tabview4.cxx"; sourceTree = "<group>"; };
		BE34D1D7219076CC00815297 /* tabvwshc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshc.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshc.cxx"; sourceTree = "<group>"; };
		BE34D1D8219076CC00815297 /* drawview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawview.cxx; path = "../../ios-device/sc/source/ui/view/drawview.cxx"; sourceTree = "<group>"; };
		BE34D1D9219076CC00815297 /* cellsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cellsh2.cxx; path = "../../ios-device/sc/source/ui/view/cellsh2.cxx"; sourceTree = "<group>"; };
		BE34D1DA219076CC00815297 /* spelldialog.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spelldialog.cxx; path = "../../ios-device/sc/source/ui/view/spelldialog.cxx"; sourceTree = "<group>"; };
		BE34D1DB219076CC00815297 /* hdrcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hdrcont.cxx; path = "../../ios-device/sc/source/ui/view/hdrcont.cxx"; sourceTree = "<group>"; };
		BE34D1DC219076CC00815297 /* gridwin_dbgutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin_dbgutil.cxx; path = "../../ios-device/sc/source/ui/view/gridwin_dbgutil.cxx"; sourceTree = "<group>"; };
		BE34D1DD219076CC00815297 /* preview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preview.cxx; path = "../../ios-device/sc/source/ui/view/preview.cxx"; sourceTree = "<group>"; };
		BE34D1DE219076CC00815297 /* prevwsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prevwsh.cxx; path = "../../ios-device/sc/source/ui/view/prevwsh.cxx"; sourceTree = "<group>"; };
		BE34D1DF219076CC00815297 /* printfun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printfun.cxx; path = "../../ios-device/sc/source/ui/view/printfun.cxx"; sourceTree = "<group>"; };
		BE34D1E0219076CD00815297 /* pivotsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pivotsh.cxx; path = "../../ios-device/sc/source/ui/view/pivotsh.cxx"; sourceTree = "<group>"; };
		BE34D1E1219076CD00815297 /* gridwin5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin5.cxx; path = "../../ios-device/sc/source/ui/view/gridwin5.cxx"; sourceTree = "<group>"; };
		BE34D1E2219076CD00815297 /* imapwrap.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = imapwrap.hxx; path = "../../ios-device/sc/source/ui/view/imapwrap.hxx"; sourceTree = "<group>"; };
		BE34D1E3219076CD00815297 /* tabsplit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabsplit.cxx; path = "../../ios-device/sc/source/ui/view/tabsplit.cxx"; sourceTree = "<group>"; };
		BE34D1E4219076CD00815297 /* tabvwsh5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh5.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh5.cxx"; sourceTree = "<group>"; };
		BE34D1E5219076CD00815297 /* tabvwshe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshe.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshe.cxx"; sourceTree = "<group>"; };
		BE34D1E6219076CD00815297 /* tabvwshh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwshh.cxx; path = "../../ios-device/sc/source/ui/view/tabvwshh.cxx"; sourceTree = "<group>"; };
		BE34D1E7219076CD00815297 /* tabview5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabview5.cxx; path = "../../ios-device/sc/source/ui/view/tabview5.cxx"; sourceTree = "<group>"; };
		BE34D1E8219076CD00815297 /* viewfun2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun2.cxx; path = "../../ios-device/sc/source/ui/view/viewfun2.cxx"; sourceTree = "<group>"; };
		BE34D1E9219076CD00815297 /* output3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output3.cxx; path = "../../ios-device/sc/source/ui/view/output3.cxx"; sourceTree = "<group>"; };
		BE34D1EA219076CD00815297 /* viewfun7.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun7.cxx; path = "../../ios-device/sc/source/ui/view/viewfun7.cxx"; sourceTree = "<group>"; };
		BE34D1EB219076CD00815297 /* drawvie4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawvie4.cxx; path = "../../ios-device/sc/source/ui/view/drawvie4.cxx"; sourceTree = "<group>"; };
		BE34D1EC219076CD00815297 /* gridwin2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin2.cxx; path = "../../ios-device/sc/source/ui/view/gridwin2.cxx"; sourceTree = "<group>"; };
		BE34D1ED219076CE00815297 /* tabvwsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh.cxx"; sourceTree = "<group>"; };
		BE34D1EE219076CE00815297 /* overlayobject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = overlayobject.cxx; path = "../../ios-device/sc/source/ui/view/overlayobject.cxx"; sourceTree = "<group>"; };
		BE34D1EF219076CE00815297 /* prevloc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prevloc.cxx; path = "../../ios-device/sc/source/ui/view/prevloc.cxx"; sourceTree = "<group>"; };
		BE34D1F0219076CE00815297 /* spellcheckcontext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spellcheckcontext.cxx; path = "../../ios-device/sc/source/ui/view/spellcheckcontext.cxx"; sourceTree = "<group>"; };
		BE34D1F1219076CE00815297 /* tabvwsh4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabvwsh4.cxx; path = "../../ios-device/sc/source/ui/view/tabvwsh4.cxx"; sourceTree = "<group>"; };
		BE34D1F2219076CE00815297 /* output.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output.cxx; path = "../../ios-device/sc/source/ui/view/output.cxx"; sourceTree = "<group>"; };
		BE34D1F3219076CE00815297 /* colrowba.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrowba.cxx; path = "../../ios-device/sc/source/ui/view/colrowba.cxx"; sourceTree = "<group>"; };
		BE34D1F4219076CE00815297 /* gridmerg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridmerg.cxx; path = "../../ios-device/sc/source/ui/view/gridmerg.cxx"; sourceTree = "<group>"; };
		BE34D1F5219076CE00815297 /* spelleng.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = spelleng.cxx; path = "../../ios-device/sc/source/ui/view/spelleng.cxx"; sourceTree = "<group>"; };
		BE34D1F6219076CE00815297 /* viewfun5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfun5.cxx; path = "../../ios-device/sc/source/ui/view/viewfun5.cxx"; sourceTree = "<group>"; };
		BE34D1F7219076CE00815297 /* gridwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gridwin.cxx; path = "../../ios-device/sc/source/ui/view/gridwin.cxx"; sourceTree = "<group>"; };
		BE34D1F8219076CE00815297 /* viewutil.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewutil.cxx; path = "../../ios-device/sc/source/ui/view/viewutil.cxx"; sourceTree = "<group>"; };
		BE34D1F9219076CF00815297 /* viewdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewdata.cxx; path = "../../ios-device/sc/source/ui/view/viewdata.cxx"; sourceTree = "<group>"; };
		BE34D1FA219076CF00815297 /* imapwrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imapwrap.cxx; path = "../../ios-device/sc/source/ui/view/imapwrap.cxx"; sourceTree = "<group>"; };
		BE34D1FB219076CF00815297 /* scextopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scextopt.cxx; path = "../../ios-device/sc/source/ui/view/scextopt.cxx"; sourceTree = "<group>"; };
		BE34D1FC219076CF00815297 /* olinewin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = olinewin.cxx; path = "../../ios-device/sc/source/ui/view/olinewin.cxx"; sourceTree = "<group>"; };
		BE34D1FD219076CF00815297 /* prevwsh2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = prevwsh2.cxx; path = "../../ios-device/sc/source/ui/view/prevwsh2.cxx"; sourceTree = "<group>"; };
		BE34D1FE219076CF00815297 /* output2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output2.cxx; path = "../../ios-device/sc/source/ui/view/output2.cxx"; sourceTree = "<group>"; };
		BE34D1FF219076CF00815297 /* formatsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formatsh.cxx; path = "../../ios-device/sc/source/ui/view/formatsh.cxx"; sourceTree = "<group>"; };
		BE34D200219076CF00815297 /* dbfunc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbfunc3.cxx; path = "../../ios-device/sc/source/ui/view/dbfunc3.cxx"; sourceTree = "<group>"; };
		BE3C8B2723CC8E93008302F8 /* PreviewValueSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PreviewValueSet.cxx; path = "../../ios-device/sd/source/ui/sidebar/PreviewValueSet.cxx"; sourceTree = "<group>"; };
		BE3C8B2823CC8E93008302F8 /* TableDesignPanel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TableDesignPanel.cxx; path = "../../ios-device/sd/source/ui/sidebar/TableDesignPanel.cxx"; sourceTree = "<group>"; };
		BE3C8B2923CC8E93008302F8 /* DocumentHelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DocumentHelper.cxx; path = "../../ios-device/sd/source/ui/sidebar/DocumentHelper.cxx"; sourceTree = "<group>"; };
		BE3C8B2A23CC8E93008302F8 /* MasterPageContainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPageContainer.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainer.cxx"; sourceTree = "<group>"; };
		BE3C8B2B23CC8E93008302F8 /* PanelFactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PanelFactory.cxx; path = "../../ios-device/sd/source/ui/sidebar/PanelFactory.cxx"; sourceTree = "<group>"; };
		BE3C8B2C23CC8E93008302F8 /* AllMasterPagesSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AllMasterPagesSelector.cxx; path = "../../ios-device/sd/source/ui/sidebar/AllMasterPagesSelector.cxx"; sourceTree = "<group>"; };
		BE3C8B2D23CC8E93008302F8 /* MasterPageObserver.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPageObserver.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageObserver.cxx"; sourceTree = "<group>"; };
		BE3C8B2E23CC8E93008302F8 /* SlideBackground.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SlideBackground.hxx; path = "../../ios-device/sd/source/ui/sidebar/SlideBackground.hxx"; sourceTree = "<group>"; };
		BE3C8B2F23CC8E93008302F8 /* CurrentMasterPagesSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CurrentMasterPagesSelector.cxx; path = "../../ios-device/sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx"; sourceTree = "<group>"; };
		BE3C8B3023CC8E93008302F8 /* CustomAnimationPanel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CustomAnimationPanel.cxx; path = "../../ios-device/sd/source/ui/sidebar/CustomAnimationPanel.cxx"; sourceTree = "<group>"; };
		BE3C8B3123CC8E93008302F8 /* NavigatorWrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = NavigatorWrapper.cxx; path = "../../ios-device/sd/source/ui/sidebar/NavigatorWrapper.cxx"; sourceTree = "<group>"; };
		BE3C8B3223CC8E93008302F8 /* ISidebarReceiver.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = ISidebarReceiver.hxx; path = "../../ios-device/sd/source/ui/sidebar/ISidebarReceiver.hxx"; sourceTree = "<group>"; };
		BE3C8B3323CC8E93008302F8 /* MasterPageContainer.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = MasterPageContainer.hxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainer.hxx"; sourceTree = "<group>"; };
		BE3C8B3423CC8E93008302F8 /* LayoutMenu.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = LayoutMenu.hxx; path = "../../ios-device/sd/source/ui/sidebar/LayoutMenu.hxx"; sourceTree = "<group>"; };
		BE3C8B3523CC8E93008302F8 /* PanelFactory.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = PanelFactory.hxx; path = "../../ios-device/sd/source/ui/sidebar/PanelFactory.hxx"; sourceTree = "<group>"; };
		BE3C8B3623CC8E93008302F8 /* RecentlyUsedMasterPages.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RecentlyUsedMasterPages.cxx; path = "../../ios-device/sd/source/ui/sidebar/RecentlyUsedMasterPages.cxx"; sourceTree = "<group>"; };
		BE3C8B3723CC8E93008302F8 /* AllMasterPagesSelector.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = AllMasterPagesSelector.hxx; path = "../../ios-device/sd/source/ui/sidebar/AllMasterPagesSelector.hxx"; sourceTree = "<group>"; };
		BE3C8B3823CC8E93008302F8 /* MasterPageDescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPageDescriptor.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageDescriptor.cxx"; sourceTree = "<group>"; };
		BE3C8B3923CC8E94008302F8 /* MasterPageContainerProviders.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPageContainerProviders.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainerProviders.cxx"; sourceTree = "<group>"; };
		BE3C8B3A23CC8E94008302F8 /* RecentMasterPagesSelector.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = RecentMasterPagesSelector.hxx; path = "../../ios-device/sd/source/ui/sidebar/RecentMasterPagesSelector.hxx"; sourceTree = "<group>"; };
		BE3C8B3B23CC8E94008302F8 /* DocumentHelper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = DocumentHelper.hxx; path = "../../ios-device/sd/source/ui/sidebar/DocumentHelper.hxx"; sourceTree = "<group>"; };
		BE3C8B3C23CC8E94008302F8 /* CurrentMasterPagesSelector.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CurrentMasterPagesSelector.hxx; path = "../../ios-device/sd/source/ui/sidebar/CurrentMasterPagesSelector.hxx"; sourceTree = "<group>"; };
		BE3C8B3D23CC8E94008302F8 /* IDisposable.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IDisposable.hxx; path = "../../ios-device/sd/source/ui/sidebar/IDisposable.hxx"; sourceTree = "<group>"; };
		BE3C8B3E23CC8E94008302F8 /* TableDesignPanel.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TableDesignPanel.hxx; path = "../../ios-device/sd/source/ui/sidebar/TableDesignPanel.hxx"; sourceTree = "<group>"; };
		BE3C8B3F23CC8E94008302F8 /* PanelBase.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = PanelBase.hxx; path = "../../ios-device/sd/source/ui/sidebar/PanelBase.hxx"; sourceTree = "<group>"; };
		BE3C8B4023CC8E94008302F8 /* MasterPagesSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPagesSelector.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPagesSelector.cxx"; sourceTree = "<group>"; };
		BE3C8B4123CC8E94008302F8 /* RecentlyUsedMasterPages.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = RecentlyUsedMasterPages.hxx; path = "../../ios-device/sd/source/ui/sidebar/RecentlyUsedMasterPages.hxx"; sourceTree = "<group>"; };
		BE3C8B4223CC8E94008302F8 /* MasterPageContainerFiller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPageContainerFiller.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainerFiller.cxx"; sourceTree = "<group>"; };
		BE3C8B4323CC8E94008302F8 /* LayoutMenu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LayoutMenu.cxx; path = "../../ios-device/sd/source/ui/sidebar/LayoutMenu.cxx"; sourceTree = "<group>"; };
		BE3C8B4423CC8E94008302F8 /* MasterPageContainerQueue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MasterPageContainerQueue.cxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainerQueue.cxx"; sourceTree = "<group>"; };
		BE3C8B4523CC8E94008302F8 /* SlideTransitionPanel.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SlideTransitionPanel.hxx; path = "../../ios-device/sd/source/ui/sidebar/SlideTransitionPanel.hxx"; sourceTree = "<group>"; };
		BE3C8B4623CC8E94008302F8 /* MasterPageDescriptor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = MasterPageDescriptor.hxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageDescriptor.hxx"; sourceTree = "<group>"; };
		BE3C8B4723CC8E94008302F8 /* PreviewValueSet.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = PreviewValueSet.hxx; path = "../../ios-device/sd/source/ui/sidebar/PreviewValueSet.hxx"; sourceTree = "<group>"; };
		BE3C8B4823CC8E94008302F8 /* CustomAnimationPanel.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CustomAnimationPanel.hxx; path = "../../ios-device/sd/source/ui/sidebar/CustomAnimationPanel.hxx"; sourceTree = "<group>"; };
		BE3C8B4923CC8E94008302F8 /* SlideBackground.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlideBackground.cxx; path = "../../ios-device/sd/source/ui/sidebar/SlideBackground.cxx"; sourceTree = "<group>"; };
		BE3C8B4A23CC8E94008302F8 /* MasterPageContainerFiller.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = MasterPageContainerFiller.hxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainerFiller.hxx"; sourceTree = "<group>"; };
		BE3C8B4B23CC8E95008302F8 /* PageMarginUtils.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = PageMarginUtils.hxx; path = "../../ios-device/sd/source/ui/sidebar/PageMarginUtils.hxx"; sourceTree = "<group>"; };
		BE3C8B4C23CC8E95008302F8 /* MasterPagesSelector.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = MasterPagesSelector.hxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPagesSelector.hxx"; sourceTree = "<group>"; };
		BE3C8B4D23CC8E95008302F8 /* MasterPageContainerProviders.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = MasterPageContainerProviders.hxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainerProviders.hxx"; sourceTree = "<group>"; };
		BE3C8B4E23CC8E95008302F8 /* PanelBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PanelBase.cxx; path = "../../ios-device/sd/source/ui/sidebar/PanelBase.cxx"; sourceTree = "<group>"; };
		BE3C8B4F23CC8E95008302F8 /* NavigatorWrapper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = NavigatorWrapper.hxx; path = "../../ios-device/sd/source/ui/sidebar/NavigatorWrapper.hxx"; sourceTree = "<group>"; };
		BE3C8B5023CC8E95008302F8 /* RecentMasterPagesSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = RecentMasterPagesSelector.cxx; path = "../../ios-device/sd/source/ui/sidebar/RecentMasterPagesSelector.cxx"; sourceTree = "<group>"; };
		BE3C8B5123CC8E95008302F8 /* SlideTransitionPanel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlideTransitionPanel.cxx; path = "../../ios-device/sd/source/ui/sidebar/SlideTransitionPanel.cxx"; sourceTree = "<group>"; };
		BE3C8B5223CC8E95008302F8 /* MasterPageContainerQueue.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = MasterPageContainerQueue.hxx; path = "../../ios-device/sd/source/ui/sidebar/MasterPageContainerQueue.hxx"; sourceTree = "<group>"; };
		BE3C8B5423CCB8B9008302F8 /* drviews7.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews7.cxx; path = "../../ios-device/sd/source/ui/view/drviews7.cxx"; sourceTree = "<group>"; };
		BE3C8B5523CCB8B9008302F8 /* MediaObjectBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MediaObjectBar.cxx; path = "../../ios-device/sd/source/ui/view/MediaObjectBar.cxx"; sourceTree = "<group>"; };
		BE3C8B5623CCB8B9008302F8 /* sdview4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview4.cxx; path = "../../ios-device/sd/source/ui/view/sdview4.cxx"; sourceTree = "<group>"; };
		BE3C8B5723CCB8B9008302F8 /* Outliner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Outliner.cxx; path = "../../ios-device/sd/source/ui/view/Outliner.cxx"; sourceTree = "<group>"; };
		BE3C8B5823CCB8B9008302F8 /* drviewsj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsj.cxx; path = "../../ios-device/sd/source/ui/view/drviewsj.cxx"; sourceTree = "<group>"; };
		BE3C8B5923CCB8B9008302F8 /* drviewsf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsf.cxx; path = "../../ios-device/sd/source/ui/view/drviewsf.cxx"; sourceTree = "<group>"; };
		BE3C8B5A23CCB8B9008302F8 /* unmodpg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unmodpg.cxx; path = "../../ios-device/sd/source/ui/view/unmodpg.cxx"; sourceTree = "<group>"; };
		BE3C8B5B23CCB8B9008302F8 /* ImpressViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImpressViewShellBase.cxx; path = "../../ios-device/sd/source/ui/view/ImpressViewShellBase.cxx"; sourceTree = "<group>"; };
		BE3C8B5C23CCB8B9008302F8 /* drviews4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews4.cxx; path = "../../ios-device/sd/source/ui/view/drviews4.cxx"; sourceTree = "<group>"; };
		BE3C8B5D23CCB8B9008302F8 /* SlideSorterViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlideSorterViewShellBase.cxx; path = "../../ios-device/sd/source/ui/view/SlideSorterViewShellBase.cxx"; sourceTree = "<group>"; };
		BE3C8B5E23CCB8B9008302F8 /* sdview2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview2.cxx; path = "../../ios-device/sd/source/ui/view/sdview2.cxx"; sourceTree = "<group>"; };
		BE3C8B5F23CCB8B9008302F8 /* outlnvs2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outlnvs2.cxx; path = "../../ios-device/sd/source/ui/view/outlnvs2.cxx"; sourceTree = "<group>"; };
		BE3C8B6023CCB8B9008302F8 /* ViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellBase.cxx; path = "../../ios-device/sd/source/ui/view/ViewShellBase.cxx"; sourceTree = "<group>"; };
		BE3C8B6123CCB8B9008302F8 /* ViewShellImplementation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellImplementation.cxx; path = "../../ios-device/sd/source/ui/view/ViewShellImplementation.cxx"; sourceTree = "<group>"; };
		BE3C8B6223CCB8B9008302F8 /* drviewse.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewse.cxx; path = "../../ios-device/sd/source/ui/view/drviewse.cxx"; sourceTree = "<group>"; };
		BE3C8B6323CCB8BA008302F8 /* frmview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmview.cxx; path = "../../ios-device/sd/source/ui/view/frmview.cxx"; sourceTree = "<group>"; };
		BE3C8B6423CCB8BA008302F8 /* drviews3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews3.cxx; path = "../../ios-device/sd/source/ui/view/drviews3.cxx"; sourceTree = "<group>"; };
		BE3C8B6523CCB8BA008302F8 /* outlnvsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outlnvsh.cxx; path = "../../ios-device/sd/source/ui/view/outlnvsh.cxx"; sourceTree = "<group>"; };
		BE3C8B6623CCB8BA008302F8 /* sdruler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdruler.cxx; path = "../../ios-device/sd/source/ui/view/sdruler.cxx"; sourceTree = "<group>"; };
		BE3C8B6723CCB8BA008302F8 /* drbezob.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drbezob.cxx; path = "../../ios-device/sd/source/ui/view/drbezob.cxx"; sourceTree = "<group>"; };
		BE3C8B6823CCB8BA008302F8 /* drviewsk.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsk.cxx; path = "../../ios-device/sd/source/ui/view/drviewsk.cxx"; sourceTree = "<group>"; };
		BE3C8B6923CCB8BA008302F8 /* GraphicObjectBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicObjectBar.cxx; path = "../../ios-device/sd/source/ui/view/GraphicObjectBar.cxx"; sourceTree = "<group>"; };
		BE3C8B6A23CCB8BA008302F8 /* ViewShellHint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellHint.cxx; path = "../../ios-device/sd/source/ui/view/ViewShellHint.cxx"; sourceTree = "<group>"; };
		BE3C8B6B23CCB8BA008302F8 /* drawview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawview.cxx; path = "../../ios-device/sd/source/ui/view/drawview.cxx"; sourceTree = "<group>"; };
		BE3C8B6C23CCB8BA008302F8 /* ViewClipboard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewClipboard.cxx; path = "../../ios-device/sd/source/ui/view/ViewClipboard.cxx"; sourceTree = "<group>"; };
		BE3C8B6D23CCB8BA008302F8 /* drviewsa.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsa.cxx; path = "../../ios-device/sd/source/ui/view/drviewsa.cxx"; sourceTree = "<group>"; };
		BE3C8B6E23CCB8BA008302F8 /* WindowUpdater.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WindowUpdater.cxx; path = "../../ios-device/sd/source/ui/view/WindowUpdater.cxx"; sourceTree = "<group>"; };
		BE3C8B6F23CCB8BA008302F8 /* PresentationViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PresentationViewShellBase.cxx; path = "../../ios-device/sd/source/ui/view/PresentationViewShellBase.cxx"; sourceTree = "<group>"; };
		BE3C8B7023CCB8BA008302F8 /* drviews5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews5.cxx; path = "../../ios-device/sd/source/ui/view/drviews5.cxx"; sourceTree = "<group>"; };
		BE3C8B7123CCB8BA008302F8 /* ToolBarManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ToolBarManager.cxx; path = "../../ios-device/sd/source/ui/view/ToolBarManager.cxx"; sourceTree = "<group>"; };
		BE3C8B7223CCB8BA008302F8 /* drviewsd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsd.cxx; path = "../../ios-device/sd/source/ui/view/drviewsd.cxx"; sourceTree = "<group>"; };
		BE3C8B7323CCB8BA008302F8 /* presvish.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = presvish.cxx; path = "../../ios-device/sd/source/ui/view/presvish.cxx"; sourceTree = "<group>"; };
		BE3C8B7423CCB8BA008302F8 /* drvwshrg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drvwshrg.cxx; path = "../../ios-device/sd/source/ui/view/drvwshrg.cxx"; sourceTree = "<group>"; };
		BE3C8B7523CCB8BA008302F8 /* drviews1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews1.cxx; path = "../../ios-device/sd/source/ui/view/drviews1.cxx"; sourceTree = "<group>"; };
		BE3C8B7623CCB8BA008302F8 /* drtxtob1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drtxtob1.cxx; path = "../../ios-device/sd/source/ui/view/drtxtob1.cxx"; sourceTree = "<group>"; };
		BE3C8B7723CCB8BB008302F8 /* drviews2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews2.cxx; path = "../../ios-device/sd/source/ui/view/drviews2.cxx"; sourceTree = "<group>"; };
		BE3C8B7823CCB8BB008302F8 /* FormShellManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FormShellManager.cxx; path = "../../ios-device/sd/source/ui/view/FormShellManager.cxx"; sourceTree = "<group>"; };
		BE3C8B7923CCB8BB008302F8 /* drviewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsh.cxx; path = "../../ios-device/sd/source/ui/view/drviewsh.cxx"; sourceTree = "<group>"; };
		BE3C8B7A23CCB8BB008302F8 /* drviewsi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsi.cxx; path = "../../ios-device/sd/source/ui/view/drviewsi.cxx"; sourceTree = "<group>"; };
		BE3C8B7B23CCB8BB008302F8 /* sdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview.cxx; path = "../../ios-device/sd/source/ui/view/sdview.cxx"; sourceTree = "<group>"; };
		BE3C8B7C23CCB8BB008302F8 /* sdview3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview3.cxx; path = "../../ios-device/sd/source/ui/view/sdview3.cxx"; sourceTree = "<group>"; };
		BE3C8B7D23CCB8BB008302F8 /* grviewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grviewsh.cxx; path = "../../ios-device/sd/source/ui/view/grviewsh.cxx"; sourceTree = "<group>"; };
		BE3C8B7E23CCB8BB008302F8 /* clview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clview.cxx; path = "../../ios-device/sd/source/ui/view/clview.cxx"; sourceTree = "<group>"; };
		BE3C8B7F23CCB8BB008302F8 /* tabcontr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabcontr.cxx; path = "../../ios-device/sd/source/ui/view/tabcontr.cxx"; sourceTree = "<group>"; };
		BE3C8B8023CCB8BB008302F8 /* GraphicViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicViewShellBase.cxx; path = "../../ios-device/sd/source/ui/view/GraphicViewShellBase.cxx"; sourceTree = "<group>"; };
		BE3C8B8123CCB8BB008302F8 /* OutlinerIterator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OutlinerIterator.cxx; path = "../../ios-device/sd/source/ui/view/OutlinerIterator.cxx"; sourceTree = "<group>"; };
		BE3C8B8223CCB8BB008302F8 /* drviews6.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews6.cxx; path = "../../ios-device/sd/source/ui/view/drviews6.cxx"; sourceTree = "<group>"; };
		BE3C8B8323CCB8BB008302F8 /* DocumentRenderer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DocumentRenderer.cxx; path = "../../ios-device/sd/source/ui/view/DocumentRenderer.cxx"; sourceTree = "<group>"; };
		BE3C8B8423CCB8BB008302F8 /* ViewTabBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewTabBar.cxx; path = "../../ios-device/sd/source/ui/view/ViewTabBar.cxx"; sourceTree = "<group>"; };
		BE3C8B8523CCB8BB008302F8 /* drviewsc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsc.cxx; path = "../../ios-device/sd/source/ui/view/drviewsc.cxx"; sourceTree = "<group>"; };
		BE3C8B8623CCB8BB008302F8 /* drviewsg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsg.cxx; path = "../../ios-device/sd/source/ui/view/drviewsg.cxx"; sourceTree = "<group>"; };
		BE3C8B8723CCB8BB008302F8 /* zoomlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zoomlist.cxx; path = "../../ios-device/sd/source/ui/view/zoomlist.cxx"; sourceTree = "<group>"; };
		BE3C8B8823CCB8BC008302F8 /* drviews8.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews8.cxx; path = "../../ios-device/sd/source/ui/view/drviews8.cxx"; sourceTree = "<group>"; };
		BE3C8B8923CCB8BC008302F8 /* viewshel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewshel.cxx; path = "../../ios-device/sd/source/ui/view/viewshel.cxx"; sourceTree = "<group>"; };
		BE3C8B8A23CCB8BC008302F8 /* sdview5.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdview5.cxx; path = "../../ios-device/sd/source/ui/view/sdview5.cxx"; sourceTree = "<group>"; };
		BE3C8B8B23CCB8BC008302F8 /* sdwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdwindow.cxx; path = "../../ios-device/sd/source/ui/view/sdwindow.cxx"; sourceTree = "<group>"; };
		BE3C8B8C23CCB8BC008302F8 /* OutlineViewShellBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OutlineViewShellBase.cxx; path = "../../ios-device/sd/source/ui/view/OutlineViewShellBase.cxx"; sourceTree = "<group>"; };
		BE3C8B8D23CCB8BC008302F8 /* drviewsb.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviewsb.cxx; path = "../../ios-device/sd/source/ui/view/drviewsb.cxx"; sourceTree = "<group>"; };
		BE3C8B8E23CCB8BC008302F8 /* drtxtob.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drtxtob.cxx; path = "../../ios-device/sd/source/ui/view/drtxtob.cxx"; sourceTree = "<group>"; };
		BE3C8B8F23CCB8BC008302F8 /* viewshe2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewshe2.cxx; path = "../../ios-device/sd/source/ui/view/viewshe2.cxx"; sourceTree = "<group>"; };
		BE3C8B9023CCB8BC008302F8 /* viewshe3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewshe3.cxx; path = "../../ios-device/sd/source/ui/view/viewshe3.cxx"; sourceTree = "<group>"; };
		BE3C8B9123CCB8BC008302F8 /* outlview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = outlview.cxx; path = "../../ios-device/sd/source/ui/view/outlview.cxx"; sourceTree = "<group>"; };
		BE3C8B9223CCB8BC008302F8 /* ViewShellManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ViewShellManager.cxx; path = "../../ios-device/sd/source/ui/view/ViewShellManager.cxx"; sourceTree = "<group>"; };
		BE3C8B9323CCB8BC008302F8 /* drviews9.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drviews9.cxx; path = "../../ios-device/sd/source/ui/view/drviews9.cxx"; sourceTree = "<group>"; };
		BE3C8B9423CCB8BC008302F8 /* viewoverlaymanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewoverlaymanager.cxx; path = "../../ios-device/sd/source/ui/view/viewoverlaymanager.cxx"; sourceTree = "<group>"; };
		BE43FD39222693F200376855 /* zcodec.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zcodec.cxx; path = "../../ios-device/tools/source/zcodec/zcodec.cxx"; sourceTree = "<group>"; };
		BE43FD4222286B0700376855 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = "../../ios-device/sal/rtl/bootstrap.cxx"; sourceTree = "<group>"; };
		BE484B50228CF36D001EE76C /* configitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configitem.cxx; path = "../../ios-device/unotools/source/config/configitem.cxx"; sourceTree = "<group>"; };
		BE484B51228CF36D001EE76C /* itemholder1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemholder1.cxx; path = "../../ios-device/unotools/source/config/itemholder1.cxx"; sourceTree = "<group>"; };
		BE484B52228CF36D001EE76C /* misccfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = misccfg.cxx; path = "../../ios-device/unotools/source/config/misccfg.cxx"; sourceTree = "<group>"; };
		BE484B53228CF36D001EE76C /* options.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options.cxx; path = "../../ios-device/unotools/source/config/options.cxx"; sourceTree = "<group>"; };
		BE484B54228CF36D001EE76C /* historyoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = historyoptions.cxx; path = "../../ios-device/unotools/source/config/historyoptions.cxx"; sourceTree = "<group>"; };
		BE484B55228CF36D001EE76C /* fontoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontoptions.cxx; path = "../../ios-device/unotools/source/config/fontoptions.cxx"; sourceTree = "<group>"; };
		BE484B56228CF36D001EE76C /* configpaths.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configpaths.cxx; path = "../../ios-device/unotools/source/config/configpaths.cxx"; sourceTree = "<group>"; };
		BE484B57228CF36D001EE76C /* moduleoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moduleoptions.cxx; path = "../../ios-device/unotools/source/config/moduleoptions.cxx"; sourceTree = "<group>"; };
		BE484B58228CF36D001EE76C /* eventcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = eventcfg.cxx; path = "../../ios-device/unotools/source/config/eventcfg.cxx"; sourceTree = "<group>"; };
		BE484B59228CF36D001EE76C /* extendedsecurityoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extendedsecurityoptions.cxx; path = "../../ios-device/unotools/source/config/extendedsecurityoptions.cxx"; sourceTree = "<group>"; };
		BE484B5A228CF36D001EE76C /* itemholder1.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = itemholder1.hxx; path = "../../ios-device/unotools/source/config/itemholder1.hxx"; sourceTree = "<group>"; };
		BE484B5B228CF36D001EE76C /* printwarningoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printwarningoptions.cxx; path = "../../ios-device/unotools/source/config/printwarningoptions.cxx"; sourceTree = "<group>"; };
		BE484B5C228CF36D001EE76C /* fltrcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fltrcfg.cxx; path = "../../ios-device/unotools/source/config/fltrcfg.cxx"; sourceTree = "<group>"; };
		BE484B5D228CF36D001EE76C /* securityoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = securityoptions.cxx; path = "../../ios-device/unotools/source/config/securityoptions.cxx"; sourceTree = "<group>"; };
		BE484B5E228CF36D001EE76C /* defaultoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultoptions.cxx; path = "../../ios-device/unotools/source/config/defaultoptions.cxx"; sourceTree = "<group>"; };
		BE484B5F228CF36D001EE76C /* syslocaleoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syslocaleoptions.cxx; path = "../../ios-device/unotools/source/config/syslocaleoptions.cxx"; sourceTree = "<group>"; };
		BE484B60228CF36D001EE76C /* dynamicmenuoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dynamicmenuoptions.cxx; path = "../../ios-device/unotools/source/config/dynamicmenuoptions.cxx"; sourceTree = "<group>"; };
		BE484B61228CF36D001EE76C /* pathoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pathoptions.cxx; path = "../../ios-device/unotools/source/config/pathoptions.cxx"; sourceTree = "<group>"; };
		BE484B62228CF36D001EE76C /* useroptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = useroptions.cxx; path = "../../ios-device/unotools/source/config/useroptions.cxx"; sourceTree = "<group>"; };
		BE484B63228CF36D001EE76C /* confignode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = confignode.cxx; path = "../../ios-device/unotools/source/config/confignode.cxx"; sourceTree = "<group>"; };
		BE484B64228CF36D001EE76C /* viewoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewoptions.cxx; path = "../../ios-device/unotools/source/config/viewoptions.cxx"; sourceTree = "<group>"; };
		BE484B65228CF36D001EE76C /* compatibility.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compatibility.cxx; path = "../../ios-device/unotools/source/config/compatibility.cxx"; sourceTree = "<group>"; };
		BE484B66228CF36D001EE76C /* docinfohelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinfohelper.cxx; path = "../../ios-device/unotools/source/config/docinfohelper.cxx"; sourceTree = "<group>"; };
		BE484B67228CF36D001EE76C /* configmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configmgr.cxx; path = "../../ios-device/unotools/source/config/configmgr.cxx"; sourceTree = "<group>"; };
		BE484B68228CF36E001EE76C /* searchopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = searchopt.cxx; path = "../../ios-device/unotools/source/config/searchopt.cxx"; sourceTree = "<group>"; };
		BE484B69228CF36E001EE76C /* optionsdlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optionsdlg.cxx; path = "../../ios-device/unotools/source/config/optionsdlg.cxx"; sourceTree = "<group>"; };
		BE484B6A228CF36E001EE76C /* fontcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontcfg.cxx; path = "../../ios-device/unotools/source/config/fontcfg.cxx"; sourceTree = "<group>"; };
		BE484B6B228CF36E001EE76C /* lingucfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lingucfg.cxx; path = "../../ios-device/unotools/source/config/lingucfg.cxx"; sourceTree = "<group>"; };
		BE484B6C228CF36E001EE76C /* cmdoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cmdoptions.cxx; path = "../../ios-device/unotools/source/config/cmdoptions.cxx"; sourceTree = "<group>"; };
		BE484B6D228CF36E001EE76C /* compatibilityviewoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compatibilityviewoptions.cxx; path = "../../ios-device/unotools/source/config/compatibilityviewoptions.cxx"; sourceTree = "<group>"; };
		BE484B6E228CF36E001EE76C /* configvaluecontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configvaluecontainer.cxx; path = "../../ios-device/unotools/source/config/configvaluecontainer.cxx"; sourceTree = "<group>"; };
		BE484B6F228CF36E001EE76C /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = "../../ios-device/unotools/source/config/bootstrap.cxx"; sourceTree = "<group>"; };
		BE484B70228CF36E001EE76C /* saveopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = saveopt.cxx; path = "../../ios-device/unotools/source/config/saveopt.cxx"; sourceTree = "<group>"; };
		BE484B71228D8622001EE76C /* DocumentBroker.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = DocumentBroker.hpp; sourceTree = "<group>"; };
		BE484B732292AF96001EE76C /* frmload.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmload.cxx; path = "../../ios-device/sfx2/source/view/frmload.cxx"; sourceTree = "<group>"; };
		BE484B742292AF96001EE76C /* sfxbasecontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxbasecontroller.cxx; path = "../../ios-device/sfx2/source/view/sfxbasecontroller.cxx"; sourceTree = "<group>"; };
		BE484B752292AF96001EE76C /* frame.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cxx; path = "../../ios-device/sfx2/source/view/frame.cxx"; sourceTree = "<group>"; };
		BE484B762292AF96001EE76C /* viewsh.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewsh.cxx; path = "../../ios-device/sfx2/source/view/viewsh.cxx"; sourceTree = "<group>"; };
		BE484B772292AF96001EE76C /* printer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printer.cxx; path = "../../ios-device/sfx2/source/view/printer.cxx"; sourceTree = "<group>"; };
		BE484B782292AF96001EE76C /* viewfrm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfrm.cxx; path = "../../ios-device/sfx2/source/view/viewfrm.cxx"; sourceTree = "<group>"; };
		BE484B792292AF96001EE76C /* impviewframe.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impviewframe.hxx; path = "../../ios-device/sfx2/source/view/impviewframe.hxx"; sourceTree = "<group>"; };
		BE484B7A2292AF96001EE76C /* frame2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame2.cxx; path = "../../ios-device/sfx2/source/view/frame2.cxx"; sourceTree = "<group>"; };
		BE484B7B2292AF96001EE76C /* lokcharthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lokcharthelper.cxx; path = "../../ios-device/sfx2/source/view/lokcharthelper.cxx"; sourceTree = "<group>"; };
		BE484B7C2292AF96001EE76C /* ipclient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ipclient.cxx; path = "../../ios-device/sfx2/source/view/ipclient.cxx"; sourceTree = "<group>"; };
		BE484B7D2292AF96001EE76C /* viewfrm2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfrm2.cxx; path = "../../ios-device/sfx2/source/view/viewfrm2.cxx"; sourceTree = "<group>"; };
		BE484B7E2292AF96001EE76C /* viewimp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = viewimp.hxx; path = "../../ios-device/sfx2/source/view/viewimp.hxx"; sourceTree = "<group>"; };
		BE484B7F2292AF96001EE76C /* impframe.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impframe.hxx; path = "../../ios-device/sfx2/source/view/impframe.hxx"; sourceTree = "<group>"; };
		BE484B802292AF96001EE76C /* userinputinterception.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = userinputinterception.cxx; path = "../../ios-device/sfx2/source/view/userinputinterception.cxx"; sourceTree = "<group>"; };
		BE484B812292AF97001EE76C /* viewprn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewprn.cxx; path = "../../ios-device/sfx2/source/view/viewprn.cxx"; sourceTree = "<group>"; };
		BE484B822292AF97001EE76C /* classificationcontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = classificationcontroller.cxx; path = "../../ios-device/sfx2/source/view/classificationcontroller.cxx"; sourceTree = "<group>"; };
		BE484B832292AF97001EE76C /* viewfac.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewfac.cxx; path = "../../ios-device/sfx2/source/view/viewfac.cxx"; sourceTree = "<group>"; };
		BE484B842292AF97001EE76C /* lokhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lokhelper.cxx; path = "../../ios-device/sfx2/source/view/lokhelper.cxx"; sourceTree = "<group>"; };
		BE484B852292AF97001EE76C /* classificationhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = classificationhelper.cxx; path = "../../ios-device/sfx2/source/view/classificationhelper.cxx"; sourceTree = "<group>"; };
		BE512CB92518DE6400921C15 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
		BE58E129217F295B00249358 /* Log.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Log.hpp; sourceTree = "<group>"; };
		BE58E12A217F295B00249358 /* Png.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Png.hpp; sourceTree = "<group>"; };
		BE58E12B217F295B00249358 /* SigUtil.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = SigUtil.hpp; sourceTree = "<group>"; };
		BE58E12C217F295B00249358 /* Util.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Util.hpp; sourceTree = "<group>"; };
		BE58E12D217F295B00249358 /* MessageQueue.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = MessageQueue.hpp; sourceTree = "<group>"; };
		BE58E12E217F295B00249358 /* Protocol.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Protocol.hpp; sourceTree = "<group>"; };
		BE58E12F217F295B00249358 /* Session.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Session.hpp; sourceTree = "<group>"; };
		BE58E13021874A2E00249358 /* Mobile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Mobile.entitlements; sourceTree = "<group>"; };
		BE58E132218793B500249358 /* svpbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpbmp.cxx; path = "../../ios-device/vcl/headless/svpbmp.cxx"; sourceTree = "<group>"; };
		BE58E133218793B500249358 /* svpglyphcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpglyphcache.cxx; path = "../../ios-device/vcl/headless/svpglyphcache.cxx"; sourceTree = "<group>"; };
		BE58E134218793B600249358 /* svpgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpgdi.cxx; path = "../../ios-device/vcl/headless/svpgdi.cxx"; sourceTree = "<group>"; };
		BE58E135218793B600249358 /* headlessinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = headlessinst.cxx; path = "../../ios-device/vcl/headless/headlessinst.cxx"; sourceTree = "<group>"; };
		BE58E136218793B600249358 /* svpcairotextrender.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpcairotextrender.cxx; path = "../../ios-device/vcl/headless/svpcairotextrender.cxx"; sourceTree = "<group>"; };
		BE58E137218793B600249358 /* svpprn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpprn.cxx; path = "../../ios-device/vcl/headless/svpprn.cxx"; sourceTree = "<group>"; };
		BE58E138218793B600249358 /* svpdummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdummies.cxx; path = "../../ios-device/vcl/headless/svpdummies.cxx"; sourceTree = "<group>"; };
		BE58E139218793B600249358 /* svpinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpinst.cxx; path = "../../ios-device/vcl/headless/svpinst.cxx"; sourceTree = "<group>"; };
		BE58E13A218793B600249358 /* svpdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpdata.cxx; path = "../../ios-device/vcl/headless/svpdata.cxx"; sourceTree = "<group>"; };
		BE58E13B218793B600249358 /* svptext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svptext.cxx; path = "../../ios-device/vcl/headless/svptext.cxx"; sourceTree = "<group>"; };
		BE58E13C218793B600249358 /* svpvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpvd.cxx; path = "../../ios-device/vcl/headless/svpvd.cxx"; sourceTree = "<group>"; };
		BE58E13D218793B600249358 /* svpframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svpframe.cxx; path = "../../ios-device/vcl/headless/svpframe.cxx"; sourceTree = "<group>"; };
		BE5EB5B9213FE29900E0826C /* Log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Log.cpp; sourceTree = "<group>"; };
		BE5EB5BA213FE29900E0826C /* SpookyV2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SpookyV2.cpp; sourceTree = "<group>"; };
		BE5EB5BB213FE29900E0826C /* Session.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Session.cpp; sourceTree = "<group>"; };
		BE5EB5BC213FE29900E0826C /* Util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Util.cpp; sourceTree = "<group>"; };
		BE5EB5BD213FE29900E0826C /* MessageQueue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MessageQueue.cpp; sourceTree = "<group>"; };
		BE5EB5BE213FE29900E0826C /* SigUtil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SigUtil.cpp; sourceTree = "<group>"; };
		BE5EB5BF213FE29900E0826C /* Protocol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Protocol.cpp; sourceTree = "<group>"; };
		BE5EB5C0213FE29900E0826C /* FileUtil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FileUtil.cpp; sourceTree = "<group>"; };
		BE5EB5CC213FE2D000E0826C /* ClientSession.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ClientSession.cpp; sourceTree = "<group>"; };
		BE5EB5CD213FE2D000E0826C /* TileCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TileCache.cpp; sourceTree = "<group>"; };
		BE5EB5D12140039100E0826C /* LOOLWSD.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LOOLWSD.cpp; sourceTree = "<group>"; };
		BE5EB5D321400DC100E0826C /* DocumentBroker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentBroker.cpp; sourceTree = "<group>"; };
		BE5EB5D521401E0F00E0826C /* Storage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Storage.cpp; sourceTree = "<group>"; };
		BE5EB5D92140363100E0826C /* ios.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ios.mm; path = ../../ios/ios.mm; sourceTree = "<group>"; };
		BE5EB5DB2140480B00E0826C /* ICU.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = ICU.dat; path = ../../../ICU.dat; sourceTree = "<group>"; };
		BE62A58C24BF873D00AFFD77 /* pngwrite.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngwrite.cxx; path = "../../ios-device/vcl/source/filter/png/pngwrite.cxx"; sourceTree = "<group>"; };
		BE62A58D24BF873D00AFFD77 /* PngImageReader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PngImageReader.cxx; path = "../../ios-device/vcl/source/filter/png/PngImageReader.cxx"; sourceTree = "<group>"; };
		BE62A58E24BF873D00AFFD77 /* pngread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pngread.cxx; path = "../../ios-device/vcl/source/filter/png/pngread.cxx"; sourceTree = "<group>"; };
		BE62A58F24BF875700AFFD77 /* GraphicNativeTransform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeTransform.cxx; path = "../../ios-device/vcl/source/filter/GraphicNativeTransform.cxx"; sourceTree = "<group>"; };
		BE62A59024BF875700AFFD77 /* graphicfilter_internal.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = graphicfilter_internal.hxx; path = "../../ios-device/vcl/source/filter/graphicfilter_internal.hxx"; sourceTree = "<group>"; };
		BE62A59124BF875700AFFD77 /* graphicfilter2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter2.cxx; path = "../../ios-device/vcl/source/filter/graphicfilter2.cxx"; sourceTree = "<group>"; };
		BE62A59224BF875700AFFD77 /* FilterConfigCache.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterConfigCache.hxx; path = "../../ios-device/vcl/source/filter/FilterConfigCache.hxx"; sourceTree = "<group>"; };
		BE62A59324BF875700AFFD77 /* FilterConfigCache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigCache.cxx; path = "../../ios-device/vcl/source/filter/FilterConfigCache.cxx"; sourceTree = "<group>"; };
		BE62A59424BF875700AFFD77 /* GraphicNativeMetadata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicNativeMetadata.cxx; path = "../../ios-device/vcl/source/filter/GraphicNativeMetadata.cxx"; sourceTree = "<group>"; };
		BE62A59524BF875700AFFD77 /* GraphicFormatDetector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicFormatDetector.cxx; path = "../../ios-device/vcl/source/filter/GraphicFormatDetector.cxx"; sourceTree = "<group>"; };
		BE62A59624BF875700AFFD77 /* FilterConfigItem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterConfigItem.cxx; path = "../../ios-device/vcl/source/filter/FilterConfigItem.cxx"; sourceTree = "<group>"; };
		BE636210215101D000F4237E /* WebSocketHandler.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = WebSocketHandler.hpp; sourceTree = "<group>"; };
		BE6362C12153B5B500F4237E /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
		BE7228E02417BC9F000ADABD /* StringVector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StringVector.cpp; sourceTree = "<group>"; };
		BE7228E12417BC9F000ADABD /* StringVector.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = StringVector.hpp; sourceTree = "<group>"; };
		BE7D6A2123FA9C2300C2E605 /* winreg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = winreg.cxx; path = "../../ios-device/configmgr/source/winreg.cxx"; sourceTree = "<group>"; };
		BE7D6A2223FA9C2300C2E605 /* propertynode.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = propertynode.hxx; path = "../../ios-device/configmgr/source/propertynode.hxx"; sourceTree = "<group>"; };
		BE7D6A2323FA9C2300C2E605 /* childaccess.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = childaccess.hxx; path = "../../ios-device/configmgr/source/childaccess.hxx"; sourceTree = "<group>"; };
		BE7D6A2423FA9C2300C2E605 /* readwriteaccess.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = readwriteaccess.hxx; path = "../../ios-device/configmgr/source/readwriteaccess.hxx"; sourceTree = "<group>"; };
		BE7D6A2523FA9C2300C2E605 /* dconf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dconf.cxx; path = "../../ios-device/configmgr/source/dconf.cxx"; sourceTree = "<group>"; };
		BE7D6A2623FA9C2300C2E605 /* type.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = type.cxx; path = "../../ios-device/configmgr/source/type.cxx"; sourceTree = "<group>"; };
		BE7D6A2723FA9C2300C2E605 /* parsemanager.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = parsemanager.hxx; path = "../../ios-device/configmgr/source/parsemanager.hxx"; sourceTree = "<group>"; };
		BE7D6A2823FA9C2300C2E605 /* rootnode.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = rootnode.hxx; path = "../../ios-device/configmgr/source/rootnode.hxx"; sourceTree = "<group>"; };
		BE7D6A2923FA9C2300C2E605 /* xmldata.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = xmldata.hxx; path = "../../ios-device/configmgr/source/xmldata.hxx"; sourceTree = "<group>"; };
		BE7D6A2A23FA9C2300C2E605 /* xcsparser.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = xcsparser.hxx; path = "../../ios-device/configmgr/source/xcsparser.hxx"; sourceTree = "<group>"; };
		BE7D6A2B23FA9C2300C2E605 /* xcuparser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xcuparser.cxx; path = "../../ios-device/configmgr/source/xcuparser.cxx"; sourceTree = "<group>"; };
		BE7D6A2C23FA9C2300C2E605 /* lock.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lock.cxx; path = "../../ios-device/configmgr/source/lock.cxx"; sourceTree = "<group>"; };
		BE7D6A2D23FA9C2300C2E605 /* partial.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = partial.cxx; path = "../../ios-device/configmgr/source/partial.cxx"; sourceTree = "<group>"; };
		BE7D6A2E23FA9C2400C2E605 /* partial.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = partial.hxx; path = "../../ios-device/configmgr/source/partial.hxx"; sourceTree = "<group>"; };
		BE7D6A2F23FA9C2400C2E605 /* config_map.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = config_map.hxx; path = "../../ios-device/configmgr/source/config_map.hxx"; sourceTree = "<group>"; };
		BE7D6A3023FA9C2400C2E605 /* localizedpropertynode.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = localizedpropertynode.hxx; path = "../../ios-device/configmgr/source/localizedpropertynode.hxx"; sourceTree = "<group>"; };
		BE7D6A3123FA9C2400C2E605 /* configurationprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configurationprovider.cxx; path = "../../ios-device/configmgr/source/configurationprovider.cxx"; sourceTree = "<group>"; };
		BE7D6A3223FA9C2400C2E605 /* groupnode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = groupnode.cxx; path = "../../ios-device/configmgr/source/groupnode.cxx"; sourceTree = "<group>"; };
		BE7D6A3323FA9C2400C2E605 /* components.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = components.hxx; path = "../../ios-device/configmgr/source/components.hxx"; sourceTree = "<group>"; };
		BE7D6A3423FA9C2400C2E605 /* localizedvaluenode.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = localizedvaluenode.hxx; path = "../../ios-device/configmgr/source/localizedvaluenode.hxx"; sourceTree = "<group>"; };
		BE7D6A3523FA9C2400C2E605 /* xcdparser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xcdparser.cxx; path = "../../ios-device/configmgr/source/xcdparser.cxx"; sourceTree = "<group>"; };
		BE7D6A3623FA9C2400C2E605 /* localizedpropertynode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = localizedpropertynode.cxx; path = "../../ios-device/configmgr/source/localizedpropertynode.cxx"; sourceTree = "<group>"; };
		BE7D6A3723FA9C2400C2E605 /* dconf.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = dconf.hxx; path = "../../ios-device/configmgr/source/dconf.hxx"; sourceTree = "<group>"; };
		BE7D6A3823FA9C2400C2E605 /* valueparser.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = valueparser.hxx; path = "../../ios-device/configmgr/source/valueparser.hxx"; sourceTree = "<group>"; };
		BE7D6A3923FA9C2400C2E605 /* update.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = update.cxx; path = "../../ios-device/configmgr/source/update.cxx"; sourceTree = "<group>"; };
		BE7D6A3A23FA9C2400C2E605 /* xcsparser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xcsparser.cxx; path = "../../ios-device/configmgr/source/xcsparser.cxx"; sourceTree = "<group>"; };
		BE7D6A3B23FA9C2400C2E605 /* additions.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = additions.hxx; path = "../../ios-device/configmgr/source/additions.hxx"; sourceTree = "<group>"; };
		BE7D6A3C23FA9C2400C2E605 /* broadcaster.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = broadcaster.hxx; path = "../../ios-device/configmgr/source/broadcaster.hxx"; sourceTree = "<group>"; };
		BE7D6A3D23FA9C2400C2E605 /* type.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = type.hxx; path = "../../ios-device/configmgr/source/type.hxx"; sourceTree = "<group>"; };
		BE7D6A3E23FA9C2400C2E605 /* xcdparser.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = xcdparser.hxx; path = "../../ios-device/configmgr/source/xcdparser.hxx"; sourceTree = "<group>"; };
		BE7D6A3F23FA9C2400C2E605 /* writemodfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = writemodfile.cxx; path = "../../ios-device/configmgr/source/writemodfile.cxx"; sourceTree = "<group>"; };
		BE7D6A4023FA9C2400C2E605 /* defaultprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultprovider.cxx; path = "../../ios-device/configmgr/source/defaultprovider.cxx"; sourceTree = "<group>"; };
		BE7D6A4123FA9C2500C2E605 /* nodemap.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = nodemap.hxx; path = "../../ios-device/configmgr/source/nodemap.hxx"; sourceTree = "<group>"; };
		BE7D6A4223FA9C2500C2E605 /* broadcaster.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = broadcaster.cxx; path = "../../ios-device/configmgr/source/broadcaster.cxx"; sourceTree = "<group>"; };
		BE7D6A4323FA9C2500C2E605 /* rootaccess.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = rootaccess.hxx; path = "../../ios-device/configmgr/source/rootaccess.hxx"; sourceTree = "<group>"; };
		BE7D6A4423FA9C2500C2E605 /* modifications.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = modifications.hxx; path = "../../ios-device/configmgr/source/modifications.hxx"; sourceTree = "<group>"; };
		BE7D6A4523FA9C2500C2E605 /* data.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = data.cxx; path = "../../ios-device/configmgr/source/data.cxx"; sourceTree = "<group>"; };
		BE7D6A4623FA9C2500C2E605 /* readwriteaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwriteaccess.cxx; path = "../../ios-device/configmgr/source/readwriteaccess.cxx"; sourceTree = "<group>"; };
		BE7D6A4723FA9C2500C2E605 /* xcuparser.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = xcuparser.hxx; path = "../../ios-device/configmgr/source/xcuparser.hxx"; sourceTree = "<group>"; };
		BE7D6A4823FA9C2500C2E605 /* nodemap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nodemap.cxx; path = "../../ios-device/configmgr/source/nodemap.cxx"; sourceTree = "<group>"; };
		BE7D6A4923FA9C2500C2E605 /* node.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = node.hxx; path = "../../ios-device/configmgr/source/node.hxx"; sourceTree = "<group>"; };
		BE7D6A4A23FA9C2500C2E605 /* readonlyaccess.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = readonlyaccess.hxx; path = "../../ios-device/configmgr/source/readonlyaccess.hxx"; sourceTree = "<group>"; };
		BE7D6A4B23FA9C2500C2E605 /* valueparser.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = valueparser.cxx; path = "../../ios-device/configmgr/source/valueparser.cxx"; sourceTree = "<group>"; };
		BE7D6A4C23FA9C2500C2E605 /* parsemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = parsemanager.cxx; path = "../../ios-device/configmgr/source/parsemanager.cxx"; sourceTree = "<group>"; };
		BE7D6A4D23FA9C2500C2E605 /* modifications.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modifications.cxx; path = "../../ios-device/configmgr/source/modifications.cxx"; sourceTree = "<group>"; };
		BE7D6A4E23FA9C2500C2E605 /* update.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = update.hxx; path = "../../ios-device/configmgr/source/update.hxx"; sourceTree = "<group>"; };
		BE7D6A4F23FA9C2600C2E605 /* configmgr.component */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = configmgr.component; path = "../../ios-device/configmgr/source/configmgr.component"; sourceTree = "<group>"; };
		BE7D6A5023FA9C2600C2E605 /* groupnode.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = groupnode.hxx; path = "../../ios-device/configmgr/source/groupnode.hxx"; sourceTree = "<group>"; };
		BE7D6A5123FA9C2600C2E605 /* configurationprovider.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = configurationprovider.hxx; path = "../../ios-device/configmgr/source/configurationprovider.hxx"; sourceTree = "<group>"; };
		BE7D6A5223FA9C2600C2E605 /* access.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = access.cxx; path = "../../ios-device/configmgr/source/access.cxx"; sourceTree = "<group>"; };
		BE7D6A5323FA9C2600C2E605 /* node.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = node.cxx; path = "../../ios-device/configmgr/source/node.cxx"; sourceTree = "<group>"; };
		BE7D6A5423FA9C2600C2E605 /* rootaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rootaccess.cxx; path = "../../ios-device/configmgr/source/rootaccess.cxx"; sourceTree = "<group>"; };
		BE7D6A5523FA9C2600C2E605 /* configurationregistry.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = configurationregistry.hxx; path = "../../ios-device/configmgr/source/configurationregistry.hxx"; sourceTree = "<group>"; };
		BE7D6A5623FA9C2600C2E605 /* localizedvaluenode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = localizedvaluenode.cxx; path = "../../ios-device/configmgr/source/localizedvaluenode.cxx"; sourceTree = "<group>"; };
		BE7D6A5723FA9C2600C2E605 /* xmldata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xmldata.cxx; path = "../../ios-device/configmgr/source/xmldata.cxx"; sourceTree = "<group>"; };
		BE7D6A5823FA9C2600C2E605 /* services.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = services.cxx; path = "../../ios-device/configmgr/source/services.cxx"; sourceTree = "<group>"; };
		BE7D6A5923FA9C2600C2E605 /* lock.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = lock.hxx; path = "../../ios-device/configmgr/source/lock.hxx"; sourceTree = "<group>"; };
		BE7D6A5A23FA9C2600C2E605 /* configurationregistry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configurationregistry.cxx; path = "../../ios-device/configmgr/source/configurationregistry.cxx"; sourceTree = "<group>"; };
		BE7D6A5B23FA9C2600C2E605 /* data.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = data.hxx; path = "../../ios-device/configmgr/source/data.hxx"; sourceTree = "<group>"; };
		BE7D6A5C23FA9C2600C2E605 /* childaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childaccess.cxx; path = "../../ios-device/configmgr/source/childaccess.cxx"; sourceTree = "<group>"; };
		BE7D6A5D23FA9C2700C2E605 /* propertynode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertynode.cxx; path = "../../ios-device/configmgr/source/propertynode.cxx"; sourceTree = "<group>"; };
		BE7D6A5E23FA9C2700C2E605 /* access.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = access.hxx; path = "../../ios-device/configmgr/source/access.hxx"; sourceTree = "<group>"; };
		BE7D6A5F23FA9C2700C2E605 /* readonlyaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readonlyaccess.cxx; path = "../../ios-device/configmgr/source/readonlyaccess.cxx"; sourceTree = "<group>"; };
		BE7D6A6023FA9C2700C2E605 /* components.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = components.cxx; path = "../../ios-device/configmgr/source/components.cxx"; sourceTree = "<group>"; };
		BE7D6A6123FA9C2700C2E605 /* setnode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = setnode.cxx; path = "../../ios-device/configmgr/source/setnode.cxx"; sourceTree = "<group>"; };
		BE7D6A6223FA9C2700C2E605 /* setnode.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = setnode.hxx; path = "../../ios-device/configmgr/source/setnode.hxx"; sourceTree = "<group>"; };
		BE7D6A6323FA9C2700C2E605 /* winreg.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = winreg.hxx; path = "../../ios-device/configmgr/source/winreg.hxx"; sourceTree = "<group>"; };
		BE7D6A6423FA9C2700C2E605 /* writemodfile.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = writemodfile.hxx; path = "../../ios-device/configmgr/source/writemodfile.hxx"; sourceTree = "<group>"; };
		BE7D6A6523FA9C2700C2E605 /* defaultprovider.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = defaultprovider.hxx; path = "../../ios-device/configmgr/source/defaultprovider.hxx"; sourceTree = "<group>"; };
		BE7D6A6623FA9C2700C2E605 /* parser.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = parser.hxx; path = "../../ios-device/configmgr/source/parser.hxx"; sourceTree = "<group>"; };
		BE7D6A6723FA9C2700C2E605 /* rootnode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rootnode.cxx; path = "../../ios-device/configmgr/source/rootnode.cxx"; sourceTree = "<group>"; };
		BE7D6A6A23FAA8B500C2E605 /* loolkitconfig.xcu */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = loolkitconfig.xcu; path = ../loolkitconfig.xcu; sourceTree = "<group>"; };
		BE7E5B7623AD07BE00F9462A /* SvxPresetListBox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SvxPresetListBox.cxx; path = "../../ios-device/svx/source/tbxctrls/SvxPresetListBox.cxx"; sourceTree = "<group>"; };
		BE7E5B7723AD07BE00F9462A /* tbxcolor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxcolor.cxx; path = "../../ios-device/svx/source/tbxctrls/tbxcolor.cxx"; sourceTree = "<group>"; };
		BE7E5B7823AD07BE00F9462A /* tbxdrctl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxdrctl.cxx; path = "../../ios-device/svx/source/tbxctrls/tbxdrctl.cxx"; sourceTree = "<group>"; };
		BE7E5B7923AD07BE00F9462A /* fillctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fillctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/fillctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B7A23AD07BE00F9462A /* colrctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colrctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/colrctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B7B23AD07BE00F9462A /* grafctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grafctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/grafctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B7C23AD07BE00F9462A /* bulletsnumbering.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bulletsnumbering.cxx; path = "../../ios-device/svx/source/tbxctrls/bulletsnumbering.cxx"; sourceTree = "<group>"; };
		BE7E5B7D23AD07BE00F9462A /* extrusioncontrols.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extrusioncontrols.cxx; path = "../../ios-device/svx/source/tbxctrls/extrusioncontrols.cxx"; sourceTree = "<group>"; };
		BE7E5B7E23AD07BE00F9462A /* formatpaintbrushctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formatpaintbrushctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/formatpaintbrushctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B7F23AD07BE00F9462A /* lboxctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lboxctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/lboxctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B8023AD07BE00F9462A /* layctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = layctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/layctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B8123AD07BE00F9462A /* itemwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemwin.cxx; path = "../../ios-device/svx/source/tbxctrls/itemwin.cxx"; sourceTree = "<group>"; };
		BE7E5B8223AD07BE00F9462A /* SvxColorValueSet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SvxColorValueSet.cxx; path = "../../ios-device/svx/source/tbxctrls/SvxColorValueSet.cxx"; sourceTree = "<group>"; };
		BE7E5B8323AD07BE00F9462A /* linectrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linectrl.cxx; path = "../../ios-device/svx/source/tbxctrls/linectrl.cxx"; sourceTree = "<group>"; };
		BE7E5B8423AD07BE00F9462A /* extrusioncontrols.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = extrusioncontrols.hxx; path = "../../ios-device/svx/source/tbxctrls/extrusioncontrols.hxx"; sourceTree = "<group>"; };
		BE7E5B8523AD07BE00F9462A /* tbcontrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbcontrl.cxx; path = "../../ios-device/svx/source/tbxctrls/tbcontrl.cxx"; sourceTree = "<group>"; };
		BE7E5B8623AD07BE00F9462A /* PaletteManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PaletteManager.cxx; path = "../../ios-device/svx/source/tbxctrls/PaletteManager.cxx"; sourceTree = "<group>"; };
		BE7E5B8723AD07BE00F9462A /* SvxColorChildWindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SvxColorChildWindow.cxx; path = "../../ios-device/svx/source/tbxctrls/SvxColorChildWindow.cxx"; sourceTree = "<group>"; };
		BE7E5B8823AD07BF00F9462A /* tbunocontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbunocontroller.cxx; path = "../../ios-device/svx/source/tbxctrls/tbunocontroller.cxx"; sourceTree = "<group>"; };
		BE7E5B8923AD07BF00F9462A /* Palette.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Palette.cxx; path = "../../ios-device/svx/source/tbxctrls/Palette.cxx"; sourceTree = "<group>"; };
		BE7E5B8A23AD07BF00F9462A /* tbunosearchcontrollers.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbunosearchcontrollers.cxx; path = "../../ios-device/svx/source/tbxctrls/tbunosearchcontrollers.cxx"; sourceTree = "<group>"; };
		BE7E5B8B23AD07BF00F9462A /* tbxcolorupdate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxcolorupdate.cxx; path = "../../ios-device/svx/source/tbxctrls/tbxcolorupdate.cxx"; sourceTree = "<group>"; };
		BE7E5B8C23AD07BF00F9462A /* verttexttbxctrl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = verttexttbxctrl.cxx; path = "../../ios-device/svx/source/tbxctrls/verttexttbxctrl.cxx"; sourceTree = "<group>"; };
		BE7E5B8D23AD07BF00F9462A /* fontworkgallery.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontworkgallery.cxx; path = "../../ios-device/svx/source/tbxctrls/fontworkgallery.cxx"; sourceTree = "<group>"; };
		BE7E5B9123AD194D00F9462A /* slidesorterbaropt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slidesorterbaropt.cxx; path = "../../ios-device/svtools/source/config/slidesorterbaropt.cxx"; sourceTree = "<group>"; };
		BE7E5B9223AD194D00F9462A /* apearcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = apearcfg.cxx; path = "../../ios-device/svtools/source/config/apearcfg.cxx"; sourceTree = "<group>"; };
		BE7E5B9323AD194D00F9462A /* accessibilityoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = accessibilityoptions.cxx; path = "../../ios-device/svtools/source/config/accessibilityoptions.cxx"; sourceTree = "<group>"; };
		BE7E5B9423AD194D00F9462A /* extcolorcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extcolorcfg.cxx; path = "../../ios-device/svtools/source/config/extcolorcfg.cxx"; sourceTree = "<group>"; };
		BE7E5B9523AD194D00F9462A /* htmlcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = htmlcfg.cxx; path = "../../ios-device/svtools/source/config/htmlcfg.cxx"; sourceTree = "<group>"; };
		BE7E5B9623AD194D00F9462A /* menuoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = menuoptions.cxx; path = "../../ios-device/svtools/source/config/menuoptions.cxx"; sourceTree = "<group>"; };
		BE7E5B9723AD194D00F9462A /* colorcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = colorcfg.cxx; path = "../../ios-device/svtools/source/config/colorcfg.cxx"; sourceTree = "<group>"; };
		BE7E5B9823AD194D00F9462A /* itemholder2.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = itemholder2.hxx; path = "../../ios-device/svtools/source/config/itemholder2.hxx"; sourceTree = "<group>"; };
		BE7E5B9923AD194D00F9462A /* printoptions.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printoptions.cxx; path = "../../ios-device/svtools/source/config/printoptions.cxx"; sourceTree = "<group>"; };
		BE7E5B9A23AD194D00F9462A /* helpopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpopt.cxx; path = "../../ios-device/svtools/source/config/helpopt.cxx"; sourceTree = "<group>"; };
		BE7E5B9B23AD194D00F9462A /* miscopt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = miscopt.cxx; path = "../../ios-device/svtools/source/config/miscopt.cxx"; sourceTree = "<group>"; };
		BE7E5B9C23AD194D00F9462A /* optionsdrawinglayer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = optionsdrawinglayer.cxx; path = "../../ios-device/svtools/source/config/optionsdrawinglayer.cxx"; sourceTree = "<group>"; };
		BE7E5B9D23AD194D00F9462A /* fontsubstconfig.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fontsubstconfig.cxx; path = "../../ios-device/svtools/source/config/fontsubstconfig.cxx"; sourceTree = "<group>"; };
		BE7E5B9E23AD194D00F9462A /* itemholder2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemholder2.cxx; path = "../../ios-device/svtools/source/config/itemholder2.cxx"; sourceTree = "<group>"; };
		BE7E6807229D374500DE73C8 /* clipboard.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = clipboard.hxx; path = "../../ios-device/vcl/ios/clipboard.hxx"; sourceTree = "<group>"; };
		BE7E6808229D374500DE73C8 /* iosinst.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iosinst.cxx; path = "../../ios-device/vcl/ios/iosinst.cxx"; sourceTree = "<group>"; };
		BE7E6809229D374500DE73C8 /* dummies.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dummies.cxx; path = "../../ios-device/vcl/ios/dummies.cxx"; sourceTree = "<group>"; };
		BE7E680A229D374500DE73C8 /* HtmlFmtFlt.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = HtmlFmtFlt.hxx; path = "../../ios-device/vcl/ios/HtmlFmtFlt.hxx"; sourceTree = "<group>"; };
		BE7E680B229D374500DE73C8 /* clipboard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clipboard.cxx; path = "../../ios-device/vcl/ios/clipboard.cxx"; sourceTree = "<group>"; };
		BE7E680C229D374500DE73C8 /* iOSTransferable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iOSTransferable.cxx; path = "../../ios-device/vcl/ios/iOSTransferable.cxx"; sourceTree = "<group>"; };
		BE7E680D229D374500DE73C8 /* DataFlavorMapping.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = DataFlavorMapping.hxx; path = "../../ios-device/vcl/ios/DataFlavorMapping.hxx"; sourceTree = "<group>"; };
		BE7E680E229D374500DE73C8 /* iOSTransferable.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = iOSTransferable.hxx; path = "../../ios-device/vcl/ios/iOSTransferable.hxx"; sourceTree = "<group>"; };
		BE7E680F229D374500DE73C8 /* DataFlavorMapping.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DataFlavorMapping.cxx; path = "../../ios-device/vcl/ios/DataFlavorMapping.cxx"; sourceTree = "<group>"; };
		BE7E6810229D374500DE73C8 /* HtmlFmtFlt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = HtmlFmtFlt.cxx; path = "../../ios-device/vcl/ios/HtmlFmtFlt.cxx"; sourceTree = "<group>"; };
		BE80E43121AD92F600859C97 /* Fonts */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Fonts; path = Mobile/Fonts; sourceTree = SOURCE_ROOT; };
		BE80E43421B562F500859C97 /* servicemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = servicemanager.cxx; path = "../../ios-device/cppuhelper/source/servicemanager.cxx"; sourceTree = "<group>"; };
		BE80E43521B562F500859C97 /* component_context.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component_context.cxx; path = "../../ios-device/cppuhelper/source/component_context.cxx"; sourceTree = "<group>"; };
		BE80E43621B562F500859C97 /* bootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bootstrap.cxx; path = "../../ios-device/cppuhelper/source/bootstrap.cxx"; sourceTree = "<group>"; };
		BE80E43721B562F500859C97 /* macro_expander.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macro_expander.cxx; path = "../../ios-device/cppuhelper/source/macro_expander.cxx"; sourceTree = "<group>"; };
		BE80E43821B562F500859C97 /* propshlp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propshlp.cxx; path = "../../ios-device/cppuhelper/source/propshlp.cxx"; sourceTree = "<group>"; };
		BE80E43921B562F500859C97 /* compat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = compat.cxx; path = "../../ios-device/cppuhelper/source/compat.cxx"; sourceTree = "<group>"; };
		BE80E43A21B562F500859C97 /* loadsharedlibcomponentfactory.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = loadsharedlibcomponentfactory.hxx; path = "../../ios-device/cppuhelper/source/loadsharedlibcomponentfactory.hxx"; sourceTree = "<group>"; };
		BE80E43B21B562F500859C97 /* paths.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = paths.cxx; path = "../../ios-device/cppuhelper/source/paths.cxx"; sourceTree = "<group>"; };
		BE80E43C21B562F500859C97 /* typemanager.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = typemanager.hxx; path = "../../ios-device/cppuhelper/source/typemanager.hxx"; sourceTree = "<group>"; };
		BE80E43D21B562F500859C97 /* implbase_ex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase_ex.cxx; path = "../../ios-device/cppuhelper/source/implbase_ex.cxx"; sourceTree = "<group>"; };
		BE80E43E21B562F500859C97 /* weak.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = weak.cxx; path = "../../ios-device/cppuhelper/source/weak.cxx"; sourceTree = "<group>"; };
		BE80E43F21B562F500859C97 /* gcc3.map */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = gcc3.map; path = "../../ios-device/cppuhelper/source/gcc3.map"; sourceTree = "<group>"; };
		BE80E44021B562F500859C97 /* implementationentry.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implementationentry.cxx; path = "../../ios-device/cppuhelper/source/implementationentry.cxx"; sourceTree = "<group>"; };
		BE80E44121B562F500859C97 /* macro_expander.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = macro_expander.hxx; path = "../../ios-device/cppuhelper/source/macro_expander.hxx"; sourceTree = "<group>"; };
		BE80E44221B562F500859C97 /* paths.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = paths.hxx; path = "../../ios-device/cppuhelper/source/paths.hxx"; sourceTree = "<group>"; };
		BE80E44321B562F500859C97 /* unourl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unourl.cxx; path = "../../ios-device/cppuhelper/source/unourl.cxx"; sourceTree = "<group>"; };
		BE80E44421B562F500859C97 /* supportsservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = supportsservice.cxx; path = "../../ios-device/cppuhelper/source/supportsservice.cxx"; sourceTree = "<group>"; };
		BE80E44521B562F500859C97 /* defaultbootstrap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = defaultbootstrap.cxx; path = "../../ios-device/cppuhelper/source/defaultbootstrap.cxx"; sourceTree = "<group>"; };
		BE80E44621B562F500859C97 /* interfacecontainer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interfacecontainer.cxx; path = "../../ios-device/cppuhelper/source/interfacecontainer.cxx"; sourceTree = "<group>"; };
		BE80E44721B562F500859C97 /* implbase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = implbase.cxx; path = "../../ios-device/cppuhelper/source/implbase.cxx"; sourceTree = "<group>"; };
		BE80E44821B562F600859C97 /* access_control.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = access_control.cxx; path = "../../ios-device/cppuhelper/source/access_control.cxx"; sourceTree = "<group>"; };
		BE80E44921B562F600859C97 /* shlib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shlib.cxx; path = "../../ios-device/cppuhelper/source/shlib.cxx"; sourceTree = "<group>"; };
		BE80E44A21B562F600859C97 /* factory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = factory.cxx; path = "../../ios-device/cppuhelper/source/factory.cxx"; sourceTree = "<group>"; };
		BE80E44B21B562F600859C97 /* tdmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tdmgr.cxx; path = "../../ios-device/cppuhelper/source/tdmgr.cxx"; sourceTree = "<group>"; };
		BE80E44C21B562F600859C97 /* typemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemanager.cxx; path = "../../ios-device/cppuhelper/source/typemanager.cxx"; sourceTree = "<group>"; };
		BE80E44D21B562F600859C97 /* findsofficepath.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = findsofficepath.c; path = "../../ios-device/cppuhelper/source/findsofficepath.c"; sourceTree = "<group>"; };
		BE80E44E21B562F600859C97 /* typeprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typeprovider.cxx; path = "../../ios-device/cppuhelper/source/typeprovider.cxx"; sourceTree = "<group>"; };
		BE80E44F21B562F600859C97 /* exc_thrower.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exc_thrower.cxx; path = "../../ios-device/cppuhelper/source/exc_thrower.cxx"; sourceTree = "<group>"; };
		BE80E45021B562F600859C97 /* component.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = component.cxx; path = "../../ios-device/cppuhelper/source/component.cxx"; sourceTree = "<group>"; };
		BE80E45121B562F600859C97 /* propertysetmixin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = propertysetmixin.cxx; path = "../../ios-device/cppuhelper/source/propertysetmixin.cxx"; sourceTree = "<group>"; };
		BE80E45221B562F600859C97 /* servicemanager.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = servicemanager.hxx; path = "../../ios-device/cppuhelper/source/servicemanager.hxx"; sourceTree = "<group>"; };
		BE80E45321B56E5000859C97 /* init.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = init.cxx; path = "../../ios-device/desktop/source/lib/init.cxx"; sourceTree = "<group>"; };
		BE80E45421B56E5000859C97 /* lokclipboard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lokclipboard.cxx; path = "../../ios-device/desktop/source/lib/lokclipboard.cxx"; sourceTree = "<group>"; };
		BE80E45521B56E5000859C97 /* lokinteractionhandler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lokinteractionhandler.cxx; path = "../../ios-device/desktop/source/lib/lokinteractionhandler.cxx"; sourceTree = "<group>"; };
		BE80E45621B68F5000859C97 /* TemplateCollectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemplateCollectionViewController.h; sourceTree = "<group>"; };
		BE80E45721B68F5700859C97 /* TemplateCollectionViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TemplateCollectionViewController.mm; sourceTree = "<group>"; };
		BE80E45C21B6CEF100859C97 /* TemplateSectionHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemplateSectionHeaderView.h; sourceTree = "<group>"; };
		BE80E45D21B6CEF200859C97 /* TemplateSectionHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TemplateSectionHeaderView.m; sourceTree = "<group>"; };
		BE80E46721B7066C00859C97 /* Templates */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Templates; sourceTree = "<group>"; };
		BE8C0372223FC4EB0048B7EA /* stringio.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stringio.cxx; path = "../../ios-device/svl/source/items/stringio.cxx"; sourceTree = "<group>"; };
		BE8C0373223FC4EB0048B7EA /* itemprop.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemprop.cxx; path = "../../ios-device/svl/source/items/itemprop.cxx"; sourceTree = "<group>"; };
		BE8C0374223FC4EB0048B7EA /* itemset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemset.cxx; path = "../../ios-device/svl/source/items/itemset.cxx"; sourceTree = "<group>"; };
		BE8C0375223FC4EB0048B7EA /* macitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macitem.cxx; path = "../../ios-device/svl/source/items/macitem.cxx"; sourceTree = "<group>"; };
		BE8C0376223FC4EB0048B7EA /* poolcach.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolcach.cxx; path = "../../ios-device/svl/source/items/poolcach.cxx"; sourceTree = "<group>"; };
		BE8C0377223FC4EB0048B7EA /* ilstitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ilstitem.cxx; path = "../../ios-device/svl/source/items/ilstitem.cxx"; sourceTree = "<group>"; };
		BE8C0378223FC4EC0048B7EA /* intitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intitem.cxx; path = "../../ios-device/svl/source/items/intitem.cxx"; sourceTree = "<group>"; };
		BE8C0379223FC4EC0048B7EA /* globalnameitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = globalnameitem.cxx; path = "../../ios-device/svl/source/items/globalnameitem.cxx"; sourceTree = "<group>"; };
		BE8C037A223FC4EC0048B7EA /* imageitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imageitm.cxx; path = "../../ios-device/svl/source/items/imageitm.cxx"; sourceTree = "<group>"; };
		BE8C037B223FC4EC0048B7EA /* stylepool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stylepool.cxx; path = "../../ios-device/svl/source/items/stylepool.cxx"; sourceTree = "<group>"; };
		BE8C037C223FC4EC0048B7EA /* custritm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = custritm.cxx; path = "../../ios-device/svl/source/items/custritm.cxx"; sourceTree = "<group>"; };
		BE8C037D223FC4EC0048B7EA /* stritem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stritem.cxx; path = "../../ios-device/svl/source/items/stritem.cxx"; sourceTree = "<group>"; };
		BE8C037E223FC4EC0048B7EA /* rectitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectitem.cxx; path = "../../ios-device/svl/source/items/rectitem.cxx"; sourceTree = "<group>"; };
		BE8C037F223FC4EC0048B7EA /* style.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = style.cxx; path = "../../ios-device/svl/source/items/style.cxx"; sourceTree = "<group>"; };
		BE8C0380223FC4EC0048B7EA /* grabbagitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grabbagitem.cxx; path = "../../ios-device/svl/source/items/grabbagitem.cxx"; sourceTree = "<group>"; };
		BE8C0381223FC4EC0048B7EA /* flagitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flagitem.cxx; path = "../../ios-device/svl/source/items/flagitem.cxx"; sourceTree = "<group>"; };
		BE8C0382223FC4EC0048B7EA /* poolio.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolio.cxx; path = "../../ios-device/svl/source/items/poolio.cxx"; sourceTree = "<group>"; };
		BE8C0383223FC4EC0048B7EA /* srchitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = srchitem.cxx; path = "../../ios-device/svl/source/items/srchitem.cxx"; sourceTree = "<group>"; };
		BE8C0384223FC4EC0048B7EA /* cintitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cintitem.cxx; path = "../../ios-device/svl/source/items/cintitem.cxx"; sourceTree = "<group>"; };
		BE8C0385223FC4EC0048B7EA /* IndexedStyleSheets.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndexedStyleSheets.cxx; path = "../../ios-device/svl/source/items/IndexedStyleSheets.cxx"; sourceTree = "<group>"; };
		BE8C0386223FC4EC0048B7EA /* itemiter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itemiter.cxx; path = "../../ios-device/svl/source/items/itemiter.cxx"; sourceTree = "<group>"; };
		BE8C0387223FC4EC0048B7EA /* poolitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = poolitem.cxx; path = "../../ios-device/svl/source/items/poolitem.cxx"; sourceTree = "<group>"; };
		BE8C0388223FC4EC0048B7EA /* aeitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = aeitem.cxx; path = "../../ios-device/svl/source/items/aeitem.cxx"; sourceTree = "<group>"; };
		BE8C0389223FC4ED0048B7EA /* whiter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = whiter.cxx; path = "../../ios-device/svl/source/items/whiter.cxx"; sourceTree = "<group>"; };
		BE8C038A223FC4ED0048B7EA /* slstitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = slstitm.cxx; path = "../../ios-device/svl/source/items/slstitm.cxx"; sourceTree = "<group>"; };
		BE8C038B223FC4ED0048B7EA /* lckbitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lckbitem.cxx; path = "../../ios-device/svl/source/items/lckbitem.cxx"; sourceTree = "<group>"; };
		BE8C038C223FC4ED0048B7EA /* visitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = visitem.cxx; path = "../../ios-device/svl/source/items/visitem.cxx"; sourceTree = "<group>"; };
		BE8C038D223FC4ED0048B7EA /* itempool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = itempool.cxx; path = "../../ios-device/svl/source/items/itempool.cxx"; sourceTree = "<group>"; };
		BE8C038E223FC4ED0048B7EA /* cenumitm.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cenumitm.cxx; path = "../../ios-device/svl/source/items/cenumitm.cxx"; sourceTree = "<group>"; };
		BE8C038F223FC4ED0048B7EA /* sitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sitem.cxx; path = "../../ios-device/svl/source/items/sitem.cxx"; sourceTree = "<group>"; };
		BE8C0390223FC4ED0048B7EA /* rngitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rngitem.cxx; path = "../../ios-device/svl/source/items/rngitem.cxx"; sourceTree = "<group>"; };
		BE8C0391223FC4ED0048B7EA /* ptitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ptitem.cxx; path = "../../ios-device/svl/source/items/ptitem.cxx"; sourceTree = "<group>"; };
		BE8C0392223FC4ED0048B7EA /* int64item.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = int64item.cxx; path = "../../ios-device/svl/source/items/int64item.cxx"; sourceTree = "<group>"; };
		BE8C03942242BA650048B7EA /* impldde.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impldde.hxx; path = "../../ios-device/sfx2/source/appl/impldde.hxx"; sourceTree = "<group>"; };
		BE8C03952242BA650048B7EA /* appdispatchprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdispatchprovider.cxx; path = "../../ios-device/sfx2/source/appl/appdispatchprovider.cxx"; sourceTree = "<group>"; };
		BE8C03962242BA650048B7EA /* newhelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = newhelp.hxx; path = "../../ios-device/sfx2/source/appl/newhelp.hxx"; sourceTree = "<group>"; };
		BE8C03972242BA650048B7EA /* fileobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fileobj.cxx; path = "../../ios-device/sfx2/source/appl/fileobj.cxx"; sourceTree = "<group>"; };
		BE8C03982242BA660048B7EA /* appbaslib.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbaslib.cxx; path = "../../ios-device/sfx2/source/appl/appbaslib.cxx"; sourceTree = "<group>"; };
		BE8C03992242BA660048B7EA /* appmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmain.cxx; path = "../../ios-device/sfx2/source/appl/appmain.cxx"; sourceTree = "<group>"; };
		BE8C039A2242BA660048B7EA /* helpdispatch.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = helpdispatch.hxx; path = "../../ios-device/sfx2/source/appl/helpdispatch.hxx"; sourceTree = "<group>"; };
		BE8C039B2242BA660048B7EA /* appreg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appreg.cxx; path = "../../ios-device/sfx2/source/appl/appreg.cxx"; sourceTree = "<group>"; };
		BE8C039C2242BA660048B7EA /* newhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = newhelp.cxx; path = "../../ios-device/sfx2/source/appl/newhelp.cxx"; sourceTree = "<group>"; };
		BE8C039D2242BA660048B7EA /* appquit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appquit.cxx; path = "../../ios-device/sfx2/source/appl/appquit.cxx"; sourceTree = "<group>"; };
		BE8C039E2242BA660048B7EA /* shutdowniconunx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdowniconunx.cxx; path = "../../ios-device/sfx2/source/appl/shutdowniconunx.cxx"; sourceTree = "<group>"; };
		BE8C039F2242BA660048B7EA /* impldde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impldde.cxx; path = "../../ios-device/sfx2/source/appl/impldde.cxx"; sourceTree = "<group>"; };
		BE8C03A02242BA660048B7EA /* macroloader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = macroloader.cxx; path = "../../ios-device/sfx2/source/appl/macroloader.cxx"; sourceTree = "<group>"; };
		BE8C03A12242BA660048B7EA /* shutdowniconw32.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdowniconw32.cxx; path = "../../ios-device/sfx2/source/appl/shutdowniconw32.cxx"; sourceTree = "<group>"; };
		BE8C03A22242BA660048B7EA /* helpdispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpdispatch.cxx; path = "../../ios-device/sfx2/source/appl/helpdispatch.cxx"; sourceTree = "<group>"; };
		BE8C03A32242BA660048B7EA /* linkmgr2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linkmgr2.cxx; path = "../../ios-device/sfx2/source/appl/linkmgr2.cxx"; sourceTree = "<group>"; };
		BE8C03A42242BA660048B7EA /* appdde.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdde.cxx; path = "../../ios-device/sfx2/source/appl/appdde.cxx"; sourceTree = "<group>"; };
		BE8C03A52242BA660048B7EA /* app.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = app.cxx; path = "../../ios-device/sfx2/source/appl/app.cxx"; sourceTree = "<group>"; };
		BE8C03A62242BA660048B7EA /* appserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appserv.cxx; path = "../../ios-device/sfx2/source/appl/appserv.cxx"; sourceTree = "<group>"; };
		BE8C03A72242BA660048B7EA /* appuno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appuno.cxx; path = "../../ios-device/sfx2/source/appl/appuno.cxx"; sourceTree = "<group>"; };
		BE8C03A82242BA660048B7EA /* appcfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appcfg.cxx; path = "../../ios-device/sfx2/source/appl/appcfg.cxx"; sourceTree = "<group>"; };
		BE8C03A92242BA660048B7EA /* sfxpicklist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxpicklist.cxx; path = "../../ios-device/sfx2/source/appl/sfxpicklist.cxx"; sourceTree = "<group>"; };
		BE8C03AA2242BA660048B7EA /* shutdownicon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shutdownicon.cxx; path = "../../ios-device/sfx2/source/appl/shutdownicon.cxx"; sourceTree = "<group>"; };
		BE8C03AB2242BA660048B7EA /* fwkhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fwkhelper.cxx; path = "../../ios-device/sfx2/source/appl/fwkhelper.cxx"; sourceTree = "<group>"; };
		BE8C03AC2242BA660048B7EA /* imestatuswindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imestatuswindow.cxx; path = "../../ios-device/sfx2/source/appl/imestatuswindow.cxx"; sourceTree = "<group>"; };
		BE8C03AD2242BA660048B7EA /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = "../../ios-device/sfx2/source/appl/module.cxx"; sourceTree = "<group>"; };
		BE8C03AE2242BA670048B7EA /* childwinimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwinimpl.cxx; path = "../../ios-device/sfx2/source/appl/childwinimpl.cxx"; sourceTree = "<group>"; };
		BE8C03AF2242BA670048B7EA /* shutdownicon.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = shutdownicon.hxx; path = "../../ios-device/sfx2/source/appl/shutdownicon.hxx"; sourceTree = "<group>"; };
		BE8C03B02242BA670048B7EA /* fileobj.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = fileobj.hxx; path = "../../ios-device/sfx2/source/appl/fileobj.hxx"; sourceTree = "<group>"; };
		BE8C03B12242BA670048B7EA /* appbas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appbas.cxx; path = "../../ios-device/sfx2/source/appl/appbas.cxx"; sourceTree = "<group>"; };
		BE8C03B22242BA670048B7EA /* opengrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = opengrf.cxx; path = "../../ios-device/sfx2/source/appl/opengrf.cxx"; sourceTree = "<group>"; };
		BE8C03B32242BA670048B7EA /* preventduplicateinteraction.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = preventduplicateinteraction.cxx; path = "../../ios-device/sfx2/source/appl/preventduplicateinteraction.cxx"; sourceTree = "<group>"; };
		BE8C03B42242BA670048B7EA /* lnkbase2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lnkbase2.cxx; path = "../../ios-device/sfx2/source/appl/lnkbase2.cxx"; sourceTree = "<group>"; };
		BE8C03B52242BA670048B7EA /* appmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appmisc.cxx; path = "../../ios-device/sfx2/source/appl/appmisc.cxx"; sourceTree = "<group>"; };
		BE8C03B62242BA670048B7EA /* shutdowniconaqua.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = shutdowniconaqua.mm; path = "../../ios-device/sfx2/source/appl/shutdowniconaqua.mm"; sourceTree = "<group>"; };
		BE8C03B72242BA670048B7EA /* linksrc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = linksrc.cxx; path = "../../ios-device/sfx2/source/appl/linksrc.cxx"; sourceTree = "<group>"; };
		BE8C03B82242BA670048B7EA /* appopen.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appopen.cxx; path = "../../ios-device/sfx2/source/appl/appopen.cxx"; sourceTree = "<group>"; };
		BE8C03B92242BA670048B7EA /* xpackcreator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xpackcreator.cxx; path = "../../ios-device/sfx2/source/appl/xpackcreator.cxx"; sourceTree = "<group>"; };
		BE8C03BA2242BA670048B7EA /* childwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = childwin.cxx; path = "../../ios-device/sfx2/source/appl/childwin.cxx"; sourceTree = "<group>"; };
		BE8C03BB2242BA670048B7EA /* imestatuswindow.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = imestatuswindow.hxx; path = "../../ios-device/sfx2/source/appl/imestatuswindow.hxx"; sourceTree = "<group>"; };
		BE8C03BC2242BA670048B7EA /* helpinterceptor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = helpinterceptor.hxx; path = "../../ios-device/sfx2/source/appl/helpinterceptor.hxx"; sourceTree = "<group>"; };
		BE8C03BD2242BA680048B7EA /* openuriexternally.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = openuriexternally.cxx; path = "../../ios-device/sfx2/source/appl/openuriexternally.cxx"; sourceTree = "<group>"; };
		BE8C03BE2242BA680048B7EA /* appinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appinit.cxx; path = "../../ios-device/sfx2/source/appl/appinit.cxx"; sourceTree = "<group>"; };
		BE8C03BF2242BA680048B7EA /* sfxhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxhelp.cxx; path = "../../ios-device/sfx2/source/appl/sfxhelp.cxx"; sourceTree = "<group>"; };
		BE8C03C02242BA680048B7EA /* appchild.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appchild.cxx; path = "../../ios-device/sfx2/source/appl/appchild.cxx"; sourceTree = "<group>"; };
		BE8C03C12242BA680048B7EA /* helpinterceptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helpinterceptor.cxx; path = "../../ios-device/sfx2/source/appl/helpinterceptor.cxx"; sourceTree = "<group>"; };
		BE8C03C22242BA680048B7EA /* workwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = workwin.cxx; path = "../../ios-device/sfx2/source/appl/workwin.cxx"; sourceTree = "<group>"; };
		BE8C03C32242BA680048B7EA /* appdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = appdata.cxx; path = "../../ios-device/sfx2/source/appl/appdata.cxx"; sourceTree = "<group>"; };
		BE8C03C42242BA680048B7EA /* shellimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shellimpl.cxx; path = "../../ios-device/sfx2/source/appl/shellimpl.cxx"; sourceTree = "<group>"; };
		BE8C03C52242BA680048B7EA /* panelist.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = panelist.hxx; path = "../../ios-device/sfx2/source/appl/panelist.hxx"; sourceTree = "<group>"; };
		BE8D77272136762500AC58EA /* Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mobile.app; sourceTree = BUILT_PRODUCTS_DIR; };
		BE8D772A2136762500AC58EA /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		BE8D772B2136762500AC58EA /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = "<group>"; };
		BE8D772D2136762500AC58EA /* DocumentBrowserViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DocumentBrowserViewController.h; sourceTree = "<group>"; };
		BE8D772E2136762500AC58EA /* DocumentBrowserViewController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = DocumentBrowserViewController.mm; sourceTree = "<group>"; };
		BE8D77302136762500AC58EA /* DocumentViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DocumentViewController.h; sourceTree = "<group>"; };
		BE8D77312136762500AC58EA /* DocumentViewController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = DocumentViewController.mm; sourceTree = "<group>"; };
		BE8D77332136762500AC58EA /* CODocument.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CODocument.h; sourceTree = "<group>"; };
		BE8D77342136762500AC58EA /* CODocument.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objcpp; path = CODocument.mm; sourceTree = "<group>"; };
		BE8D77372136762500AC58EA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
		BE8D77392136762600AC58EA /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
		BE8D773C2136762600AC58EA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
		BE8D773E2136762600AC58EA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		BE8D773F2136762600AC58EA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		BE8D85BC214055F2009F1860 /* offapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = offapi.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/offapi.rdb"; sourceTree = "<group>"; };
		BE8D85BD214055F2009F1860 /* share */ = {isa = PBXFileReference; lastKnownFileType = folder; name = share; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/share"; sourceTree = "<group>"; };
		BE8D85BE214055F2009F1860 /* config */ = {isa = PBXFileReference; lastKnownFileType = folder; name = config; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/config"; sourceTree = "<group>"; };
		BE8D85C0214055F2009F1860 /* oovbaapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = oovbaapi.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/oovbaapi.rdb"; sourceTree = "<group>"; };
		BE8D85C1214055F2009F1860 /* udkapi.rdb */ = {isa = PBXFileReference; lastKnownFileType = file; name = udkapi.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/udkapi.rdb"; sourceTree = "<group>"; };
		BE8D85C2214055F2009F1860 /* services */ = {isa = PBXFileReference; lastKnownFileType = folder; name = services; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/services"; sourceTree = "<group>"; };
		BE8D85C3214055F2009F1860 /* services.rdb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = services.rdb; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/services.rdb"; sourceTree = "<group>"; };
		BE8D85C4214055F3009F1860 /* program */ = {isa = PBXFileReference; lastKnownFileType = folder; name = program; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/program"; sourceTree = "<group>"; };
		BE8D85C6214055F3009F1860 /* fundamentalrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fundamentalrc; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/fundamentalrc"; sourceTree = "<group>"; };
		BE8D85C7214055F3009F1860 /* unorc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = unorc; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/unorc"; sourceTree = "<group>"; };
		BE8D85C8214055F3009F1860 /* rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = rc; path = "../../../lobuilddir-symlink/workdir/CustomTarget/ios/resources/rc"; sourceTree = "<group>"; };
		BE9273AE2372DC9600ADB598 /* EmptyPanel.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = EmptyPanel.hxx; path = "../../ios-device/svx/source/sidebar/EmptyPanel.hxx"; sourceTree = "<group>"; };
		BE9273AF2372DC9600ADB598 /* ContextChangeEventMultiplexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextChangeEventMultiplexer.cxx; path = "../../ios-device/svx/source/sidebar/ContextChangeEventMultiplexer.cxx"; sourceTree = "<group>"; };
		BE9273B02372DC9600ADB598 /* PanelFactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PanelFactory.cxx; path = "../../ios-device/svx/source/sidebar/PanelFactory.cxx"; sourceTree = "<group>"; };
		BE9273B12372DC9600ADB598 /* nbdtmg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nbdtmg.cxx; path = "../../ios-device/svx/source/sidebar/nbdtmg.cxx"; sourceTree = "<group>"; };
		BE9273B22372DC9600ADB598 /* SelectionAnalyzer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SelectionAnalyzer.cxx; path = "../../ios-device/svx/source/sidebar/SelectionAnalyzer.cxx"; sourceTree = "<group>"; };
		BE9273B32372DC9600ADB598 /* nbdtmgfact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nbdtmgfact.cxx; path = "../../ios-device/svx/source/sidebar/nbdtmgfact.cxx"; sourceTree = "<group>"; };
		BE9273B42372DC9600ADB598 /* SelectionChangeHandler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SelectionChangeHandler.cxx; path = "../../ios-device/svx/source/sidebar/SelectionChangeHandler.cxx"; sourceTree = "<group>"; };
		BE9273B52372DC9600ADB598 /* PanelLayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PanelLayout.cxx; path = "../../ios-device/svx/source/sidebar/PanelLayout.cxx"; sourceTree = "<group>"; };
		BE9273B62372DC9600ADB598 /* EmptyPanel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EmptyPanel.cxx; path = "../../ios-device/svx/source/sidebar/EmptyPanel.cxx"; sourceTree = "<group>"; };
		BE9273B82372E06000ADB598 /* fmtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtools.cxx; path = "../../ios-device/svx/source/form/fmtools.cxx"; sourceTree = "<group>"; };
		BE9273B92372E06000ADB598 /* fmpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmpage.cxx; path = "../../ios-device/svx/source/form/fmpage.cxx"; sourceTree = "<group>"; };
		BE9273BA2372E06000ADB598 /* fmdmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmdmod.cxx; path = "../../ios-device/svx/source/form/fmdmod.cxx"; sourceTree = "<group>"; };
		BE9273BB2372E06000ADB598 /* formcontrolfactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formcontrolfactory.cxx; path = "../../ios-device/svx/source/form/formcontrolfactory.cxx"; sourceTree = "<group>"; };
		BE9273BC2372E06000ADB598 /* datanavi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datanavi.cxx; path = "../../ios-device/svx/source/form/datanavi.cxx"; sourceTree = "<group>"; };
		BE9273BD2372E06000ADB598 /* tabwin.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tabwin.cxx; path = "../../ios-device/svx/source/form/tabwin.cxx"; sourceTree = "<group>"; };
		BE9273BE2372E06000ADB598 /* formfeaturedispatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formfeaturedispatcher.cxx; path = "../../ios-device/svx/source/form/formfeaturedispatcher.cxx"; sourceTree = "<group>"; };
		BE9273BF2372E06000ADB598 /* fmsrccfg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmsrccfg.cxx; path = "../../ios-device/svx/source/form/fmsrccfg.cxx"; sourceTree = "<group>"; };
		BE9273C02372E06000ADB598 /* fmcontrollayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmcontrollayout.cxx; path = "../../ios-device/svx/source/form/fmcontrollayout.cxx"; sourceTree = "<group>"; };
		BE9273C12372E06000ADB598 /* fmcontrolbordermanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmcontrolbordermanager.cxx; path = "../../ios-device/svx/source/form/fmcontrolbordermanager.cxx"; sourceTree = "<group>"; };
		BE9273C22372E06000ADB598 /* fmservs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmservs.cxx; path = "../../ios-device/svx/source/form/fmservs.cxx"; sourceTree = "<group>"; };
		BE9273C32372E06000ADB598 /* fmobjfac.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmobjfac.cxx; path = "../../ios-device/svx/source/form/fmobjfac.cxx"; sourceTree = "<group>"; };
		BE9273C42372E06000ADB598 /* fmscriptingenv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmscriptingenv.cxx; path = "../../ios-device/svx/source/form/fmscriptingenv.cxx"; sourceTree = "<group>"; };
		BE9273C52372E06000ADB598 /* fmtextcontroldialogs.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtextcontroldialogs.cxx; path = "../../ios-device/svx/source/form/fmtextcontroldialogs.cxx"; sourceTree = "<group>"; };
		BE9273C62372E06000ADB598 /* ParseContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ParseContext.cxx; path = "../../ios-device/svx/source/form/ParseContext.cxx"; sourceTree = "<group>"; };
		BE9273C72372E06000ADB598 /* legacyformcontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = legacyformcontroller.cxx; path = "../../ios-device/svx/source/form/legacyformcontroller.cxx"; sourceTree = "<group>"; };
		BE9273C82372E06000ADB598 /* datalistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = datalistener.cxx; path = "../../ios-device/svx/source/form/datalistener.cxx"; sourceTree = "<group>"; };
		BE9273C92372E06000ADB598 /* typemap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemap.cxx; path = "../../ios-device/svx/source/form/typemap.cxx"; sourceTree = "<group>"; };
		BE9273CA2372E06000ADB598 /* fmview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmview.cxx; path = "../../ios-device/svx/source/form/fmview.cxx"; sourceTree = "<group>"; };
		BE9273CB2372E06000ADB598 /* fmpgeimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmpgeimp.cxx; path = "../../ios-device/svx/source/form/fmpgeimp.cxx"; sourceTree = "<group>"; };
		BE9273CC2372E06000ADB598 /* filtnav.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = filtnav.cxx; path = "../../ios-device/svx/source/form/filtnav.cxx"; sourceTree = "<group>"; };
		BE9273CD2372E06000ADB598 /* formcontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formcontroller.cxx; path = "../../ios-device/svx/source/form/formcontroller.cxx"; sourceTree = "<group>"; };
		BE9273CE2372E06000ADB598 /* databaselocationinput.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = databaselocationinput.cxx; path = "../../ios-device/svx/source/form/databaselocationinput.cxx"; sourceTree = "<group>"; };
		BE9273CF2372E06000ADB598 /* dataaccessdescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dataaccessdescriptor.cxx; path = "../../ios-device/svx/source/form/dataaccessdescriptor.cxx"; sourceTree = "<group>"; };
		BE9273D02372E06100ADB598 /* sdbdatacolumn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdbdatacolumn.cxx; path = "../../ios-device/svx/source/form/sdbdatacolumn.cxx"; sourceTree = "<group>"; };
		BE9273D12372E06100ADB598 /* fmdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmdpage.cxx; path = "../../ios-device/svx/source/form/fmdpage.cxx"; sourceTree = "<group>"; };
		BE9273D22372E06100ADB598 /* fmdocumentclassification.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmdocumentclassification.cxx; path = "../../ios-device/svx/source/form/fmdocumentclassification.cxx"; sourceTree = "<group>"; };
		BE9273D32372E06100ADB598 /* fmshell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmshell.cxx; path = "../../ios-device/svx/source/form/fmshell.cxx"; sourceTree = "<group>"; };
		BE9273D42372E06100ADB598 /* fmexch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmexch.cxx; path = "../../ios-device/svx/source/form/fmexch.cxx"; sourceTree = "<group>"; };
		BE9273D52372E06100ADB598 /* fmsrcimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmsrcimp.cxx; path = "../../ios-device/svx/source/form/fmsrcimp.cxx"; sourceTree = "<group>"; };
		BE9273D62372E06100ADB598 /* xfm_addcondition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = xfm_addcondition.cxx; path = "../../ios-device/svx/source/form/xfm_addcondition.cxx"; sourceTree = "<group>"; };
		BE9273D72372E06100ADB598 /* formdispatchinterceptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formdispatchinterceptor.cxx; path = "../../ios-device/svx/source/form/formdispatchinterceptor.cxx"; sourceTree = "<group>"; };
		BE9273D82372E06100ADB598 /* fmPropBrw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmPropBrw.cxx; path = "../../ios-device/svx/source/form/fmPropBrw.cxx"; sourceTree = "<group>"; };
		BE9273D92372E06100ADB598 /* fmshimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmshimp.cxx; path = "../../ios-device/svx/source/form/fmshimp.cxx"; sourceTree = "<group>"; };
		BE9273DA2372E06100ADB598 /* dbcharsethelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbcharsethelper.cxx; path = "../../ios-device/svx/source/form/dbcharsethelper.cxx"; sourceTree = "<group>"; };
		BE9273DB2372E06100ADB598 /* fmundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmundo.cxx; path = "../../ios-device/svx/source/form/fmundo.cxx"; sourceTree = "<group>"; };
		BE9273DC2372E06100ADB598 /* fmexpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmexpl.cxx; path = "../../ios-device/svx/source/form/fmexpl.cxx"; sourceTree = "<group>"; };
		BE9273DD2372E06100ADB598 /* fmobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmobj.cxx; path = "../../ios-device/svx/source/form/fmobj.cxx"; sourceTree = "<group>"; };
		BE9273DE2372E06100ADB598 /* formtoolbars.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formtoolbars.cxx; path = "../../ios-device/svx/source/form/formtoolbars.cxx"; sourceTree = "<group>"; };
		BE9273DF2372E06100ADB598 /* fmvwimp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmvwimp.cxx; path = "../../ios-device/svx/source/form/fmvwimp.cxx"; sourceTree = "<group>"; };
		BE9273E02372E06100ADB598 /* delayedevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = delayedevent.cxx; path = "../../ios-device/svx/source/form/delayedevent.cxx"; sourceTree = "<group>"; };
		BE9273E12372E06200ADB598 /* navigatortreemodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = navigatortreemodel.cxx; path = "../../ios-device/svx/source/form/navigatortreemodel.cxx"; sourceTree = "<group>"; };
		BE9273E22372E06200ADB598 /* fmtextcontrolfeature.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtextcontrolfeature.cxx; path = "../../ios-device/svx/source/form/fmtextcontrolfeature.cxx"; sourceTree = "<group>"; };
		BE9273E32372E06200ADB598 /* navigatortree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = navigatortree.cxx; path = "../../ios-device/svx/source/form/navigatortree.cxx"; sourceTree = "<group>"; };
		BE9273E42372E06200ADB598 /* tbxform.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tbxform.cxx; path = "../../ios-device/svx/source/form/tbxform.cxx"; sourceTree = "<group>"; };
		BE9273E52372E06200ADB598 /* formcontrolling.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = formcontrolling.cxx; path = "../../ios-device/svx/source/form/formcontrolling.cxx"; sourceTree = "<group>"; };
		BE9273E62372E06200ADB598 /* fmmodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmmodel.cxx; path = "../../ios-device/svx/source/form/fmmodel.cxx"; sourceTree = "<group>"; };
		BE9273E72372E06200ADB598 /* fmtextcontrolshell.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fmtextcontrolshell.cxx; path = "../../ios-device/svx/source/form/fmtextcontrolshell.cxx"; sourceTree = "<group>"; };
		BE9273E82372E06200ADB598 /* sqlparserclient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sqlparserclient.cxx; path = "../../ios-device/svx/source/form/sqlparserclient.cxx"; sourceTree = "<group>"; };
		BE9273EA2372EE7900ADB598 /* SidebarModelUpdate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SidebarModelUpdate.cxx; path = "../../ios-device/sfx2/source/sidebar/SidebarModelUpdate.cxx"; sourceTree = "<group>"; };
		BE9273EB2372EE7900ADB598 /* Deck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Deck.cxx; path = "../../ios-device/sfx2/source/sidebar/Deck.cxx"; sourceTree = "<group>"; };
		BE9273EC2372EE7900ADB598 /* Panel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Panel.cxx; path = "../../ios-device/sfx2/source/sidebar/Panel.cxx"; sourceTree = "<group>"; };
		BE9273ED2372EE7900ADB598 /* ResourceManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ResourceManager.cxx; path = "../../ios-device/sfx2/source/sidebar/ResourceManager.cxx"; sourceTree = "<group>"; };
		BE9273EE2372EE7900ADB598 /* TitleBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TitleBar.cxx; path = "../../ios-device/sfx2/source/sidebar/TitleBar.cxx"; sourceTree = "<group>"; };
		BE9273EF2372EE7900ADB598 /* Paint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Paint.cxx; path = "../../ios-device/sfx2/source/sidebar/Paint.cxx"; sourceTree = "<group>"; };
		BE9273F02372EE7900ADB598 /* ControllerFactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ControllerFactory.cxx; path = "../../ios-device/sfx2/source/sidebar/ControllerFactory.cxx"; sourceTree = "<group>"; };
		BE9273F12372EE7900ADB598 /* FocusManager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FocusManager.cxx; path = "../../ios-device/sfx2/source/sidebar/FocusManager.cxx"; sourceTree = "<group>"; };
		BE9273F22372EE7900ADB598 /* UnoDecks.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoDecks.cxx; path = "../../ios-device/sfx2/source/sidebar/UnoDecks.cxx"; sourceTree = "<group>"; };
		BE9273F32372EE7A00ADB598 /* UnoPanels.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoPanels.cxx; path = "../../ios-device/sfx2/source/sidebar/UnoPanels.cxx"; sourceTree = "<group>"; };
		BE9273F42372EE7A00ADB598 /* PanelTitleBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PanelTitleBar.cxx; path = "../../ios-device/sfx2/source/sidebar/PanelTitleBar.cxx"; sourceTree = "<group>"; };
		BE9273F52372EE7A00ADB598 /* SidebarController.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SidebarController.cxx; path = "../../ios-device/sfx2/source/sidebar/SidebarController.cxx"; sourceTree = "<group>"; };
		BE9273F62372EE7A00ADB598 /* ILayoutableWindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ILayoutableWindow.cxx; path = "../../ios-device/sfx2/source/sidebar/ILayoutableWindow.cxx"; sourceTree = "<group>"; };
		BE9273F72372EE7A00ADB598 /* DeckDescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DeckDescriptor.cxx; path = "../../ios-device/sfx2/source/sidebar/DeckDescriptor.cxx"; sourceTree = "<group>"; };
		BE9273F82372EE7A00ADB598 /* DrawHelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DrawHelper.cxx; path = "../../ios-device/sfx2/source/sidebar/DrawHelper.cxx"; sourceTree = "<group>"; };
		BE9273F92372EE7A00ADB598 /* ContextList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextList.cxx; path = "../../ios-device/sfx2/source/sidebar/ContextList.cxx"; sourceTree = "<group>"; };
		BE9273FA2372EE7A00ADB598 /* Accessible.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Accessible.cxx; path = "../../ios-device/sfx2/source/sidebar/Accessible.cxx"; sourceTree = "<group>"; };
		BE9273FB2372EE7A00ADB598 /* SidebarPanelBase.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SidebarPanelBase.cxx; path = "../../ios-device/sfx2/source/sidebar/SidebarPanelBase.cxx"; sourceTree = "<group>"; };
		BE9273FC2372EE7A00ADB598 /* Sidebar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Sidebar.cxx; path = "../../ios-device/sfx2/source/sidebar/Sidebar.cxx"; sourceTree = "<group>"; };
		BE9273FD2372EE7A00ADB598 /* MenuButton.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MenuButton.cxx; path = "../../ios-device/sfx2/source/sidebar/MenuButton.cxx"; sourceTree = "<group>"; };
		BE9273FE2372EE7A00ADB598 /* Context.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cxx; path = "../../ios-device/sfx2/source/sidebar/Context.cxx"; sourceTree = "<group>"; };
		BE9273FF2372EE7A00ADB598 /* Tools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Tools.cxx; path = "../../ios-device/sfx2/source/sidebar/Tools.cxx"; sourceTree = "<group>"; };
		BE9274002372EE7A00ADB598 /* DeckTitleBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DeckTitleBar.cxx; path = "../../ios-device/sfx2/source/sidebar/DeckTitleBar.cxx"; sourceTree = "<group>"; };
		BE9274012372EE7A00ADB598 /* TabItem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TabItem.cxx; path = "../../ios-device/sfx2/source/sidebar/TabItem.cxx"; sourceTree = "<group>"; };
		BE9274022372EE7A00ADB598 /* SidebarDockingWindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SidebarDockingWindow.cxx; path = "../../ios-device/sfx2/source/sidebar/SidebarDockingWindow.cxx"; sourceTree = "<group>"; };
		BE9274032372EE7A00ADB598 /* ContextChangeBroadcaster.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextChangeBroadcaster.cxx; path = "../../ios-device/sfx2/source/sidebar/ContextChangeBroadcaster.cxx"; sourceTree = "<group>"; };
		BE9274042372EE7A00ADB598 /* TabBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TabBar.cxx; path = "../../ios-device/sfx2/source/sidebar/TabBar.cxx"; sourceTree = "<group>"; };
		BE9274052372EE7B00ADB598 /* DeckLayouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DeckLayouter.cxx; path = "../../ios-device/sfx2/source/sidebar/DeckLayouter.cxx"; sourceTree = "<group>"; };
		BE9274062372EE7B00ADB598 /* AsynchronousCall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AsynchronousCall.cxx; path = "../../ios-device/sfx2/source/sidebar/AsynchronousCall.cxx"; sourceTree = "<group>"; };
		BE9274072372EE7B00ADB598 /* AccessibleTitleBar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AccessibleTitleBar.cxx; path = "../../ios-device/sfx2/source/sidebar/AccessibleTitleBar.cxx"; sourceTree = "<group>"; };
		BE9274082372EE7B00ADB598 /* SidebarToolBox.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SidebarToolBox.cxx; path = "../../ios-device/sfx2/source/sidebar/SidebarToolBox.cxx"; sourceTree = "<group>"; };
		BE9274092372EE7B00ADB598 /* Theme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Theme.cxx; path = "../../ios-device/sfx2/source/sidebar/Theme.cxx"; sourceTree = "<group>"; };
		BE92740A2372EE7B00ADB598 /* IContextChangeReceiver.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IContextChangeReceiver.cxx; path = "../../ios-device/sfx2/source/sidebar/IContextChangeReceiver.cxx"; sourceTree = "<group>"; };
		BE92740B2372EE7B00ADB598 /* PanelDescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PanelDescriptor.cxx; path = "../../ios-device/sfx2/source/sidebar/PanelDescriptor.cxx"; sourceTree = "<group>"; };
		BE92740C2372EE7B00ADB598 /* SidebarChildWindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SidebarChildWindow.cxx; path = "../../ios-device/sfx2/source/sidebar/SidebarChildWindow.cxx"; sourceTree = "<group>"; };
		BE92740D2372EE7B00ADB598 /* ControlFactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ControlFactory.cxx; path = "../../ios-device/sfx2/source/sidebar/ControlFactory.cxx"; sourceTree = "<group>"; };
		BE92740E2372EE7B00ADB598 /* UnoDeck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoDeck.cxx; path = "../../ios-device/sfx2/source/sidebar/UnoDeck.cxx"; sourceTree = "<group>"; };
		BE92740F2372EE7B00ADB598 /* UnoPanel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoPanel.cxx; path = "../../ios-device/sfx2/source/sidebar/UnoPanel.cxx"; sourceTree = "<group>"; };
		BE9274102372EE7B00ADB598 /* ControllerItem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ControllerItem.cxx; path = "../../ios-device/sfx2/source/sidebar/ControllerItem.cxx"; sourceTree = "<group>"; };
		BE9274112372EE7B00ADB598 /* UnoSidebar.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoSidebar.cxx; path = "../../ios-device/sfx2/source/sidebar/UnoSidebar.cxx"; sourceTree = "<group>"; };
		BE93D422216CAA7A007A39F4 /* unohelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp.cxx; path = "../../ios-device/vcl/source/app/unohelp.cxx"; sourceTree = "<group>"; };
		BE93D423216CAA7A007A39F4 /* stdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stdtext.cxx; path = "../../ios-device/vcl/source/app/stdtext.cxx"; sourceTree = "<group>"; };
		BE93D424216CAA7A007A39F4 /* session.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = session.cxx; path = "../../ios-device/vcl/source/app/session.cxx"; sourceTree = "<group>"; };
		BE93D425216CAA7A007A39F4 /* svmain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmain.cxx; path = "../../ios-device/vcl/source/app/svmain.cxx"; sourceTree = "<group>"; };
		BE93D426216CAA7A007A39F4 /* help.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = help.cxx; path = "../../ios-device/vcl/source/app/help.cxx"; sourceTree = "<group>"; };
		BE93D427216CAA7A007A39F4 /* i18nhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = i18nhelp.cxx; path = "../../ios-device/vcl/source/app/i18nhelp.cxx"; sourceTree = "<group>"; };
		BE93D428216CAA7A007A39F4 /* vclevent.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vclevent.cxx; path = "../../ios-device/vcl/source/app/vclevent.cxx"; sourceTree = "<group>"; };
		BE93D429216CAA7A007A39F4 /* brand.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = brand.cxx; path = "../../ios-device/vcl/source/app/brand.cxx"; sourceTree = "<group>"; };
		BE93D42A216CAA7A007A39F4 /* IconThemeInfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeInfo.cxx; path = "../../ios-device/vcl/source/app/IconThemeInfo.cxx"; sourceTree = "<group>"; };
		BE93D42B216CAA7A007A39F4 /* salusereventlist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salusereventlist.cxx; path = "../../ios-device/vcl/source/app/salusereventlist.cxx"; sourceTree = "<group>"; };
		BE93D42C216CAA7A007A39F4 /* salplug.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salplug.cxx; path = "../../ios-device/vcl/source/app/salplug.cxx"; sourceTree = "<group>"; };
		BE93D42D216CAA7A007A39F4 /* unohelp2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = unohelp2.cxx; path = "../../ios-device/vcl/source/app/unohelp2.cxx"; sourceTree = "<group>"; };
		BE93D42E216CAA7A007A39F4 /* IconThemeSelector.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeSelector.cxx; path = "../../ios-device/vcl/source/app/IconThemeSelector.cxx"; sourceTree = "<group>"; };
		BE93D42F216CAA7A007A39F4 /* settings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = settings.cxx; path = "../../ios-device/vcl/source/app/settings.cxx"; sourceTree = "<group>"; };
		BE93D430216CAA7A007A39F4 /* svapp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svapp.cxx; path = "../../ios-device/vcl/source/app/svapp.cxx"; sourceTree = "<group>"; };
		BE93D431216CAA7A007A39F4 /* customweld.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = customweld.cxx; path = "../../ios-device/vcl/source/app/customweld.cxx"; sourceTree = "<group>"; };
		BE93D432216CAA7A007A39F4 /* ITiledRenderable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ITiledRenderable.cxx; path = "../../ios-device/vcl/source/app/ITiledRenderable.cxx"; sourceTree = "<group>"; };
		BE93D433216CAA7A007A39F4 /* timer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timer.cxx; path = "../../ios-device/vcl/source/app/timer.cxx"; sourceTree = "<group>"; };
		BE93D434216CAA7A007A39F4 /* sound.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cxx; path = "../../ios-device/vcl/source/app/sound.cxx"; sourceTree = "<group>"; };
		BE93D435216CAA7A007A39F4 /* dbggui.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dbggui.cxx; path = "../../ios-device/vcl/source/app/dbggui.cxx"; sourceTree = "<group>"; };
		BE93D436216CAA7A007A39F4 /* idle.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = idle.cxx; path = "../../ios-device/vcl/source/app/idle.cxx"; sourceTree = "<group>"; };
		BE93D437216CAA7A007A39F4 /* scheduler.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler.cxx; path = "../../ios-device/vcl/source/app/scheduler.cxx"; sourceTree = "<group>"; };
		BE93D438216CAA7A007A39F4 /* dndhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dndhelp.cxx; path = "../../ios-device/vcl/source/app/dndhelp.cxx"; sourceTree = "<group>"; };
		BE93D439216CAA7B007A39F4 /* salvtables.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvtables.cxx; path = "../../ios-device/vcl/source/app/salvtables.cxx"; sourceTree = "<group>"; };
		BE93D43A216CAA7B007A39F4 /* IconThemeScanner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IconThemeScanner.cxx; path = "../../ios-device/vcl/source/app/IconThemeScanner.cxx"; sourceTree = "<group>"; };
		BE93D43B216CAA7B007A39F4 /* svdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdata.cxx; path = "../../ios-device/vcl/source/app/svdata.cxx"; sourceTree = "<group>"; };
		BE93D43E216D5580007A39F4 /* zoomitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = zoomitem.cxx; path = "../../ios-device/sfx2/source/doc/zoomitem.cxx"; sourceTree = "<group>"; };
		BE93D43F216D5580007A39F4 /* printhelper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = printhelper.hxx; path = "../../ios-device/sfx2/source/doc/printhelper.hxx"; sourceTree = "<group>"; };
		BE93D440216D5580007A39F4 /* Metadatable.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Metadatable.cxx; path = "../../ios-device/sfx2/source/doc/Metadatable.cxx"; sourceTree = "<group>"; };
		BE93D441216D5580007A39F4 /* docfilt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfilt.cxx; path = "../../ios-device/sfx2/source/doc/docfilt.cxx"; sourceTree = "<group>"; };
		BE93D442216D5580007A39F4 /* docfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfile.cxx; path = "../../ios-device/sfx2/source/doc/docfile.cxx"; sourceTree = "<group>"; };
		BE93D443216D5580007A39F4 /* oleprops.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = oleprops.hxx; path = "../../ios-device/sfx2/source/doc/oleprops.hxx"; sourceTree = "<group>"; };
		BE93D444216D5580007A39F4 /* graphhelp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphhelp.cxx; path = "../../ios-device/sfx2/source/doc/graphhelp.cxx"; sourceTree = "<group>"; };
		BE93D445216D5580007A39F4 /* saveastemplatedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = saveastemplatedlg.cxx; path = "../../ios-device/sfx2/source/doc/saveastemplatedlg.cxx"; sourceTree = "<group>"; };
		BE93D446216D5580007A39F4 /* objstor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objstor.cxx; path = "../../ios-device/sfx2/source/doc/objstor.cxx"; sourceTree = "<group>"; };
		BE93D447216D5580007A39F4 /* docmacromode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docmacromode.cxx; path = "../../ios-device/sfx2/source/doc/docmacromode.cxx"; sourceTree = "<group>"; };
		BE93D448216D5580007A39F4 /* sfxbasemodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxbasemodel.cxx; path = "../../ios-device/sfx2/source/doc/sfxbasemodel.cxx"; sourceTree = "<group>"; };
		BE93D449216D5580007A39F4 /* doctemplateslocal.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = doctemplateslocal.hxx; path = "../../ios-device/sfx2/source/doc/doctemplateslocal.hxx"; sourceTree = "<group>"; };
		BE93D44A216D5580007A39F4 /* SfxDocumentMetaData.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SfxDocumentMetaData.cxx; path = "../../ios-device/sfx2/source/doc/SfxDocumentMetaData.cxx"; sourceTree = "<group>"; };
		BE93D44B216D5580007A39F4 /* templatedlg.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = templatedlg.cxx; path = "../../ios-device/sfx2/source/doc/templatedlg.cxx"; sourceTree = "<group>"; };
		BE93D44C216D5580007A39F4 /* docinsert.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinsert.cxx; path = "../../ios-device/sfx2/source/doc/docinsert.cxx"; sourceTree = "<group>"; };
		BE93D44D216D5580007A39F4 /* syspathw32.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = syspathw32.hxx; path = "../../ios-device/sfx2/source/doc/syspathw32.hxx"; sourceTree = "<group>"; };
		BE93D44E216D5580007A39F4 /* exoticfileloadexception.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = exoticfileloadexception.hxx; path = "../../ios-device/sfx2/source/doc/exoticfileloadexception.hxx"; sourceTree = "<group>"; };
		BE93D44F216D5580007A39F4 /* syspath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syspath.cxx; path = "../../ios-device/sfx2/source/doc/syspath.cxx"; sourceTree = "<group>"; };
		BE93D450216D5580007A39F4 /* exoticfileloadexception.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = exoticfileloadexception.cxx; path = "../../ios-device/sfx2/source/doc/exoticfileloadexception.cxx"; sourceTree = "<group>"; };
		BE93D451216D5580007A39F4 /* docfac.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docfac.cxx; path = "../../ios-device/sfx2/source/doc/docfac.cxx"; sourceTree = "<group>"; };
		BE93D452216D5580007A39F4 /* doctempl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctempl.cxx; path = "../../ios-device/sfx2/source/doc/doctempl.cxx"; sourceTree = "<group>"; };
		BE93D453216D5580007A39F4 /* docinf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docinf.cxx; path = "../../ios-device/sfx2/source/doc/docinf.cxx"; sourceTree = "<group>"; };
		BE93D454216D5580007A39F4 /* ownsubfilterservice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ownsubfilterservice.cxx; path = "../../ios-device/sfx2/source/doc/ownsubfilterservice.cxx"; sourceTree = "<group>"; };
		BE93D455216D5580007A39F4 /* objmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objmisc.cxx; path = "../../ios-device/sfx2/source/doc/objmisc.cxx"; sourceTree = "<group>"; };
		BE93D456216D5581007A39F4 /* DocumentMetadataAccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = DocumentMetadataAccess.cxx; path = "../../ios-device/sfx2/source/doc/DocumentMetadataAccess.cxx"; sourceTree = "<group>"; };
		BE93D457216D5581007A39F4 /* frmdescr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frmdescr.cxx; path = "../../ios-device/sfx2/source/doc/frmdescr.cxx"; sourceTree = "<group>"; };
		BE93D458216D5581007A39F4 /* docstoragemodifylistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docstoragemodifylistener.cxx; path = "../../ios-device/sfx2/source/doc/docstoragemodifylistener.cxx"; sourceTree = "<group>"; };
		BE93D459216D5581007A39F4 /* objcont.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objcont.cxx; path = "../../ios-device/sfx2/source/doc/objcont.cxx"; sourceTree = "<group>"; };
		BE93D45A216D5581007A39F4 /* guisaveas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = guisaveas.cxx; path = "../../ios-device/sfx2/source/doc/guisaveas.cxx"; sourceTree = "<group>"; };
		BE93D45B216D5581007A39F4 /* doctemplateslocal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctemplateslocal.cxx; path = "../../ios-device/sfx2/source/doc/doctemplateslocal.cxx"; sourceTree = "<group>"; };
		BE93D45C216D5581007A39F4 /* objserv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objserv.cxx; path = "../../ios-device/sfx2/source/doc/objserv.cxx"; sourceTree = "<group>"; };
		BE93D45D216D5581007A39F4 /* objxtor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objxtor.cxx; path = "../../ios-device/sfx2/source/doc/objxtor.cxx"; sourceTree = "<group>"; };
		BE93D45E216D5581007A39F4 /* QuerySaveDocument.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = QuerySaveDocument.cxx; path = "../../ios-device/sfx2/source/doc/QuerySaveDocument.cxx"; sourceTree = "<group>"; };
		BE93D45F216D5581007A39F4 /* docundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = docundomanager.cxx; path = "../../ios-device/sfx2/source/doc/docundomanager.cxx"; sourceTree = "<group>"; };
		BE93D460216D5581007A39F4 /* objstor.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = objstor.hxx; path = "../../ios-device/sfx2/source/doc/objstor.hxx"; sourceTree = "<group>"; };
		BE93D461216D5581007A39F4 /* sfxmodelfactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sfxmodelfactory.cxx; path = "../../ios-device/sfx2/source/doc/sfxmodelfactory.cxx"; sourceTree = "<group>"; };
		BE93D462216D5581007A39F4 /* graphhelp.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = graphhelp.hxx; path = "../../ios-device/sfx2/source/doc/graphhelp.hxx"; sourceTree = "<group>"; };
		BE93D463216D5581007A39F4 /* syspath.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = syspath.hxx; path = "../../ios-device/sfx2/source/doc/syspath.hxx"; sourceTree = "<group>"; };
		BE93D464216D5581007A39F4 /* doctemplates.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = doctemplates.cxx; path = "../../ios-device/sfx2/source/doc/doctemplates.cxx"; sourceTree = "<group>"; };
		BE93D465216D5581007A39F4 /* syspathw32.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = syspathw32.cxx; path = "../../ios-device/sfx2/source/doc/syspathw32.cxx"; sourceTree = "<group>"; };
		BE93D466216D5581007A39F4 /* oleprops.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oleprops.cxx; path = "../../ios-device/sfx2/source/doc/oleprops.cxx"; sourceTree = "<group>"; };
		BE93D467216D5581007A39F4 /* iframe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = iframe.cxx; path = "../../ios-device/sfx2/source/doc/iframe.cxx"; sourceTree = "<group>"; };
		BE93D468216D5581007A39F4 /* objitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objitem.cxx; path = "../../ios-device/sfx2/source/doc/objitem.cxx"; sourceTree = "<group>"; };
		BE93D469216D5582007A39F4 /* printhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = printhelper.cxx; path = "../../ios-device/sfx2/source/doc/printhelper.cxx"; sourceTree = "<group>"; };
		BE93D46A216D5582007A39F4 /* watermarkitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = watermarkitem.cxx; path = "../../ios-device/sfx2/source/doc/watermarkitem.cxx"; sourceTree = "<group>"; };
		BE93D46B216D5582007A39F4 /* new.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = new.cxx; path = "../../ios-device/sfx2/source/doc/new.cxx"; sourceTree = "<group>"; };
		BE93D46C216D5582007A39F4 /* objembed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objembed.cxx; path = "../../ios-device/sfx2/source/doc/objembed.cxx"; sourceTree = "<group>"; };
		BEA1201A24C587D500332049 /* BitmapMedianFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapMedianFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapMedianFilter.cxx"; sourceTree = "<group>"; };
		BEA1201B24C587D500332049 /* BitmapColorQuantizationFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapColorQuantizationFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapColorQuantizationFilter.cxx"; sourceTree = "<group>"; };
		BEA1201C24C587D500332049 /* BitmapDisabledImageFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapDisabledImageFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapDisabledImageFilter.cxx"; sourceTree = "<group>"; };
		BEA1201D24C587D500332049 /* BitmapMonochromeMatrixFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapMonochromeMatrixFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapMonochromeMatrixFilter.cxx"; sourceTree = "<group>"; };
		BEA1201E24C587D500332049 /* BitmapAlphaClampFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapAlphaClampFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapAlphaClampFilter.cxx"; sourceTree = "<group>"; };
		BEA1201F24C587D500332049 /* BitmapSepiaFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSepiaFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSepiaFilter.cxx"; sourceTree = "<group>"; };
		BEA1202024C587D500332049 /* BitmapTools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapTools.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapTools.cxx"; sourceTree = "<group>"; };
		BEA1202124C587D500332049 /* BitmapGaussianSeparableBlurFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapGaussianSeparableBlurFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapGaussianSeparableBlurFilter.cxx"; sourceTree = "<group>"; };
		BEA1202224C587D500332049 /* BitmapInterpolateScaleFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapInterpolateScaleFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapInterpolateScaleFilter.cxx"; sourceTree = "<group>"; };
		BEA1202324C587D500332049 /* BitmapMosaicFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapMosaicFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapMosaicFilter.cxx"; sourceTree = "<group>"; };
		BEA1202424C587D500332049 /* checksum.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = checksum.cxx; path = "../../ios-device/vcl/source/bitmap/checksum.cxx"; sourceTree = "<group>"; };
		BEA1202524C587D500332049 /* BitmapPopArtFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapPopArtFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapPopArtFilter.cxx"; sourceTree = "<group>"; };
		BEA1202624C587D600332049 /* BitmapLightenFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapLightenFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapLightenFilter.cxx"; sourceTree = "<group>"; };
		BEA1202724C587D600332049 /* BitmapMonochromeFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapMonochromeFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapMonochromeFilter.cxx"; sourceTree = "<group>"; };
		BEA1202824C587D600332049 /* BitmapScaleConvolutionFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapScaleConvolutionFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapScaleConvolutionFilter.cxx"; sourceTree = "<group>"; };
		BEA1202924C587D600332049 /* bitmappaint.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmappaint.cxx; path = "../../ios-device/vcl/source/bitmap/bitmappaint.cxx"; sourceTree = "<group>"; };
		BEA1202A24C587D600332049 /* BitmapSymmetryCheck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSymmetryCheck.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSymmetryCheck.cxx"; sourceTree = "<group>"; };
		BEA1202B24C587D600332049 /* BitmapScaleSuperFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapScaleSuperFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapScaleSuperFilter.cxx"; sourceTree = "<group>"; };
		BEA1202C24C587D600332049 /* BitmapSeparableUnsharpenFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSeparableUnsharpenFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSeparableUnsharpenFilter.cxx"; sourceTree = "<group>"; };
		BEA1202D24C587D600332049 /* BitmapSobelGreyFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSobelGreyFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSobelGreyFilter.cxx"; sourceTree = "<group>"; };
		BEA1202E24C587D600332049 /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = "../../ios-device/vcl/source/bitmap/bitmap.cxx"; sourceTree = "<group>"; };
		BEA1202F24C587D600332049 /* Octree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Octree.cxx; path = "../../ios-device/vcl/source/bitmap/Octree.cxx"; sourceTree = "<group>"; };
		BEA1203024C587D600332049 /* BitmapEmbossGreyFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapEmbossGreyFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapEmbossGreyFilter.cxx"; sourceTree = "<group>"; };
		BEA1203124C587D600332049 /* BitmapFastScaleFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapFastScaleFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapFastScaleFilter.cxx"; sourceTree = "<group>"; };
		BEA1203224C587D600332049 /* BitmapSimpleColorQuantizationFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSimpleColorQuantizationFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSimpleColorQuantizationFilter.cxx"; sourceTree = "<group>"; };
		BEA1203324C587D600332049 /* bitmapfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapfilter.cxx; path = "../../ios-device/vcl/source/bitmap/bitmapfilter.cxx"; sourceTree = "<group>"; };
		BEA1203424C587D600332049 /* BitmapSmoothenFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSmoothenFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSmoothenFilter.cxx"; sourceTree = "<group>"; };
		BEA1203524C587D600332049 /* BitmapColorizeFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapColorizeFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapColorizeFilter.cxx"; sourceTree = "<group>"; };
		BEA1203624C587D600332049 /* BitmapDuoToneFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapDuoToneFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapDuoToneFilter.cxx"; sourceTree = "<group>"; };
		BEA1203724C587D600332049 /* BitmapConvolutionMatrixFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapConvolutionMatrixFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapConvolutionMatrixFilter.cxx"; sourceTree = "<group>"; };
		BEA1203824C587D600332049 /* BitmapSolarizeFilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BitmapSolarizeFilter.cxx; path = "../../ios-device/vcl/source/bitmap/BitmapSolarizeFilter.cxx"; sourceTree = "<group>"; };
		BEA2835521467FDD00848631 /* Kit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Kit.cpp; sourceTree = "<group>"; };
		BEA283572146945500848631 /* ChildSession.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ChildSession.cpp; sourceTree = "<group>"; };
		BEA2835921470A1C00848631 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
		BEA2835C21498AD400848631 /* Socket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Socket.cpp; path = ../net/Socket.cpp; sourceTree = "<group>"; };
		BEA2835E214A8E2000848631 /* Socket.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Socket.hpp; sourceTree = "<group>"; };
		BEA2835F214ACA8500848631 /* FakeSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FakeSocket.cpp; sourceTree = "<group>"; };
		BEA28376214FFD8C00848631 /* Unit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Unit.cpp; sourceTree = "<group>"; };
		BEA283782150172600848631 /* Unit.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Unit.hpp; sourceTree = "<group>"; };
		BEA8CD7421959342009FE17E /* caserotate.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = caserotate.cxx; path = "../../ios-device/unotools/source/i18n/caserotate.cxx"; sourceTree = "<group>"; };
		BEA8CD7521959342009FE17E /* intlwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = intlwrapper.cxx; path = "../../ios-device/unotools/source/i18n/intlwrapper.cxx"; sourceTree = "<group>"; };
		BEA8CD7621959342009FE17E /* transliterationwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transliterationwrapper.cxx; path = "../../ios-device/unotools/source/i18n/transliterationwrapper.cxx"; sourceTree = "<group>"; };
		BEA8CD7721959342009FE17E /* charclass.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charclass.cxx; path = "../../ios-device/unotools/source/i18n/charclass.cxx"; sourceTree = "<group>"; };
		BEA8CD7821959342009FE17E /* calendarwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calendarwrapper.cxx; path = "../../ios-device/unotools/source/i18n/calendarwrapper.cxx"; sourceTree = "<group>"; };
		BEA8CD7921959342009FE17E /* textsearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textsearch.cxx; path = "../../ios-device/unotools/source/i18n/textsearch.cxx"; sourceTree = "<group>"; };
		BEA8CD7A21959342009FE17E /* nativenumberwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nativenumberwrapper.cxx; path = "../../ios-device/unotools/source/i18n/nativenumberwrapper.cxx"; sourceTree = "<group>"; };
		BEA8CD7B21959343009FE17E /* collatorwrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collatorwrapper.cxx; path = "../../ios-device/unotools/source/i18n/collatorwrapper.cxx"; sourceTree = "<group>"; };
		BEA8CD7C21959343009FE17E /* readwritemutexguard.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwritemutexguard.cxx; path = "../../ios-device/unotools/source/i18n/readwritemutexguard.cxx"; sourceTree = "<group>"; };
		BEA8CD7D21959343009FE17E /* localedatawrapper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = localedatawrapper.cxx; path = "../../ios-device/unotools/source/i18n/localedatawrapper.cxx"; sourceTree = "<group>"; };
		BEA8CD7E21959343009FE17E /* resmgr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resmgr.cxx; path = "../../ios-device/unotools/source/i18n/resmgr.cxx"; sourceTree = "<group>"; };
		BEA8CDC32199AC9D009FE17E /* lok.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lok.cxx; path = "../../ios-device/comphelper/source/misc/lok.cxx"; sourceTree = "<group>"; };
		BEA8CDC52199E621009FE17E /* languagetagicu.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = languagetagicu.cxx; path = "../../ios-device/i18nlangtag/source/languagetag/languagetagicu.cxx"; sourceTree = "<group>"; };
		BEA8CDC62199E621009FE17E /* languagetag.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = languagetag.cxx; path = "../../ios-device/i18nlangtag/source/languagetag/languagetag.cxx"; sourceTree = "<group>"; };
		BEABFC6624AC94C3004DE339 /* Authorization.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Authorization.cpp; sourceTree = "<group>"; };
		BEABFC6724AC94C3004DE339 /* Authorization.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = Authorization.hpp; sourceTree = "<group>"; };
		BEB0E5D821C7CA800085A0CF /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
		BEB0E5DB21CA7C780085A0CF /* graphicfilter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicfilter.cxx; path = "../../ios-device/vcl/source/filter/graphicfilter.cxx"; sourceTree = "<group>"; };
		BEB0E5E021CA9DC00085A0CF /* salbmp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salbmp.cxx; path = "../../ios-device/vcl/quartz/salbmp.cxx"; sourceTree = "<group>"; };
		BEB0E5E121CA9DDC0085A0CF /* salgdi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdi.cxx; path = "../../ios-device/vcl/quartz/salgdi.cxx"; sourceTree = "<group>"; };
		BEB0E5E221CA9DDC0085A0CF /* salvd.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salvd.cxx; path = "../../ios-device/vcl/quartz/salvd.cxx"; sourceTree = "<group>"; };
		BEB0E5E321CA9DDC0085A0CF /* ctfonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ctfonts.cxx; path = "../../ios-device/vcl/quartz/ctfonts.cxx"; sourceTree = "<group>"; };
		BEB0E5E421CA9DDD0085A0CF /* salgdicommon.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdicommon.cxx; path = "../../ios-device/vcl/quartz/salgdicommon.cxx"; sourceTree = "<group>"; };
		BEB0E5E521CA9DDD0085A0CF /* utils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = utils.cxx; path = "../../ios-device/vcl/quartz/utils.cxx"; sourceTree = "<group>"; };
		BEB0E5E621CA9DDD0085A0CF /* salgdiutils.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdiutils.cxx; path = "../../ios-device/vcl/quartz/salgdiutils.cxx"; sourceTree = "<group>"; };
		BEB0E5E821D6426B0085A0CF /* bitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap.cxx; path = "../../ios-device/vcl/source/outdev/bitmap.cxx"; sourceTree = "<group>"; };
		BEB6521C216F5D8B00B8C09A /* file_path_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_path_helper.hxx; path = "../../ios-device/sal/osl/unx/file_path_helper.hxx"; sourceTree = "<group>"; };
		BEB6521D216F5D8B00B8C09A /* file_error_transl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_error_transl.hxx; path = "../../ios-device/sal/osl/unx/file_error_transl.hxx"; sourceTree = "<group>"; };
		BEB6521E216F5D8B00B8C09A /* nlsupport.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = nlsupport.hxx; path = "../../ios-device/sal/osl/unx/nlsupport.hxx"; sourceTree = "<group>"; };
		BEB6521F216F5D8B00B8C09A /* createfilehandlefromfd.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = createfilehandlefromfd.hxx; path = "../../ios-device/sal/osl/unx/createfilehandlefromfd.hxx"; sourceTree = "<group>"; };
		BEB65220216F5D8B00B8C09A /* sockimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = sockimpl.hxx; path = "../../ios-device/sal/osl/unx/sockimpl.hxx"; sourceTree = "<group>"; };
		BEB65221216F5D8B00B8C09A /* file_error_transl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_error_transl.cxx; path = "../../ios-device/sal/osl/unx/file_error_transl.cxx"; sourceTree = "<group>"; };
		BEB65222216F5D8B00B8C09A /* system.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = system.hxx; path = "../../ios-device/sal/osl/unx/system.hxx"; sourceTree = "<group>"; };
		BEB65223216F5D8B00B8C09A /* backtrace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = backtrace.h; path = "../../ios-device/sal/osl/unx/backtrace.h"; sourceTree = "<group>"; };
		BEB65224216F5D8B00B8C09A /* file_url.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_url.hxx; path = "../../ios-device/sal/osl/unx/file_url.hxx"; sourceTree = "<group>"; };
		BEB65225216F5D8B00B8C09A /* file_volume.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_volume.cxx; path = "../../ios-device/sal/osl/unx/file_volume.cxx"; sourceTree = "<group>"; };
		BEB65226216F5D8B00B8C09A /* mutex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mutex.cxx; path = "../../ios-device/sal/osl/unx/mutex.cxx"; sourceTree = "<group>"; };
		BEB65227216F5D8B00B8C09A /* security.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = security.cxx; path = "../../ios-device/sal/osl/unx/security.cxx"; sourceTree = "<group>"; };
		BEB65228216F5D8B00B8C09A /* memory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = memory.cxx; path = "../../ios-device/sal/osl/unx/memory.cxx"; sourceTree = "<group>"; };
		BEB65229216F5D8B00B8C09A /* system.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = system.cxx; path = "../../ios-device/sal/osl/unx/system.cxx"; sourceTree = "<group>"; };
		BEB6522A216F5D8B00B8C09A /* file_misc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_misc.cxx; path = "../../ios-device/sal/osl/unx/file_misc.cxx"; sourceTree = "<group>"; };
		BEB6522B216F5D8B00B8C09A /* thread.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thread.cxx; path = "../../ios-device/sal/osl/unx/thread.cxx"; sourceTree = "<group>"; };
		BEB6522C216F5D8B00B8C09A /* signal.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = signal.cxx; path = "../../ios-device/sal/osl/unx/signal.cxx"; sourceTree = "<group>"; };
		BEB6522D216F5D8C00B8C09A /* secimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = secimpl.hxx; path = "../../ios-device/sal/osl/unx/secimpl.hxx"; sourceTree = "<group>"; };
		BEB6522E216F5D8C00B8C09A /* profile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profile.cxx; path = "../../ios-device/sal/osl/unx/profile.cxx"; sourceTree = "<group>"; };
		BEB6522F216F5D8C00B8C09A /* system.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = system.mm; path = "../../ios-device/sal/osl/unx/system.mm"; sourceTree = "<group>"; };
		BEB65230216F5D8C00B8C09A /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = backtrace.c; path = "../../ios-device/sal/osl/unx/backtrace.c"; sourceTree = "<group>"; };
		BEB65231216F5D8C00B8C09A /* file_path_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path_helper.cxx; path = "../../ios-device/sal/osl/unx/file_path_helper.cxx"; sourceTree = "<group>"; };
		BEB65232216F5D8C00B8C09A /* process_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process_impl.cxx; path = "../../ios-device/sal/osl/unx/process_impl.cxx"; sourceTree = "<group>"; };
		BEB65233216F5D8C00B8C09A /* file_impl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = file_impl.hxx; path = "../../ios-device/sal/osl/unx/file_impl.hxx"; sourceTree = "<group>"; };
		BEB65234216F5D8C00B8C09A /* socket.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cxx; path = "../../ios-device/sal/osl/unx/socket.cxx"; sourceTree = "<group>"; };
		BEB65235216F5D8C00B8C09A /* readwrite_helper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = readwrite_helper.cxx; path = "../../ios-device/sal/osl/unx/readwrite_helper.cxx"; sourceTree = "<group>"; };
		BEB65236216F5D8C00B8C09A /* osxlocale.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = osxlocale.cxx; path = "../../ios-device/sal/osl/unx/osxlocale.cxx"; sourceTree = "<group>"; };
		BEB65237216F5D8C00B8C09A /* file_stat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_stat.cxx; path = "../../ios-device/sal/osl/unx/file_stat.cxx"; sourceTree = "<group>"; };
		BEB65238216F5D8C00B8C09A /* file.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file.cxx; path = "../../ios-device/sal/osl/unx/file.cxx"; sourceTree = "<group>"; };
		BEB65239216F5D8C00B8C09A /* module.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = module.cxx; path = "../../ios-device/sal/osl/unx/module.cxx"; sourceTree = "<group>"; };
		BEB6523A216F5D8C00B8C09A /* pipe.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pipe.cxx; path = "../../ios-device/sal/osl/unx/pipe.cxx"; sourceTree = "<group>"; };
		BEB6523B216F5D8C00B8C09A /* readwrite_helper.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = readwrite_helper.hxx; path = "../../ios-device/sal/osl/unx/readwrite_helper.hxx"; sourceTree = "<group>"; };
		BEB6523C216F5D8C00B8C09A /* salinit.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salinit.cxx; path = "../../ios-device/sal/osl/unx/salinit.cxx"; sourceTree = "<group>"; };
		BEB6523D216F5D8C00B8C09A /* file_url.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_url.cxx; path = "../../ios-device/sal/osl/unx/file_url.cxx"; sourceTree = "<group>"; };
		BEB6523E216F5D8C00B8C09A /* backtraceapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = backtraceapi.cxx; path = "../../ios-device/sal/osl/unx/backtraceapi.cxx"; sourceTree = "<group>"; };
		BEB6523F216F5D8C00B8C09A /* interlck.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = interlck.cxx; path = "../../ios-device/sal/osl/unx/interlck.cxx"; sourceTree = "<group>"; };
		BEB65240216F5D8C00B8C09A /* random.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = random.cxx; path = "../../ios-device/sal/osl/unx/random.cxx"; sourceTree = "<group>"; };
		BEB65241216F5D8C00B8C09A /* tempfile.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tempfile.cxx; path = "../../ios-device/sal/osl/unx/tempfile.cxx"; sourceTree = "<group>"; };
		BEB65242216F5D8C00B8C09A /* uunxapi.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = uunxapi.hxx; path = "../../ios-device/sal/osl/unx/uunxapi.hxx"; sourceTree = "<group>"; };
		BEB65243216F5D8C00B8C09A /* conditn.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = conditn.cxx; path = "../../ios-device/sal/osl/unx/conditn.cxx"; sourceTree = "<group>"; };
		BEB65244216F5D8C00B8C09A /* asm */ = {isa = PBXFileReference; lastKnownFileType = folder; name = asm; path = "../../ios-device/sal/osl/unx/asm"; sourceTree = "<group>"; };
		BEB65245216F5D8C00B8C09A /* uunxapi.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uunxapi.cxx; path = "../../ios-device/sal/osl/unx/uunxapi.cxx"; sourceTree = "<group>"; };
		BEB65246216F5D8D00B8C09A /* time.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = time.cxx; path = "../../ios-device/sal/osl/unx/time.cxx"; sourceTree = "<group>"; };
		BEB65247216F5D8D00B8C09A /* uunxapi.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = uunxapi.mm; path = "../../ios-device/sal/osl/unx/uunxapi.mm"; sourceTree = "<group>"; };
		BEB65248216F5D8D00B8C09A /* process.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = process.cxx; path = "../../ios-device/sal/osl/unx/process.cxx"; sourceTree = "<group>"; };
		BEB65249216F5D8D00B8C09A /* saltime.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = saltime.hxx; path = "../../ios-device/sal/osl/unx/saltime.hxx"; sourceTree = "<group>"; };
		BEB6524A216F5D8D00B8C09A /* nlsupport.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = nlsupport.cxx; path = "../../ios-device/sal/osl/unx/nlsupport.cxx"; sourceTree = "<group>"; };
		BEB6524D216FD0CA00B8C09A /* vcompat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vcompat.cxx; path = "../../ios-device/tools/source/stream/vcompat.cxx"; sourceTree = "<group>"; };
		BEB6524E216FD0CA00B8C09A /* stream.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stream.cxx; path = "../../ios-device/tools/source/stream/stream.cxx"; sourceTree = "<group>"; };
		BEB6524F216FD0CA00B8C09A /* strmwnt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strmwnt.cxx; path = "../../ios-device/tools/source/stream/strmwnt.cxx"; sourceTree = "<group>"; };
		BEB65250216FD0CA00B8C09A /* strmunx.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strmunx.cxx; path = "../../ios-device/tools/source/stream/strmunx.cxx"; sourceTree = "<group>"; };
		BEBF3EAE246EB1C800415E87 /* RequestDetails.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = RequestDetails.hpp; sourceTree = "<group>"; };
		BEBF3EAF246EB1C800415E87 /* RequestDetails.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RequestDetails.cpp; sourceTree = "<group>"; };
		BECBD30323D7152900DA5582 /* SlsFramePainter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsFramePainter.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsFramePainter.cxx"; sourceTree = "<group>"; };
		BECBD30423D7152900DA5582 /* SlideSorterView.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlideSorterView.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlideSorterView.cxx"; sourceTree = "<group>"; };
		BECBD30523D7152900DA5582 /* SlsFramePainter.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SlsFramePainter.hxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsFramePainter.hxx"; sourceTree = "<group>"; };
		BECBD30623D7152900DA5582 /* SlsViewCacheContext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsViewCacheContext.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsViewCacheContext.cxx"; sourceTree = "<group>"; };
		BECBD30723D7152900DA5582 /* SlsPageObjectPainter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsPageObjectPainter.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx"; sourceTree = "<group>"; };
		BECBD30823D7152900DA5582 /* SlsViewCacheContext.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SlsViewCacheContext.hxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx"; sourceTree = "<group>"; };
		BECBD30923D7152900DA5582 /* SlsInsertionIndicatorOverlay.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsInsertionIndicatorOverlay.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsInsertionIndicatorOverlay.cxx"; sourceTree = "<group>"; };
		BECBD30A23D7152900DA5582 /* SlsTheme.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsTheme.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsTheme.cxx"; sourceTree = "<group>"; };
		BECBD30B23D7152900DA5582 /* SlsLayeredDevice.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SlsLayeredDevice.hxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx"; sourceTree = "<group>"; };
		BECBD30C23D7152900DA5582 /* SlsLayeredDevice.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsLayeredDevice.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsLayeredDevice.cxx"; sourceTree = "<group>"; };
		BECBD30D23D7152900DA5582 /* SlsPageObjectLayouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsPageObjectLayouter.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsPageObjectLayouter.cxx"; sourceTree = "<group>"; };
		BECBD30E23D7152900DA5582 /* SlsFontProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsFontProvider.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsFontProvider.cxx"; sourceTree = "<group>"; };
		BECBD30F23D7152900DA5582 /* SlsInsertAnimator.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsInsertAnimator.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx"; sourceTree = "<group>"; };
		BECBD31023D7152900DA5582 /* SlsLayouter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsLayouter.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsLayouter.cxx"; sourceTree = "<group>"; };
		BECBD31123D7152900DA5582 /* SlsToolTip.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SlsToolTip.cxx; path = "../../ios-device/sd/source/ui/slidesorter/view/SlsToolTip.cxx"; sourceTree = "<group>"; };
		BECBD31323D9C5CF00DA5582 /* lathe3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lathe3d.cxx; path = "../../ios-device/svx/source/engine3d/lathe3d.cxx"; sourceTree = "<group>"; };
		BECBD31423D9C5CF00DA5582 /* e3dsceneupdater.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = e3dsceneupdater.cxx; path = "../../ios-device/svx/source/engine3d/e3dsceneupdater.cxx"; sourceTree = "<group>"; };
		BECBD31523D9C5CF00DA5582 /* dragmt3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dragmt3d.cxx; path = "../../ios-device/svx/source/engine3d/dragmt3d.cxx"; sourceTree = "<group>"; };
		BECBD31623D9C5CF00DA5582 /* view3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = view3d.cxx; path = "../../ios-device/svx/source/engine3d/view3d.cxx"; sourceTree = "<group>"; };
		BECBD31723D9C5D000DA5582 /* objfac3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = objfac3d.cxx; path = "../../ios-device/svx/source/engine3d/objfac3d.cxx"; sourceTree = "<group>"; };
		BECBD31823D9C5D000DA5582 /* extrud3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extrud3d.cxx; path = "../../ios-device/svx/source/engine3d/extrud3d.cxx"; sourceTree = "<group>"; };
		BECBD31923D9C5D000DA5582 /* helperminimaldepth3d.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = helperminimaldepth3d.hxx; path = "../../ios-device/svx/source/engine3d/helperminimaldepth3d.hxx"; sourceTree = "<group>"; };
		BECBD31A23D9C5D000DA5582 /* obj3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = obj3d.cxx; path = "../../ios-device/svx/source/engine3d/obj3d.cxx"; sourceTree = "<group>"; };
		BECBD31B23D9C5D000DA5582 /* scene3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scene3d.cxx; path = "../../ios-device/svx/source/engine3d/scene3d.cxx"; sourceTree = "<group>"; };
		BECBD31C23D9C5D000DA5582 /* camera3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = camera3d.cxx; path = "../../ios-device/svx/source/engine3d/camera3d.cxx"; sourceTree = "<group>"; };
		BECBD31D23D9C5D000DA5582 /* polygn3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polygn3d.cxx; path = "../../ios-device/svx/source/engine3d/polygn3d.cxx"; sourceTree = "<group>"; };
		BECBD31E23D9C5D000DA5582 /* view3d1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = view3d1.cxx; path = "../../ios-device/svx/source/engine3d/view3d1.cxx"; sourceTree = "<group>"; };
		BECBD31F23D9C5D000DA5582 /* helperminimaldepth3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helperminimaldepth3d.cxx; path = "../../ios-device/svx/source/engine3d/helperminimaldepth3d.cxx"; sourceTree = "<group>"; };
		BECBD32023D9C5D000DA5582 /* cube3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cube3d.cxx; path = "../../ios-device/svx/source/engine3d/cube3d.cxx"; sourceTree = "<group>"; };
		BECBD32123D9C5D000DA5582 /* e3dundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = e3dundo.cxx; path = "../../ios-device/svx/source/engine3d/e3dundo.cxx"; sourceTree = "<group>"; };
		BECBD32223D9C5D000DA5582 /* svx3ditems.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svx3ditems.cxx; path = "../../ios-device/svx/source/engine3d/svx3ditems.cxx"; sourceTree = "<group>"; };
		BECBD32323D9C5D000DA5582 /* viewpt3d2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = viewpt3d2.cxx; path = "../../ios-device/svx/source/engine3d/viewpt3d2.cxx"; sourceTree = "<group>"; };
		BECBD32423D9C5D000DA5582 /* helperhittest3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = helperhittest3d.cxx; path = "../../ios-device/svx/source/engine3d/helperhittest3d.cxx"; sourceTree = "<group>"; };
		BECBD32523D9C5D000DA5582 /* float3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = float3d.cxx; path = "../../ios-device/svx/source/engine3d/float3d.cxx"; sourceTree = "<group>"; };
		BECBD32623D9C5D000DA5582 /* sphere3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sphere3d.cxx; path = "../../ios-device/svx/source/engine3d/sphere3d.cxx"; sourceTree = "<group>"; };
		BECBD32723D9C5D000DA5582 /* deflt3d.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = deflt3d.cxx; path = "../../ios-device/svx/source/engine3d/deflt3d.cxx"; sourceTree = "<group>"; };
		BECBD3C423D9C98000DA5582 /* svdotxtr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxtr.cxx; path = "../../ios-device/svx/source/svdraw/svdotxtr.cxx"; sourceTree = "<group>"; };
		BECBD3C523D9C98000DA5582 /* svdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpage.cxx; path = "../../ios-device/svx/source/svdraw/svdpage.cxx"; sourceTree = "<group>"; };
		BECBD3C623D9C98000DA5582 /* textchain.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textchain.cxx; path = "../../ios-device/svx/source/svdraw/textchain.cxx"; sourceTree = "<group>"; };
		BECBD3C723D9C98000DA5582 /* svdsnpv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdsnpv.cxx; path = "../../ios-device/svx/source/svdraw/svdsnpv.cxx"; sourceTree = "<group>"; };
		BECBD3C823D9C98000DA5582 /* svditer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svditer.cxx; path = "../../ios-device/svx/source/svdraw/svditer.cxx"; sourceTree = "<group>"; };
		BECBD3C923D9C98000DA5582 /* svdedtv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv1.cxx; path = "../../ios-device/svx/source/svdraw/svdedtv1.cxx"; sourceTree = "<group>"; };
		BECBD3CA23D9C98000DA5582 /* svdotextpathdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextpathdecomposition.cxx; path = "../../ios-device/svx/source/svdraw/svdotextpathdecomposition.cxx"; sourceTree = "<group>"; };
		BECBD3CB23D9C98000DA5582 /* svdmrkv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv.cxx; path = "../../ios-device/svx/source/svdraw/svdmrkv.cxx"; sourceTree = "<group>"; };
		BECBD3CC23D9C98000DA5582 /* svdibrow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdibrow.cxx; path = "../../ios-device/svx/source/svdraw/svdibrow.cxx"; sourceTree = "<group>"; };
		BECBD3CD23D9C98000DA5582 /* svdobjplusdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobjplusdata.cxx; path = "../../ios-device/svx/source/svdraw/svdobjplusdata.cxx"; sourceTree = "<group>"; };
		BECBD3CE23D9C98000DA5582 /* svdouno.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdouno.cxx; path = "../../ios-device/svx/source/svdraw/svdouno.cxx"; sourceTree = "<group>"; };
		BECBD3CF23D9C98000DA5582 /* svdundo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdundo.cxx; path = "../../ios-device/svx/source/svdraw/svdundo.cxx"; sourceTree = "<group>"; };
		BECBD3D023D9C98000DA5582 /* svdviter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdviter.cxx; path = "../../ios-device/svx/source/svdraw/svdviter.cxx"; sourceTree = "<group>"; };
		BECBD3D123D9C98000DA5582 /* svdedtv2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv2.cxx; path = "../../ios-device/svx/source/svdraw/svdedtv2.cxx"; sourceTree = "<group>"; };
		BECBD3D223D9C98000DA5582 /* svdoole2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoole2.cxx; path = "../../ios-device/svx/source/svdraw/svdoole2.cxx"; sourceTree = "<group>"; };
		BECBD3D323D9C98000DA5582 /* ActionDescriptionProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ActionDescriptionProvider.cxx; path = "../../ios-device/svx/source/svdraw/ActionDescriptionProvider.cxx"; sourceTree = "<group>"; };
		BECBD3D423D9C98100DA5582 /* textchaincursor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textchaincursor.cxx; path = "../../ios-device/svx/source/svdraw/textchaincursor.cxx"; sourceTree = "<group>"; };
		BECBD3D523D9C98100DA5582 /* sdrpaintwindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpaintwindow.cxx; path = "../../ios-device/svx/source/svdraw/sdrpaintwindow.cxx"; sourceTree = "<group>"; };
		BECBD3D623D9C98100DA5582 /* svdedtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedtv.cxx; path = "../../ios-device/svx/source/svdraw/svdedtv.cxx"; sourceTree = "<group>"; };
		BECBD3D723D9C98100DA5582 /* svdogrp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdogrp.cxx; path = "../../ios-device/svx/source/svdraw/svdogrp.cxx"; sourceTree = "<group>"; };
		BECBD3D823D9C98100DA5582 /* svdmodel.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmodel.cxx; path = "../../ios-device/svx/source/svdraw/svdmodel.cxx"; sourceTree = "<group>"; };
		BECBD3D923D9C98100DA5582 /* svdfmtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdfmtf.cxx; path = "../../ios-device/svx/source/svdraw/svdfmtf.cxx"; sourceTree = "<group>"; };
		BECBD3DA23D9C98100DA5582 /* svddrgm1.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = svddrgm1.hxx; path = "../../ios-device/svx/source/svdraw/svddrgm1.hxx"; sourceTree = "<group>"; };
		BECBD3DB23D9C98100DA5582 /* svdotxat.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxat.cxx; path = "../../ios-device/svx/source/svdraw/svdotxat.cxx"; sourceTree = "<group>"; };
		BECBD3DC23D9C98100DA5582 /* svdhdl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhdl.cxx; path = "../../ios-device/svx/source/svdraw/svdhdl.cxx"; sourceTree = "<group>"; };
		BECBD3DD23D9C98100DA5582 /* svdopage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopage.cxx; path = "../../ios-device/svx/source/svdraw/svdopage.cxx"; sourceTree = "<group>"; };
		BECBD3DE23D9C98100DA5582 /* sdrmasterpagedescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrmasterpagedescriptor.cxx; path = "../../ios-device/svx/source/svdraw/sdrmasterpagedescriptor.cxx"; sourceTree = "<group>"; };
		BECBD3DF23D9C98100DA5582 /* svdorect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdorect.cxx; path = "../../ios-device/svx/source/svdraw/svdorect.cxx"; sourceTree = "<group>"; };
		BECBD3E023D9C98100DA5582 /* svdotxdr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxdr.cxx; path = "../../ios-device/svx/source/svdraw/svdotxdr.cxx"; sourceTree = "<group>"; };
		BECBD3E123D9C98100DA5582 /* svdocapt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocapt.cxx; path = "../../ios-device/svx/source/svdraw/svdocapt.cxx"; sourceTree = "<group>"; };
		BECBD3E223D9C98100DA5582 /* svdotxed.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxed.cxx; path = "../../ios-device/svx/source/svdraw/svdotxed.cxx"; sourceTree = "<group>"; };
		BECBD3E323D9C98100DA5582 /* svdobj.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobj.cxx; path = "../../ios-device/svx/source/svdraw/svdobj.cxx"; sourceTree = "<group>"; };
		BECBD3E423D9C98200DA5582 /* selectioncontroller.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = selectioncontroller.cxx; path = "../../ios-device/svx/source/svdraw/selectioncontroller.cxx"; sourceTree = "<group>"; };
		BECBD3E523D9C98200DA5582 /* svdhlpln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdhlpln.cxx; path = "../../ios-device/svx/source/svdraw/svdhlpln.cxx"; sourceTree = "<group>"; };
		BECBD3E623D9C98200DA5582 /* svdopath.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdopath.cxx; path = "../../ios-device/svx/source/svdraw/svdopath.cxx"; sourceTree = "<group>"; };
		BECBD3E723D9C98200DA5582 /* svdobjuserdatalist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdobjuserdatalist.cxx; path = "../../ios-device/svx/source/svdraw/svdobjuserdatalist.cxx"; sourceTree = "<group>"; };
		BECBD3E823D9C98200DA5582 /* svdoutl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutl.cxx; path = "../../ios-device/svx/source/svdraw/svdoutl.cxx"; sourceTree = "<group>"; };
		BECBD3E923D9C98200DA5582 /* polypolygoneditor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = polypolygoneditor.cxx; path = "../../ios-device/svx/source/svdraw/polypolygoneditor.cxx"; sourceTree = "<group>"; };
		BECBD3EA23D9C98200DA5582 /* svdattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdattr.cxx; path = "../../ios-device/svx/source/svdraw/svdattr.cxx"; sourceTree = "<group>"; };
		BECBD3EB23D9C98200DA5582 /* textchainflow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textchainflow.cxx; path = "../../ios-device/svx/source/svdraw/textchainflow.cxx"; sourceTree = "<group>"; };
		BECBD3EC23D9C98200DA5582 /* svdpdf.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = svdpdf.hxx; path = "../../ios-device/svx/source/svdraw/svdpdf.hxx"; sourceTree = "<group>"; };
		BECBD3ED23D9C98200DA5582 /* svdotxln.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxln.cxx; path = "../../ios-device/svx/source/svdraw/svdotxln.cxx"; sourceTree = "<group>"; };
		BECBD3EE23D9C98200DA5582 /* charthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = charthelper.cxx; path = "../../ios-device/svx/source/svdraw/charthelper.cxx"; sourceTree = "<group>"; };
		BECBD3EF23D9C98200DA5582 /* svdomedia.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomedia.cxx; path = "../../ios-device/svx/source/svdraw/svdomedia.cxx"; sourceTree = "<group>"; };
		BECBD3F023D9C98200DA5582 /* svdotextdecomposition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotextdecomposition.cxx; path = "../../ios-device/svx/source/svdraw/svdotextdecomposition.cxx"; sourceTree = "<group>"; };
		BECBD3F123D9C98200DA5582 /* svdoutlinercache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoutlinercache.cxx; path = "../../ios-device/svx/source/svdraw/svdoutlinercache.cxx"; sourceTree = "<group>"; };
		BECBD3F223D9C98200DA5582 /* svdxcgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdxcgv.cxx; path = "../../ios-device/svx/source/svdraw/svdxcgv.cxx"; sourceTree = "<group>"; };
		BECBD3F323D9C98200DA5582 /* sdrundomanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrundomanager.cxx; path = "../../ios-device/svx/source/svdraw/sdrundomanager.cxx"; sourceTree = "<group>"; };
		BECBD3F423D9C98300DA5582 /* svdotext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotext.cxx; path = "../../ios-device/svx/source/svdraw/svdotext.cxx"; sourceTree = "<group>"; };
		BECBD3F523D9C98300DA5582 /* svdglue.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglue.cxx; path = "../../ios-device/svx/source/svdraw/svdglue.cxx"; sourceTree = "<group>"; };
		BECBD3F623D9C98300DA5582 /* svdpagv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpagv.cxx; path = "../../ios-device/svx/source/svdraw/svdpagv.cxx"; sourceTree = "<group>"; };
		BECBD3F723D9C98300DA5582 /* gradtrns.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradtrns.cxx; path = "../../ios-device/svx/source/svdraw/gradtrns.cxx"; sourceTree = "<group>"; };
		BECBD3F823D9C98300DA5582 /* svddrgv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgv.cxx; path = "../../ios-device/svx/source/svdraw/svddrgv.cxx"; sourceTree = "<group>"; };
		BECBD3F923D9C98300DA5582 /* svdetc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdetc.cxx; path = "../../ios-device/svx/source/svdraw/svdetc.cxx"; sourceTree = "<group>"; };
		BECBD3FA23D9C98300DA5582 /* svdpoev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpoev.cxx; path = "../../ios-device/svx/source/svdraw/svdpoev.cxx"; sourceTree = "<group>"; };
		BECBD3FB23D9C98300DA5582 /* svdomeas.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdomeas.cxx; path = "../../ios-device/svx/source/svdraw/svdomeas.cxx"; sourceTree = "<group>"; };
		BECBD3FC23D9C98300DA5582 /* svdoattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoattr.cxx; path = "../../ios-device/svx/source/svdraw/svdoattr.cxx"; sourceTree = "<group>"; };
		BECBD3FD23D9C98300DA5582 /* svdmark.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmark.cxx; path = "../../ios-device/svx/source/svdraw/svdmark.cxx"; sourceTree = "<group>"; };
		BECBD3FE23D9C98300DA5582 /* svdmrkv1.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdmrkv1.cxx; path = "../../ios-device/svx/source/svdraw/svdmrkv1.cxx"; sourceTree = "<group>"; };
		BECBD3FF23D9C98300DA5582 /* svdoashp.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoashp.cxx; path = "../../ios-device/svx/source/svdraw/svdoashp.cxx"; sourceTree = "<group>"; };
		BECBD40023D9C98300DA5582 /* svdovirt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdovirt.cxx; path = "../../ios-device/svx/source/svdraw/svdovirt.cxx"; sourceTree = "<group>"; };
		BECBD40123D9C98300DA5582 /* svdoedge.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdoedge.cxx; path = "../../ios-device/svx/source/svdraw/svdoedge.cxx"; sourceTree = "<group>"; };
		BECBD40223D9C98300DA5582 /* svdfmtf.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = svdfmtf.hxx; path = "../../ios-device/svx/source/svdraw/svdfmtf.hxx"; sourceTree = "<group>"; };
		BECBD40323D9C98300DA5582 /* svdpdf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpdf.cxx; path = "../../ios-device/svx/source/svdraw/svdpdf.cxx"; sourceTree = "<group>"; };
		BECBD40423D9C98300DA5582 /* svdograf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdograf.cxx; path = "../../ios-device/svx/source/svdraw/svdograf.cxx"; sourceTree = "<group>"; };
		BECBD40523D9C98400DA5582 /* svdcrtv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdcrtv.cxx; path = "../../ios-device/svx/source/svdraw/svdcrtv.cxx"; sourceTree = "<group>"; };
		BECBD40623D9C98400DA5582 /* svdtext.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtext.cxx; path = "../../ios-device/svx/source/svdraw/svdtext.cxx"; sourceTree = "<group>"; };
		BECBD40723D9C98400DA5582 /* svdview.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdview.cxx; path = "../../ios-device/svx/source/svdraw/svdview.cxx"; sourceTree = "<group>"; };
		BECBD40823D9C98400DA5582 /* sdrpagewindow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrpagewindow.cxx; path = "../../ios-device/svx/source/svdraw/sdrpagewindow.cxx"; sourceTree = "<group>"; };
		BECBD40923D9C98400DA5582 /* svdotxfl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdotxfl.cxx; path = "../../ios-device/svx/source/svdraw/svdotxfl.cxx"; sourceTree = "<group>"; };
		BECBD40A23D9C98400DA5582 /* svdglev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdglev.cxx; path = "../../ios-device/svx/source/svdraw/svdglev.cxx"; sourceTree = "<group>"; };
		BECBD40B23D9C98400DA5582 /* svdpntv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdpntv.cxx; path = "../../ios-device/svx/source/svdraw/svdpntv.cxx"; sourceTree = "<group>"; };
		BECBD40C23D9C98400DA5582 /* gradtrns.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = gradtrns.hxx; path = "../../ios-device/svx/source/svdraw/gradtrns.hxx"; sourceTree = "<group>"; };
		BECBD40D23D9C98400DA5582 /* sdrhittesthelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdrhittesthelper.cxx; path = "../../ios-device/svx/source/svdraw/sdrhittesthelper.cxx"; sourceTree = "<group>"; };
		BECBD40E23D9C98400DA5582 /* svddrag.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrag.cxx; path = "../../ios-device/svx/source/svdraw/svddrag.cxx"; sourceTree = "<group>"; };
		BECBD40F23D9C98400DA5582 /* svdocirc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdocirc.cxx; path = "../../ios-device/svx/source/svdraw/svdocirc.cxx"; sourceTree = "<group>"; };
		BECBD41023D9C98400DA5582 /* svdtrans.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdtrans.cxx; path = "../../ios-device/svx/source/svdraw/svdtrans.cxx"; sourceTree = "<group>"; };
		BECBD41123D9C98400DA5582 /* svdlayer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdlayer.cxx; path = "../../ios-device/svx/source/svdraw/svdlayer.cxx"; sourceTree = "<group>"; };
		BECBD41223D9C98400DA5582 /* svdedxv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svdedxv.cxx; path = "../../ios-device/svx/source/svdraw/svdedxv.cxx"; sourceTree = "<group>"; };
		BECBD41323D9C98400DA5582 /* clonelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clonelist.cxx; path = "../../ios-device/svx/source/svdraw/clonelist.cxx"; sourceTree = "<group>"; };
		BECBD41423D9C98500DA5582 /* svddrgmt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svddrgmt.cxx; path = "../../ios-device/svx/source/svdraw/svddrgmt.cxx"; sourceTree = "<group>"; };
		BECD983E24336DD400016117 /* device-mobile.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; name = "device-mobile.css"; path = "../../../loleaflet/dist/device-mobile.css"; sourceTree = "<group>"; };
		BECD983F24336DD400016117 /* device-tablet.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; name = "device-tablet.css"; path = "../../../loleaflet/dist/device-tablet.css"; sourceTree = "<group>"; };
		BEDCC84C2452F82800FB02BD /* MobileApp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MobileApp.cpp; sourceTree = "<group>"; };
		BEDCC84D2452F82800FB02BD /* MobileApp.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = MobileApp.hpp; sourceTree = "<group>"; };
		BEDCC8972456FFAC00FB02BD /* SceneDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = "<group>"; };
		BEDCC8982456FFAC00FB02BD /* SceneDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = "<group>"; };
		BEDCC943246175E100FB02BD /* sessionlistener.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sessionlistener.cxx; path = "../../ios-device/framework/source/services/sessionlistener.cxx"; sourceTree = "<group>"; };
		BEDCC944246175E100FB02BD /* substitutepathvars.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = substitutepathvars.cxx; path = "../../ios-device/framework/source/services/substitutepathvars.cxx"; sourceTree = "<group>"; };
		BEDCC945246175E100FB02BD /* pathsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pathsettings.cxx; path = "../../ios-device/framework/source/services/pathsettings.cxx"; sourceTree = "<group>"; };
		BEDCC946246175E100FB02BD /* urltransformer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = urltransformer.cxx; path = "../../ios-device/framework/source/services/urltransformer.cxx"; sourceTree = "<group>"; };
		BEDCC947246175E100FB02BD /* dispatchhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatchhelper.cxx; path = "../../ios-device/framework/source/services/dispatchhelper.cxx"; sourceTree = "<group>"; };
		BEDCC948246175E200FB02BD /* autorecovery.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = autorecovery.cxx; path = "../../ios-device/framework/source/services/autorecovery.cxx"; sourceTree = "<group>"; };
		BEDCC949246175E200FB02BD /* modulemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = modulemanager.cxx; path = "../../ios-device/framework/source/services/modulemanager.cxx"; sourceTree = "<group>"; };
		BEDCC94A246175E200FB02BD /* mediatypedetectionhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mediatypedetectionhelper.cxx; path = "../../ios-device/framework/source/services/mediatypedetectionhelper.cxx"; sourceTree = "<group>"; };
		BEDCC94B246175E200FB02BD /* ContextChangeEventMultiplexer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ContextChangeEventMultiplexer.cxx; path = "../../ios-device/framework/source/services/ContextChangeEventMultiplexer.cxx"; sourceTree = "<group>"; };
		BEDCC94C246175E200FB02BD /* desktop.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = desktop.cxx; path = "../../ios-device/framework/source/services/desktop.cxx"; sourceTree = "<group>"; };
		BEDCC94D246175E200FB02BD /* frame.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = frame.cxx; path = "../../ios-device/framework/source/services/frame.cxx"; sourceTree = "<group>"; };
		BEDCC94E246175E200FB02BD /* taskcreatorsrv.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = taskcreatorsrv.cxx; path = "../../ios-device/framework/source/services/taskcreatorsrv.cxx"; sourceTree = "<group>"; };
		BEDCC94F246175E200FB02BD /* uriabbreviation.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uriabbreviation.cxx; path = "../../ios-device/framework/source/services/uriabbreviation.cxx"; sourceTree = "<group>"; };
		BEE5C05324C1D9BB001D794C /* CommonSalLayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CommonSalLayout.cxx; path = "../../ios-device/vcl/source/gdi/CommonSalLayout.cxx"; sourceTree = "<group>"; };
		BEE5C05424C1D9BC001D794C /* sallayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sallayout.cxx; path = "../../ios-device/vcl/source/gdi/sallayout.cxx"; sourceTree = "<group>"; };
		BEE5C05524C1D9BC001D794C /* pdfobjectcopier.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfobjectcopier.cxx; path = "../../ios-device/vcl/source/gdi/pdfobjectcopier.cxx"; sourceTree = "<group>"; };
		BEE5C05624C1D9BC001D794C /* impgraph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impgraph.cxx; path = "../../ios-device/vcl/source/gdi/impgraph.cxx"; sourceTree = "<group>"; };
		BEE5C05724C1D9BC001D794C /* impvect.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = impvect.hxx; path = "../../ios-device/vcl/source/gdi/impvect.hxx"; sourceTree = "<group>"; };
		BEE5C05824C1D9BC001D794C /* TypeSerializer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TypeSerializer.cxx; path = "../../ios-device/vcl/source/gdi/TypeSerializer.cxx"; sourceTree = "<group>"; };
		BEE5C05924C1D9BC001D794C /* lineinfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lineinfo.cxx; path = "../../ios-device/vcl/source/gdi/lineinfo.cxx"; sourceTree = "<group>"; };
		BEE5C05A24C1D9BC001D794C /* gfxlink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gfxlink.cxx; path = "../../ios-device/vcl/source/gdi/gfxlink.cxx"; sourceTree = "<group>"; };
		BEE5C05B24C1D9BC001D794C /* salmisc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salmisc.cxx; path = "../../ios-device/vcl/source/gdi/salmisc.cxx"; sourceTree = "<group>"; };
		BEE5C05C24C1D9BC001D794C /* jobset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = jobset.cxx; path = "../../ios-device/vcl/source/gdi/jobset.cxx"; sourceTree = "<group>"; };
		BEE5C05D24C1D9BC001D794C /* pdfbuildin_fonts.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfbuildin_fonts.cxx; path = "../../ios-device/vcl/source/gdi/pdfbuildin_fonts.cxx"; sourceTree = "<group>"; };
		BEE5C05E24C1D9BC001D794C /* configsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = configsettings.cxx; path = "../../ios-device/vcl/source/gdi/configsettings.cxx"; sourceTree = "<group>"; };
		BEE5C05F24C1D9BC001D794C /* impvect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impvect.cxx; path = "../../ios-device/vcl/source/gdi/impvect.cxx"; sourceTree = "<group>"; };
		BEE5C06024C1D9BC001D794C /* impanmvw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impanmvw.cxx; path = "../../ios-device/vcl/source/gdi/impanmvw.cxx"; sourceTree = "<group>"; };
		BEE5C06124C1D9BC001D794C /* svmconverter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svmconverter.cxx; path = "../../ios-device/vcl/source/gdi/svmconverter.cxx"; sourceTree = "<group>"; };
		BEE5C06224C1D9BC001D794C /* vectorgraphicdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vectorgraphicdata.cxx; path = "../../ios-device/vcl/source/gdi/vectorgraphicdata.cxx"; sourceTree = "<group>"; };
		BEE5C06324C1D9BC001D794C /* print3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print3.cxx; path = "../../ios-device/vcl/source/gdi/print3.cxx"; sourceTree = "<group>"; };
		BEE5C06424C1D9BC001D794C /* VerticalOrientationData.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = VerticalOrientationData.cxx; path = "../../ios-device/vcl/source/gdi/VerticalOrientationData.cxx"; sourceTree = "<group>"; };
		BEE5C06524C1D9BC001D794C /* wall.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = wall.cxx; path = "../../ios-device/vcl/source/gdi/wall.cxx"; sourceTree = "<group>"; };
		BEE5C06624C1D9BD001D794C /* regionband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regionband.cxx; path = "../../ios-device/vcl/source/gdi/regionband.cxx"; sourceTree = "<group>"; };
		BEE5C06724C1D9BD001D794C /* pdfwriter.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter.cxx; path = "../../ios-device/vcl/source/gdi/pdfwriter.cxx"; sourceTree = "<group>"; };
		BEE5C06824C1D9BD001D794C /* region.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = region.cxx; path = "../../ios-device/vcl/source/gdi/region.cxx"; sourceTree = "<group>"; };
		BEE5C06924C1D9BD001D794C /* gradient.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gradient.cxx; path = "../../ios-device/vcl/source/gdi/gradient.cxx"; sourceTree = "<group>"; };
		BEE5C06A24C1D9BD001D794C /* bitmapex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmapex.cxx; path = "../../ios-device/vcl/source/gdi/bitmapex.cxx"; sourceTree = "<group>"; };
		BEE5C06B24C1D9BD001D794C /* gdimetafiletools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimetafiletools.cxx; path = "../../ios-device/vcl/source/gdi/gdimetafiletools.cxx"; sourceTree = "<group>"; };
		BEE5C06C24C1D9BD001D794C /* bitmap3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bitmap3.cxx; path = "../../ios-device/vcl/source/gdi/bitmap3.cxx"; sourceTree = "<group>"; };
		BEE5C06D24C1D9BD001D794C /* graphictools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphictools.cxx; path = "../../ios-device/vcl/source/gdi/graphictools.cxx"; sourceTree = "<group>"; };
		BEE5C06E24C1D9BD001D794C /* salgdiimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdiimpl.cxx; path = "../../ios-device/vcl/source/gdi/salgdiimpl.cxx"; sourceTree = "<group>"; };
		BEE5C06F24C1D9BD001D794C /* pdfwriter_impl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = pdfwriter_impl.hxx; path = "../../ios-device/vcl/source/gdi/pdfwriter_impl.hxx"; sourceTree = "<group>"; };
		BEE5C07024C1D9BD001D794C /* dibtools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dibtools.cxx; path = "../../ios-device/vcl/source/gdi/dibtools.cxx"; sourceTree = "<group>"; };
		BEE5C07124C1D9BD001D794C /* pdffontcache.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdffontcache.cxx; path = "../../ios-device/vcl/source/gdi/pdffontcache.cxx"; sourceTree = "<group>"; };
		BEE5C07224C1D9BD001D794C /* pdfwriter_impl2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl2.cxx; path = "../../ios-device/vcl/source/gdi/pdfwriter_impl2.cxx"; sourceTree = "<group>"; };
		BEE5C07324C1D9BD001D794C /* print.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print.cxx; path = "../../ios-device/vcl/source/gdi/print.cxx"; sourceTree = "<group>"; };
		BEE5C07424C1D9BD001D794C /* FileDefinitionWidgetDraw.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FileDefinitionWidgetDraw.cxx; path = "../../ios-device/vcl/source/gdi/FileDefinitionWidgetDraw.cxx"; sourceTree = "<group>"; };
		BEE5C07524C1D9BE001D794C /* bmpacc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc2.cxx; path = "../../ios-device/vcl/source/gdi/bmpacc2.cxx"; sourceTree = "<group>"; };
		BEE5C07624C1D9BE001D794C /* oldprintadaptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = oldprintadaptor.cxx; path = "../../ios-device/vcl/source/gdi/oldprintadaptor.cxx"; sourceTree = "<group>"; };
		BEE5C07724C1D9BE001D794C /* mapmod.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mapmod.cxx; path = "../../ios-device/vcl/source/gdi/mapmod.cxx"; sourceTree = "<group>"; };
		BEE5C07824C1D9BE001D794C /* pdfbuildin_fonts.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = pdfbuildin_fonts.hxx; path = "../../ios-device/vcl/source/gdi/pdfbuildin_fonts.hxx"; sourceTree = "<group>"; };
		BEE5C07924C1D9BE001D794C /* metaact.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = metaact.cxx; path = "../../ios-device/vcl/source/gdi/metaact.cxx"; sourceTree = "<group>"; };
		BEE5C07A24C1D9BE001D794C /* pdffontcache.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = pdffontcache.hxx; path = "../../ios-device/vcl/source/gdi/pdffontcache.hxx"; sourceTree = "<group>"; };
		BEE5C07B24C1D9BE001D794C /* pdfextoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfextoutdevdata.cxx; path = "../../ios-device/vcl/source/gdi/pdfextoutdevdata.cxx"; sourceTree = "<group>"; };
		BEE5C07C24C1D9BE001D794C /* bmpacc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc.cxx; path = "../../ios-device/vcl/source/gdi/bmpacc.cxx"; sourceTree = "<group>"; };
		BEE5C07D24C1D9BE001D794C /* virdev.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = virdev.cxx; path = "../../ios-device/vcl/source/gdi/virdev.cxx"; sourceTree = "<group>"; };
		BEE5C07E24C1D9BE001D794C /* bmpfast.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpfast.cxx; path = "../../ios-device/vcl/source/gdi/bmpfast.cxx"; sourceTree = "<group>"; };
		BEE5C07F24C1D9BE001D794C /* graph.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph.cxx; path = "../../ios-device/vcl/source/gdi/graph.cxx"; sourceTree = "<group>"; };
		BEE5C08024C1D9BE001D794C /* salgdilayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = salgdilayout.cxx; path = "../../ios-device/vcl/source/gdi/salgdilayout.cxx"; sourceTree = "<group>"; };
		BEE5C08124C1D9BF001D794C /* mtfxmldump.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mtfxmldump.cxx; path = "../../ios-device/vcl/source/gdi/mtfxmldump.cxx"; sourceTree = "<group>"; };
		BEE5C08224C1D9BF001D794C /* hatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = hatch.cxx; path = "../../ios-device/vcl/source/gdi/hatch.cxx"; sourceTree = "<group>"; };
		BEE5C08324C1D9BF001D794C /* gdimtf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gdimtf.cxx; path = "../../ios-device/vcl/source/gdi/gdimtf.cxx"; sourceTree = "<group>"; };
		BEE5C08424C1D9BF001D794C /* pdfwriter_impl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pdfwriter_impl.cxx; path = "../../ios-device/vcl/source/gdi/pdfwriter_impl.cxx"; sourceTree = "<group>"; };
		BEE5C08524C1D9BF001D794C /* WidgetDefinition.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WidgetDefinition.cxx; path = "../../ios-device/vcl/source/gdi/WidgetDefinition.cxx"; sourceTree = "<group>"; };
		BEE5C08624C1D9BF001D794C /* alpha.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = alpha.cxx; path = "../../ios-device/vcl/source/gdi/alpha.cxx"; sourceTree = "<group>"; };
		BEE5C08724C1D9BF001D794C /* WidgetDefinitionReader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = WidgetDefinitionReader.cxx; path = "../../ios-device/vcl/source/gdi/WidgetDefinitionReader.cxx"; sourceTree = "<group>"; };
		BEE5C08824C1D9BF001D794C /* extoutdevdata.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = extoutdevdata.cxx; path = "../../ios-device/vcl/source/gdi/extoutdevdata.cxx"; sourceTree = "<group>"; };
		BEE5C08924C1D9BF001D794C /* cvtgrf.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cvtgrf.cxx; path = "../../ios-device/vcl/source/gdi/cvtgrf.cxx"; sourceTree = "<group>"; };
		BEE5C08A24C1D9BF001D794C /* bmpacc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = bmpacc3.cxx; path = "../../ios-device/vcl/source/gdi/bmpacc3.cxx"; sourceTree = "<group>"; };
		BEE5C08B24C1D9BF001D794C /* regband.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = regband.cxx; path = "../../ios-device/vcl/source/gdi/regband.cxx"; sourceTree = "<group>"; };
		BEE5C08C24C1D9BF001D794C /* textlayout.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = textlayout.cxx; path = "../../ios-device/vcl/source/gdi/textlayout.cxx"; sourceTree = "<group>"; };
		BEE5C08D24C1D9BF001D794C /* print2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = print2.cxx; path = "../../ios-device/vcl/source/gdi/print2.cxx"; sourceTree = "<group>"; };
		BEE5C08E24C1D9BF001D794C /* impglyphitem.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = impglyphitem.cxx; path = "../../ios-device/vcl/source/gdi/impglyphitem.cxx"; sourceTree = "<group>"; };
		BEE5C08F24C1D9BF001D794C /* scrptrun.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scrptrun.cxx; path = "../../ios-device/vcl/source/gdi/scrptrun.cxx"; sourceTree = "<group>"; };
		BEE5C09024C1D9C0001D794C /* embeddedfontshelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = embeddedfontshelper.cxx; path = "../../ios-device/vcl/source/gdi/embeddedfontshelper.cxx"; sourceTree = "<group>"; };
		BEF755A723E8200A008A4BB2 /* drawdoc.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdoc.cxx; path = "../../ios-device/sd/source/core/drawdoc.cxx"; sourceTree = "<group>"; };
		BEF755A823E8200A008A4BB2 /* drawdoc3.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdoc3.cxx; path = "../../ios-device/sd/source/core/drawdoc3.cxx"; sourceTree = "<group>"; };
		BEF755A923E8200A008A4BB2 /* sdiocmpt.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdiocmpt.cxx; path = "../../ios-device/sd/source/core/sdiocmpt.cxx"; sourceTree = "<group>"; };
		BEF755AA23E8200A008A4BB2 /* drawdoc4.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdoc4.cxx; path = "../../ios-device/sd/source/core/drawdoc4.cxx"; sourceTree = "<group>"; };
		BEF755AB23E8200A008A4BB2 /* typemap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = typemap.cxx; path = "../../ios-device/sd/source/core/typemap.cxx"; sourceTree = "<group>"; };
		BEF755AC23E8200A008A4BB2 /* shapelist.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shapelist.cxx; path = "../../ios-device/sd/source/core/shapelist.cxx"; sourceTree = "<group>"; };
		BEF755AD23E8200A008A4BB2 /* stlfamily.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stlfamily.cxx; path = "../../ios-device/sd/source/core/stlfamily.cxx"; sourceTree = "<group>"; };
		BEF755AE23E8200A008A4BB2 /* stlsheet.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stlsheet.cxx; path = "../../ios-device/sd/source/core/stlsheet.cxx"; sourceTree = "<group>"; };
		BEF755AF23E8200A008A4BB2 /* drawdoc2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdoc2.cxx; path = "../../ios-device/sd/source/core/drawdoc2.cxx"; sourceTree = "<group>"; };
		BEF755B023E8200A008A4BB2 /* drawdoc_animations.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = drawdoc_animations.cxx; path = "../../ios-device/sd/source/core/drawdoc_animations.cxx"; sourceTree = "<group>"; };
		BEF755B123E8200A008A4BB2 /* TransitionPreset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TransitionPreset.cxx; path = "../../ios-device/sd/source/core/TransitionPreset.cxx"; sourceTree = "<group>"; };
		BEF755B223E8200A008A4BB2 /* stlpool.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = stlpool.cxx; path = "../../ios-device/sd/source/core/stlpool.cxx"; sourceTree = "<group>"; };
		BEF755B323E8200A008A4BB2 /* anminfo.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = anminfo.cxx; path = "../../ios-device/sd/source/core/anminfo.cxx"; sourceTree = "<group>"; };
		BEF755B423E8200B008A4BB2 /* CustomAnimationPreset.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CustomAnimationPreset.cxx; path = "../../ios-device/sd/source/core/CustomAnimationPreset.cxx"; sourceTree = "<group>"; };
		BEF755B523E8200B008A4BB2 /* sdpage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdpage.cxx; path = "../../ios-device/sd/source/core/sdpage.cxx"; sourceTree = "<group>"; };
		BEF755B623E8200B008A4BB2 /* CustomAnimationCloner.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CustomAnimationCloner.cxx; path = "../../ios-device/sd/source/core/CustomAnimationCloner.cxx"; sourceTree = "<group>"; };
		BEF755B723E8200B008A4BB2 /* PageListWatcher.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = PageListWatcher.cxx; path = "../../ios-device/sd/source/core/PageListWatcher.cxx"; sourceTree = "<group>"; };
		BEF755B823E8200B008A4BB2 /* cusshow.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cusshow.cxx; path = "../../ios-device/sd/source/core/cusshow.cxx"; sourceTree = "<group>"; };
		BEF755B923E8200B008A4BB2 /* sdpage2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdpage2.cxx; path = "../../ios-device/sd/source/core/sdpage2.cxx"; sourceTree = "<group>"; };
		BEF755BA23E8200B008A4BB2 /* undoanim.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = undoanim.cxx; path = "../../ios-device/sd/source/core/undoanim.cxx"; sourceTree = "<group>"; };
		BEF755BB23E8200B008A4BB2 /* PageListWatcher.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = PageListWatcher.hxx; path = "../../ios-device/sd/source/core/PageListWatcher.hxx"; sourceTree = "<group>"; };
		BEF755BC23E8200B008A4BB2 /* CustomAnimationEffect.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CustomAnimationEffect.cxx; path = "../../ios-device/sd/source/core/CustomAnimationEffect.cxx"; sourceTree = "<group>"; };
		BEF755BD23E8200B008A4BB2 /* pglink.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = pglink.cxx; path = "../../ios-device/sd/source/core/pglink.cxx"; sourceTree = "<group>"; };
		BEF755BE23E8200B008A4BB2 /* sdpage_animations.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sdpage_animations.cxx; path = "../../ios-device/sd/source/core/sdpage_animations.cxx"; sourceTree = "<group>"; };
		BEF755BF23E8200B008A4BB2 /* EffectMigration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = EffectMigration.cxx; path = "../../ios-device/sd/source/core/EffectMigration.cxx"; sourceTree = "<group>"; };
		BEF7895324C887980013A906 /* strhelper.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = strhelper.cxx; path = "../../ios-device/vcl/source/helper/strhelper.cxx"; sourceTree = "<group>"; };
		BEF7895424C887980013A906 /* commandinfoprovider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = commandinfoprovider.cxx; path = "../../ios-device/vcl/source/helper/commandinfoprovider.cxx"; sourceTree = "<group>"; };
		BEF7895524C887980013A906 /* svtaccessiblefactory.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = svtaccessiblefactory.cxx; path = "../../ios-device/vcl/source/helper/svtaccessiblefactory.cxx"; sourceTree = "<group>"; };
		BEF7895624C887980013A906 /* evntpost.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = evntpost.cxx; path = "../../ios-device/vcl/source/helper/evntpost.cxx"; sourceTree = "<group>"; };
		BEF7895724C887980013A906 /* threadex.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadex.cxx; path = "../../ios-device/vcl/source/helper/threadex.cxx"; sourceTree = "<group>"; };
		BEF7895824C887980013A906 /* displayconnectiondispatch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = displayconnectiondispatch.cxx; path = "../../ios-device/vcl/source/helper/displayconnectiondispatch.cxx"; sourceTree = "<group>"; };
		BEF7895924C887980013A906 /* lazydelete.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = lazydelete.cxx; path = "../../ios-device/vcl/source/helper/lazydelete.cxx"; sourceTree = "<group>"; };
		BEF7895A24C887980013A906 /* errcode.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = errcode.cxx; path = "../../ios-device/vcl/source/helper/errcode.cxx"; sourceTree = "<group>"; };
		BEF7895B24C887980013A906 /* canvastools.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = canvastools.cxx; path = "../../ios-device/vcl/source/helper/canvastools.cxx"; sourceTree = "<group>"; };
		BEF7895C24C887980013A906 /* canvasbitmap.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = canvasbitmap.cxx; path = "../../ios-device/vcl/source/helper/canvasbitmap.cxx"; sourceTree = "<group>"; };
		BEF7895E24C88A540013A906 /* uicategorydescription.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uicategorydescription.cxx; path = "../../ios-device/framework/source/uiconfiguration/uicategorydescription.cxx"; sourceTree = "<group>"; };
		BEF7895F24C88A540013A906 /* ImageList.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImageList.cxx; path = "../../ios-device/framework/source/uiconfiguration/ImageList.cxx"; sourceTree = "<group>"; };
		BEF7896024C88A540013A906 /* globalsettings.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = globalsettings.cxx; path = "../../ios-device/framework/source/uiconfiguration/globalsettings.cxx"; sourceTree = "<group>"; };
		BEF7896124C88A540013A906 /* graphicnameaccess.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graphicnameaccess.cxx; path = "../../ios-device/framework/source/uiconfiguration/graphicnameaccess.cxx"; sourceTree = "<group>"; };
		BEF7896224C88A540013A906 /* moduleuicfgsupplier.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moduleuicfgsupplier.cxx; path = "../../ios-device/framework/source/uiconfiguration/moduleuicfgsupplier.cxx"; sourceTree = "<group>"; };
		BEF7896324C88A540013A906 /* imagemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagemanager.cxx; path = "../../ios-device/framework/source/uiconfiguration/imagemanager.cxx"; sourceTree = "<group>"; };
		BEF7896424C88A550013A906 /* imagemanagerimpl.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = imagemanagerimpl.hxx; path = "../../ios-device/framework/source/uiconfiguration/imagemanagerimpl.hxx"; sourceTree = "<group>"; };
		BEF7896524C88A550013A906 /* uiconfigurationmanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = uiconfigurationmanager.cxx; path = "../../ios-device/framework/source/uiconfiguration/uiconfigurationmanager.cxx"; sourceTree = "<group>"; };
		BEF7896624C88A550013A906 /* ImageList.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = ImageList.hxx; path = "../../ios-device/framework/source/uiconfiguration/ImageList.hxx"; sourceTree = "<group>"; };
		BEF7896724C88A550013A906 /* CommandImageResolver.hxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CommandImageResolver.hxx; path = "../../ios-device/framework/source/uiconfiguration/CommandImageResolver.hxx"; sourceTree = "<group>"; };
		BEF7896824C88A550013A906 /* CommandImageResolver.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CommandImageResolver.cxx; path = "../../ios-device/framework/source/uiconfiguration/CommandImageResolver.cxx"; sourceTree = "<group>"; };
		BEF7896924C88A550013A906 /* windowstateconfiguration.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = windowstateconfiguration.cxx; path = "../../ios-device/framework/source/uiconfiguration/windowstateconfiguration.cxx"; sourceTree = "<group>"; };
		BEF7896A24C88A550013A906 /* imagemanagerimpl.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imagemanagerimpl.cxx; path = "../../ios-device/framework/source/uiconfiguration/imagemanagerimpl.cxx"; sourceTree = "<group>"; };
		BEF7896B24C88A550013A906 /* moduleimagemanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moduleimagemanager.cxx; path = "../../ios-device/framework/source/uiconfiguration/moduleimagemanager.cxx"; sourceTree = "<group>"; };
		BEF7896C24C88A550013A906 /* moduleuiconfigurationmanager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moduleuiconfigurationmanager.cxx; path = "../../ios-device/framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx"; sourceTree = "<group>"; };
		BEF7896E24C8CF960013A906 /* GraphicID.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicID.cxx; path = "../../ios-device/vcl/source/graphic/GraphicID.cxx"; sourceTree = "<group>"; };
		BEF7896F24C8CF960013A906 /* UnoGraphicProvider.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoGraphicProvider.cxx; path = "../../ios-device/vcl/source/graphic/UnoGraphicProvider.cxx"; sourceTree = "<group>"; };
		BEF7897024C8CF960013A906 /* grfattr.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = grfattr.cxx; path = "../../ios-device/vcl/source/graphic/grfattr.cxx"; sourceTree = "<group>"; };
		BEF7897124C8CF960013A906 /* GraphicReader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicReader.cxx; path = "../../ios-device/vcl/source/graphic/GraphicReader.cxx"; sourceTree = "<group>"; };
		BEF7897224C8CF960013A906 /* GraphicLoader.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicLoader.cxx; path = "../../ios-device/vcl/source/graphic/GraphicLoader.cxx"; sourceTree = "<group>"; };
		BEF7897324C8CF960013A906 /* UnoGraphicDescriptor.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoGraphicDescriptor.cxx; path = "../../ios-device/vcl/source/graphic/UnoGraphicDescriptor.cxx"; sourceTree = "<group>"; };
		BEF7897424C8CF960013A906 /* Manager.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Manager.cxx; path = "../../ios-device/vcl/source/graphic/Manager.cxx"; sourceTree = "<group>"; };
		BEF7897524C8CF960013A906 /* GraphicObject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicObject.cxx; path = "../../ios-device/vcl/source/graphic/GraphicObject.cxx"; sourceTree = "<group>"; };
		BEF7897624C8CF960013A906 /* UnoGraphic.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoGraphic.cxx; path = "../../ios-device/vcl/source/graphic/UnoGraphic.cxx"; sourceTree = "<group>"; };
		BEF7897724C8CF970013A906 /* VectorGraphicSearch.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = VectorGraphicSearch.cxx; path = "../../ios-device/vcl/source/graphic/VectorGraphicSearch.cxx"; sourceTree = "<group>"; };
		BEF7897824C8CF970013A906 /* UnoGraphicTransformer.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoGraphicTransformer.cxx; path = "../../ios-device/vcl/source/graphic/UnoGraphicTransformer.cxx"; sourceTree = "<group>"; };
		BEF7897924C8CF970013A906 /* GraphicObject2.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GraphicObject2.cxx; path = "../../ios-device/vcl/source/graphic/GraphicObject2.cxx"; sourceTree = "<group>"; };
		BEF7897A24C8CF970013A906 /* UnoGraphicObject.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnoGraphicObject.cxx; path = "../../ios-device/vcl/source/graphic/UnoGraphicObject.cxx"; sourceTree = "<group>"; };
		BEF7897C24C8D9D60013A906 /* ImplImageTree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImplImageTree.cxx; path = "../../ios-device/vcl/source/image/ImplImageTree.cxx"; sourceTree = "<group>"; };
		BEF7897D24C8D9F50013A906 /* Image.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Image.cxx; path = "../../ios-device/vcl/source/image/Image.cxx"; sourceTree = "<group>"; };
		BEF7897E24C8D9F50013A906 /* ImplImage.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImplImage.cxx; path = "../../ios-device/vcl/source/image/ImplImage.cxx"; sourceTree = "<group>"; };
		BEF7897F24C8D9F50013A906 /* ImageTree.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImageTree.cxx; path = "../../ios-device/vcl/source/image/ImageTree.cxx"; sourceTree = "<group>"; };
		BEF7898024C8D9F50013A906 /* ImageRepository.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ImageRepository.cxx; path = "../../ios-device/vcl/source/image/ImageRepository.cxx"; sourceTree = "<group>"; };
		BEFB1EDF21C29CC70081D757 /* L10n.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = L10n.h; sourceTree = "<group>"; };
		BEFB1EE021C29CC70081D757 /* L10n.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = L10n.mm; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		BE8D77242136762500AC58EA /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BE512CBA2518DE6E00921C15 /* libsqlite3.tbd in Frameworks */,
				BE6362C22153B5B500F4237E /* MobileCoreServices.framework in Frameworks */,
				BEA2835A21470A1C00848631 /* WebKit.framework in Frameworks */,
				BE00F8B7213ED573001CE2D4 /* libz.tbd in Frameworks */,
				BE00F8B5213ED543001CE2D4 /* libiconv.tbd in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		BE00F8922139494E001CE2D4 /* Resources */ = {
			isa = PBXGroup;
			children = (
				BE7D6A6A23FAA8B500C2E605 /* loolkitconfig.xcu */,
				BE18C7DD226DE09A001AD27E /* Branding */,
				BEB0E5D821C7CA800085A0CF /* Settings.bundle */,
				BE80E46721B7066C00859C97 /* Templates */,
				BE80E43121AD92F600859C97 /* Fonts */,
				BE8D85BE214055F2009F1860 /* config */,
				BE8D85C6214055F3009F1860 /* fundamentalrc */,
				BE8D85BC214055F2009F1860 /* offapi.rdb */,
				BE8D85C0214055F2009F1860 /* oovbaapi.rdb */,
				BE8D85C4214055F3009F1860 /* program */,
				BE8D85C8214055F3009F1860 /* rc */,
				BE8D85C2214055F2009F1860 /* services */,
				BE8D85C3214055F2009F1860 /* services.rdb */,
				BE8D85BD214055F2009F1860 /* share */,
				BE8D85C1214055F2009F1860 /* udkapi.rdb */,
				BE8D85C7214055F3009F1860 /* unorc */,
				BE5EB5DB2140480B00E0826C /* ICU.dat */,
				BE00F89721396585001CE2D4 /* bundle.css */,
				BECD983E24336DD400016117 /* device-mobile.css */,
				BECD983F24336DD400016117 /* device-tablet.css */,
				BE00F89921396585001CE2D4 /* bundle.js */,
				BE00F89E21396585001CE2D4 /* images */,
				BE00F89D21396585001CE2D4 /* loleaflet-help.html */,
				BE00F89621396585001CE2D4 /* loleaflet.html */,
			);
			path = Resources;
			sourceTree = "<group>";
		};
		BE00F8B3213ED542001CE2D4 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				BE512CB92518DE6400921C15 /* libsqlite3.tbd */,
				BE6362C12153B5B500F4237E /* MobileCoreServices.framework */,
				BEA2835921470A1C00848631 /* WebKit.framework */,
				BE00F8B6213ED573001CE2D4 /* libz.tbd */,
				BE00F8B4213ED543001CE2D4 /* libiconv.tbd */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		BE28F87F228CE02500C00C48 /* app */ = {
			isa = PBXGroup;
			children = (
				BE28F88C228CE04600C00C48 /* app.cxx */,
				BE28F891228CE04700C00C48 /* appinit.cxx */,
				BE28F88B228CE04600C00C48 /* check_ext_deps.cxx */,
				BE28F887228CE04600C00C48 /* cmdlineargs.cxx */,
				BE28F88F228CE04600C00C48 /* cmdlineargs.hxx */,
				BE28F893228CE04700C00C48 /* cmdlinehelp.cxx */,
				BE28F885228CE04600C00C48 /* cmdlinehelp.hxx */,
				BE28F88D228CE04600C00C48 /* crashreport.cxx */,
				BE28F886228CE04600C00C48 /* desktopcontext.cxx */,
				BE28F884228CE04600C00C48 /* desktopcontext.hxx */,
				BE28F889228CE04600C00C48 /* dispatchwatcher.cxx */,
				BE28F883228CE04600C00C48 /* dispatchwatcher.hxx */,
				BE28F896228CE04700C00C48 /* langselect.cxx */,
				BE28F880228CE04600C00C48 /* langselect.hxx */,
				BE28F897228CE04700C00C48 /* lockfile2.cxx */,
				BE28F890228CE04600C00C48 /* main.c */,
				BE28F894228CE04700C00C48 /* officeipcthread.cxx */,
				BE28F881228CE04600C00C48 /* officeipcthread.hxx */,
				BE28F882228CE04600C00C48 /* opencl.cxx */,
				BE28F892228CE04700C00C48 /* sofficemain.cxx */,
				BE28F895228CE04700C00C48 /* sofficemain.h */,
				BE28F888228CE04600C00C48 /* updater.cxx */,
				BE28F88E228CE04600C00C48 /* updater.hxx */,
				BE28F898228CE04700C00C48 /* userinstall.cxx */,
				BE28F88A228CE04600C00C48 /* userinstall.hxx */,
			);
			name = app;
			sourceTree = "<group>";
		};
		BE34D10C218B667400815297 /* sw */ = {
			isa = PBXGroup;
			children = (
				BE34D10D218B668100815297 /* uibase */,
			);
			name = sw;
			sourceTree = "<group>";
		};
		BE34D10D218B668100815297 /* uibase */ = {
			isa = PBXGroup;
			children = (
				BE34D10E218B669000815297 /* app */,
				BE34D120218B674400815297 /* shells */,
			);
			name = uibase;
			sourceTree = "<group>";
		};
		BE34D10E218B669000815297 /* app */ = {
			isa = PBXGroup;
			children = (
				BE34D118218B66B600815297 /* appenv.cxx */,
				BE34D119218B66B600815297 /* appenv.hxx */,
				BE34D117218B66B600815297 /* apphdl.cxx */,
				BE34D11C218B66B600815297 /* applab.cxx */,
				BE34D11F218B66B600815297 /* appopt.cxx */,
				BE34D10F218B66B600815297 /* docsh.cxx */,
				BE34D11D218B66B600815297 /* docsh2.cxx */,
				BE34D111218B66B600815297 /* docshdrw.cxx */,
				BE34D112218B66B600815297 /* docshini.cxx */,
				BE34D11B218B66B600815297 /* docst.cxx */,
				BE34D110218B66B600815297 /* docstyle.cxx */,
				BE34D11E218B66B600815297 /* mainwn.cxx */,
				BE34D116218B66B600815297 /* swdll.cxx */,
				BE34D114218B66B600815297 /* swdllimpl.hxx */,
				BE34D113218B66B600815297 /* swmodul1.cxx */,
				BE34D11A218B66B600815297 /* swmodule.cxx */,
				BE34D115218B66B600815297 /* swwait.cxx */,
			);
			name = app;
			sourceTree = "<group>";
		};
		BE34D120218B674400815297 /* shells */ = {
			isa = PBXGroup;
			children = (
				BE34D121218B678F00815297 /* annotsh.cxx */,
				BE34D12B218B679000815297 /* basesh.cxx */,
				BE34D122218B678F00815297 /* beziersh.cxx */,
				BE34D137218B679000815297 /* drawdlg.cxx */,
				BE34D133218B679000815297 /* drawsh.cxx */,
				BE34D134218B679000815297 /* drformsh.cxx */,
				BE34D130218B679000815297 /* drwbassh.cxx */,
				BE34D124218B678F00815297 /* drwtxtex.cxx */,
				BE34D13D218B679000815297 /* drwtxtsh.cxx */,
				BE34D12A218B679000815297 /* frmsh.cxx */,
				BE34D139218B679000815297 /* grfsh.cxx */,
				BE34D129218B678F00815297 /* grfshex.cxx */,
				BE34D13A218B679000815297 /* langhelper.cxx */,
				BE34D128218B678F00815297 /* listsh.cxx */,
				BE34D131218B679000815297 /* mediash.cxx */,
				BE34D135218B679000815297 /* navsh.cxx */,
				BE34D123218B678F00815297 /* olesh.cxx */,
				BE34D127218B678F00815297 /* slotadd.cxx */,
				BE34D138218B679000815297 /* tabsh.cxx */,
				BE34D132218B679000815297 /* textdrw.cxx */,
				BE34D126218B678F00815297 /* textfld.cxx */,
				BE34D136218B679000815297 /* textglos.cxx */,
				BE34D12C218B679000815297 /* textidx.cxx */,
				BE34D125218B678F00815297 /* textsh.cxx */,
				BE34D13C218B679000815297 /* textsh1.cxx */,
				BE34D13B218B679000815297 /* textsh2.cxx */,
				BE34D12D218B679000815297 /* txtattr.cxx */,
				BE34D12E218B679000815297 /* txtcrsr.cxx */,
				BE34D12F218B679000815297 /* txtnum.cxx */,
			);
			name = shells;
			sourceTree = "<group>";
		};
		BE34D140218CF87D00815297 /* window */ = {
			isa = PBXGroup;
			children = (
				BE34D15F218CF8AE00815297 /* abstdlg.cxx */,
				BE34D147218CF8AD00815297 /* accel.cxx */,
				BE34D143218CF8AD00815297 /* accessibility.cxx */,
				BE34D177218CF8B000815297 /* accmgr.cxx */,
				BE34D175218CF8B000815297 /* brdwin.cxx */,
				BE34D15E218CF8AE00815297 /* builder.cxx */,
				BE34D153218CF8AE00815297 /* clipping.cxx */,
				BE34D17C218CF8B000815297 /* commandevent.cxx */,
				BE34D14F218CF8AE00815297 /* cursor.cxx */,
				BE34D17F218CF8B000815297 /* debug.cxx */,
				BE34D144218CF8AD00815297 /* debugevent.cxx */,
				BE34D178218CF8B000815297 /* decoview.cxx */,
				BE34D155218CF8AE00815297 /* dialog.cxx */,
				BE34D16C218CF8AF00815297 /* dlgctrl.cxx */,
				BE34D17B218CF8B000815297 /* dlgctrl.hxx */,
				BE34D149218CF8AD00815297 /* dndeventdispatcher.cxx */,
				BE34D159218CF8AE00815297 /* dndlistenercontainer.cxx */,
				BE34D180218CF8B100815297 /* dockingarea.cxx */,
				BE34D17A218CF8B000815297 /* dockmgr.cxx */,
				BE34D160218CF8AE00815297 /* dockwin.cxx */,
				BE34D170218CF8AF00815297 /* EnumContext.cxx */,
				BE34D16A218CF8AF00815297 /* errinf.cxx */,
				BE34D172218CF8AF00815297 /* event.cxx */,
				BE34D148218CF8AD00815297 /* floatwin.cxx */,
				BE34D145218CF8AD00815297 /* globalization.cxx */,
				BE34D161218CF8AE00815297 /* introwin.cxx */,
				BE34D16F218CF8AF00815297 /* keycod.cxx */,
				BE34D16D218CF8AF00815297 /* keyevent.cxx */,
				BE34D165218CF8AF00815297 /* layout.cxx */,
				BE34D15A218CF8AE00815297 /* legacyaccessibility.cxx */,
				BE34D14E218CF8AD00815297 /* menu.cxx */,
				BE34D162218CF8AE00815297 /* menubarwindow.cxx */,
				BE34D164218CF8AF00815297 /* menubarwindow.hxx */,
				BE34D15D218CF8AE00815297 /* menufloatingwindow.cxx */,
				BE34D14D218CF8AD00815297 /* menufloatingwindow.hxx */,
				BE34D173218CF8B000815297 /* menuitemlist.cxx */,
				BE34D17D218CF8B000815297 /* menuitemlist.hxx */,
				BE34D141218CF8AD00815297 /* menuwindow.cxx */,
				BE34D156218CF8AE00815297 /* menuwindow.hxx */,
				BE34D168218CF8AF00815297 /* mnemonic.cxx */,
				BE34D15B218CF8AE00815297 /* mnemonicengine.cxx */,
				BE34D176218CF8B000815297 /* mouse.cxx */,
				BE34D16E218CF8AF00815297 /* msgbox.cxx */,
				BE34D15C218CF8AE00815297 /* paint.cxx */,
				BE34D146218CF8AD00815297 /* popupmenuwindow.cxx */,
				BE34D181218CF8B100815297 /* printdlg.cxx */,
				BE34D174218CF8B000815297 /* scrwnd.cxx */,
				BE34D171218CF8AF00815297 /* seleng.cxx */,
				BE34D163218CF8AE00815297 /* settings.cxx */,
				BE34D157218CF8AE00815297 /* split.cxx */,
				BE34D152218CF8AE00815297 /* splitwin.cxx */,
				BE34D158218CF8AE00815297 /* stacking.cxx */,
				BE34D17E218CF8B000815297 /* status.cxx */,
				BE34D142218CF8AD00815297 /* syschild.cxx */,
				BE34D14C218CF8AD00815297 /* syswin.cxx */,
				BE34D169218CF8AF00815297 /* tabdlg.cxx */,
				BE34D167218CF8AF00815297 /* tabpage.cxx */,
				BE34D150218CF8AE00815297 /* taskpanelist.cxx */,
				BE34D14B218CF8AD00815297 /* toolbox.cxx */,
				BE34D16B218CF8AF00815297 /* toolbox2.cxx */,
				BE34D154218CF8AE00815297 /* window.cxx */,
				BE34D151218CF8AE00815297 /* window2.cxx */,
				BE34D14A218CF8AD00815297 /* window3.cxx */,
				BE34D179218CF8B000815297 /* winproc.cxx */,
				BE34D166218CF8AF00815297 /* wrkwin.cxx */,
			);
			name = window;
			sourceTree = "<group>";
		};
		BE34D182218CFC6C00815297 /* desktop */ = {
			isa = PBXGroup;
			children = (
				BE28F87F228CE02500C00C48 /* app */,
				BE34D183218CFC7200815297 /* lib */,
			);
			name = desktop;
			sourceTree = "<group>";
		};
		BE34D183218CFC7200815297 /* lib */ = {
			isa = PBXGroup;
			children = (
				BE80E45321B56E5000859C97 /* init.cxx */,
				BE80E45421B56E5000859C97 /* lokclipboard.cxx */,
				BE80E45521B56E5000859C97 /* lokinteractionhandler.cxx */,
			);
			name = lib;
			sourceTree = "<group>";
		};
		BE34D1892190712C00815297 /* sc */ = {
			isa = PBXGroup;
			children = (
				BE34D18B2190715400815297 /* ui */,
			);
			name = sc;
			sourceTree = "<group>";
		};
		BE34D18A2190713900815297 /* dbgui */ = {
			isa = PBXGroup;
			children = (
				BE34D1972190718200815297 /* asciiopt.cxx */,
				BE34D1952190718200815297 /* consdlg.cxx */,
				BE34D1A92190718200815297 /* csvcontrol.cxx */,
				BE34D1A72190718200815297 /* csvgrid.cxx */,
				BE34D1A12190718200815297 /* csvruler.cxx */,
				BE34D1902190718100815297 /* csvsplits.cxx */,
				BE34D1912190718100815297 /* csvtablebox.cxx */,
				BE34D19F2190718200815297 /* dapidata.cxx */,
				BE34D1922190718100815297 /* dapitype.cxx */,
				BE34D19A2190718200815297 /* dbnamdlg.cxx */,
				BE34D19C2190718200815297 /* dpgroupdlg.cxx */,
				BE34D1982190718200815297 /* filtdlg.cxx */,
				BE34D1962190718200815297 /* foptmgr.cxx */,
				BE34D1A82190718200815297 /* imoptdlg.cxx */,
				BE34D1A02190718200815297 /* pfiltdlg.cxx */,
				BE34D18E2190718100815297 /* PivotLayoutDialog.cxx */,
				BE34D18C2190718100815297 /* PivotLayoutTreeList.cxx */,
				BE34D19D2190718200815297 /* PivotLayoutTreeListBase.cxx */,
				BE34D1992190718200815297 /* PivotLayoutTreeListData.cxx */,
				BE34D1A22190718200815297 /* PivotLayoutTreeListLabel.cxx */,
				BE34D1A62190718200815297 /* pvfundlg.cxx */,
				BE34D1942190718200815297 /* scendlg.cxx */,
				BE34D19E2190718200815297 /* scuiasciiopt.cxx */,
				BE34D1932190718100815297 /* scuiimoptdlg.cxx */,
				BE34D1AB2190718300815297 /* sfiltdlg.cxx */,
				BE34D18D2190718100815297 /* sortdlg.cxx */,
				BE34D1AA2190718200815297 /* sortkeydlg.cxx */,
				BE34D18F2190718100815297 /* subtdlg.cxx */,
				BE34D1A52190718200815297 /* textimportoptions.cxx */,
				BE34D19B2190718200815297 /* tpsort.cxx */,
				BE34D1A42190718200815297 /* tpsubt.cxx */,
				BE34D1A32190718200815297 /* validate.cxx */,
			);
			name = dbgui;
			sourceTree = "<group>";
		};
		BE34D18B2190715400815297 /* ui */ = {
			isa = PBXGroup;
			children = (
				BE34D18A2190713900815297 /* dbgui */,
				BE34D1AC2190769E00815297 /* view */,
			);
			name = ui;
			sourceTree = "<group>";
		};
		BE34D1AC2190769E00815297 /* view */ = {
			isa = PBXGroup;
			children = (
				BE34D1C8219076CB00815297 /* auditsh.cxx */,
				BE34D1CF219076CB00815297 /* cellmergeoption.cxx */,
				BE34D1D0219076CB00815297 /* cellsh.cxx */,
				BE34D1D1219076CB00815297 /* cellsh1.cxx */,
				BE34D1D9219076CC00815297 /* cellsh2.cxx */,
				BE34D1C1219076CB00815297 /* cellsh3.cxx */,
				BE34D1AE219076CA00815297 /* cellsh4.cxx */,
				BE34D1BC219076CA00815297 /* cliputil.cxx */,
				BE34D1F3219076CE00815297 /* colrowba.cxx */,
				BE34D1C2219076CB00815297 /* dbfunc.cxx */,
				BE34D1CC219076CB00815297 /* dbfunc2.cxx */,
				BE34D200219076CF00815297 /* dbfunc3.cxx */,
				BE34D1CA219076CB00815297 /* dbfunc4.cxx */,
				BE34D1C0219076CA00815297 /* drawutil.cxx */,
				BE34D1BE219076CA00815297 /* drawvie3.cxx */,
				BE34D1EB219076CD00815297 /* drawvie4.cxx */,
				BE34D1D8219076CC00815297 /* drawview.cxx */,
				BE34D1D4219076CC00815297 /* editsh.cxx */,
				BE34D1FF219076CF00815297 /* formatsh.cxx */,
				BE34D1F4219076CE00815297 /* gridmerg.cxx */,
				BE34D1DC219076CC00815297 /* gridwin_dbgutil.cxx */,
				BE34D1F7219076CE00815297 /* gridwin.cxx */,
				BE34D1EC219076CD00815297 /* gridwin2.cxx */,
				BE34D1D2219076CC00815297 /* gridwin3.cxx */,
				BE34D1BD219076CA00815297 /* gridwin4.cxx */,
				BE34D1E1219076CD00815297 /* gridwin5.cxx */,
				BE34D1DB219076CC00815297 /* hdrcont.cxx */,
				BE34D1C4219076CB00815297 /* hintwin.cxx */,
				BE34D1FA219076CF00815297 /* imapwrap.cxx */,
				BE34D1E2219076CD00815297 /* imapwrap.hxx */,
				BE34D1CE219076CB00815297 /* invmerge.cxx */,
				BE34D1B1219076CA00815297 /* notemark.cxx */,
				BE34D1FC219076CF00815297 /* olinewin.cxx */,
				BE34D1F2219076CE00815297 /* output.cxx */,
				BE34D1FE219076CF00815297 /* output2.cxx */,
				BE34D1E9219076CD00815297 /* output3.cxx */,
				BE34D1EE219076CE00815297 /* overlayobject.cxx */,
				BE34D1CD219076CB00815297 /* pfuncache.cxx */,
				BE34D1BB219076CA00815297 /* pgbrksh.cxx */,
				BE34D1E0219076CD00815297 /* pivotsh.cxx */,
				BE34D1DD219076CC00815297 /* preview.cxx */,
				BE34D1EF219076CE00815297 /* prevloc.cxx */,
				BE34D1DE219076CC00815297 /* prevwsh.cxx */,
				BE34D1FD219076CF00815297 /* prevwsh2.cxx */,
				BE34D1DF219076CC00815297 /* printfun.cxx */,
				BE34D1D3219076CC00815297 /* reffact.cxx */,
				BE34D1FB219076CF00815297 /* scextopt.cxx */,
				BE34D1B8219076CA00815297 /* select.cxx */,
				BE34D1C3219076CB00815297 /* selectionstate.cxx */,
				BE34D1F0219076CE00815297 /* spellcheckcontext.cxx */,
				BE34D1DA219076CC00815297 /* spelldialog.cxx */,
				BE34D1F5219076CE00815297 /* spelleng.cxx */,
				BE34D1C7219076CB00815297 /* tabcont.cxx */,
				BE34D1E3219076CD00815297 /* tabsplit.cxx */,
				BE34D1B4219076CA00815297 /* tabview.cxx */,
				BE34D1B5219076CA00815297 /* tabview2.cxx */,
				BE34D1B3219076CA00815297 /* tabview3.cxx */,
				BE34D1D6219076CC00815297 /* tabview4.cxx */,
				BE34D1E7219076CD00815297 /* tabview5.cxx */,
				BE34D1ED219076CE00815297 /* tabvwsh.cxx */,
				BE34D1AD219076CA00815297 /* tabvwsh2.cxx */,
				BE34D1C5219076CB00815297 /* tabvwsh3.cxx */,
				BE34D1F1219076CE00815297 /* tabvwsh4.cxx */,
				BE34D1E4219076CD00815297 /* tabvwsh5.cxx */,
				BE34D1CB219076CB00815297 /* tabvwsh8.cxx */,
				BE34D1D5219076CC00815297 /* tabvwsh9.cxx */,
				BE34D1AF219076CA00815297 /* tabvwsha.cxx */,
				BE34D1C6219076CB00815297 /* tabvwshb.cxx */,
				BE34D1D7219076CC00815297 /* tabvwshc.cxx */,
				BE34D1B0219076CA00815297 /* tabvwshd.cxx */,
				BE34D1E5219076CD00815297 /* tabvwshe.cxx */,
				BE34D1B2219076CA00815297 /* tabvwshf.cxx */,
				BE34D1B6219076CA00815297 /* tabvwshg.cxx */,
				BE34D1E6219076CD00815297 /* tabvwshh.cxx */,
				BE34D1F9219076CF00815297 /* viewdata.cxx */,
				BE34D1E8219076CD00815297 /* viewfun2.cxx */,
				BE34D1BA219076CA00815297 /* viewfun3.cxx */,
				BE34D1B9219076CA00815297 /* viewfun4.cxx */,
				BE34D1F6219076CE00815297 /* viewfun5.cxx */,
				BE34D1BF219076CA00815297 /* viewfun6.cxx */,
				BE34D1EA219076CD00815297 /* viewfun7.cxx */,
				BE34D1C9219076CB00815297 /* viewfunc.cxx */,
				BE34D1F8219076CE00815297 /* viewutil.cxx */,
				BE34D1B7219076CA00815297 /* waitoff.cxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BE3C8B2423CC8E60008302F8 /* sd */ = {
			isa = PBXGroup;
			children = (
				BEF755A623E81FEB008A4BB2 /* core */,
				BE3C8B2523CC8E6F008302F8 /* ui */,
			);
			name = sd;
			sourceTree = "<group>";
		};
		BE3C8B2523CC8E6F008302F8 /* ui */ = {
			isa = PBXGroup;
			children = (
				BECBD30123D7150100DA5582 /* slidesorter */,
				BE3C8B2623CC8E78008302F8 /* sidebar */,
				BE3C8B5323CCB898008302F8 /* view */,
			);
			name = ui;
			sourceTree = "<group>";
		};
		BE3C8B2623CC8E78008302F8 /* sidebar */ = {
			isa = PBXGroup;
			children = (
				BE3C8B2C23CC8E93008302F8 /* AllMasterPagesSelector.cxx */,
				BE3C8B3723CC8E93008302F8 /* AllMasterPagesSelector.hxx */,
				BE3C8B2F23CC8E93008302F8 /* CurrentMasterPagesSelector.cxx */,
				BE3C8B3C23CC8E94008302F8 /* CurrentMasterPagesSelector.hxx */,
				BE3C8B3023CC8E93008302F8 /* CustomAnimationPanel.cxx */,
				BE3C8B4823CC8E94008302F8 /* CustomAnimationPanel.hxx */,
				BE3C8B2923CC8E93008302F8 /* DocumentHelper.cxx */,
				BE3C8B3B23CC8E94008302F8 /* DocumentHelper.hxx */,
				BE3C8B3D23CC8E94008302F8 /* IDisposable.hxx */,
				BE3C8B3223CC8E93008302F8 /* ISidebarReceiver.hxx */,
				BE3C8B4323CC8E94008302F8 /* LayoutMenu.cxx */,
				BE3C8B3423CC8E93008302F8 /* LayoutMenu.hxx */,
				BE3C8B2A23CC8E93008302F8 /* MasterPageContainer.cxx */,
				BE3C8B3323CC8E93008302F8 /* MasterPageContainer.hxx */,
				BE3C8B4223CC8E94008302F8 /* MasterPageContainerFiller.cxx */,
				BE3C8B4A23CC8E94008302F8 /* MasterPageContainerFiller.hxx */,
				BE3C8B3923CC8E94008302F8 /* MasterPageContainerProviders.cxx */,
				BE3C8B4D23CC8E95008302F8 /* MasterPageContainerProviders.hxx */,
				BE3C8B4423CC8E94008302F8 /* MasterPageContainerQueue.cxx */,
				BE3C8B5223CC8E95008302F8 /* MasterPageContainerQueue.hxx */,
				BE3C8B3823CC8E93008302F8 /* MasterPageDescriptor.cxx */,
				BE3C8B4623CC8E94008302F8 /* MasterPageDescriptor.hxx */,
				BE3C8B2D23CC8E93008302F8 /* MasterPageObserver.cxx */,
				BE3C8B4023CC8E94008302F8 /* MasterPagesSelector.cxx */,
				BE3C8B4C23CC8E95008302F8 /* MasterPagesSelector.hxx */,
				BE3C8B3123CC8E93008302F8 /* NavigatorWrapper.cxx */,
				BE3C8B4F23CC8E95008302F8 /* NavigatorWrapper.hxx */,
				BE3C8B4B23CC8E95008302F8 /* PageMarginUtils.hxx */,
				BE3C8B4E23CC8E95008302F8 /* PanelBase.cxx */,
				BE3C8B3F23CC8E94008302F8 /* PanelBase.hxx */,
				BE3C8B2B23CC8E93008302F8 /* PanelFactory.cxx */,
				BE3C8B3523CC8E93008302F8 /* PanelFactory.hxx */,
				BE3C8B2723CC8E93008302F8 /* PreviewValueSet.cxx */,
				BE3C8B4723CC8E94008302F8 /* PreviewValueSet.hxx */,
				BE3C8B3623CC8E93008302F8 /* RecentlyUsedMasterPages.cxx */,
				BE3C8B4123CC8E94008302F8 /* RecentlyUsedMasterPages.hxx */,
				BE3C8B5023CC8E95008302F8 /* RecentMasterPagesSelector.cxx */,
				BE3C8B3A23CC8E94008302F8 /* RecentMasterPagesSelector.hxx */,
				BE3C8B4923CC8E94008302F8 /* SlideBackground.cxx */,
				BE3C8B2E23CC8E93008302F8 /* SlideBackground.hxx */,
				BE3C8B5123CC8E95008302F8 /* SlideTransitionPanel.cxx */,
				BE3C8B4523CC8E94008302F8 /* SlideTransitionPanel.hxx */,
				BE3C8B2823CC8E93008302F8 /* TableDesignPanel.cxx */,
				BE3C8B3E23CC8E94008302F8 /* TableDesignPanel.hxx */,
			);
			name = sidebar;
			sourceTree = "<group>";
		};
		BE3C8B5323CCB898008302F8 /* view */ = {
			isa = PBXGroup;
			children = (
				BE3C8B7E23CCB8BB008302F8 /* clview.cxx */,
				BE3C8B8323CCB8BB008302F8 /* DocumentRenderer.cxx */,
				BE3C8B6B23CCB8BA008302F8 /* drawview.cxx */,
				BE3C8B6723CCB8BA008302F8 /* drbezob.cxx */,
				BE3C8B8E23CCB8BC008302F8 /* drtxtob.cxx */,
				BE3C8B7623CCB8BA008302F8 /* drtxtob1.cxx */,
				BE3C8B7523CCB8BA008302F8 /* drviews1.cxx */,
				BE3C8B7723CCB8BB008302F8 /* drviews2.cxx */,
				BE3C8B6423CCB8BA008302F8 /* drviews3.cxx */,
				BE3C8B5C23CCB8B9008302F8 /* drviews4.cxx */,
				BE3C8B7023CCB8BA008302F8 /* drviews5.cxx */,
				BE3C8B8223CCB8BB008302F8 /* drviews6.cxx */,
				BE3C8B5423CCB8B9008302F8 /* drviews7.cxx */,
				BE3C8B8823CCB8BC008302F8 /* drviews8.cxx */,
				BE3C8B9323CCB8BC008302F8 /* drviews9.cxx */,
				BE3C8B6D23CCB8BA008302F8 /* drviewsa.cxx */,
				BE3C8B8D23CCB8BC008302F8 /* drviewsb.cxx */,
				BE3C8B8523CCB8BB008302F8 /* drviewsc.cxx */,
				BE3C8B7223CCB8BA008302F8 /* drviewsd.cxx */,
				BE3C8B6223CCB8B9008302F8 /* drviewse.cxx */,
				BE3C8B5923CCB8B9008302F8 /* drviewsf.cxx */,
				BE3C8B8623CCB8BB008302F8 /* drviewsg.cxx */,
				BE3C8B7923CCB8BB008302F8 /* drviewsh.cxx */,
				BE3C8B7A23CCB8BB008302F8 /* drviewsi.cxx */,
				BE3C8B5823CCB8B9008302F8 /* drviewsj.cxx */,
				BE3C8B6823CCB8BA008302F8 /* drviewsk.cxx */,
				BE3C8B7423CCB8BA008302F8 /* drvwshrg.cxx */,
				BE3C8B7823CCB8BB008302F8 /* FormShellManager.cxx */,
				BE3C8B6323CCB8BA008302F8 /* frmview.cxx */,
				BE3C8B6923CCB8BA008302F8 /* GraphicObjectBar.cxx */,
				BE3C8B8023CCB8BB008302F8 /* GraphicViewShellBase.cxx */,
				BE3C8B7D23CCB8BB008302F8 /* grviewsh.cxx */,
				BE3C8B5B23CCB8B9008302F8 /* ImpressViewShellBase.cxx */,
				BE3C8B5523CCB8B9008302F8 /* MediaObjectBar.cxx */,
				BE3C8B5723CCB8B9008302F8 /* Outliner.cxx */,
				BE3C8B8123CCB8BB008302F8 /* OutlinerIterator.cxx */,
				BE3C8B8C23CCB8BC008302F8 /* OutlineViewShellBase.cxx */,
				BE3C8B5F23CCB8B9008302F8 /* outlnvs2.cxx */,
				BE3C8B6523CCB8BA008302F8 /* outlnvsh.cxx */,
				BE3C8B9123CCB8BC008302F8 /* outlview.cxx */,
				BE3C8B6F23CCB8BA008302F8 /* PresentationViewShellBase.cxx */,
				BE3C8B7323CCB8BA008302F8 /* presvish.cxx */,
				BE3C8B6623CCB8BA008302F8 /* sdruler.cxx */,
				BE3C8B7B23CCB8BB008302F8 /* sdview.cxx */,
				BE3C8B5E23CCB8B9008302F8 /* sdview2.cxx */,
				BE3C8B7C23CCB8BB008302F8 /* sdview3.cxx */,
				BE3C8B5623CCB8B9008302F8 /* sdview4.cxx */,
				BE3C8B8A23CCB8BC008302F8 /* sdview5.cxx */,
				BE3C8B8B23CCB8BC008302F8 /* sdwindow.cxx */,
				BE3C8B5D23CCB8B9008302F8 /* SlideSorterViewShellBase.cxx */,
				BE3C8B7F23CCB8BB008302F8 /* tabcontr.cxx */,
				BE3C8B7123CCB8BA008302F8 /* ToolBarManager.cxx */,
				BE3C8B5A23CCB8B9008302F8 /* unmodpg.cxx */,
				BE3C8B6C23CCB8BA008302F8 /* ViewClipboard.cxx */,
				BE3C8B9423CCB8BC008302F8 /* viewoverlaymanager.cxx */,
				BE3C8B8F23CCB8BC008302F8 /* viewshe2.cxx */,
				BE3C8B9023CCB8BC008302F8 /* viewshe3.cxx */,
				BE3C8B8923CCB8BC008302F8 /* viewshel.cxx */,
				BE3C8B6023CCB8B9008302F8 /* ViewShellBase.cxx */,
				BE3C8B6A23CCB8BA008302F8 /* ViewShellHint.cxx */,
				BE3C8B6123CCB8B9008302F8 /* ViewShellImplementation.cxx */,
				BE3C8B9223CCB8BC008302F8 /* ViewShellManager.cxx */,
				BE3C8B8423CCB8BB008302F8 /* ViewTabBar.cxx */,
				BE3C8B6E23CCB8BA008302F8 /* WindowUpdater.cxx */,
				BE3C8B8723CCB8BB008302F8 /* zoomlist.cxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BE43FD38222693CC00376855 /* zcodec */ = {
			isa = PBXGroup;
			children = (
				BE43FD39222693F200376855 /* zcodec.cxx */,
			);
			name = zcodec;
			sourceTree = "<group>";
		};
		BE43FD4122286AEC00376855 /* rtl */ = {
			isa = PBXGroup;
			children = (
				BE43FD4222286B0700376855 /* bootstrap.cxx */,
			);
			name = rtl;
			sourceTree = "<group>";
		};
		BE484B4F228CF355001EE76C /* config */ = {
			isa = PBXGroup;
			children = (
				BE484B6F228CF36E001EE76C /* bootstrap.cxx */,
				BE484B6C228CF36E001EE76C /* cmdoptions.cxx */,
				BE484B65228CF36D001EE76C /* compatibility.cxx */,
				BE484B6D228CF36E001EE76C /* compatibilityviewoptions.cxx */,
				BE484B50228CF36D001EE76C /* configitem.cxx */,
				BE484B67228CF36D001EE76C /* configmgr.cxx */,
				BE484B63228CF36D001EE76C /* confignode.cxx */,
				BE484B56228CF36D001EE76C /* configpaths.cxx */,
				BE484B6E228CF36E001EE76C /* configvaluecontainer.cxx */,
				BE484B5E228CF36D001EE76C /* defaultoptions.cxx */,
				BE484B66228CF36D001EE76C /* docinfohelper.cxx */,
				BE484B60228CF36D001EE76C /* dynamicmenuoptions.cxx */,
				BE484B58228CF36D001EE76C /* eventcfg.cxx */,
				BE484B59228CF36D001EE76C /* extendedsecurityoptions.cxx */,
				BE484B5C228CF36D001EE76C /* fltrcfg.cxx */,
				BE484B6A228CF36E001EE76C /* fontcfg.cxx */,
				BE484B55228CF36D001EE76C /* fontoptions.cxx */,
				BE484B54228CF36D001EE76C /* historyoptions.cxx */,
				BE484B51228CF36D001EE76C /* itemholder1.cxx */,
				BE484B5A228CF36D001EE76C /* itemholder1.hxx */,
				BE484B6B228CF36E001EE76C /* lingucfg.cxx */,
				BE484B52228CF36D001EE76C /* misccfg.cxx */,
				BE484B57228CF36D001EE76C /* moduleoptions.cxx */,
				BE484B53228CF36D001EE76C /* options.cxx */,
				BE484B69228CF36E001EE76C /* optionsdlg.cxx */,
				BE484B61228CF36D001EE76C /* pathoptions.cxx */,
				BE484B5B228CF36D001EE76C /* printwarningoptions.cxx */,
				BE484B70228CF36E001EE76C /* saveopt.cxx */,
				BE484B68228CF36E001EE76C /* searchopt.cxx */,
				BE484B5D228CF36D001EE76C /* securityoptions.cxx */,
				BE484B5F228CF36D001EE76C /* syslocaleoptions.cxx */,
				BE484B62228CF36D001EE76C /* useroptions.cxx */,
				BE484B64228CF36D001EE76C /* viewoptions.cxx */,
			);
			name = config;
			sourceTree = "<group>";
		};
		BE484B722292AF73001EE76C /* view */ = {
			isa = PBXGroup;
			children = (
				BE484B822292AF97001EE76C /* classificationcontroller.cxx */,
				BE484B852292AF97001EE76C /* classificationhelper.cxx */,
				BE484B752292AF96001EE76C /* frame.cxx */,
				BE484B7A2292AF96001EE76C /* frame2.cxx */,
				BE484B732292AF96001EE76C /* frmload.cxx */,
				BE484B7F2292AF96001EE76C /* impframe.hxx */,
				BE484B792292AF96001EE76C /* impviewframe.hxx */,
				BE484B7C2292AF96001EE76C /* ipclient.cxx */,
				BE484B7B2292AF96001EE76C /* lokcharthelper.cxx */,
				BE484B842292AF97001EE76C /* lokhelper.cxx */,
				BE484B772292AF96001EE76C /* printer.cxx */,
				BE484B742292AF96001EE76C /* sfxbasecontroller.cxx */,
				BE484B802292AF96001EE76C /* userinputinterception.cxx */,
				BE484B832292AF97001EE76C /* viewfac.cxx */,
				BE484B782292AF96001EE76C /* viewfrm.cxx */,
				BE484B7D2292AF96001EE76C /* viewfrm2.cxx */,
				BE484B7E2292AF96001EE76C /* viewimp.hxx */,
				BE484B812292AF97001EE76C /* viewprn.cxx */,
				BE484B762292AF96001EE76C /* viewsh.cxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BE58E1312187938700249358 /* headless */ = {
			isa = PBXGroup;
			children = (
				BE58E135218793B600249358 /* headlessinst.cxx */,
				BE58E132218793B500249358 /* svpbmp.cxx */,
				BE58E136218793B600249358 /* svpcairotextrender.cxx */,
				BE58E13A218793B600249358 /* svpdata.cxx */,
				BE58E138218793B600249358 /* svpdummies.cxx */,
				BE58E13D218793B600249358 /* svpframe.cxx */,
				BE58E134218793B600249358 /* svpgdi.cxx */,
				BE58E133218793B500249358 /* svpglyphcache.cxx */,
				BE58E139218793B600249358 /* svpinst.cxx */,
				BE58E137218793B600249358 /* svpprn.cxx */,
				BE58E13B218793B600249358 /* svptext.cxx */,
				BE58E13C218793B600249358 /* svpvd.cxx */,
			);
			name = headless;
			sourceTree = "<group>";
		};
		BE5EB5B5213FE1F900E0826C /* Online */ = {
			isa = PBXGroup;
			children = (
				BE5EB5B6213FE21000E0826C /* common */,
				BEA2835421467F8200848631 /* kit */,
				BEA2835B21498ABF00848631 /* net */,
				BE5EB5B7213FE21600E0826C /* wsd */,
			);
			name = Online;
			path = ..;
			sourceTree = SOURCE_ROOT;
		};
		BE5EB5B6213FE21000E0826C /* common */ = {
			isa = PBXGroup;
			children = (
				BEABFC6624AC94C3004DE339 /* Authorization.cpp */,
				BEABFC6724AC94C3004DE339 /* Authorization.hpp */,
				BE5EB5C0213FE29900E0826C /* FileUtil.cpp */,
				BE5EB5B9213FE29900E0826C /* Log.cpp */,
				BE58E129217F295B00249358 /* Log.hpp */,
				BE5EB5BD213FE29900E0826C /* MessageQueue.cpp */,
				BE58E12D217F295B00249358 /* MessageQueue.hpp */,
				BEDCC84C2452F82800FB02BD /* MobileApp.cpp */,
				BEDCC84D2452F82800FB02BD /* MobileApp.hpp */,
				BE58E12A217F295B00249358 /* Png.hpp */,
				BE5EB5BF213FE29900E0826C /* Protocol.cpp */,
				BE58E12E217F295B00249358 /* Protocol.hpp */,
				BE5EB5BB213FE29900E0826C /* Session.cpp */,
				BE58E12F217F295B00249358 /* Session.hpp */,
				BE5EB5BE213FE29900E0826C /* SigUtil.cpp */,
				BE58E12B217F295B00249358 /* SigUtil.hpp */,
				BE5EB5BA213FE29900E0826C /* SpookyV2.cpp */,
				BE7228E02417BC9F000ADABD /* StringVector.cpp */,
				BE7228E12417BC9F000ADABD /* StringVector.hpp */,
				BEA28376214FFD8C00848631 /* Unit.cpp */,
				BEA283782150172600848631 /* Unit.hpp */,
				BE5EB5BC213FE29900E0826C /* Util.cpp */,
				BE58E12C217F295B00249358 /* Util.hpp */,
			);
			path = common;
			sourceTree = "<group>";
		};
		BE5EB5B7213FE21600E0826C /* wsd */ = {
			isa = PBXGroup;
			children = (
				BEBF3EAF246EB1C800415E87 /* RequestDetails.cpp */,
				BEBF3EAE246EB1C800415E87 /* RequestDetails.hpp */,
				BE5EB5CC213FE2D000E0826C /* ClientSession.cpp */,
				BE5EB5D321400DC100E0826C /* DocumentBroker.cpp */,
				BE484B71228D8622001EE76C /* DocumentBroker.hpp */,
				BE5EB5D12140039100E0826C /* LOOLWSD.cpp */,
				BE5EB5D521401E0F00E0826C /* Storage.cpp */,
				BE5EB5CD213FE2D000E0826C /* TileCache.cpp */,
			);
			name = wsd;
			path = ../wsd;
			sourceTree = SOURCE_ROOT;
		};
		BE62A58B24BF870C00AFFD77 /* png */ = {
			isa = PBXGroup;
			children = (
				BE62A58D24BF873D00AFFD77 /* PngImageReader.cxx */,
				BE62A58E24BF873D00AFFD77 /* pngread.cxx */,
				BE62A58C24BF873D00AFFD77 /* pngwrite.cxx */,
			);
			name = png;
			sourceTree = "<group>";
		};
		BE6362BE2153A79200F4237E /* Core */ = {
			isa = PBXGroup;
			children = (
				BE7D6A2023FA9BFB00C2E605 /* configmgr */,
				BEA8CDC12199AC7A009FE17E /* comphelper */,
				BE80E43321B5629300859C97 /* cppuhelper */,
				BE34D182218CFC6C00815297 /* desktop */,
				BEDCC941246175A700FB02BD /* framework */,
				BEA8CDC42199E5ED009FE17E /* i18nlangtag */,
				BEB6521A216F5D4600B8C09A /* sal */,
				BE93D43C216D555C007A39F4 /* sfx2 */,
				BE34D1892190712C00815297 /* sc */,
				BE3C8B2423CC8E60008302F8 /* sd */,
				BE8C0370223FC4AC0048B7EA /* svl */,
				BE7E5B8F23AD192500F9462A /* svtools */,
				BEB0E5DC21CA93950085A0CF /* svx */,
				BE34D10C218B667400815297 /* sw */,
				BEB6524B216FD09400B8C09A /* tools */,
				BEA8CD7221959315009FE17E /* unotools */,
				BE93D420216CAA52007A39F4 /* vcl */,
			);
			name = Core;
			sourceTree = "<group>";
		};
		BE7D6A2023FA9BFB00C2E605 /* configmgr */ = {
			isa = PBXGroup;
			children = (
				BE7D6A5223FA9C2600C2E605 /* access.cxx */,
				BE7D6A5E23FA9C2700C2E605 /* access.hxx */,
				BE7D6A3B23FA9C2400C2E605 /* additions.hxx */,
				BE7D6A4223FA9C2500C2E605 /* broadcaster.cxx */,
				BE7D6A3C23FA9C2400C2E605 /* broadcaster.hxx */,
				BE7D6A5C23FA9C2600C2E605 /* childaccess.cxx */,
				BE7D6A2323FA9C2300C2E605 /* childaccess.hxx */,
				BE7D6A6023FA9C2700C2E605 /* components.cxx */,
				BE7D6A3323FA9C2400C2E605 /* components.hxx */,
				BE7D6A2F23FA9C2400C2E605 /* config_map.hxx */,
				BE7D6A4F23FA9C2600C2E605 /* configmgr.component */,
				BE7D6A3123FA9C2400C2E605 /* configurationprovider.cxx */,
				BE7D6A5123FA9C2600C2E605 /* configurationprovider.hxx */,
				BE7D6A5A23FA9C2600C2E605 /* configurationregistry.cxx */,
				BE7D6A5523FA9C2600C2E605 /* configurationregistry.hxx */,
				BE7D6A4523FA9C2500C2E605 /* data.cxx */,
				BE7D6A5B23FA9C2600C2E605 /* data.hxx */,
				BE7D6A2523FA9C2300C2E605 /* dconf.cxx */,
				BE7D6A3723FA9C2400C2E605 /* dconf.hxx */,
				BE7D6A4023FA9C2400C2E605 /* defaultprovider.cxx */,
				BE7D6A6523FA9C2700C2E605 /* defaultprovider.hxx */,
				BE7D6A3223FA9C2400C2E605 /* groupnode.cxx */,
				BE7D6A5023FA9C2600C2E605 /* groupnode.hxx */,
				BE7D6A3623FA9C2400C2E605 /* localizedpropertynode.cxx */,
				BE7D6A3023FA9C2400C2E605 /* localizedpropertynode.hxx */,
				BE7D6A5623FA9C2600C2E605 /* localizedvaluenode.cxx */,
				BE7D6A3423FA9C2400C2E605 /* localizedvaluenode.hxx */,
				BE7D6A2C23FA9C2300C2E605 /* lock.cxx */,
				BE7D6A5923FA9C2600C2E605 /* lock.hxx */,
				BE7D6A4D23FA9C2500C2E605 /* modifications.cxx */,
				BE7D6A4423FA9C2500C2E605 /* modifications.hxx */,
				BE7D6A5323FA9C2600C2E605 /* node.cxx */,
				BE7D6A4923FA9C2500C2E605 /* node.hxx */,
				BE7D6A4823FA9C2500C2E605 /* nodemap.cxx */,
				BE7D6A4123FA9C2500C2E605 /* nodemap.hxx */,
				BE7D6A4C23FA9C2500C2E605 /* parsemanager.cxx */,
				BE7D6A2723FA9C2300C2E605 /* parsemanager.hxx */,
				BE7D6A6623FA9C2700C2E605 /* parser.hxx */,
				BE7D6A2D23FA9C2300C2E605 /* partial.cxx */,
				BE7D6A2E23FA9C2400C2E605 /* partial.hxx */,
				BE7D6A5D23FA9C2700C2E605 /* propertynode.cxx */,
				BE7D6A2223FA9C2300C2E605 /* propertynode.hxx */,
				BE7D6A5F23FA9C2700C2E605 /* readonlyaccess.cxx */,
				BE7D6A4A23FA9C2500C2E605 /* readonlyaccess.hxx */,
				BE7D6A4623FA9C2500C2E605 /* readwriteaccess.cxx */,
				BE7D6A2423FA9C2300C2E605 /* readwriteaccess.hxx */,
				BE7D6A5423FA9C2600C2E605 /* rootaccess.cxx */,
				BE7D6A4323FA9C2500C2E605 /* rootaccess.hxx */,
				BE7D6A6723FA9C2700C2E605 /* rootnode.cxx */,
				BE7D6A2823FA9C2300C2E605 /* rootnode.hxx */,
				BE7D6A5823FA9C2600C2E605 /* services.cxx */,
				BE7D6A6123FA9C2700C2E605 /* setnode.cxx */,
				BE7D6A6223FA9C2700C2E605 /* setnode.hxx */,
				BE7D6A2623FA9C2300C2E605 /* type.cxx */,
				BE7D6A3D23FA9C2400C2E605 /* type.hxx */,
				BE7D6A3923FA9C2400C2E605 /* update.cxx */,
				BE7D6A4E23FA9C2500C2E605 /* update.hxx */,
				BE7D6A4B23FA9C2500C2E605 /* valueparser.cxx */,
				BE7D6A3823FA9C2400C2E605 /* valueparser.hxx */,
				BE7D6A2123FA9C2300C2E605 /* winreg.cxx */,
				BE7D6A6323FA9C2700C2E605 /* winreg.hxx */,
				BE7D6A3F23FA9C2400C2E605 /* writemodfile.cxx */,
				BE7D6A6423FA9C2700C2E605 /* writemodfile.hxx */,
				BE7D6A3523FA9C2400C2E605 /* xcdparser.cxx */,
				BE7D6A3E23FA9C2400C2E605 /* xcdparser.hxx */,
				BE7D6A3A23FA9C2400C2E605 /* xcsparser.cxx */,
				BE7D6A2A23FA9C2300C2E605 /* xcsparser.hxx */,
				BE7D6A2B23FA9C2300C2E605 /* xcuparser.cxx */,
				BE7D6A4723FA9C2500C2E605 /* xcuparser.hxx */,
				BE7D6A5723FA9C2600C2E605 /* xmldata.cxx */,
				BE7D6A2923FA9C2300C2E605 /* xmldata.hxx */,
			);
			name = configmgr;
			sourceTree = "<group>";
		};
		BE7E5B7523AD079F00F9462A /* tbxctrls */ = {
			isa = PBXGroup;
			children = (
				BE7E5B7C23AD07BE00F9462A /* bulletsnumbering.cxx */,
				BE7E5B7A23AD07BE00F9462A /* colrctrl.cxx */,
				BE7E5B7D23AD07BE00F9462A /* extrusioncontrols.cxx */,
				BE7E5B8423AD07BE00F9462A /* extrusioncontrols.hxx */,
				BE7E5B7923AD07BE00F9462A /* fillctrl.cxx */,
				BE7E5B8D23AD07BF00F9462A /* fontworkgallery.cxx */,
				BE7E5B7E23AD07BE00F9462A /* formatpaintbrushctrl.cxx */,
				BE7E5B7B23AD07BE00F9462A /* grafctrl.cxx */,
				BE7E5B8123AD07BE00F9462A /* itemwin.cxx */,
				BE7E5B8023AD07BE00F9462A /* layctrl.cxx */,
				BE7E5B7F23AD07BE00F9462A /* lboxctrl.cxx */,
				BE7E5B8323AD07BE00F9462A /* linectrl.cxx */,
				BE7E5B8923AD07BF00F9462A /* Palette.cxx */,
				BE7E5B8623AD07BE00F9462A /* PaletteManager.cxx */,
				BE7E5B8723AD07BE00F9462A /* SvxColorChildWindow.cxx */,
				BE7E5B8223AD07BE00F9462A /* SvxColorValueSet.cxx */,
				BE7E5B7623AD07BE00F9462A /* SvxPresetListBox.cxx */,
				BE7E5B8523AD07BE00F9462A /* tbcontrl.cxx */,
				BE7E5B8823AD07BF00F9462A /* tbunocontroller.cxx */,
				BE7E5B8A23AD07BF00F9462A /* tbunosearchcontrollers.cxx */,
				BE7E5B7723AD07BE00F9462A /* tbxcolor.cxx */,
				BE7E5B8B23AD07BF00F9462A /* tbxcolorupdate.cxx */,
				BE7E5B7823AD07BE00F9462A /* tbxdrctl.cxx */,
				BE7E5B8C23AD07BF00F9462A /* verttexttbxctrl.cxx */,
			);
			name = tbxctrls;
			sourceTree = "<group>";
		};
		BE7E5B8F23AD192500F9462A /* svtools */ = {
			isa = PBXGroup;
			children = (
				BE7E5B9023AD193200F9462A /* config */,
			);
			name = svtools;
			sourceTree = "<group>";
		};
		BE7E5B9023AD193200F9462A /* config */ = {
			isa = PBXGroup;
			children = (
				BE7E5B9323AD194D00F9462A /* accessibilityoptions.cxx */,
				BE7E5B9223AD194D00F9462A /* apearcfg.cxx */,
				BE7E5B9723AD194D00F9462A /* colorcfg.cxx */,
				BE7E5B9423AD194D00F9462A /* extcolorcfg.cxx */,
				BE7E5B9D23AD194D00F9462A /* fontsubstconfig.cxx */,
				BE7E5B9A23AD194D00F9462A /* helpopt.cxx */,
				BE7E5B9523AD194D00F9462A /* htmlcfg.cxx */,
				BE7E5B9E23AD194D00F9462A /* itemholder2.cxx */,
				BE7E5B9823AD194D00F9462A /* itemholder2.hxx */,
				BE7E5B9623AD194D00F9462A /* menuoptions.cxx */,
				BE7E5B9B23AD194D00F9462A /* miscopt.cxx */,
				BE7E5B9C23AD194D00F9462A /* optionsdrawinglayer.cxx */,
				BE7E5B9923AD194D00F9462A /* printoptions.cxx */,
				BE7E5B9123AD194D00F9462A /* slidesorterbaropt.cxx */,
			);
			name = config;
			sourceTree = "<group>";
		};
		BE7E6806229D371B00DE73C8 /* ios */ = {
			isa = PBXGroup;
			children = (
				BE7E680B229D374500DE73C8 /* clipboard.cxx */,
				BE7E6807229D374500DE73C8 /* clipboard.hxx */,
				BE7E680F229D374500DE73C8 /* DataFlavorMapping.cxx */,
				BE7E680D229D374500DE73C8 /* DataFlavorMapping.hxx */,
				BE7E6809229D374500DE73C8 /* dummies.cxx */,
				BE7E6810229D374500DE73C8 /* HtmlFmtFlt.cxx */,
				BE7E680A229D374500DE73C8 /* HtmlFmtFlt.hxx */,
				BE7E6808229D374500DE73C8 /* iosinst.cxx */,
				BE7E680C229D374500DE73C8 /* iOSTransferable.cxx */,
				BE7E680E229D374500DE73C8 /* iOSTransferable.hxx */,
			);
			name = ios;
			sourceTree = "<group>";
		};
		BE80E43321B5629300859C97 /* cppuhelper */ = {
			isa = PBXGroup;
			children = (
				BE80E44821B562F600859C97 /* access_control.cxx */,
				BE80E43621B562F500859C97 /* bootstrap.cxx */,
				BE80E43921B562F500859C97 /* compat.cxx */,
				BE80E43521B562F500859C97 /* component_context.cxx */,
				BE80E45021B562F600859C97 /* component.cxx */,
				BE80E44521B562F500859C97 /* defaultbootstrap.cxx */,
				BE80E44F21B562F600859C97 /* exc_thrower.cxx */,
				BE80E44A21B562F600859C97 /* factory.cxx */,
				BE80E44D21B562F600859C97 /* findsofficepath.c */,
				BE80E43F21B562F500859C97 /* gcc3.map */,
				BE80E43D21B562F500859C97 /* implbase_ex.cxx */,
				BE80E44721B562F500859C97 /* implbase.cxx */,
				BE80E44021B562F500859C97 /* implementationentry.cxx */,
				BE80E44621B562F500859C97 /* interfacecontainer.cxx */,
				BE80E43A21B562F500859C97 /* loadsharedlibcomponentfactory.hxx */,
				BE80E43721B562F500859C97 /* macro_expander.cxx */,
				BE80E44121B562F500859C97 /* macro_expander.hxx */,
				BE80E43B21B562F500859C97 /* paths.cxx */,
				BE80E44221B562F500859C97 /* paths.hxx */,
				BE80E45121B562F600859C97 /* propertysetmixin.cxx */,
				BE80E43821B562F500859C97 /* propshlp.cxx */,
				BE80E43421B562F500859C97 /* servicemanager.cxx */,
				BE80E45221B562F600859C97 /* servicemanager.hxx */,
				BE80E44921B562F600859C97 /* shlib.cxx */,
				BE80E44421B562F500859C97 /* supportsservice.cxx */,
				BE80E44B21B562F600859C97 /* tdmgr.cxx */,
				BE80E44C21B562F600859C97 /* typemanager.cxx */,
				BE80E43C21B562F500859C97 /* typemanager.hxx */,
				BE80E44E21B562F600859C97 /* typeprovider.cxx */,
				BE80E44321B562F500859C97 /* unourl.cxx */,
				BE80E43E21B562F500859C97 /* weak.cxx */,
			);
			name = cppuhelper;
			sourceTree = "<group>";
		};
		BE8C0370223FC4AC0048B7EA /* svl */ = {
			isa = PBXGroup;
			children = (
				BE8C0371223FC4BD0048B7EA /* items */,
			);
			name = svl;
			sourceTree = "<group>";
		};
		BE8C0371223FC4BD0048B7EA /* items */ = {
			isa = PBXGroup;
			children = (
				BE8C0388223FC4EC0048B7EA /* aeitem.cxx */,
				BE8C038E223FC4ED0048B7EA /* cenumitm.cxx */,
				BE8C0384223FC4EC0048B7EA /* cintitem.cxx */,
				BE8C037C223FC4EC0048B7EA /* custritm.cxx */,
				BE8C0381223FC4EC0048B7EA /* flagitem.cxx */,
				BE8C0379223FC4EC0048B7EA /* globalnameitem.cxx */,
				BE8C0380223FC4EC0048B7EA /* grabbagitem.cxx */,
				BE8C0377223FC4EB0048B7EA /* ilstitem.cxx */,
				BE8C037A223FC4EC0048B7EA /* imageitm.cxx */,
				BE8C0385223FC4EC0048B7EA /* IndexedStyleSheets.cxx */,
				BE8C0392223FC4ED0048B7EA /* int64item.cxx */,
				BE8C0378223FC4EC0048B7EA /* intitem.cxx */,
				BE8C0386223FC4EC0048B7EA /* itemiter.cxx */,
				BE8C038D223FC4ED0048B7EA /* itempool.cxx */,
				BE8C0373223FC4EB0048B7EA /* itemprop.cxx */,
				BE8C0374223FC4EB0048B7EA /* itemset.cxx */,
				BE8C038B223FC4ED0048B7EA /* lckbitem.cxx */,
				BE8C0375223FC4EB0048B7EA /* macitem.cxx */,
				BE8C0376223FC4EB0048B7EA /* poolcach.cxx */,
				BE8C0382223FC4EC0048B7EA /* poolio.cxx */,
				BE8C0387223FC4EC0048B7EA /* poolitem.cxx */,
				BE8C0391223FC4ED0048B7EA /* ptitem.cxx */,
				BE8C037E223FC4EC0048B7EA /* rectitem.cxx */,
				BE8C0390223FC4ED0048B7EA /* rngitem.cxx */,
				BE8C038F223FC4ED0048B7EA /* sitem.cxx */,
				BE8C038A223FC4ED0048B7EA /* slstitm.cxx */,
				BE8C0383223FC4EC0048B7EA /* srchitem.cxx */,
				BE8C0372223FC4EB0048B7EA /* stringio.cxx */,
				BE8C037D223FC4EC0048B7EA /* stritem.cxx */,
				BE8C037F223FC4EC0048B7EA /* style.cxx */,
				BE8C037B223FC4EC0048B7EA /* stylepool.cxx */,
				BE8C038C223FC4ED0048B7EA /* visitem.cxx */,
				BE8C0389223FC4ED0048B7EA /* whiter.cxx */,
			);
			name = items;
			sourceTree = "<group>";
		};
		BE8C03932242BA480048B7EA /* appl */ = {
			isa = PBXGroup;
			children = (
				BE8C03A52242BA660048B7EA /* app.cxx */,
				BE8C03B12242BA670048B7EA /* appbas.cxx */,
				BE8C03982242BA660048B7EA /* appbaslib.cxx */,
				BE8C03A82242BA660048B7EA /* appcfg.cxx */,
				BE8C03C02242BA680048B7EA /* appchild.cxx */,
				BE8C03C32242BA680048B7EA /* appdata.cxx */,
				BE8C03A42242BA660048B7EA /* appdde.cxx */,
				BE8C03952242BA650048B7EA /* appdispatchprovider.cxx */,
				BE8C03BE2242BA680048B7EA /* appinit.cxx */,
				BE8C03992242BA660048B7EA /* appmain.cxx */,
				BE8C03B52242BA670048B7EA /* appmisc.cxx */,
				BE8C03B82242BA670048B7EA /* appopen.cxx */,
				BE8C039D2242BA660048B7EA /* appquit.cxx */,
				BE8C039B2242BA660048B7EA /* appreg.cxx */,
				BE8C03A62242BA660048B7EA /* appserv.cxx */,
				BE8C03A72242BA660048B7EA /* appuno.cxx */,
				BE8C03BA2242BA670048B7EA /* childwin.cxx */,
				BE8C03AE2242BA670048B7EA /* childwinimpl.cxx */,
				BE8C03972242BA650048B7EA /* fileobj.cxx */,
				BE8C03B02242BA670048B7EA /* fileobj.hxx */,
				BE8C03AB2242BA660048B7EA /* fwkhelper.cxx */,
				BE8C03A22242BA660048B7EA /* helpdispatch.cxx */,
				BE8C039A2242BA660048B7EA /* helpdispatch.hxx */,
				BE8C03C12242BA680048B7EA /* helpinterceptor.cxx */,
				BE8C03BC2242BA670048B7EA /* helpinterceptor.hxx */,
				BE8C03AC2242BA660048B7EA /* imestatuswindow.cxx */,
				BE8C03BB2242BA670048B7EA /* imestatuswindow.hxx */,
				BE8C039F2242BA660048B7EA /* impldde.cxx */,
				BE8C03942242BA650048B7EA /* impldde.hxx */,
				BE8C03A32242BA660048B7EA /* linkmgr2.cxx */,
				BE8C03B72242BA670048B7EA /* linksrc.cxx */,
				BE8C03B42242BA670048B7EA /* lnkbase2.cxx */,
				BE8C03A02242BA660048B7EA /* macroloader.cxx */,
				BE8C03AD2242BA660048B7EA /* module.cxx */,
				BE8C039C2242BA660048B7EA /* newhelp.cxx */,
				BE8C03962242BA650048B7EA /* newhelp.hxx */,
				BE8C03B22242BA670048B7EA /* opengrf.cxx */,
				BE8C03BD2242BA680048B7EA /* openuriexternally.cxx */,
				BE8C03C52242BA680048B7EA /* panelist.hxx */,
				BE8C03B32242BA670048B7EA /* preventduplicateinteraction.cxx */,
				BE8C03BF2242BA680048B7EA /* sfxhelp.cxx */,
				BE8C03A92242BA660048B7EA /* sfxpicklist.cxx */,
				BE8C03C42242BA680048B7EA /* shellimpl.cxx */,
				BE8C03AA2242BA660048B7EA /* shutdownicon.cxx */,
				BE8C03AF2242BA670048B7EA /* shutdownicon.hxx */,
				BE8C03B62242BA670048B7EA /* shutdowniconaqua.mm */,
				BE8C039E2242BA660048B7EA /* shutdowniconunx.cxx */,
				BE8C03A12242BA660048B7EA /* shutdowniconw32.cxx */,
				BE8C03C22242BA680048B7EA /* workwin.cxx */,
				BE8C03B92242BA670048B7EA /* xpackcreator.cxx */,
			);
			name = appl;
			sourceTree = "<group>";
		};
		BE8D771E2136762500AC58EA = {
			isa = PBXGroup;
			children = (
				BE6362BE2153A79200F4237E /* Core */,
				BE5EB5B5213FE1F900E0826C /* Online */,
				BE8D77292136762500AC58EA /* Mobile */,
				BE8D77282136762500AC58EA /* Products */,
				BE00F8B3213ED542001CE2D4 /* Frameworks */,
			);
			sourceTree = "<group>";
		};
		BE8D77282136762500AC58EA /* Products */ = {
			isa = PBXGroup;
			children = (
				BE8D77272136762500AC58EA /* Mobile.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		BE8D77292136762500AC58EA /* Mobile */ = {
			isa = PBXGroup;
			children = (
				BE2FB29C24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.h */,
				BE2FB29D24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.m */,
				BE58E13021874A2E00249358 /* Mobile.entitlements */,
				BE5EB5D92140363100E0826C /* ios.mm */,
				BE00F8922139494E001CE2D4 /* Resources */,
				BE8D772A2136762500AC58EA /* AppDelegate.h */,
				BE8D772B2136762500AC58EA /* AppDelegate.mm */,
				BE8D77332136762500AC58EA /* CODocument.h */,
				BE8D77342136762500AC58EA /* CODocument.mm */,
				BE8D772D2136762500AC58EA /* DocumentBrowserViewController.h */,
				BE8D772E2136762500AC58EA /* DocumentBrowserViewController.mm */,
				BE8D77302136762500AC58EA /* DocumentViewController.h */,
				BE8D77312136762500AC58EA /* DocumentViewController.mm */,
				BEFB1EDF21C29CC70081D757 /* L10n.h */,
				BEFB1EE021C29CC70081D757 /* L10n.mm */,
				BEDCC8972456FFAC00FB02BD /* SceneDelegate.h */,
				BEDCC8982456FFAC00FB02BD /* SceneDelegate.m */,
				BE80E45C21B6CEF100859C97 /* TemplateSectionHeaderView.h */,
				BE80E45D21B6CEF200859C97 /* TemplateSectionHeaderView.m */,
				BE80E45621B68F5000859C97 /* TemplateCollectionViewController.h */,
				BE80E45721B68F5700859C97 /* TemplateCollectionViewController.mm */,
				BE8D77362136762500AC58EA /* Main.storyboard */,
				BE8D77392136762600AC58EA /* Assets.xcassets */,
				BE8D773B2136762600AC58EA /* LaunchScreen.storyboard */,
				BE8D773E2136762600AC58EA /* Info.plist */,
				BE8D773F2136762600AC58EA /* main.m */,
			);
			path = Mobile;
			sourceTree = "<group>";
		};
		BE9273AD2372DC6B00ADB598 /* sidebar */ = {
			isa = PBXGroup;
			children = (
				BE9273AF2372DC9600ADB598 /* ContextChangeEventMultiplexer.cxx */,
				BE9273B62372DC9600ADB598 /* EmptyPanel.cxx */,
				BE9273AE2372DC9600ADB598 /* EmptyPanel.hxx */,
				BE9273B12372DC9600ADB598 /* nbdtmg.cxx */,
				BE9273B32372DC9600ADB598 /* nbdtmgfact.cxx */,
				BE9273B02372DC9600ADB598 /* PanelFactory.cxx */,
				BE9273B52372DC9600ADB598 /* PanelLayout.cxx */,
				BE9273B22372DC9600ADB598 /* SelectionAnalyzer.cxx */,
				BE9273B42372DC9600ADB598 /* SelectionChangeHandler.cxx */,
			);
			name = sidebar;
			sourceTree = "<group>";
		};
		BE9273B72372E04500ADB598 /* form */ = {
			isa = PBXGroup;
			children = (
				BE9273CF2372E06000ADB598 /* dataaccessdescriptor.cxx */,
				BE9273CE2372E06000ADB598 /* databaselocationinput.cxx */,
				BE9273C82372E06000ADB598 /* datalistener.cxx */,
				BE9273BC2372E06000ADB598 /* datanavi.cxx */,
				BE9273DA2372E06100ADB598 /* dbcharsethelper.cxx */,
				BE9273E02372E06100ADB598 /* delayedevent.cxx */,
				BE9273CC2372E06000ADB598 /* filtnav.cxx */,
				BE9273C12372E06000ADB598 /* fmcontrolbordermanager.cxx */,
				BE9273C02372E06000ADB598 /* fmcontrollayout.cxx */,
				BE9273BA2372E06000ADB598 /* fmdmod.cxx */,
				BE9273D22372E06100ADB598 /* fmdocumentclassification.cxx */,
				BE9273D12372E06100ADB598 /* fmdpage.cxx */,
				BE9273D42372E06100ADB598 /* fmexch.cxx */,
				BE9273DC2372E06100ADB598 /* fmexpl.cxx */,
				BE9273E62372E06200ADB598 /* fmmodel.cxx */,
				BE9273DD2372E06100ADB598 /* fmobj.cxx */,
				BE9273C32372E06000ADB598 /* fmobjfac.cxx */,
				BE9273B92372E06000ADB598 /* fmpage.cxx */,
				BE9273CB2372E06000ADB598 /* fmpgeimp.cxx */,
				BE9273D82372E06100ADB598 /* fmPropBrw.cxx */,
				BE9273C42372E06000ADB598 /* fmscriptingenv.cxx */,
				BE9273C22372E06000ADB598 /* fmservs.cxx */,
				BE9273D32372E06100ADB598 /* fmshell.cxx */,
				BE9273D92372E06100ADB598 /* fmshimp.cxx */,
				BE9273BF2372E06000ADB598 /* fmsrccfg.cxx */,
				BE9273D52372E06100ADB598 /* fmsrcimp.cxx */,
				BE9273C52372E06000ADB598 /* fmtextcontroldialogs.cxx */,
				BE9273E22372E06200ADB598 /* fmtextcontrolfeature.cxx */,
				BE9273E72372E06200ADB598 /* fmtextcontrolshell.cxx */,
				BE9273B82372E06000ADB598 /* fmtools.cxx */,
				BE9273DB2372E06100ADB598 /* fmundo.cxx */,
				BE9273CA2372E06000ADB598 /* fmview.cxx */,
				BE9273DF2372E06100ADB598 /* fmvwimp.cxx */,
				BE9273BB2372E06000ADB598 /* formcontrolfactory.cxx */,
				BE9273CD2372E06000ADB598 /* formcontroller.cxx */,
				BE9273E52372E06200ADB598 /* formcontrolling.cxx */,
				BE9273D72372E06100ADB598 /* formdispatchinterceptor.cxx */,
				BE9273BE2372E06000ADB598 /* formfeaturedispatcher.cxx */,
				BE9273DE2372E06100ADB598 /* formtoolbars.cxx */,
				BE9273C72372E06000ADB598 /* legacyformcontroller.cxx */,
				BE9273E32372E06200ADB598 /* navigatortree.cxx */,
				BE9273E12372E06200ADB598 /* navigatortreemodel.cxx */,
				BE9273C62372E06000ADB598 /* ParseContext.cxx */,
				BE9273D02372E06100ADB598 /* sdbdatacolumn.cxx */,
				BE9273E82372E06200ADB598 /* sqlparserclient.cxx */,
				BE9273BD2372E06000ADB598 /* tabwin.cxx */,
				BE9273E42372E06200ADB598 /* tbxform.cxx */,
				BE9273C92372E06000ADB598 /* typemap.cxx */,
				BE9273D62372E06100ADB598 /* xfm_addcondition.cxx */,
			);
			name = form;
			sourceTree = "<group>";
		};
		BE9273E92372EE5C00ADB598 /* sidebar */ = {
			isa = PBXGroup;
			children = (
				BE9273FA2372EE7A00ADB598 /* Accessible.cxx */,
				BE9274072372EE7B00ADB598 /* AccessibleTitleBar.cxx */,
				BE9274062372EE7B00ADB598 /* AsynchronousCall.cxx */,
				BE9273FE2372EE7A00ADB598 /* Context.cxx */,
				BE9274032372EE7A00ADB598 /* ContextChangeBroadcaster.cxx */,
				BE9273F92372EE7A00ADB598 /* ContextList.cxx */,
				BE92740D2372EE7B00ADB598 /* ControlFactory.cxx */,
				BE9273F02372EE7900ADB598 /* ControllerFactory.cxx */,
				BE9274102372EE7B00ADB598 /* ControllerItem.cxx */,
				BE9273EB2372EE7900ADB598 /* Deck.cxx */,
				BE9273F72372EE7A00ADB598 /* DeckDescriptor.cxx */,
				BE9274052372EE7B00ADB598 /* DeckLayouter.cxx */,
				BE9274002372EE7A00ADB598 /* DeckTitleBar.cxx */,
				BE9273F82372EE7A00ADB598 /* DrawHelper.cxx */,
				BE9273F12372EE7900ADB598 /* FocusManager.cxx */,
				BE92740A2372EE7B00ADB598 /* IContextChangeReceiver.cxx */,
				BE9273F62372EE7A00ADB598 /* ILayoutableWindow.cxx */,
				BE9273FD2372EE7A00ADB598 /* MenuButton.cxx */,
				BE9273EF2372EE7900ADB598 /* Paint.cxx */,
				BE9273EC2372EE7900ADB598 /* Panel.cxx */,
				BE92740B2372EE7B00ADB598 /* PanelDescriptor.cxx */,
				BE9273F42372EE7A00ADB598 /* PanelTitleBar.cxx */,
				BE9273ED2372EE7900ADB598 /* ResourceManager.cxx */,
				BE9273FC2372EE7A00ADB598 /* Sidebar.cxx */,
				BE92740C2372EE7B00ADB598 /* SidebarChildWindow.cxx */,
				BE9273F52372EE7A00ADB598 /* SidebarController.cxx */,
				BE9274022372EE7A00ADB598 /* SidebarDockingWindow.cxx */,
				BE9273EA2372EE7900ADB598 /* SidebarModelUpdate.cxx */,
				BE9273FB2372EE7A00ADB598 /* SidebarPanelBase.cxx */,
				BE9274082372EE7B00ADB598 /* SidebarToolBox.cxx */,
				BE9274042372EE7A00ADB598 /* TabBar.cxx */,
				BE9274012372EE7A00ADB598 /* TabItem.cxx */,
				BE9274092372EE7B00ADB598 /* Theme.cxx */,
				BE9273EE2372EE7900ADB598 /* TitleBar.cxx */,
				BE9273FF2372EE7A00ADB598 /* Tools.cxx */,
				BE92740E2372EE7B00ADB598 /* UnoDeck.cxx */,
				BE9273F22372EE7900ADB598 /* UnoDecks.cxx */,
				BE92740F2372EE7B00ADB598 /* UnoPanel.cxx */,
				BE9273F32372EE7A00ADB598 /* UnoPanels.cxx */,
				BE9274112372EE7B00ADB598 /* UnoSidebar.cxx */,
			);
			name = sidebar;
			sourceTree = "<group>";
		};
		BE93D420216CAA52007A39F4 /* vcl */ = {
			isa = PBXGroup;
			children = (
				BE93D421216CAA59007A39F4 /* app */,
				BEA1201924C587A800332049 /* bitmap */,
				BEB0E5DA21CA7C330085A0CF /* filter */,
				BEE5C05224C1D991001D794C /* gdi */,
				BEF7896D24C8CF720013A906 /* graphic */,
				BE58E1312187938700249358 /* headless */,
				BEF7895224C887760013A906 /* helper */,
				BEF7897B24C8D9B20013A906 /* image */,
				BE7E6806229D371B00DE73C8 /* ios */,
				BEB0E5E721D642420085A0CF /* outdev */,
				BEB0E5DF21CA9DA20085A0CF /* quartz */,
				BE34D140218CF87D00815297 /* window */,
			);
			name = vcl;
			sourceTree = "<group>";
		};
		BE93D421216CAA59007A39F4 /* app */ = {
			isa = PBXGroup;
			children = (
				BE93D429216CAA7A007A39F4 /* brand.cxx */,
				BE93D431216CAA7A007A39F4 /* customweld.cxx */,
				BE93D435216CAA7A007A39F4 /* dbggui.cxx */,
				BE93D438216CAA7A007A39F4 /* dndhelp.cxx */,
				BE93D426216CAA7A007A39F4 /* help.cxx */,
				BE93D427216CAA7A007A39F4 /* i18nhelp.cxx */,
				BE93D42A216CAA7A007A39F4 /* IconThemeInfo.cxx */,
				BE93D43A216CAA7B007A39F4 /* IconThemeScanner.cxx */,
				BE93D42E216CAA7A007A39F4 /* IconThemeSelector.cxx */,
				BE93D436216CAA7A007A39F4 /* idle.cxx */,
				BE93D432216CAA7A007A39F4 /* ITiledRenderable.cxx */,
				BE93D42C216CAA7A007A39F4 /* salplug.cxx */,
				BE93D42B216CAA7A007A39F4 /* salusereventlist.cxx */,
				BE93D439216CAA7B007A39F4 /* salvtables.cxx */,
				BE93D437216CAA7A007A39F4 /* scheduler.cxx */,
				BE93D424216CAA7A007A39F4 /* session.cxx */,
				BE93D42F216CAA7A007A39F4 /* settings.cxx */,
				BE93D434216CAA7A007A39F4 /* sound.cxx */,
				BE93D423216CAA7A007A39F4 /* stdtext.cxx */,
				BE93D430216CAA7A007A39F4 /* svapp.cxx */,
				BE93D43B216CAA7B007A39F4 /* svdata.cxx */,
				BE93D425216CAA7A007A39F4 /* svmain.cxx */,
				BE93D433216CAA7A007A39F4 /* timer.cxx */,
				BE93D422216CAA7A007A39F4 /* unohelp.cxx */,
				BE93D42D216CAA7A007A39F4 /* unohelp2.cxx */,
				BE93D428216CAA7A007A39F4 /* vclevent.cxx */,
			);
			name = app;
			sourceTree = "<group>";
		};
		BE93D43C216D555C007A39F4 /* sfx2 */ = {
			isa = PBXGroup;
			children = (
				BE8C03932242BA480048B7EA /* appl */,
				BE93D43D216D5568007A39F4 /* doc */,
				BE9273E92372EE5C00ADB598 /* sidebar */,
				BE484B722292AF73001EE76C /* view */,
			);
			name = sfx2;
			sourceTree = "<group>";
		};
		BE93D43D216D5568007A39F4 /* doc */ = {
			isa = PBXGroup;
			children = (
				BE93D451216D5580007A39F4 /* docfac.cxx */,
				BE93D442216D5580007A39F4 /* docfile.cxx */,
				BE93D441216D5580007A39F4 /* docfilt.cxx */,
				BE93D453216D5580007A39F4 /* docinf.cxx */,
				BE93D44C216D5580007A39F4 /* docinsert.cxx */,
				BE93D447216D5580007A39F4 /* docmacromode.cxx */,
				BE93D458216D5581007A39F4 /* docstoragemodifylistener.cxx */,
				BE93D452216D5580007A39F4 /* doctempl.cxx */,
				BE93D464216D5581007A39F4 /* doctemplates.cxx */,
				BE93D45B216D5581007A39F4 /* doctemplateslocal.cxx */,
				BE93D449216D5580007A39F4 /* doctemplateslocal.hxx */,
				BE93D456216D5581007A39F4 /* DocumentMetadataAccess.cxx */,
				BE93D45F216D5581007A39F4 /* docundomanager.cxx */,
				BE93D450216D5580007A39F4 /* exoticfileloadexception.cxx */,
				BE93D44E216D5580007A39F4 /* exoticfileloadexception.hxx */,
				BE93D457216D5581007A39F4 /* frmdescr.cxx */,
				BE93D444216D5580007A39F4 /* graphhelp.cxx */,
				BE93D462216D5581007A39F4 /* graphhelp.hxx */,
				BE93D45A216D5581007A39F4 /* guisaveas.cxx */,
				BE93D467216D5581007A39F4 /* iframe.cxx */,
				BE93D440216D5580007A39F4 /* Metadatable.cxx */,
				BE93D46B216D5582007A39F4 /* new.cxx */,
				BE93D459216D5581007A39F4 /* objcont.cxx */,
				BE93D46C216D5582007A39F4 /* objembed.cxx */,
				BE93D468216D5581007A39F4 /* objitem.cxx */,
				BE93D455216D5580007A39F4 /* objmisc.cxx */,
				BE93D45C216D5581007A39F4 /* objserv.cxx */,
				BE93D446216D5580007A39F4 /* objstor.cxx */,
				BE93D460216D5581007A39F4 /* objstor.hxx */,
				BE93D45D216D5581007A39F4 /* objxtor.cxx */,
				BE93D466216D5581007A39F4 /* oleprops.cxx */,
				BE93D443216D5580007A39F4 /* oleprops.hxx */,
				BE93D454216D5580007A39F4 /* ownsubfilterservice.cxx */,
				BE93D469216D5582007A39F4 /* printhelper.cxx */,
				BE93D43F216D5580007A39F4 /* printhelper.hxx */,
				BE93D45E216D5581007A39F4 /* QuerySaveDocument.cxx */,
				BE93D445216D5580007A39F4 /* saveastemplatedlg.cxx */,
				BE93D448216D5580007A39F4 /* sfxbasemodel.cxx */,
				BE93D44A216D5580007A39F4 /* SfxDocumentMetaData.cxx */,
				BE93D461216D5581007A39F4 /* sfxmodelfactory.cxx */,
				BE93D44F216D5580007A39F4 /* syspath.cxx */,
				BE93D463216D5581007A39F4 /* syspath.hxx */,
				BE93D465216D5581007A39F4 /* syspathw32.cxx */,
				BE93D44D216D5580007A39F4 /* syspathw32.hxx */,
				BE93D44B216D5580007A39F4 /* templatedlg.cxx */,
				BE93D46A216D5582007A39F4 /* watermarkitem.cxx */,
				BE93D43E216D5580007A39F4 /* zoomitem.cxx */,
			);
			name = doc;
			sourceTree = "<group>";
		};
		BEA1201924C587A800332049 /* bitmap */ = {
			isa = PBXGroup;
			children = (
				BEA1202E24C587D600332049 /* bitmap.cxx */,
				BEA1201E24C587D500332049 /* BitmapAlphaClampFilter.cxx */,
				BEA1203524C587D600332049 /* BitmapColorizeFilter.cxx */,
				BEA1201B24C587D500332049 /* BitmapColorQuantizationFilter.cxx */,
				BEA1203724C587D600332049 /* BitmapConvolutionMatrixFilter.cxx */,
				BEA1201C24C587D500332049 /* BitmapDisabledImageFilter.cxx */,
				BEA1203624C587D600332049 /* BitmapDuoToneFilter.cxx */,
				BEA1203024C587D600332049 /* BitmapEmbossGreyFilter.cxx */,
				BEA1203124C587D600332049 /* BitmapFastScaleFilter.cxx */,
				BEA1203324C587D600332049 /* bitmapfilter.cxx */,
				BEA1202124C587D500332049 /* BitmapGaussianSeparableBlurFilter.cxx */,
				BEA1202224C587D500332049 /* BitmapInterpolateScaleFilter.cxx */,
				BEA1202624C587D600332049 /* BitmapLightenFilter.cxx */,
				BEA1201A24C587D500332049 /* BitmapMedianFilter.cxx */,
				BEA1202724C587D600332049 /* BitmapMonochromeFilter.cxx */,
				BEA1201D24C587D500332049 /* BitmapMonochromeMatrixFilter.cxx */,
				BEA1202324C587D500332049 /* BitmapMosaicFilter.cxx */,
				BEA1202924C587D600332049 /* bitmappaint.cxx */,
				BEA1202524C587D500332049 /* BitmapPopArtFilter.cxx */,
				BEA1202824C587D600332049 /* BitmapScaleConvolutionFilter.cxx */,
				BEA1202B24C587D600332049 /* BitmapScaleSuperFilter.cxx */,
				BEA1202C24C587D600332049 /* BitmapSeparableUnsharpenFilter.cxx */,
				BEA1201F24C587D500332049 /* BitmapSepiaFilter.cxx */,
				BEA1203224C587D600332049 /* BitmapSimpleColorQuantizationFilter.cxx */,
				BEA1203424C587D600332049 /* BitmapSmoothenFilter.cxx */,
				BEA1202D24C587D600332049 /* BitmapSobelGreyFilter.cxx */,
				BEA1203824C587D600332049 /* BitmapSolarizeFilter.cxx */,
				BEA1202A24C587D600332049 /* BitmapSymmetryCheck.cxx */,
				BEA1202024C587D500332049 /* BitmapTools.cxx */,
				BEA1202424C587D500332049 /* checksum.cxx */,
				BEA1202F24C587D600332049 /* Octree.cxx */,
			);
			name = bitmap;
			sourceTree = "<group>";
		};
		BEA2835421467F8200848631 /* kit */ = {
			isa = PBXGroup;
			children = (
				BEA283572146945500848631 /* ChildSession.cpp */,
				BEA2835521467FDD00848631 /* Kit.cpp */,
			);
			name = kit;
			path = ../kit;
			sourceTree = SOURCE_ROOT;
		};
		BEA2835B21498ABF00848631 /* net */ = {
			isa = PBXGroup;
			children = (
				BEA2835F214ACA8500848631 /* FakeSocket.cpp */,
				BEA2835C21498AD400848631 /* Socket.cpp */,
				BEA2835E214A8E2000848631 /* Socket.hpp */,
				BE636210215101D000F4237E /* WebSocketHandler.hpp */,
			);
			name = net;
			path = ../net;
			sourceTree = SOURCE_ROOT;
		};
		BEA8CD7221959315009FE17E /* unotools */ = {
			isa = PBXGroup;
			children = (
				BE484B4F228CF355001EE76C /* config */,
				BEA8CD7321959321009FE17E /* i18n */,
			);
			name = unotools;
			sourceTree = "<group>";
		};
		BEA8CD7321959321009FE17E /* i18n */ = {
			isa = PBXGroup;
			children = (
				BEA8CD7821959342009FE17E /* calendarwrapper.cxx */,
				BEA8CD7421959342009FE17E /* caserotate.cxx */,
				BEA8CD7721959342009FE17E /* charclass.cxx */,
				BEA8CD7B21959343009FE17E /* collatorwrapper.cxx */,
				BEA8CD7521959342009FE17E /* intlwrapper.cxx */,
				BEA8CD7D21959343009FE17E /* localedatawrapper.cxx */,
				BEA8CD7A21959342009FE17E /* nativenumberwrapper.cxx */,
				BEA8CD7C21959343009FE17E /* readwritemutexguard.cxx */,
				BEA8CD7E21959343009FE17E /* resmgr.cxx */,
				BEA8CD7921959342009FE17E /* textsearch.cxx */,
				BEA8CD7621959342009FE17E /* transliterationwrapper.cxx */,
			);
			name = i18n;
			sourceTree = "<group>";
		};
		BEA8CDC12199AC7A009FE17E /* comphelper */ = {
			isa = PBXGroup;
			children = (
				BEA8CDC22199AC80009FE17E /* misc */,
			);
			name = comphelper;
			sourceTree = "<group>";
		};
		BEA8CDC22199AC80009FE17E /* misc */ = {
			isa = PBXGroup;
			children = (
				BEA8CDC32199AC9D009FE17E /* lok.cxx */,
			);
			name = misc;
			sourceTree = "<group>";
		};
		BEA8CDC42199E5ED009FE17E /* i18nlangtag */ = {
			isa = PBXGroup;
			children = (
				BEA8CDC62199E621009FE17E /* languagetag.cxx */,
				BEA8CDC52199E621009FE17E /* languagetagicu.cxx */,
			);
			name = i18nlangtag;
			sourceTree = "<group>";
		};
		BEB0E5DA21CA7C330085A0CF /* filter */ = {
			isa = PBXGroup;
			children = (
				BE62A58B24BF870C00AFFD77 /* png */,
				BE62A59324BF875700AFFD77 /* FilterConfigCache.cxx */,
				BE62A59224BF875700AFFD77 /* FilterConfigCache.hxx */,
				BE62A59624BF875700AFFD77 /* FilterConfigItem.cxx */,
				BE62A59024BF875700AFFD77 /* graphicfilter_internal.hxx */,
				BE62A59124BF875700AFFD77 /* graphicfilter2.cxx */,
				BE62A59524BF875700AFFD77 /* GraphicFormatDetector.cxx */,
				BE62A59424BF875700AFFD77 /* GraphicNativeMetadata.cxx */,
				BE62A58F24BF875700AFFD77 /* GraphicNativeTransform.cxx */,
				BEB0E5DB21CA7C780085A0CF /* graphicfilter.cxx */,
			);
			name = filter;
			sourceTree = "<group>";
		};
		BEB0E5DC21CA93950085A0CF /* svx */ = {
			isa = PBXGroup;
			children = (
				BECBD31223D9C5B300DA5582 /* engine3d */,
				BE9273B72372E04500ADB598 /* form */,
				BE9273AD2372DC6B00ADB598 /* sidebar */,
				BEB0E5DD21CA93A50085A0CF /* svdraw */,
				BE7E5B7523AD079F00F9462A /* tbxctrls */,
			);
			name = svx;
			sourceTree = "<group>";
		};
		BEB0E5DD21CA93A50085A0CF /* svdraw */ = {
			isa = PBXGroup;
			children = (
				BECBD3D323D9C98000DA5582 /* ActionDescriptionProvider.cxx */,
				BECBD3EE23D9C98200DA5582 /* charthelper.cxx */,
				BECBD41323D9C98400DA5582 /* clonelist.cxx */,
				BECBD3F723D9C98300DA5582 /* gradtrns.cxx */,
				BECBD40C23D9C98400DA5582 /* gradtrns.hxx */,
				BECBD3E923D9C98200DA5582 /* polypolygoneditor.cxx */,
				BECBD40D23D9C98400DA5582 /* sdrhittesthelper.cxx */,
				BECBD3DE23D9C98100DA5582 /* sdrmasterpagedescriptor.cxx */,
				BECBD40823D9C98400DA5582 /* sdrpagewindow.cxx */,
				BECBD3D523D9C98100DA5582 /* sdrpaintwindow.cxx */,
				BECBD3F323D9C98200DA5582 /* sdrundomanager.cxx */,
				BECBD3E423D9C98200DA5582 /* selectioncontroller.cxx */,
				BECBD3EA23D9C98200DA5582 /* svdattr.cxx */,
				BECBD40523D9C98400DA5582 /* svdcrtv.cxx */,
				BECBD40E23D9C98400DA5582 /* svddrag.cxx */,
				BECBD3DA23D9C98100DA5582 /* svddrgm1.hxx */,
				BECBD41423D9C98500DA5582 /* svddrgmt.cxx */,
				BECBD3F823D9C98300DA5582 /* svddrgv.cxx */,
				BECBD3D623D9C98100DA5582 /* svdedtv.cxx */,
				BECBD3C923D9C98000DA5582 /* svdedtv1.cxx */,
				BECBD3D123D9C98000DA5582 /* svdedtv2.cxx */,
				BECBD41223D9C98400DA5582 /* svdedxv.cxx */,
				BECBD3F923D9C98300DA5582 /* svdetc.cxx */,
				BECBD3D923D9C98100DA5582 /* svdfmtf.cxx */,
				BECBD40223D9C98300DA5582 /* svdfmtf.hxx */,
				BECBD40A23D9C98400DA5582 /* svdglev.cxx */,
				BECBD3F523D9C98300DA5582 /* svdglue.cxx */,
				BECBD3DC23D9C98100DA5582 /* svdhdl.cxx */,
				BECBD3E523D9C98200DA5582 /* svdhlpln.cxx */,
				BECBD3CC23D9C98000DA5582 /* svdibrow.cxx */,
				BECBD3C823D9C98000DA5582 /* svditer.cxx */,
				BECBD41123D9C98400DA5582 /* svdlayer.cxx */,
				BECBD3FD23D9C98300DA5582 /* svdmark.cxx */,
				BECBD3D823D9C98100DA5582 /* svdmodel.cxx */,
				BECBD3CB23D9C98000DA5582 /* svdmrkv.cxx */,
				BECBD3FE23D9C98300DA5582 /* svdmrkv1.cxx */,
				BECBD3FF23D9C98300DA5582 /* svdoashp.cxx */,
				BECBD3FC23D9C98300DA5582 /* svdoattr.cxx */,
				BECBD3E323D9C98100DA5582 /* svdobj.cxx */,
				BECBD3CD23D9C98000DA5582 /* svdobjplusdata.cxx */,
				BECBD3E723D9C98200DA5582 /* svdobjuserdatalist.cxx */,
				BECBD3E123D9C98100DA5582 /* svdocapt.cxx */,
				BECBD40F23D9C98400DA5582 /* svdocirc.cxx */,
				BECBD40123D9C98300DA5582 /* svdoedge.cxx */,
				BECBD40423D9C98300DA5582 /* svdograf.cxx */,
				BECBD3D723D9C98100DA5582 /* svdogrp.cxx */,
				BECBD3FB23D9C98300DA5582 /* svdomeas.cxx */,
				BECBD3EF23D9C98200DA5582 /* svdomedia.cxx */,
				BECBD3D223D9C98000DA5582 /* svdoole2.cxx */,
				BECBD3DD23D9C98100DA5582 /* svdopage.cxx */,
				BECBD3E623D9C98200DA5582 /* svdopath.cxx */,
				BECBD3DF23D9C98100DA5582 /* svdorect.cxx */,
				BECBD3F423D9C98300DA5582 /* svdotext.cxx */,
				BECBD3F023D9C98200DA5582 /* svdotextdecomposition.cxx */,
				BECBD3CA23D9C98000DA5582 /* svdotextpathdecomposition.cxx */,
				BECBD3DB23D9C98100DA5582 /* svdotxat.cxx */,
				BECBD3E023D9C98100DA5582 /* svdotxdr.cxx */,
				BECBD3E223D9C98100DA5582 /* svdotxed.cxx */,
				BECBD40923D9C98400DA5582 /* svdotxfl.cxx */,
				BECBD3ED23D9C98200DA5582 /* svdotxln.cxx */,
				BECBD3C423D9C98000DA5582 /* svdotxtr.cxx */,
				BECBD3CE23D9C98000DA5582 /* svdouno.cxx */,
				BECBD3E823D9C98200DA5582 /* svdoutl.cxx */,
				BECBD3F123D9C98200DA5582 /* svdoutlinercache.cxx */,
				BECBD40023D9C98300DA5582 /* svdovirt.cxx */,
				BECBD3C523D9C98000DA5582 /* svdpage.cxx */,
				BECBD3F623D9C98300DA5582 /* svdpagv.cxx */,
				BECBD40323D9C98300DA5582 /* svdpdf.cxx */,
				BECBD3EC23D9C98200DA5582 /* svdpdf.hxx */,
				BECBD40B23D9C98400DA5582 /* svdpntv.cxx */,
				BECBD3FA23D9C98300DA5582 /* svdpoev.cxx */,
				BECBD3C723D9C98000DA5582 /* svdsnpv.cxx */,
				BECBD40623D9C98400DA5582 /* svdtext.cxx */,
				BECBD41023D9C98400DA5582 /* svdtrans.cxx */,
				BECBD3CF23D9C98000DA5582 /* svdundo.cxx */,
				BECBD40723D9C98400DA5582 /* svdview.cxx */,
				BECBD3D023D9C98000DA5582 /* svdviter.cxx */,
				BECBD3F223D9C98200DA5582 /* svdxcgv.cxx */,
				BECBD3C623D9C98000DA5582 /* textchain.cxx */,
				BECBD3D423D9C98100DA5582 /* textchaincursor.cxx */,
				BECBD3EB23D9C98200DA5582 /* textchainflow.cxx */,
			);
			name = svdraw;
			sourceTree = "<group>";
		};
		BEB0E5DF21CA9DA20085A0CF /* quartz */ = {
			isa = PBXGroup;
			children = (
				BEB0E5E321CA9DDC0085A0CF /* ctfonts.cxx */,
				BEB0E5E021CA9DC00085A0CF /* salbmp.cxx */,
				BEB0E5E121CA9DDC0085A0CF /* salgdi.cxx */,
				BEB0E5E421CA9DDD0085A0CF /* salgdicommon.cxx */,
				BEB0E5E621CA9DDD0085A0CF /* salgdiutils.cxx */,
				BEB0E5E221CA9DDC0085A0CF /* salvd.cxx */,
				BEB0E5E521CA9DDD0085A0CF /* utils.cxx */,
			);
			name = quartz;
			sourceTree = "<group>";
		};
		BEB0E5E721D642420085A0CF /* outdev */ = {
			isa = PBXGroup;
			children = (
				BEB0E5E821D6426B0085A0CF /* bitmap.cxx */,
			);
			name = outdev;
			sourceTree = "<group>";
		};
		BEB6521A216F5D4600B8C09A /* sal */ = {
			isa = PBXGroup;
			children = (
				BE43FD4122286AEC00376855 /* rtl */,
				BEB6521B216F5D4C00B8C09A /* unx */,
			);
			name = sal;
			sourceTree = "<group>";
		};
		BEB6521B216F5D4C00B8C09A /* unx */ = {
			isa = PBXGroup;
			children = (
				BEB65244216F5D8C00B8C09A /* asm */,
				BEB65230216F5D8C00B8C09A /* backtrace.c */,
				BEB65223216F5D8B00B8C09A /* backtrace.h */,
				BEB6523E216F5D8C00B8C09A /* backtraceapi.cxx */,
				BEB65243216F5D8C00B8C09A /* conditn.cxx */,
				BEB6521F216F5D8B00B8C09A /* createfilehandlefromfd.hxx */,
				BEB65221216F5D8B00B8C09A /* file_error_transl.cxx */,
				BEB6521D216F5D8B00B8C09A /* file_error_transl.hxx */,
				BEB65233216F5D8C00B8C09A /* file_impl.hxx */,
				BEB6522A216F5D8B00B8C09A /* file_misc.cxx */,
				BEB65231216F5D8C00B8C09A /* file_path_helper.cxx */,
				BEB6521C216F5D8B00B8C09A /* file_path_helper.hxx */,
				BEB65237216F5D8C00B8C09A /* file_stat.cxx */,
				BEB6523D216F5D8C00B8C09A /* file_url.cxx */,
				BEB65224216F5D8B00B8C09A /* file_url.hxx */,
				BEB65225216F5D8B00B8C09A /* file_volume.cxx */,
				BEB65238216F5D8C00B8C09A /* file.cxx */,
				BEB6523F216F5D8C00B8C09A /* interlck.cxx */,
				BEB65228216F5D8B00B8C09A /* memory.cxx */,
				BEB65239216F5D8C00B8C09A /* module.cxx */,
				BEB65226216F5D8B00B8C09A /* mutex.cxx */,
				BEB6524A216F5D8D00B8C09A /* nlsupport.cxx */,
				BEB6521E216F5D8B00B8C09A /* nlsupport.hxx */,
				BEB65236216F5D8C00B8C09A /* osxlocale.cxx */,
				BEB6523A216F5D8C00B8C09A /* pipe.cxx */,
				BEB65232216F5D8C00B8C09A /* process_impl.cxx */,
				BEB65248216F5D8D00B8C09A /* process.cxx */,
				BEB6522E216F5D8C00B8C09A /* profile.cxx */,
				BEB65240216F5D8C00B8C09A /* random.cxx */,
				BEB65235216F5D8C00B8C09A /* readwrite_helper.cxx */,
				BEB6523B216F5D8C00B8C09A /* readwrite_helper.hxx */,
				BEB6523C216F5D8C00B8C09A /* salinit.cxx */,
				BEB65249216F5D8D00B8C09A /* saltime.hxx */,
				BEB6522D216F5D8C00B8C09A /* secimpl.hxx */,
				BEB65227216F5D8B00B8C09A /* security.cxx */,
				BEB6522C216F5D8B00B8C09A /* signal.cxx */,
				BEB65234216F5D8C00B8C09A /* socket.cxx */,
				BEB65220216F5D8B00B8C09A /* sockimpl.hxx */,
				BEB65229216F5D8B00B8C09A /* system.cxx */,
				BEB65222216F5D8B00B8C09A /* system.hxx */,
				BEB6522F216F5D8C00B8C09A /* system.mm */,
				BEB65241216F5D8C00B8C09A /* tempfile.cxx */,
				BEB6522B216F5D8B00B8C09A /* thread.cxx */,
				BEB65246216F5D8D00B8C09A /* time.cxx */,
				BEB65245216F5D8C00B8C09A /* uunxapi.cxx */,
				BEB65242216F5D8C00B8C09A /* uunxapi.hxx */,
				BEB65247216F5D8D00B8C09A /* uunxapi.mm */,
			);
			name = unx;
			sourceTree = "<group>";
		};
		BEB6524B216FD09400B8C09A /* tools */ = {
			isa = PBXGroup;
			children = (
				BEB6524C216FD0AA00B8C09A /* stream */,
				BE43FD38222693CC00376855 /* zcodec */,
			);
			name = tools;
			sourceTree = "<group>";
		};
		BEB6524C216FD0AA00B8C09A /* stream */ = {
			isa = PBXGroup;
			children = (
				BEB6524E216FD0CA00B8C09A /* stream.cxx */,
				BEB65250216FD0CA00B8C09A /* strmunx.cxx */,
				BEB6524F216FD0CA00B8C09A /* strmwnt.cxx */,
				BEB6524D216FD0CA00B8C09A /* vcompat.cxx */,
			);
			name = stream;
			sourceTree = "<group>";
		};
		BECBD30123D7150100DA5582 /* slidesorter */ = {
			isa = PBXGroup;
			children = (
				BECBD30223D7150C00DA5582 /* view */,
			);
			name = slidesorter;
			sourceTree = "<group>";
		};
		BECBD30223D7150C00DA5582 /* view */ = {
			isa = PBXGroup;
			children = (
				BECBD30423D7152900DA5582 /* SlideSorterView.cxx */,
				BECBD30E23D7152900DA5582 /* SlsFontProvider.cxx */,
				BECBD30323D7152900DA5582 /* SlsFramePainter.cxx */,
				BECBD30523D7152900DA5582 /* SlsFramePainter.hxx */,
				BECBD30F23D7152900DA5582 /* SlsInsertAnimator.cxx */,
				BECBD30923D7152900DA5582 /* SlsInsertionIndicatorOverlay.cxx */,
				BECBD30C23D7152900DA5582 /* SlsLayeredDevice.cxx */,
				BECBD30B23D7152900DA5582 /* SlsLayeredDevice.hxx */,
				BECBD31023D7152900DA5582 /* SlsLayouter.cxx */,
				BECBD30D23D7152900DA5582 /* SlsPageObjectLayouter.cxx */,
				BECBD30723D7152900DA5582 /* SlsPageObjectPainter.cxx */,
				BECBD30A23D7152900DA5582 /* SlsTheme.cxx */,
				BECBD31123D7152900DA5582 /* SlsToolTip.cxx */,
				BECBD30623D7152900DA5582 /* SlsViewCacheContext.cxx */,
				BECBD30823D7152900DA5582 /* SlsViewCacheContext.hxx */,
			);
			name = view;
			sourceTree = "<group>";
		};
		BECBD31223D9C5B300DA5582 /* engine3d */ = {
			isa = PBXGroup;
			children = (
				BECBD31C23D9C5D000DA5582 /* camera3d.cxx */,
				BECBD32023D9C5D000DA5582 /* cube3d.cxx */,
				BECBD32723D9C5D000DA5582 /* deflt3d.cxx */,
				BECBD31523D9C5CF00DA5582 /* dragmt3d.cxx */,
				BECBD31423D9C5CF00DA5582 /* e3dsceneupdater.cxx */,
				BECBD32123D9C5D000DA5582 /* e3dundo.cxx */,
				BECBD31823D9C5D000DA5582 /* extrud3d.cxx */,
				BECBD32523D9C5D000DA5582 /* float3d.cxx */,
				BECBD32423D9C5D000DA5582 /* helperhittest3d.cxx */,
				BECBD31F23D9C5D000DA5582 /* helperminimaldepth3d.cxx */,
				BECBD31923D9C5D000DA5582 /* helperminimaldepth3d.hxx */,
				BECBD31323D9C5CF00DA5582 /* lathe3d.cxx */,
				BECBD31A23D9C5D000DA5582 /* obj3d.cxx */,
				BECBD31723D9C5D000DA5582 /* objfac3d.cxx */,
				BECBD31D23D9C5D000DA5582 /* polygn3d.cxx */,
				BECBD31B23D9C5D000DA5582 /* scene3d.cxx */,
				BECBD32623D9C5D000DA5582 /* sphere3d.cxx */,
				BECBD32223D9C5D000DA5582 /* svx3ditems.cxx */,
				BECBD31623D9C5CF00DA5582 /* view3d.cxx */,
				BECBD31E23D9C5D000DA5582 /* view3d1.cxx */,
				BECBD32323D9C5D000DA5582 /* viewpt3d2.cxx */,
			);
			name = engine3d;
			sourceTree = "<group>";
		};
		BEDCC941246175A700FB02BD /* framework */ = {
			isa = PBXGroup;
			children = (
				BEDCC942246175C300FB02BD /* services */,
				BEF7895D24C88A270013A906 /* uiconfiguration */,
			);
			name = framework;
			sourceTree = "<group>";
		};
		BEDCC942246175C300FB02BD /* services */ = {
			isa = PBXGroup;
			children = (
				BEDCC948246175E200FB02BD /* autorecovery.cxx */,
				BEDCC94B246175E200FB02BD /* ContextChangeEventMultiplexer.cxx */,
				BEDCC94C246175E200FB02BD /* desktop.cxx */,
				BEDCC947246175E100FB02BD /* dispatchhelper.cxx */,
				BEDCC94D246175E200FB02BD /* frame.cxx */,
				BEDCC94A246175E200FB02BD /* mediatypedetectionhelper.cxx */,
				BEDCC949246175E200FB02BD /* modulemanager.cxx */,
				BEDCC945246175E100FB02BD /* pathsettings.cxx */,
				BEDCC943246175E100FB02BD /* sessionlistener.cxx */,
				BEDCC944246175E100FB02BD /* substitutepathvars.cxx */,
				BEDCC94E246175E200FB02BD /* taskcreatorsrv.cxx */,
				BEDCC94F246175E200FB02BD /* uriabbreviation.cxx */,
				BEDCC946246175E100FB02BD /* urltransformer.cxx */,
			);
			name = services;
			sourceTree = "<group>";
		};
		BEE5C05224C1D991001D794C /* gdi */ = {
			isa = PBXGroup;
			children = (
				BEE5C08624C1D9BF001D794C /* alpha.cxx */,
				BEE5C06C24C1D9BD001D794C /* bitmap3.cxx */,
				BEE5C06A24C1D9BD001D794C /* bitmapex.cxx */,
				BEE5C07C24C1D9BE001D794C /* bmpacc.cxx */,
				BEE5C07524C1D9BE001D794C /* bmpacc2.cxx */,
				BEE5C08A24C1D9BF001D794C /* bmpacc3.cxx */,
				BEE5C07E24C1D9BE001D794C /* bmpfast.cxx */,
				BEE5C05324C1D9BB001D794C /* CommonSalLayout.cxx */,
				BEE5C05E24C1D9BC001D794C /* configsettings.cxx */,
				BEE5C08924C1D9BF001D794C /* cvtgrf.cxx */,
				BEE5C07024C1D9BD001D794C /* dibtools.cxx */,
				BEE5C09024C1D9C0001D794C /* embeddedfontshelper.cxx */,
				BEE5C08824C1D9BF001D794C /* extoutdevdata.cxx */,
				BEE5C07424C1D9BD001D794C /* FileDefinitionWidgetDraw.cxx */,
				BEE5C06B24C1D9BD001D794C /* gdimetafiletools.cxx */,
				BEE5C08324C1D9BF001D794C /* gdimtf.cxx */,
				BEE5C05A24C1D9BC001D794C /* gfxlink.cxx */,
				BEE5C06924C1D9BD001D794C /* gradient.cxx */,
				BEE5C07F24C1D9BE001D794C /* graph.cxx */,
				BEE5C06D24C1D9BD001D794C /* graphictools.cxx */,
				BEE5C08224C1D9BF001D794C /* hatch.cxx */,
				BEE5C06024C1D9BC001D794C /* impanmvw.cxx */,
				BEE5C08E24C1D9BF001D794C /* impglyphitem.cxx */,
				BEE5C05624C1D9BC001D794C /* impgraph.cxx */,
				BEE5C05F24C1D9BC001D794C /* impvect.cxx */,
				BEE5C05724C1D9BC001D794C /* impvect.hxx */,
				BEE5C05C24C1D9BC001D794C /* jobset.cxx */,
				BEE5C05924C1D9BC001D794C /* lineinfo.cxx */,
				BEE5C07724C1D9BE001D794C /* mapmod.cxx */,
				BEE5C07924C1D9BE001D794C /* metaact.cxx */,
				BEE5C08124C1D9BF001D794C /* mtfxmldump.cxx */,
				BEE5C07624C1D9BE001D794C /* oldprintadaptor.cxx */,
				BEE5C05D24C1D9BC001D794C /* pdfbuildin_fonts.cxx */,
				BEE5C07824C1D9BE001D794C /* pdfbuildin_fonts.hxx */,
				BEE5C07B24C1D9BE001D794C /* pdfextoutdevdata.cxx */,
				BEE5C07124C1D9BD001D794C /* pdffontcache.cxx */,
				BEE5C07A24C1D9BE001D794C /* pdffontcache.hxx */,
				BEE5C05524C1D9BC001D794C /* pdfobjectcopier.cxx */,
				BEE5C08424C1D9BF001D794C /* pdfwriter_impl.cxx */,
				BEE5C06F24C1D9BD001D794C /* pdfwriter_impl.hxx */,
				BEE5C07224C1D9BD001D794C /* pdfwriter_impl2.cxx */,
				BEE5C06724C1D9BD001D794C /* pdfwriter.cxx */,
				BEE5C07324C1D9BD001D794C /* print.cxx */,
				BEE5C08D24C1D9BF001D794C /* print2.cxx */,
				BEE5C06324C1D9BC001D794C /* print3.cxx */,
				BEE5C08B24C1D9BF001D794C /* regband.cxx */,
				BEE5C06824C1D9BD001D794C /* region.cxx */,
				BEE5C06624C1D9BD001D794C /* regionband.cxx */,
				BEE5C06E24C1D9BD001D794C /* salgdiimpl.cxx */,
				BEE5C08024C1D9BE001D794C /* salgdilayout.cxx */,
				BEE5C05424C1D9BC001D794C /* sallayout.cxx */,
				BEE5C05B24C1D9BC001D794C /* salmisc.cxx */,
				BEE5C08F24C1D9BF001D794C /* scrptrun.cxx */,
				BEE5C06124C1D9BC001D794C /* svmconverter.cxx */,
				BEE5C08C24C1D9BF001D794C /* textlayout.cxx */,
				BEE5C05824C1D9BC001D794C /* TypeSerializer.cxx */,
				BEE5C06224C1D9BC001D794C /* vectorgraphicdata.cxx */,
				BEE5C06424C1D9BC001D794C /* VerticalOrientationData.cxx */,
				BEE5C07D24C1D9BE001D794C /* virdev.cxx */,
				BEE5C06524C1D9BC001D794C /* wall.cxx */,
				BEE5C08524C1D9BF001D794C /* WidgetDefinition.cxx */,
				BEE5C08724C1D9BF001D794C /* WidgetDefinitionReader.cxx */,
			);
			name = gdi;
			sourceTree = "<group>";
		};
		BEF755A623E81FEB008A4BB2 /* core */ = {
			isa = PBXGroup;
			children = (
				BEF755B323E8200A008A4BB2 /* anminfo.cxx */,
				BEF755B823E8200B008A4BB2 /* cusshow.cxx */,
				BEF755B623E8200B008A4BB2 /* CustomAnimationCloner.cxx */,
				BEF755BC23E8200B008A4BB2 /* CustomAnimationEffect.cxx */,
				BEF755B423E8200B008A4BB2 /* CustomAnimationPreset.cxx */,
				BEF755B023E8200A008A4BB2 /* drawdoc_animations.cxx */,
				BEF755A723E8200A008A4BB2 /* drawdoc.cxx */,
				BEF755AF23E8200A008A4BB2 /* drawdoc2.cxx */,
				BEF755A823E8200A008A4BB2 /* drawdoc3.cxx */,
				BEF755AA23E8200A008A4BB2 /* drawdoc4.cxx */,
				BEF755BF23E8200B008A4BB2 /* EffectMigration.cxx */,
				BEF755B723E8200B008A4BB2 /* PageListWatcher.cxx */,
				BEF755BB23E8200B008A4BB2 /* PageListWatcher.hxx */,
				BEF755BD23E8200B008A4BB2 /* pglink.cxx */,
				BEF755A923E8200A008A4BB2 /* sdiocmpt.cxx */,
				BEF755BE23E8200B008A4BB2 /* sdpage_animations.cxx */,
				BEF755B523E8200B008A4BB2 /* sdpage.cxx */,
				BEF755B923E8200B008A4BB2 /* sdpage2.cxx */,
				BEF755AC23E8200A008A4BB2 /* shapelist.cxx */,
				BEF755AD23E8200A008A4BB2 /* stlfamily.cxx */,
				BEF755B223E8200A008A4BB2 /* stlpool.cxx */,
				BEF755AE23E8200A008A4BB2 /* stlsheet.cxx */,
				BEF755B123E8200A008A4BB2 /* TransitionPreset.cxx */,
				BEF755AB23E8200A008A4BB2 /* typemap.cxx */,
				BEF755BA23E8200B008A4BB2 /* undoanim.cxx */,
			);
			name = core;
			sourceTree = "<group>";
		};
		BEF7895224C887760013A906 /* helper */ = {
			isa = PBXGroup;
			children = (
				BEF7895C24C887980013A906 /* canvasbitmap.cxx */,
				BEF7895B24C887980013A906 /* canvastools.cxx */,
				BEF7895424C887980013A906 /* commandinfoprovider.cxx */,
				BEF7895824C887980013A906 /* displayconnectiondispatch.cxx */,
				BEF7895A24C887980013A906 /* errcode.cxx */,
				BEF7895624C887980013A906 /* evntpost.cxx */,
				BEF7895924C887980013A906 /* lazydelete.cxx */,
				BEF7895324C887980013A906 /* strhelper.cxx */,
				BEF7895524C887980013A906 /* svtaccessiblefactory.cxx */,
				BEF7895724C887980013A906 /* threadex.cxx */,
			);
			name = helper;
			sourceTree = "<group>";
		};
		BEF7895D24C88A270013A906 /* uiconfiguration */ = {
			isa = PBXGroup;
			children = (
				BEF7896824C88A550013A906 /* CommandImageResolver.cxx */,
				BEF7896724C88A550013A906 /* CommandImageResolver.hxx */,
				BEF7896024C88A540013A906 /* globalsettings.cxx */,
				BEF7896124C88A540013A906 /* graphicnameaccess.cxx */,
				BEF7895F24C88A540013A906 /* ImageList.cxx */,
				BEF7896624C88A550013A906 /* ImageList.hxx */,
				BEF7896324C88A540013A906 /* imagemanager.cxx */,
				BEF7896A24C88A550013A906 /* imagemanagerimpl.cxx */,
				BEF7896424C88A550013A906 /* imagemanagerimpl.hxx */,
				BEF7896B24C88A550013A906 /* moduleimagemanager.cxx */,
				BEF7896224C88A540013A906 /* moduleuicfgsupplier.cxx */,
				BEF7896C24C88A550013A906 /* moduleuiconfigurationmanager.cxx */,
				BEF7895E24C88A540013A906 /* uicategorydescription.cxx */,
				BEF7896524C88A550013A906 /* uiconfigurationmanager.cxx */,
				BEF7896924C88A550013A906 /* windowstateconfiguration.cxx */,
			);
			name = uiconfiguration;
			sourceTree = "<group>";
		};
		BEF7896D24C8CF720013A906 /* graphic */ = {
			isa = PBXGroup;
			children = (
				BEF7896E24C8CF960013A906 /* GraphicID.cxx */,
				BEF7897224C8CF960013A906 /* GraphicLoader.cxx */,
				BEF7897524C8CF960013A906 /* GraphicObject.cxx */,
				BEF7897924C8CF970013A906 /* GraphicObject2.cxx */,
				BEF7897124C8CF960013A906 /* GraphicReader.cxx */,
				BEF7897024C8CF960013A906 /* grfattr.cxx */,
				BEF7897424C8CF960013A906 /* Manager.cxx */,
				BEF7897624C8CF960013A906 /* UnoGraphic.cxx */,
				BEF7897324C8CF960013A906 /* UnoGraphicDescriptor.cxx */,
				BEF7897A24C8CF970013A906 /* UnoGraphicObject.cxx */,
				BEF7896F24C8CF960013A906 /* UnoGraphicProvider.cxx */,
				BEF7897824C8CF970013A906 /* UnoGraphicTransformer.cxx */,
				BEF7897724C8CF970013A906 /* VectorGraphicSearch.cxx */,
			);
			name = graphic;
			sourceTree = "<group>";
		};
		BEF7897B24C8D9B20013A906 /* image */ = {
			isa = PBXGroup;
			children = (
				BEF7897D24C8D9F50013A906 /* Image.cxx */,
				BEF7898024C8D9F50013A906 /* ImageRepository.cxx */,
				BEF7897F24C8D9F50013A906 /* ImageTree.cxx */,
				BEF7897E24C8D9F50013A906 /* ImplImage.cxx */,
				BEF7897C24C8D9D60013A906 /* ImplImageTree.cxx */,
			);
			name = image;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		BE8D77262136762500AC58EA /* Mobile */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = BE8D77432136762600AC58EA /* Build configuration list for PBXNativeTarget "Mobile" */;
			buildPhases = (
				BE8D77232136762500AC58EA /* Sources */,
				BE8D77242136762500AC58EA /* Frameworks */,
				BE8D77252136762500AC58EA /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Mobile;
			productName = Mobile;
			productReference = BE8D77272136762500AC58EA /* Mobile.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		BE8D771F2136762500AC58EA /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0940;
				ORGANIZATIONNAME = Collabora;
				TargetAttributes = {
					BE8D77262136762500AC58EA = {
						CreatedOnToolsVersion = 9.4.1;
						SystemCapabilities = {
							com.apple.iCloud = {
								enabled = 1;
							};
						};
					};
				};
			};
			buildConfigurationList = BE8D77222136762500AC58EA /* Build configuration list for PBXProject "Mobile" */;
			compatibilityVersion = "Xcode 9.3";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
				fi,
			);
			mainGroup = BE8D771E2136762500AC58EA;
			productRefGroup = BE8D77282136762500AC58EA /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				BE8D77262136762500AC58EA /* Mobile */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		BE8D77252136762500AC58EA /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BE8D85D6214055F3009F1860 /* rc in Resources */,
				BECD984124336DD400016117 /* device-tablet.css in Resources */,
				BE8D85D0214055F3009F1860 /* services in Resources */,
				BE8D85D4214055F3009F1860 /* fundamentalrc in Resources */,
				BECD984024336DD400016117 /* device-mobile.css in Resources */,
				BE80E43221AD92F700859C97 /* Fonts in Resources */,
				BE00F8A821396585001CE2D4 /* images in Resources */,
				BE5EB5DC2140480B00E0826C /* ICU.dat in Resources */,
				BE8D85CE214055F3009F1860 /* oovbaapi.rdb in Resources */,
				BE00F8A721396585001CE2D4 /* loleaflet-help.html in Resources */,
				BE8D773D2136762600AC58EA /* LaunchScreen.storyboard in Resources */,
				BE00F8A121396585001CE2D4 /* bundle.css in Resources */,
				BE7D6A6B23FAA8B500C2E605 /* loolkitconfig.xcu in Resources */,
				BE8D85CF214055F3009F1860 /* udkapi.rdb in Resources */,
				BE18C7DE226DE09A001AD27E /* Branding in Resources */,
				BE8D85D5214055F3009F1860 /* unorc in Resources */,
				BE8D85D1214055F3009F1860 /* services.rdb in Resources */,
				BE00F8A021396585001CE2D4 /* loleaflet.html in Resources */,
				BE8D85CA214055F3009F1860 /* offapi.rdb in Resources */,
				BE8D773A2136762600AC58EA /* Assets.xcassets in Resources */,
				BE8D85CC214055F3009F1860 /* config in Resources */,
				BE00F8A321396585001CE2D4 /* bundle.js in Resources */,
				BE8D77382136762500AC58EA /* Main.storyboard in Resources */,
				BE8D85D2214055F3009F1860 /* program in Resources */,
				BE8D85CB214055F3009F1860 /* share in Resources */,
				BE80E46821B7066D00859C97 /* Templates in Resources */,
				BEB0E5D921C7CA800085A0CF /* Settings.bundle in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		BE8D77232136762500AC58EA /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				BEA2835D21498AD400848631 /* Socket.cpp in Sources */,
				BE5EB5C4213FE29900E0826C /* Util.cpp in Sources */,
				BEA283582146945500848631 /* ChildSession.cpp in Sources */,
				BE80E45E21B6CEF200859C97 /* TemplateSectionHeaderView.m in Sources */,
				BE5EB5C3213FE29900E0826C /* Session.cpp in Sources */,
				BE5EB5D22140039100E0826C /* LOOLWSD.cpp in Sources */,
				BEFB1EE121C29CC70081D757 /* L10n.mm in Sources */,
				BEDCC8992456FFAD00FB02BD /* SceneDelegate.m in Sources */,
				BE5EB5C6213FE29900E0826C /* SigUtil.cpp in Sources */,
				BE5EB5C1213FE29900E0826C /* Log.cpp in Sources */,
				BEDCC84E2452F82800FB02BD /* MobileApp.cpp in Sources */,
				BE5EB5DA2140363100E0826C /* ios.mm in Sources */,
				BE5EB5D421400DC100E0826C /* DocumentBroker.cpp in Sources */,
				BEA28377214FFD8C00848631 /* Unit.cpp in Sources */,
				BE5EB5CF213FE2D000E0826C /* ClientSession.cpp in Sources */,
				BEBF3EB0246EB1C800415E87 /* RequestDetails.cpp in Sources */,
				BE5EB5C2213FE29900E0826C /* SpookyV2.cpp in Sources */,
				BE8D77402136762600AC58EA /* main.m in Sources */,
				BE5EB5C8213FE29900E0826C /* FileUtil.cpp in Sources */,
				BEABFC6824AC94C3004DE339 /* Authorization.cpp in Sources */,
				BEA28360214ACA8500848631 /* FakeSocket.cpp in Sources */,
				BE80E45821B68F5700859C97 /* TemplateCollectionViewController.mm in Sources */,
				BE8D77352136762500AC58EA /* CODocument.mm in Sources */,
				BE5EB5C7213FE29900E0826C /* Protocol.cpp in Sources */,
				BE8D772F2136762500AC58EA /* DocumentBrowserViewController.mm in Sources */,
				BE5EB5D0213FE2D000E0826C /* TileCache.cpp in Sources */,
				BE2FB29E24F3B146006E18B1 /* CollaboraOnlineWebViewKeyboardManager.m in Sources */,
				BE5EB5C5213FE29900E0826C /* MessageQueue.cpp in Sources */,
				BE7228E22417BC9F000ADABD /* StringVector.cpp in Sources */,
				BE5EB5D621401E0F00E0826C /* Storage.cpp in Sources */,
				BEA2835621467FDD00848631 /* Kit.cpp in Sources */,
				BE8D77322136762500AC58EA /* DocumentViewController.mm in Sources */,
				BE8D772C2136762500AC58EA /* AppDelegate.mm in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		BE8D77362136762500AC58EA /* Main.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				BE8D77372136762500AC58EA /* Base */,
			);
			name = Main.storyboard;
			sourceTree = "<group>";
		};
		BE8D773B2136762600AC58EA /* LaunchScreen.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				BE8D773C2136762600AC58EA /* Base */,
			);
			name = LaunchScreen.storyboard;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		BE8D77412136762600AC58EA /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "c++17";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu11;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 12.2;
				LOSRCDIR = "$(SOURCE_ROOT)/../../ios-device";
				MTL_ENABLE_DEBUG_INFO = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
			};
			name = Debug;
		};
		BE8D77422136762600AC58EA /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "c++17";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu11;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 12.2;
				LOSRCDIR = "$(SOURCE_ROOT)/../../ios-device";
				MTL_ENABLE_DEBUG_INFO = NO;
				SDKROOT = iphoneos;
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		BE8D77442136762600AC58EA /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
				CODE_SIGN_ENTITLEMENTS = Mobile/Mobile.entitlements;
				CODE_SIGN_STYLE = Automatic;
				DEVELOPMENT_TEAM = J4FQ687VJK;
				ENABLE_BITCODE = NO;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"IOS=IOS",
					"DISABLE_DYNLOADING=1",
					"DEBUG=1",
					"LOOLWSD_CONFIGDIR='\".\"'",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
				HEADER_SEARCH_PATHS = (
					"$(SOURCE_ROOT)/../ios",
					"$(SOURCE_ROOT)/..",
					"$(SOURCE_ROOT)/../kit",
					"$(SOURCE_ROOT)/../common",
					"$(SOURCE_ROOT)/../wsd",
					"$(SOURCE_ROOT)/../net",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/config_host",
					"$(LOSRCDIR)/include",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/CustomTarget/ios",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnpackedTarball/boost",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnpackedTarball/libpng",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnoApiHeadersTarget/udkapi/comprehensive",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnoApiHeadersTarget/offapi/comprehensive",
					"$(SOURCE_ROOT)/../pocoinclude-symlink",
				);
				INFOPLIST_FILE = Mobile/Info.plist;
				LD_GENERATE_MAP_FILE = YES;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				OTHER_CPLUSPLUSFLAGS = (
					"-x",
					"objective-c++",
					"$(OTHER_CFLAGS)",
				);
				OTHER_LDFLAGS = (
					"-filelist",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/CustomTarget/ios/ios-all-static-libs.list",
					"-L",
					"$(SOURCE_ROOT)/../pocolib-symlink",
					"-lPocoFoundationd",
					"-lPocoUtild",
					"-lPocoXMLd",
					"-lPocoJSONd",
					"-lPocoNetd",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.collabora.office.Mobile;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		BE8D77452136762600AC58EA /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
				CODE_SIGN_ENTITLEMENTS = Mobile/Mobile.entitlements;
				CODE_SIGN_STYLE = Automatic;
				DEVELOPMENT_TEAM = J4FQ687VJK;
				ENABLE_BITCODE = NO;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"IOS=IOS",
					"DISABLE_DYNLOADING=1",
					"LOOLWSD_CONFIGDIR='\".\"'",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
				HEADER_SEARCH_PATHS = (
					"$(SOURCE_ROOT)/../ios",
					"$(SOURCE_ROOT)/..",
					"$(SOURCE_ROOT)/../kit",
					"$(SOURCE_ROOT)/../common",
					"$(SOURCE_ROOT)/../wsd",
					"$(SOURCE_ROOT)/../net",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/config_host",
					"$(LOSRCDIR)/include",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/CustomTarget/ios",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnpackedTarball/boost",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnpackedTarball/libpng",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnoApiHeadersTarget/udkapi/comprehensive",
					"$(SOURCE_ROOT)/../lobuilddir-symlink/workdir/UnoApiHeadersTarget/offapi/comprehensive",
					"$(SOURCE_ROOT)/../pocoinclude-symlink",
				);
				INFOPLIST_FILE = Mobile/Info.plist;
				LD_GENERATE_MAP_FILE = YES;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				OTHER_CPLUSPLUSFLAGS = (
					"-x",
					"objective-c++",
					"$(OTHER_CFLAGS)",
				);
				OTHER_LDFLAGS = (
					"-filelist",
					"$(SOURCE_ROOT)/../lobuilddir-symlink//workdir/CustomTarget/ios/ios-all-static-libs.list",
					"-L",
					"$(SOURCE_ROOT)/../pocolib-symlink",
					"-lPocoFoundationd",
					"-lPocoUtild",
					"-lPocoXMLd",
					"-lPocoJSONd",
					"-lPocoNetd",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.collabora.office.Mobile;
				PRODUCT_NAME = "$(TARGET_NAME)";
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		BE8D77222136762500AC58EA /* Build configuration list for PBXProject "Mobile" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BE8D77412136762600AC58EA /* Debug */,
				BE8D77422136762600AC58EA /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		BE8D77432136762600AC58EA /* Build configuration list for PBXNativeTarget "Mobile" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				BE8D77442136762600AC58EA /* Debug */,
				BE8D77452136762600AC58EA /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = BE8D771F2136762500AC58EA /* Project object */;
}