Chameleon

Chameleon Commit Details

Date:2017-03-23 01:08:05 (7 years 1 month ago)
Author:ErmaC
Commit:2850
Parents: 2849
Message:Implement config.h, update xcodeproject
Changes:
D/branches/ErmaC/Enoch/Chameleon.xcodeproj
A/branches/ErmaC/Enoch/Enoch.xcodeproj
A/branches/ErmaC/Enoch/i386/boot2/config.h
A/branches/ErmaC/Enoch/Enoch.xcodeproj/project.pbxproj

File differences

branches/ErmaC/Enoch/Enoch.xcodeproj/project.pbxproj
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
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 47;
objects = {
/* Begin PBXFileReference section */
019DFBAF11FB94090013E8CC /* MEMTEST86_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MEMTEST86_LICENSE; sourceTree = "<group>"; };
3608A84C1A42F30800602D1C /* boot0.old */ = {isa = PBXFileReference; lastKnownFileType = text; path = boot0.old; sourceTree = "<group>"; };
3608A84D1A42F33500602D1C /* lzvn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lzvn.c; sourceTree = "<group>"; };
3617E24317503A9300AE753C /* appleboot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = appleboot.h; sourceTree = "<group>"; };
3617E24417503A9300AE753C /* appleClut8.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = appleClut8.h; sourceTree = "<group>"; };
3617E24517503A9300AE753C /* bmdecompress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bmdecompress.c; sourceTree = "<group>"; };
3617E24617503A9300AE753C /* boot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = boot.c; sourceTree = "<group>"; };
3617E24717503A9300AE753C /* boot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = boot.h; sourceTree = "<group>"; };
3617E24817503A9300AE753C /* boot2.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = boot2.s; sourceTree = "<group>"; };
3617E24917503A9300AE753C /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
3617E24A17503A9300AE753C /* drivers.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = drivers.c; sourceTree = "<group>"; };
3617E24B17503A9300AE753C /* graphic_utils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = graphic_utils.c; sourceTree = "<group>"; };
3617E24C17503A9300AE753C /* graphic_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = graphic_utils.h; sourceTree = "<group>"; };
3617E24D17503A9300AE753C /* graphics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = graphics.c; sourceTree = "<group>"; };
3617E24E17503A9300AE753C /* graphics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = graphics.h; sourceTree = "<group>"; };
3617E24F17503A9300AE753C /* gui.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gui.c; sourceTree = "<group>"; };
3617E25017503A9300AE753C /* gui.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = "<group>"; };
3617E25117503A9300AE753C /* IOHibernatePrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IOHibernatePrivate.h; sourceTree = "<group>"; };
3617E25417503A9300AE753C /* lzss.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lzss.c; sourceTree = "<group>"; };
3617E25517503A9300AE753C /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
3617E25617503A9300AE753C /* mboot.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = mboot.c; sourceTree = "<group>"; };
3617E25717503A9300AE753C /* mboot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = mboot.h; sourceTree = "<group>"; };
3617E25817503A9300AE753C /* modules_support.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = modules_support.s; sourceTree = "<group>"; };
3617E25917503A9300AE753C /* modules.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = modules.c; sourceTree = "<group>"; };
3617E25A17503A9300AE753C /* modules.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = modules.h; sourceTree = "<group>"; };
3617E25B17503A9300AE753C /* multiboot.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = multiboot.h; sourceTree = "<group>"; };
3617E25C17503A9300AE753C /* options.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = options.c; sourceTree = "<group>"; };
3617E25D17503A9300AE753C /* picopng.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = picopng.c; sourceTree = "<group>"; };
3617E25E17503A9300AE753C /* picopng.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = picopng.h; sourceTree = "<group>"; };
3617E25F17503A9300AE753C /* prompt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = prompt.c; sourceTree = "<group>"; };
3617E26017503A9300AE753C /* ramdisk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ramdisk.c; sourceTree = "<group>"; };
3617E26117503A9300AE753C /* ramdisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ramdisk.h; sourceTree = "<group>"; };
3617E26217503A9300AE753C /* resume.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = resume.c; sourceTree = "<group>"; };
3617E26317503A9300AE753C /* WKdm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WKdm.h; sourceTree = "<group>"; };
3617E26417503A9300AE753C /* WKdmDecompress.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = WKdmDecompress.c; sourceTree = "<group>"; };
361BC70214BD977700236488 /* Changes.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Changes.txt; sourceTree = "<group>"; };
361BC70614BD97C800236488 /* dmg.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = dmg.zip; path = Icons/dmg.zip; sourceTree = "<group>"; };
361BC70714BD97C800236488 /* doc.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = doc.zip; path = Icons/doc.zip; sourceTree = "<group>"; };
361BC70814BD97C800236488 /* i386.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = i386.zip; path = Icons/i386.zip; sourceTree = "<group>"; };
361BC70914BD97C800236488 /* Icon.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = Icon.zip; path = Icons/Icon.zip; sourceTree = "<group>"; };
361BC70A14BD97C800236488 /* pan.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = pan.zip; path = Icons/pan.zip; sourceTree = "<group>"; };
361BC70B14BD97C800236488 /* pkg.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = pkg.zip; path = Icons/pkg.zip; sourceTree = "<group>"; };
361BC70C14BD97C800236488 /* tm.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; name = tm.zip; path = Icons/tm.zip; sourceTree = "<group>"; };
361DAA8F177D152200CFBF68 /* IntelAzul.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = IntelAzul.txt; path = OptionalSettings/IntelAzul.txt; sourceTree = "<group>"; };
361EE41A1A96706600AE9455 /* interrupts.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = interrupts.c; sourceTree = "<group>"; };
362317A617510EB900A25D5D /* br */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = br; path = package/Resources/br.lproj/Conclusion.rtfd; sourceTree = SOURCE_ROOT; };
362317A817510EB900A25D5D /* br */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = br; path = package/Resources/br.lproj/Welcome.rtfd; sourceTree = SOURCE_ROOT; };
362317AA17510ECE00A25D5D /* pt */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = pt; path = package/Resources/pt.lproj/Conclusion.rtfd; sourceTree = SOURCE_ROOT; };
362317AC17510ECE00A25D5D /* pt */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = pt; path = package/Resources/pt.lproj/Welcome.rtfd; sourceTree = SOURCE_ROOT; };
36256EF41752BA5A0018189D /* ar.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = ar.po; sourceTree = "<group>"; };
36256EF51752BA5A0018189D /* bg.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = bg.po; sourceTree = "<group>"; };
36256EF71752BA5A0018189D /* bs.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = bs.po; sourceTree = "<group>"; };
36256EF81752BA5A0018189D /* ca.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = ca.po; sourceTree = "<group>"; };
36256EF91752BA5A0018189D /* chameleon.pot */ = {isa = PBXFileReference; lastKnownFileType = text; path = chameleon.pot; sourceTree = "<group>"; };
36256EFB1752BA5A0018189D /* de.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = de.po; sourceTree = "<group>"; };
36256EFC1752BA5A0018189D /* el.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = el.po; sourceTree = "<group>"; };
36256EFD1752BA5A0018189D /* en.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = en.po; sourceTree = "<group>"; };
36256EFE1752BA5A0018189D /* es.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = es.po; sourceTree = "<group>"; };
36256EFF1752BA5A0018189D /* fa.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = fa.po; sourceTree = "<group>"; };
36256F001752BA5A0018189D /* fr.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = fr.po; sourceTree = "<group>"; };
36256F011752BA5A0018189D /* he.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = he.po; sourceTree = "<group>"; };
36256F021752BA5A0018189D /* hr.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = hr.po; sourceTree = "<group>"; };
36256F031752BA5A0018189D /* hu.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = hu.po; sourceTree = "<group>"; };
36256F041752BA5A0018189D /* id.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = id.po; sourceTree = "<group>"; };
36256F051752BA5A0018189D /* it.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = it.po; sourceTree = "<group>"; };
36256F061752BA5A0018189D /* ja.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = ja.po; sourceTree = "<group>"; };
36256F071752BA5A0018189D /* ko.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = ko.po; sourceTree = "<group>"; };
36256F081752BA5A0018189D /* mk.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = mk.po; sourceTree = "<group>"; };
36256F091752BA5A0018189D /* nl.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = nl.po; sourceTree = "<group>"; };
36256F0A1752BA5A0018189D /* pl.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = pl.po; sourceTree = "<group>"; };
36256F0B1752BA5A0018189D /* pt.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = pt.po; sourceTree = "<group>"; };
36256F0C1752BA5A0018189D /* ro.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = ro.po; sourceTree = "<group>"; };
36256F0D1752BA5A0018189D /* ru.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = ru.po; sourceTree = "<group>"; };
36256F0E1752BA5A0018189D /* sr.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = sr.po; sourceTree = "<group>"; };
36256F0F1752BA5A0018189D /* zh_CN.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = zh_CN.po; sourceTree = "<group>"; };
36256F101752BA5A0018189D /* zh_TW.po */ = {isa = PBXFileReference; lastKnownFileType = text; path = zh_TW.po; sourceTree = "<group>"; };
369689D014BD0AF10013D77F /* BLOCKERS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BLOCKERS; sourceTree = "<group>"; };
369689D114BD0AF10013D77F /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
369689D214BD0B470013D77F /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
3696B1CE1A1D2DB5004272A6 /* acpi_patcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = acpi_patcher.c; sourceTree = "<group>"; };
3696B1CF1A1D2DB5004272A6 /* acpi_patcher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpi_patcher.h; sourceTree = "<group>"; };
3696B1D01A1D2DB5004272A6 /* acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpi.h; sourceTree = "<group>"; };
3696B1D11A1D2DB5004272A6 /* allocate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = allocate.c; sourceTree = "<group>"; };
3696B1D21A1D2DB5004272A6 /* aml_generator.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = aml_generator.c; sourceTree = "<group>"; };
3696B1D31A1D2DB5004272A6 /* aml_generator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = aml_generator.h; sourceTree = "<group>"; };
3696B1D41A1D2DB5004272A6 /* asm.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = asm.s; sourceTree = "<group>"; };
3696B1D51A1D2DB5004272A6 /* ati_reg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ati_reg.h; sourceTree = "<group>"; };
3696B1D61A1D2DB5004272A6 /* ati.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ati.c; sourceTree = "<group>"; };
3696B1D71A1D2DB5004272A6 /* ati.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ati.h; sourceTree = "<group>"; };
3696B1D81A1D2DB5004272A6 /* base64-decode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "base64-decode.c"; sourceTree = "<group>"; };
3696B1D91A1D2DB5004272A6 /* befs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = befs.c; sourceTree = "<group>"; };
3696B1DA1A1D2DB5004272A6 /* befs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = befs.h; sourceTree = "<group>"; };
3696B1DB1A1D2DB5004272A6 /* bios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bios.h; sourceTree = "<group>"; };
3696B1DC1A1D2DB5004272A6 /* bios.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = bios.s; sourceTree = "<group>"; };
3696B1DD1A1D2DB5004272A6 /* biosfn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = biosfn.c; sourceTree = "<group>"; };
3696B1DE1A1D2DB5004272A6 /* bootargs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bootargs.h; sourceTree = "<group>"; };
3696B1DF1A1D2DB5004272A6 /* bootstruct.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bootstruct.c; sourceTree = "<group>"; };
3696B1E01A1D2DB5004272A6 /* bootstruct.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bootstruct.h; sourceTree = "<group>"; };
3696B1E11A1D2DB5004272A6 /* cache.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cache.c; sourceTree = "<group>"; };
3696B1E21A1D2DB5004272A6 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
3696B1E31A1D2DB5004272A6 /* console.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = console.c; sourceTree = "<group>"; };
3696B1E41A1D2DB5004272A6 /* convert.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = convert.c; sourceTree = "<group>"; };
3696B1E51A1D2DB5004272A6 /* convert.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = convert.h; sourceTree = "<group>"; };
3696B1E61A1D2DB5004272A6 /* cpu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cpu.c; sourceTree = "<group>"; };
3696B1E71A1D2DB5004272A6 /* cpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
3696B1E81A1D2DB5004272A6 /* device_inject.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = device_inject.c; sourceTree = "<group>"; };
3696B1E91A1D2DB5004272A6 /* device_inject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = device_inject.h; sourceTree = "<group>"; };
3696B1EA1A1D2DB5004272A6 /* device_tree.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = device_tree.c; sourceTree = "<group>"; };
3696B1EB1A1D2DB5004272A6 /* device_tree.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = device_tree.h; sourceTree = "<group>"; };
3696B1EC1A1D2DB5004272A6 /* disk.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = disk.c; sourceTree = "<group>"; };
3696B1ED1A1D2DB5004272A6 /* disk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
3696B1EE1A1D2DB5004272A6 /* dram_controllers.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dram_controllers.c; sourceTree = "<group>"; };
3696B1EF1A1D2DB5004272A6 /* dram_controllers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dram_controllers.h; sourceTree = "<group>"; };
3696B1F01A1D2DB5004272A6 /* efi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = efi.h; sourceTree = "<group>"; };
3696B1F11A1D2DB5004272A6 /* exfat.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = exfat.c; sourceTree = "<group>"; };
3696B1F21A1D2DB5004272A6 /* exfat.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = exfat.h; sourceTree = "<group>"; };
3696B1F31A1D2DB5004272A6 /* ext2fs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ext2fs.c; sourceTree = "<group>"; };
3696B1F41A1D2DB5004272A6 /* ext2fs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ext2fs.h; sourceTree = "<group>"; };
3696B1F51A1D2DB5004272A6 /* fake_efi.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fake_efi.c; sourceTree = "<group>"; };
3696B1F61A1D2DB5004272A6 /* fake_efi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fake_efi.h; sourceTree = "<group>"; };
3696B1F71A1D2DB5004272A6 /* fdisk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fdisk.h; sourceTree = "<group>"; };
3696B1F81A1D2DB5004272A6 /* freebsd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = freebsd.c; sourceTree = "<group>"; };
3696B1F91A1D2DB5004272A6 /* freebsd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = freebsd.h; sourceTree = "<group>"; };
3696B1FA1A1D2DB5004272A6 /* gma.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gma.c; sourceTree = "<group>"; };
3696B1FB1A1D2DB5004272A6 /* gma.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gma.h; sourceTree = "<group>"; };
3696B1FC1A1D2DB5004272A6 /* hda.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = hda.c; sourceTree = "<group>"; };
3696B1FD1A1D2DB5004272A6 /* hda.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hda.h; sourceTree = "<group>"; };
3696B1FE1A1D2DB5004272A6 /* hfs_CaseTables.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hfs_CaseTables.h; sourceTree = "<group>"; };
3696B1FF1A1D2DB5004272A6 /* hfs_compare.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = hfs_compare.c; sourceTree = "<group>"; };
3696B2001A1D2DB5004272A6 /* hfs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = hfs.c; sourceTree = "<group>"; };
3696B2011A1D2DB5004272A6 /* hfs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hfs.h; sourceTree = "<group>"; };
3696B2021A1D2DB5004272A6 /* hpet.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = hpet.c; sourceTree = "<group>"; };
3696B2031A1D2DB5004272A6 /* hpet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hpet.h; sourceTree = "<group>"; };
3696B2041A1D2DB5004272A6 /* io_inline.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = io_inline.h; sourceTree = "<group>"; };
3696B2051A1D2DB5004272A6 /* libsaio.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = libsaio.h; sourceTree = "<group>"; };
3696B2061A1D2DB5004272A6 /* load.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = load.c; sourceTree = "<group>"; };
3696B2071A1D2DB5004272A6 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
3696B2081A1D2DB5004272A6 /* md5c.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = md5c.c; sourceTree = "<group>"; };
3696B2091A1D2DB5004272A6 /* memvendors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = memvendors.h; sourceTree = "<group>"; };
3696B20A1A1D2DB5004272A6 /* misc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = misc.c; sourceTree = "<group>"; };
3696B20B1A1D2DB5004272A6 /* msdos_private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = msdos_private.h; sourceTree = "<group>"; };
3696B20C1A1D2DB5004272A6 /* msdos.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = msdos.c; sourceTree = "<group>"; };
3696B20D1A1D2DB5004272A6 /* msdos.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = msdos.h; sourceTree = "<group>"; };
3696B20E1A1D2DB5004272A6 /* nbp_cmd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = nbp_cmd.h; sourceTree = "<group>"; };
3696B20F1A1D2DB5004272A6 /* nbp.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nbp.c; sourceTree = "<group>"; };
3696B2101A1D2DB5004272A6 /* networking.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = networking.c; sourceTree = "<group>"; };
3696B2111A1D2DB5004272A6 /* networking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = networking.h; sourceTree = "<group>"; };
3696B2121A1D2DB5004272A6 /* ntfs_private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ntfs_private.h; sourceTree = "<group>"; };
3696B2131A1D2DB5004272A6 /* ntfs.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ntfs.c; sourceTree = "<group>"; };
3696B2141A1D2DB5004272A6 /* ntfs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ntfs.h; sourceTree = "<group>"; };
3696B2151A1D2DB5004272A6 /* nvidia_helper.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nvidia_helper.c; sourceTree = "<group>"; };
3696B2161A1D2DB5004272A6 /* nvidia_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = nvidia_helper.h; sourceTree = "<group>"; };
3696B2171A1D2DB5004272A6 /* nvidia.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = nvidia.c; sourceTree = "<group>"; };
3696B2181A1D2DB5004272A6 /* nvidia.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = nvidia.h; sourceTree = "<group>"; };
3696B2191A1D2DB5004272A6 /* openbsd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = openbsd.c; sourceTree = "<group>"; };
3696B21A1A1D2DB5004272A6 /* openbsd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = openbsd.h; sourceTree = "<group>"; };
3696B21B1A1D2DB5004272A6 /* pci_root.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pci_root.c; sourceTree = "<group>"; };
3696B21C1A1D2DB5004272A6 /* pci_root.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pci_root.h; sourceTree = "<group>"; };
3696B21D1A1D2DB5004272A6 /* pci_setup.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pci_setup.c; sourceTree = "<group>"; };
3696B21E1A1D2DB5004272A6 /* pci.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pci.c; sourceTree = "<group>"; };
3696B21F1A1D2DB5004272A6 /* pci.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pci.h; sourceTree = "<group>"; };
3696B2201A1D2DB5004272A6 /* platform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = platform.c; sourceTree = "<group>"; };
3696B2211A1D2DB5004272A6 /* platform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = "<group>"; };
3696B2221A1D2DB5004272A6 /* saio_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = saio_internal.h; sourceTree = "<group>"; };
3696B2231A1D2DB5004272A6 /* saio_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = saio_types.h; sourceTree = "<group>"; };
3696B2241A1D2DB5004272A6 /* sl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sl.h; sourceTree = "<group>"; };
3696B2251A1D2DB5004272A6 /* smbios_decode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = smbios_decode.c; sourceTree = "<group>"; };
3696B2261A1D2DB5004272A6 /* smbios_getters.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = smbios_getters.c; sourceTree = "<group>"; };
3696B2271A1D2DB5004272A6 /* smbios_getters.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = smbios_getters.h; sourceTree = "<group>"; };
3696B2281A1D2DB5004272A6 /* smbios.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = smbios.c; sourceTree = "<group>"; };
3696B2291A1D2DB5004272A6 /* smbios.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = smbios.h; sourceTree = "<group>"; };
3696B22A1A1D2DB5004272A6 /* spd.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = spd.c; sourceTree = "<group>"; };
3696B22B1A1D2DB5004272A6 /* spd.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = spd.h; sourceTree = "<group>"; };
3696B22C1A1D2DB5004272A6 /* state_generator.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = state_generator.c; sourceTree = "<group>"; };
3696B22D1A1D2DB5004272A6 /* state_generator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = state_generator.h; sourceTree = "<group>"; };
3696B22E1A1D2DB5004272A6 /* stringTable.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = stringTable.c; sourceTree = "<group>"; };
3696B22F1A1D2DB5004272A6 /* sys.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = sys.c; sourceTree = "<group>"; };
3696B2301A1D2DB5004272A6 /* table.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = table.c; sourceTree = "<group>"; };
3696B2311A1D2DB5004272A6 /* term.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = term.h; sourceTree = "<group>"; };
3696B2321A1D2DB5004272A6 /* ufs_byteorder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ufs_byteorder.h; sourceTree = "<group>"; };
3696B2331A1D2DB5004272A6 /* ufs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ufs.h; sourceTree = "<group>"; };
3696B2341A1D2DB5004272A6 /* usb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = usb.c; sourceTree = "<group>"; };
3696B2351A1D2DB5004272A6 /* vbe.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = vbe.c; sourceTree = "<group>"; };
3696B2361A1D2DB5004272A6 /* vbe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = vbe.h; sourceTree = "<group>"; };
3696B2371A1D2DB5004272A6 /* xml.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = xml.c; sourceTree = "<group>"; };
3696B2381A1D2DB5004272A6 /* xml.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
3696B2391A1D2DD1004272A6 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
3696B23A1A1D2DD1004272A6 /* efi_tables.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = efi_tables.c; sourceTree = "<group>"; };
3696B23B1A1D2DD1004272A6 /* efi_tables.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = efi_tables.h; sourceTree = "<group>"; };
3696B23C1A1D2DD1004272A6 /* error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = error.c; sourceTree = "<group>"; };
3696B23D1A1D2DD1004272A6 /* libsa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = libsa.h; sourceTree = "<group>"; };
3696B23E1A1D2DD1004272A6 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
3696B23F1A1D2DD1004272A6 /* memory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = memory.h; sourceTree = "<group>"; };
3696B2401A1D2DD1004272A6 /* prf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = prf.c; sourceTree = "<group>"; };
3696B2411A1D2DD1004272A6 /* printf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = printf.c; sourceTree = "<group>"; };
3696B2421A1D2DD1004272A6 /* qsort.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = qsort.c; sourceTree = "<group>"; };
3696B2431A1D2DD1004272A6 /* setjmp.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = setjmp.s; sourceTree = "<group>"; };
3696B2441A1D2DD1004272A6 /* string.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
3696B2451A1D2DD1004272A6 /* strtol.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = strtol.c; sourceTree = "<group>"; };
3696B2461A1D2DD1004272A6 /* zalloc.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = zalloc.c; sourceTree = "<group>"; };
3696B2481A1D2EAB004272A6 /* background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background.png; sourceTree = "<group>"; };
3696B2491A1D2EAB004272A6 /* boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = boot.png; sourceTree = "<group>"; };
3696B24A1A1D2EAB004272A6 /* device_befs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_befs.png; sourceTree = "<group>"; };
3696B24B1A1D2EAB004272A6 /* device_befs_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_befs_o.png; sourceTree = "<group>"; };
3696B24C1A1D2EAB004272A6 /* device_cdrom.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom.png; sourceTree = "<group>"; };
3696B24D1A1D2EAB004272A6 /* device_cdrom_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_cdrom_o.png; sourceTree = "<group>"; };
3696B24E1A1D2EAB004272A6 /* device_ext3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3.png; sourceTree = "<group>"; };
3696B24F1A1D2EAB004272A6 /* device_ext3_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ext3_o.png; sourceTree = "<group>"; };
3696B2501A1D2EAB004272A6 /* device_fat.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat.png; sourceTree = "<group>"; };
3696B2511A1D2EAB004272A6 /* device_fat_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_fat_o.png; sourceTree = "<group>"; };
3696B2521A1D2EAB004272A6 /* device_freebsd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_freebsd.png; sourceTree = "<group>"; };
3696B2531A1D2EAB004272A6 /* device_freebsd_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_freebsd_o.png; sourceTree = "<group>"; };
3696B2541A1D2EAB004272A6 /* device_generic.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic.png; sourceTree = "<group>"; };
3696B2551A1D2EAB004272A6 /* device_generic_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_generic_o.png; sourceTree = "<group>"; };
3696B2561A1D2EAB004272A6 /* device_hfsfusion_mav.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsfusion_mav.png; sourceTree = "<group>"; };
3696B2571A1D2EAB004272A6 /* device_hfsfusion_mav_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsfusion_mav_o.png; sourceTree = "<group>"; };
3696B2581A1D2EAB004272A6 /* device_hfsfusion_yos.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsfusion_yos.png; sourceTree = "<group>"; };
3696B2591A1D2EAB004272A6 /* device_hfsfusion_yos_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsfusion_yos_o.png; sourceTree = "<group>"; };
3696B25A1A1D2EAB004272A6 /* device_hfsplus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus.png; sourceTree = "<group>"; };
3696B25B1A1D2EAB004272A6 /* device_hfsplus_leo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_leo.png; sourceTree = "<group>"; };
3696B25C1A1D2EAB004272A6 /* device_hfsplus_leo_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_leo_o.png; sourceTree = "<group>"; };
3696B25D1A1D2EAB004272A6 /* device_hfsplus_lion.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_lion.png; sourceTree = "<group>"; };
3696B25E1A1D2EAB004272A6 /* device_hfsplus_lion_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_lion_o.png; sourceTree = "<group>"; };
3696B25F1A1D2EAB004272A6 /* device_hfsplus_mav.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_mav.png; sourceTree = "<group>"; };
3696B2601A1D2EAB004272A6 /* device_hfsplus_mav_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_mav_o.png; sourceTree = "<group>"; };
3696B2611A1D2EAB004272A6 /* device_hfsplus_ml.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_ml.png; sourceTree = "<group>"; };
3696B2621A1D2EAB004272A6 /* device_hfsplus_ml_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_ml_o.png; sourceTree = "<group>"; };
3696B2631A1D2EAB004272A6 /* device_hfsplus_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_o.png; sourceTree = "<group>"; };
3696B2641A1D2EAB004272A6 /* device_hfsplus_recovery.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_recovery.png; sourceTree = "<group>"; };
3696B2651A1D2EAB004272A6 /* device_hfsplus_recovery_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_recovery_o.png; sourceTree = "<group>"; };
3696B2661A1D2EAB004272A6 /* device_hfsplus_sl.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_sl.png; sourceTree = "<group>"; };
3696B2671A1D2EAB004272A6 /* device_hfsplus_sl_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_sl_o.png; sourceTree = "<group>"; };
3696B2681A1D2EAB004272A6 /* device_hfsplus_tiger.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_tiger.png; sourceTree = "<group>"; };
3696B2691A1D2EAB004272A6 /* device_hfsplus_tiger_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_tiger_o.png; sourceTree = "<group>"; };
3696B26A1A1D2EAB004272A6 /* device_hfsplus_yos.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_yos.png; sourceTree = "<group>"; };
3696B26B1A1D2EAB004272A6 /* device_hfsplus_yos_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsplus_yos_o.png; sourceTree = "<group>"; };
3696B26C1A1D2EAB004272A6 /* device_hfsraid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid.png; sourceTree = "<group>"; };
3696B26D1A1D2EAB004272A6 /* device_hfsraid_leo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_leo.png; sourceTree = "<group>"; };
3696B26E1A1D2EAB004272A6 /* device_hfsraid_leo_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_leo_o.png; sourceTree = "<group>"; };
3696B26F1A1D2EAB004272A6 /* device_hfsraid_lion.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_lion.png; sourceTree = "<group>"; };
3696B2701A1D2EAB004272A6 /* device_hfsraid_lion_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_lion_o.png; sourceTree = "<group>"; };
3696B2711A1D2EAB004272A6 /* device_hfsraid_mav.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_mav.png; sourceTree = "<group>"; };
3696B2721A1D2EAB004272A6 /* device_hfsraid_mav_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_mav_o.png; sourceTree = "<group>"; };
3696B2731A1D2EAB004272A6 /* device_hfsraid_ml.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_ml.png; sourceTree = "<group>"; };
3696B2741A1D2EAB004272A6 /* device_hfsraid_ml_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_ml_o.png; sourceTree = "<group>"; };
3696B2751A1D2EAB004272A6 /* device_hfsraid_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_o.png; sourceTree = "<group>"; };
3696B2761A1D2EAB004272A6 /* device_hfsraid_sl.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_sl.png; sourceTree = "<group>"; };
3696B2771A1D2EAB004272A6 /* device_hfsraid_sl_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_sl_o.png; sourceTree = "<group>"; };
3696B2781A1D2EAB004272A6 /* device_hfsraid_tiger.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_tiger.png; sourceTree = "<group>"; };
3696B2791A1D2EAB004272A6 /* device_hfsraid_tiger_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_tiger_o.png; sourceTree = "<group>"; };
3696B27A1A1D2EAB004272A6 /* device_hfsraid_yos.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_yos.png; sourceTree = "<group>"; };
3696B27B1A1D2EAB004272A6 /* device_hfsraid_yos_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_hfsraid_yos_o.png; sourceTree = "<group>"; };
3696B27C1A1D2EAB004272A6 /* device_ntfs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs.png; sourceTree = "<group>"; };
3696B27D1A1D2EAB004272A6 /* device_ntfs_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_ntfs_o.png; sourceTree = "<group>"; };
3696B27E1A1D2EAB004272A6 /* device_openbsd.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_openbsd.png; sourceTree = "<group>"; };
3696B27F1A1D2EAB004272A6 /* device_openbsd_o.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_openbsd_o.png; sourceTree = "<group>"; };
3696B2801A1D2EAB004272A6 /* device_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_next.png; sourceTree = "<group>"; };
3696B2811A1D2EAB004272A6 /* device_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_scroll_prev.png; sourceTree = "<group>"; };
3696B2821A1D2EAB004272A6 /* device_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = device_selection.png; sourceTree = "<group>"; };
3696B2831A1D2EAB004272A6 /* font_console.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_console.png; sourceTree = "<group>"; };
3696B2841A1D2EAB004272A6 /* font_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = font_small.png; sourceTree = "<group>"; };
3696B2851A1D2EAB004272A6 /* logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = logo.png; sourceTree = "<group>"; };
3696B2861A1D2EAB004272A6 /* menu_boot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_boot.png; sourceTree = "<group>"; };
3696B2871A1D2EAB004272A6 /* menu_help.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_help.png; sourceTree = "<group>"; };
3696B2881A1D2EAB004272A6 /* menu_ignore_caches.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches.png; sourceTree = "<group>"; };
3696B2891A1D2EAB004272A6 /* menu_ignore_caches_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_ignore_caches_disabled.png; sourceTree = "<group>"; };
3696B28A1A1D2EAB004272A6 /* menu_memory_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_memory_info.png; sourceTree = "<group>"; };
3696B28B1A1D2EAB004272A6 /* menu_selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_selection.png; sourceTree = "<group>"; };
3696B28C1A1D2EAB004272A6 /* menu_single_user.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user.png; sourceTree = "<group>"; };
3696B28D1A1D2EAB004272A6 /* menu_single_user_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_single_user_disabled.png; sourceTree = "<group>"; };
3696B28E1A1D2EAB004272A6 /* menu_verbose.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose.png; sourceTree = "<group>"; };
3696B28F1A1D2EAB004272A6 /* menu_verbose_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_verbose_disabled.png; sourceTree = "<group>"; };
3696B2901A1D2EAB004272A6 /* menu_video_info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menu_video_info.png; sourceTree = "<group>"; };
3696B2911A1D2EAB004272A6 /* progress_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar.png; sourceTree = "<group>"; };
3696B2921A1D2EAB004272A6 /* progress_bar_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = progress_bar_background.png; sourceTree = "<group>"; };
3696B2931A1D2EAB004272A6 /* text_scroll_next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_next.png; sourceTree = "<group>"; };
3696B2941A1D2EAB004272A6 /* text_scroll_prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = text_scroll_prev.png; sourceTree = "<group>"; };
3696B2951A1D2EAB004272A6 /* theme.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = theme.plist; sourceTree = "<group>"; };
3696B2961A1D2EAB004272A6 /* thumb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumb.png; sourceTree = "<group>"; };
36A9C0021A2A26DA00EEDDF1 /* boot1-install.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "boot1-install.c"; path = "boot1-install/boot1-install.c"; sourceTree = "<group>"; };
36A9C0031A2A26DA00EEDDF1 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = "boot1-install/Cconfig"; sourceTree = "<group>"; };
36A9C0041A2A26DA00EEDDF1 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = "boot1-install/Makefile"; sourceTree = "<group>"; };
36A9C0051A2A26E900EEDDF1 /* boot1x.s */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.asm; path = boot1x.s; sourceTree = "<group>"; };
36AB75E114BD091C005B8045 /* InstallLog.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = InstallLog.sh; sourceTree = "<group>"; };
36AB75E314BD0925005B8045 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
36AB75E414BD092D005B8045 /* preinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = preinstall; sourceTree = "<group>"; };
36AB75E514BD095E005B8045 /* Control.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Control.txt; path = OptionalSettings/Control.txt; sourceTree = "<group>"; };
36AB75E614BD095E005B8045 /* General.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = General.txt; path = OptionalSettings/General.txt; sourceTree = "<group>"; };
36AB75E714BD095E005B8045 /* KernelFlags.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = KernelFlags.txt; path = OptionalSettings/KernelFlags.txt; sourceTree = "<group>"; };
36AB75E814BD095E005B8045 /* PowerManagement.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = PowerManagement.txt; path = OptionalSettings/PowerManagement.txt; sourceTree = "<group>"; };
36AB75E914BD095E005B8045 /* Resolution.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Resolution.txt; path = OptionalSettings/Resolution.txt; sourceTree = "<group>"; };
36AB75EA14BD095E005B8045 /* Video.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = Video.txt; path = OptionalSettings/Video.txt; sourceTree = "<group>"; };
36B83692167832FC00314162 /* Audio.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = Audio.txt; path = OptionalSettings/Audio.txt; sourceTree = "<group>"; };
36B836941678330900314162 /* HDEFLayout.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = HDEFLayout.txt; path = OptionalSettings/HDEFLayout.txt; sourceTree = "<group>"; };
36C9C9841739EF9900B28C9B /* IntelCapri.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = IntelCapri.txt; path = OptionalSettings/IntelCapri.txt; sourceTree = "<group>"; };
36CF786716A0DD3D00EE5DC1 /* HDAULayout.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = HDAULayout.txt; path = OptionalSettings/HDAULayout.txt; sourceTree = "<group>"; };
36D621D016A41501006031F3 /* hda_controller.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = hda_controller.c; path = HDAEnabler/hda_controller.c; sourceTree = "<group>"; };
36D621D116A41501006031F3 /* hda_controller.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = hda_controller.h; path = HDAEnabler/hda_controller.h; sourceTree = "<group>"; };
36D621D216A41501006031F3 /* hda_enabler.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = hda_enabler.c; path = HDAEnabler/hda_enabler.c; sourceTree = "<group>"; };
36D621D316A4155C006031F3 /* hda_codec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = hda_codec.c; path = HDAEnabler/hda_codec.c; sourceTree = "<group>"; };
36D621D416A4155C006031F3 /* hda_codec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = hda_codec.h; path = HDAEnabler/hda_codec.h; sourceTree = "<group>"; };
36DFBE8F16AF0A7B001A6428 /* FileNVRAM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FileNVRAM.h; path = FileNVRAM/include/FileNVRAM.h; sourceTree = "<group>"; };
36DFBE9016AF0A89001A6428 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = FileNVRAM/Cconfig; sourceTree = "<group>"; };
36DFBE9116AF0A89001A6428 /* FileNVRAM.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = FileNVRAM.dylib; path = FileNVRAM/FileNVRAM.dylib; sourceTree = "<group>"; };
36DFBE9216AF0A89001A6428 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = FileNVRAM/Makefile; sourceTree = "<group>"; };
36F0179C16A3896A00519CEA /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = HDAEnabler/Cconfig; sourceTree = "<group>"; };
36F0179E16A3896A00519CEA /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = HDAEnabler/Makefile; sourceTree = "<group>"; };
52073BCA17EB133F00DE2795 /* adler32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = adler32.c; path = KextPatcher/adler32.c; sourceTree = "<group>"; };
52073BCB17EB133F00DE2795 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = KextPatcher/Cconfig; sourceTree = "<group>"; };
52073BCC17EB133F00DE2795 /* deflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = deflate.c; path = KextPatcher/deflate.c; sourceTree = "<group>"; };
52073BCD17EB133F00DE2795 /* deflate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = deflate.h; path = KextPatcher/deflate.h; sourceTree = "<group>"; };
52073BCE17EB133F00DE2795 /* hex_editor.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = hex_editor.c; path = KextPatcher/hex_editor.c; sourceTree = "<group>"; };
52073BCF17EB133F00DE2795 /* hex_editor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = hex_editor.h; path = KextPatcher/hex_editor.h; sourceTree = "<group>"; };
52073BD017EB133F00DE2795 /* inffast.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inffast.c; path = KextPatcher/inffast.c; sourceTree = "<group>"; };
52073BD117EB133F00DE2795 /* inffast.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inffast.h; path = KextPatcher/inffast.h; sourceTree = "<group>"; };
52073BD217EB133F00DE2795 /* inffixed.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inffixed.h; path = KextPatcher/inffixed.h; sourceTree = "<group>"; };
52073BD317EB133F00DE2795 /* inflate.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inflate.c; path = KextPatcher/inflate.c; sourceTree = "<group>"; };
52073BD417EB133F00DE2795 /* inflate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inflate.h; path = KextPatcher/inflate.h; sourceTree = "<group>"; };
52073BD517EB133F00DE2795 /* inftrees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = inftrees.c; path = KextPatcher/inftrees.c; sourceTree = "<group>"; };
52073BD617EB133F00DE2795 /* inftrees.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inftrees.h; path = KextPatcher/inftrees.h; sourceTree = "<group>"; };
52073BD717EB133F00DE2795 /* kext_patcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = kext_patcher.c; path = KextPatcher/kext_patcher.c; sourceTree = "<group>"; };
52073BD817EB133F00DE2795 /* kext_patcher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = kext_patcher.h; path = KextPatcher/kext_patcher.h; sourceTree = "<group>"; };
52073BD917EB133F00DE2795 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = KextPatcher/Makefile; sourceTree = "<group>"; };
52073BDA17EB133F00DE2795 /* mkext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mkext.h; path = KextPatcher/mkext.h; sourceTree = "<group>"; };
52073BDB17EB133F00DE2795 /* trees.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = trees.c; path = KextPatcher/trees.c; sourceTree = "<group>"; };
52073BDC17EB133F00DE2795 /* trees.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trees.h; path = KextPatcher/trees.h; sourceTree = "<group>"; };
52073BDD17EB133F00DE2795 /* zconf.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zconf.h; path = KextPatcher/zconf.h; sourceTree = "<group>"; };
52073BDE17EB133F00DE2795 /* zlib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zlib.h; path = KextPatcher/zlib.h; sourceTree = "<group>"; };
52073BDF17EB133F00DE2795 /* zutil.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = zutil.c; path = KextPatcher/zutil.c; sourceTree = "<group>"; };
52073BE017EB133F00DE2795 /* zutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = zutil.h; path = KextPatcher/zutil.h; sourceTree = "<group>"; };
52DF7A2D17EDFA5900A88D32 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = KernelPatcher/Cconfig; sourceTree = "<group>"; };
52DF7A2E17EDFA5900A88D32 /* kernel_patcher.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = kernel_patcher.c; path = KernelPatcher/kernel_patcher.c; sourceTree = "<group>"; };
52DF7A2F17EDFA5900A88D32 /* kernel_patcher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = kernel_patcher.h; path = KernelPatcher/kernel_patcher.h; sourceTree = "<group>"; };
52DF7A3017EDFA5900A88D32 /* KernelPatcher.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = KernelPatcher.dylib; path = KernelPatcher/KernelPatcher.dylib; sourceTree = "<group>"; };
52DF7A3117EDFA5900A88D32 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = KernelPatcher/Makefile; sourceTree = "<group>"; };
54EE60B01E83478900D682EB /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
6DBAFD1813B0D4590047ED33 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
6DBAFD1913B0D4590047ED33 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
6DBAFD1B13B0D4590047ED33 /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
6DBAFD1C13B0D4590047ED33 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
6DBAFD1E13B0D4590047ED33 /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
6DBAFD1F13B0D4590047ED33 /* asm_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_help.h; sourceTree = "<group>"; };
6DBAFD2013B0D4590047ED33 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
6DBAFD2113B0D4590047ED33 /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
6DBAFD2213B0D4590047ED33 /* desc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desc.h; sourceTree = "<group>"; };
6DBAFD2313B0D4590047ED33 /* fenv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fenv.h; sourceTree = "<group>"; };
6DBAFD2413B0D4590047ED33 /* fpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fpu.h; sourceTree = "<group>"; };
6DBAFD2513B0D4590047ED33 /* frame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = frame.h; sourceTree = "<group>"; };
6DBAFD2613B0D4590047ED33 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
6DBAFD2713B0D4590047ED33 /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
6DBAFD2813B0D4590047ED33 /* pio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pio.h; sourceTree = "<group>"; };
6DBAFD2913B0D4590047ED33 /* reg_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reg_help.h; sourceTree = "<group>"; };
6DBAFD2A13B0D4590047ED33 /* sel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sel.h; sourceTree = "<group>"; };
6DBAFD2B13B0D4590047ED33 /* table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = table.h; sourceTree = "<group>"; };
6DBAFD2C13B0D4590047ED33 /* tss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tss.h; sourceTree = "<group>"; };
6DBAFD2E13B0D4590047ED33 /* alignment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alignment.h; sourceTree = "<group>"; };
6DBAFD2F13B0D4590047ED33 /* asm_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_help.h; sourceTree = "<group>"; };
6DBAFD3013B0D4590047ED33 /* basic_regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = basic_regs.h; sourceTree = "<group>"; };
6DBAFD3113B0D4590047ED33 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
6DBAFD3213B0D4590047ED33 /* cframe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cframe.h; sourceTree = "<group>"; };
6DBAFD3313B0D4590047ED33 /* fenv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fenv.h; sourceTree = "<group>"; };
6DBAFD3413B0D4590047ED33 /* fp_regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fp_regs.h; sourceTree = "<group>"; };
6DBAFD3513B0D4590047ED33 /* macro_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = macro_help.h; sourceTree = "<group>"; };
6DBAFD3613B0D4590047ED33 /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
6DBAFD3713B0D4590047ED33 /* mode_independent_asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mode_independent_asm.h; sourceTree = "<group>"; };
6DBAFD3813B0D4590047ED33 /* pseudo_inst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pseudo_inst.h; sourceTree = "<group>"; };
6DBAFD3913B0D4590047ED33 /* reg_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reg_help.h; sourceTree = "<group>"; };
6DBAFD3A13B0D4590047ED33 /* assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assert.h; sourceTree = "<group>"; };
6DBAFD3B13B0D4590047ED33 /* ctype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ctype.h; sourceTree = "<group>"; };
6DBAFD3D13B0D4590047ED33 /* device_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_port.h; sourceTree = "<group>"; };
6DBAFD3E13B0D4590047ED33 /* device_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = device_types.h; sourceTree = "<group>"; };
6DBAFD3F13B0D4590047ED33 /* errno.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errno.h; sourceTree = "<group>"; };
6DBAFD4013B0D4590047ED33 /* float.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = float.h; sourceTree = "<group>"; };
6DBAFD4213B0D4590047ED33 /* hfs_encodings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_encodings.h; sourceTree = "<group>"; };
6DBAFD4313B0D4590047ED33 /* hfs_format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_format.h; sourceTree = "<group>"; };
6DBAFD4413B0D4590047ED33 /* hfs_mount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hfs_mount.h; sourceTree = "<group>"; };
6DBAFD4613B0D4590047ED33 /* _limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _limits.h; sourceTree = "<group>"; };
6DBAFD4713B0D4590047ED33 /* _param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _param.h; sourceTree = "<group>"; };
6DBAFD4813B0D4590047ED33 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
6DBAFD4913B0D4590047ED33 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
6DBAFD4A13B0D4590047ED33 /* eflags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eflags.h; sourceTree = "<group>"; };
6DBAFD4B13B0D4590047ED33 /* endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian.h; sourceTree = "<group>"; };
6DBAFD4C13B0D4590047ED33 /* fasttrap_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fasttrap_isa.h; sourceTree = "<group>"; };
6DBAFD4D13B0D4590047ED33 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
6DBAFD4E13B0D4590047ED33 /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
6DBAFD4F13B0D4590047ED33 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
6DBAFD5013B0D4590047ED33 /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
6DBAFD5113B0D4590047ED33 /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
6DBAFD5213B0D4590047ED33 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
6DBAFD5313B0D4590047ED33 /* user_ldt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_ldt.h; sourceTree = "<group>"; };
6DBAFD5413B0D4590047ED33 /* vmparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vmparam.h; sourceTree = "<group>"; };
6DBAFD5513B0D4590047ED33 /* inttypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttypes.h; sourceTree = "<group>"; };
6DBAFD5813B0D4590047ED33 /* IOACPIPlatformDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPIPlatformDevice.h; sourceTree = "<group>"; };
6DBAFD5913B0D4590047ED33 /* IOACPIPlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPIPlatformExpert.h; sourceTree = "<group>"; };
6DBAFD5A13B0D4590047ED33 /* IOACPITypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOACPITypes.h; sourceTree = "<group>"; };
6DBAFD5B13B0D4590047ED33 /* assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = assert.h; sourceTree = "<group>"; };
6DBAFD5D13B0D4590047ED33 /* ATADeviceNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATADeviceNub.h; sourceTree = "<group>"; };
6DBAFD5E13B0D4590047ED33 /* ATATimerEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATATimerEventSource.h; sourceTree = "<group>"; };
6DBAFD5F13B0D4590047ED33 /* IOATABusCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATABusCommand.h; sourceTree = "<group>"; };
6DBAFD6013B0D4590047ED33 /* IOATABusInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATABusInfo.h; sourceTree = "<group>"; };
6DBAFD6113B0D4590047ED33 /* IOATACommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATACommand.h; sourceTree = "<group>"; };
6DBAFD6213B0D4590047ED33 /* IOATAController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAController.h; sourceTree = "<group>"; };
6DBAFD6313B0D4590047ED33 /* IOATADevConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATADevConfig.h; sourceTree = "<group>"; };
6DBAFD6413B0D4590047ED33 /* IOATADevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATADevice.h; sourceTree = "<group>"; };
6DBAFD6513B0D4590047ED33 /* IOATARegI386.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATARegI386.h; sourceTree = "<group>"; };
6DBAFD6613B0D4590047ED33 /* IOATATypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATATypes.h; sourceTree = "<group>"; };
6DBAFD6713B0D4590047ED33 /* IOPCIATA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIATA.h; sourceTree = "<group>"; };
6DBAFD6813B0D4590047ED33 /* MacIOATA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacIOATA.h; sourceTree = "<group>"; };
6DBAFD6A13B0D4590047ED33 /* IOAudioControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioControl.h; sourceTree = "<group>"; };
6DBAFD6B13B0D4590047ED33 /* IOAudioControlUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioControlUserClient.h; sourceTree = "<group>"; };
6DBAFD6C13B0D4590047ED33 /* IOAudioDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDebug.h; sourceTree = "<group>"; };
6DBAFD6D13B0D4590047ED33 /* IOAudioDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDefines.h; sourceTree = "<group>"; };
6DBAFD6E13B0D4590047ED33 /* IOAudioDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioDevice.h; sourceTree = "<group>"; };
6DBAFD6F13B0D4590047ED33 /* IOAudioEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioEngine.h; sourceTree = "<group>"; };
6DBAFD7013B0D4590047ED33 /* IOAudioEngineUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioEngineUserClient.h; sourceTree = "<group>"; };
6DBAFD7113B0D4590047ED33 /* IOAudioLevelControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioLevelControl.h; sourceTree = "<group>"; };
6DBAFD7213B0D4590047ED33 /* IOAudioPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioPort.h; sourceTree = "<group>"; };
6DBAFD7313B0D4590047ED33 /* IOAudioSelectorControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioSelectorControl.h; sourceTree = "<group>"; };
6DBAFD7413B0D4590047ED33 /* IOAudioStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioStream.h; sourceTree = "<group>"; };
6DBAFD7513B0D4590047ED33 /* IOAudioToggleControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioToggleControl.h; sourceTree = "<group>"; };
6DBAFD7613B0D4590047ED33 /* IOAudioTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAudioTypes.h; sourceTree = "<group>"; };
6DBAFD7813B0D4590047ED33 /* IOFireWireAVCCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCCommand.h; sourceTree = "<group>"; };
6DBAFD7913B0D4590047ED33 /* IOFireWireAVCConsts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCConsts.h; sourceTree = "<group>"; };
6DBAFD7A13B0D4590047ED33 /* IOFireWireAVCRequestSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCRequestSpace.h; sourceTree = "<group>"; };
6DBAFD7B13B0D4590047ED33 /* IOFireWireAVCTargetSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCTargetSpace.h; sourceTree = "<group>"; };
6DBAFD7C13B0D4590047ED33 /* IOFireWireAVCUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCUnit.h; sourceTree = "<group>"; };
6DBAFD7D13B0D4590047ED33 /* IOFireWireAVCUserClientCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireAVCUserClientCommon.h; sourceTree = "<group>"; };
6DBAFD7E13B0D4590047ED33 /* IOFireWirePCRSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWirePCRSpace.h; sourceTree = "<group>"; };
6DBAFD8013B0D4590047ED33 /* Bluetooth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bluetooth.h; sourceTree = "<group>"; };
6DBAFD8113B0D4590047ED33 /* BluetoothAssignedNumbers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BluetoothAssignedNumbers.h; sourceTree = "<group>"; };
6DBAFD8213B0D4590047ED33 /* IOBluetoothHCIController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHCIController.h; sourceTree = "<group>"; };
6DBAFD8313B0D4590047ED33 /* IOBluetoothHCIRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHCIRequest.h; sourceTree = "<group>"; };
6DBAFD8413B0D4590047ED33 /* IOBluetoothHIDDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHIDDriver.h; sourceTree = "<group>"; };
6DBAFD8513B0D4590047ED33 /* IOBluetoothHIDDriverTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothHIDDriverTypes.h; sourceTree = "<group>"; };
6DBAFD8613B0D4590047ED33 /* IOBluetoothInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothInternal.h; sourceTree = "<group>"; };
6DBAFD8713B0D4590047ED33 /* IOBluetoothTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBluetoothTypes.h; sourceTree = "<group>"; };
6DBAFD8913B0D4590047ED33 /* IOConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOConfigDirectory.h; sourceTree = "<group>"; };
6DBAFD8A13B0D4590047ED33 /* IOFireWireBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireBus.h; sourceTree = "<group>"; };
6DBAFD8B13B0D4590047ED33 /* IOFireWireController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireController.h; sourceTree = "<group>"; };
6DBAFD8C13B0D4590047ED33 /* IOFireWireDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireDevice.h; sourceTree = "<group>"; };
6DBAFD8D13B0D4590047ED33 /* IOFireWireFamilyCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireFamilyCommon.h; sourceTree = "<group>"; };
6DBAFD8E13B0D4590047ED33 /* IOFireWireIRMAllocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireIRMAllocation.h; sourceTree = "<group>"; };
6DBAFD8F13B0D4590047ED33 /* IOFireWireLocalNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireLocalNode.h; sourceTree = "<group>"; };
6DBAFD9013B0D4590047ED33 /* IOFireWireMultiIsochReceive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireMultiIsochReceive.h; sourceTree = "<group>"; };
6DBAFD9113B0D4590047ED33 /* IOFireWireNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireNub.h; sourceTree = "<group>"; };
6DBAFD9213B0D4590047ED33 /* IOFireWirePowerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWirePowerManager.h; sourceTree = "<group>"; };
6DBAFD9313B0D4590047ED33 /* IOFireWireUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireUnit.h; sourceTree = "<group>"; };
6DBAFD9413B0D4590047ED33 /* IOFWAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWAddressSpace.h; sourceTree = "<group>"; };
6DBAFD9513B0D4590047ED33 /* IOFWAsyncStreamListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWAsyncStreamListener.h; sourceTree = "<group>"; };
6DBAFD9613B0D4590047ED33 /* IOFWCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWCommand.h; sourceTree = "<group>"; };
6DBAFD9713B0D4590047ED33 /* IOFWDCL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCL.h; sourceTree = "<group>"; };
6DBAFD9813B0D4590047ED33 /* IOFWDCLPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLPool.h; sourceTree = "<group>"; };
6DBAFD9913B0D4590047ED33 /* IOFWDCLProgram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLProgram.h; sourceTree = "<group>"; };
6DBAFD9A13B0D4590047ED33 /* IOFWDCLTranslator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWDCLTranslator.h; sourceTree = "<group>"; };
6DBAFD9B13B0D4590047ED33 /* IOFWIsochChannel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWIsochChannel.h; sourceTree = "<group>"; };
6DBAFD9C13B0D4590047ED33 /* IOFWIsochPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWIsochPort.h; sourceTree = "<group>"; };
6DBAFD9D13B0D4590047ED33 /* IOFWLocalIsochPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWLocalIsochPort.h; sourceTree = "<group>"; };
6DBAFD9E13B0D4590047ED33 /* IOFWPHYPacketListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPHYPacketListener.h; sourceTree = "<group>"; };
6DBAFD9F13B0D4590047ED33 /* IOFWPhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPhysicalAddressSpace.h; sourceTree = "<group>"; };
6DBAFDA013B0D4590047ED33 /* IOFWPseudoAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWPseudoAddressSpace.h; sourceTree = "<group>"; };
6DBAFDA113B0D4590047ED33 /* IOFWRegs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWRegs.h; sourceTree = "<group>"; };
6DBAFDA213B0D4590047ED33 /* IOFWSimpleContiguousPhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSimpleContiguousPhysicalAddressSpace.h; sourceTree = "<group>"; };
6DBAFDA313B0D4590047ED33 /* IOFWSimplePhysicalAddressSpace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSimplePhysicalAddressSpace.h; sourceTree = "<group>"; };
6DBAFDA413B0D4590047ED33 /* IOFWSyncer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWSyncer.h; sourceTree = "<group>"; };
6DBAFDA513B0D4590047ED33 /* IOFWUserObjectExporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWUserObjectExporter.h; sourceTree = "<group>"; };
6DBAFDA613B0D4590047ED33 /* IOFWUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFWUtils.h; sourceTree = "<group>"; };
6DBAFDA713B0D4590047ED33 /* IOLocalConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLocalConfigDirectory.h; sourceTree = "<group>"; };
6DBAFDA813B0D4590047ED33 /* IORemoteConfigDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORemoteConfigDirectory.h; sourceTree = "<group>"; };
6DBAFDAA13B0D4590047ED33 /* IOAccelClientConnect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelClientConnect.h; sourceTree = "<group>"; };
6DBAFDAB13B0D4590047ED33 /* IOAccelerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelerator.h; sourceTree = "<group>"; };
6DBAFDAC13B0D4590047ED33 /* IOAccelSurfaceConnect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelSurfaceConnect.h; sourceTree = "<group>"; };
6DBAFDAD13B0D4590047ED33 /* IOAccelTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAccelTypes.h; sourceTree = "<group>"; };
6DBAFDAE13B0D4590047ED33 /* IODisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODisplay.h; sourceTree = "<group>"; };
6DBAFDAF13B0D4590047ED33 /* IOFramebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFramebuffer.h; sourceTree = "<group>"; };
6DBAFDB013B0D4590047ED33 /* IOFramebufferShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFramebufferShared.h; sourceTree = "<group>"; };
6DBAFDB113B0D4590047ED33 /* IOGraphicsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsDevice.h; sourceTree = "<group>"; };
6DBAFDB213B0D4590047ED33 /* IOGraphicsEngine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsEngine.h; sourceTree = "<group>"; };
6DBAFDB313B0D4590047ED33 /* IOGraphicsInterfaceTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsInterfaceTypes.h; sourceTree = "<group>"; };
6DBAFDB413B0D4590047ED33 /* IOGraphicsTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGraphicsTypes.h; sourceTree = "<group>"; };
6DBAFDB613B0D4590047ED33 /* IOHIDDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDDevice.h; sourceTree = "<group>"; };
6DBAFDB713B0D4590047ED33 /* IOHIDElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDElement.h; sourceTree = "<group>"; };
6DBAFDB813B0D4590047ED33 /* IOHIDInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDInterface.h; sourceTree = "<group>"; };
6DBAFDB913B0D4590047ED33 /* IOHIDKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDKeys.h; sourceTree = "<group>"; };
6DBAFDBA13B0D4590047ED33 /* IOHIDUsageTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDUsageTables.h; sourceTree = "<group>"; };
6DBAFDBC13B0D4590047ED33 /* IOHIDEventDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDEventDriver.h; sourceTree = "<group>"; };
6DBAFDBD13B0D4590047ED33 /* IOHIDEventService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDEventService.h; sourceTree = "<group>"; };
6DBAFDBF13B0D4590047ED33 /* ev_keymap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ev_keymap.h; sourceTree = "<group>"; };
6DBAFDC013B0D4590047ED33 /* IOHIDDescriptorParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDDescriptorParser.h; sourceTree = "<group>"; };
6DBAFDC113B0D4590047ED33 /* IOHIDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDevice.h; sourceTree = "<group>"; };
6DBAFDC213B0D4590047ED33 /* IOHIDParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDParameter.h; sourceTree = "<group>"; };
6DBAFDC313B0D4590047ED33 /* IOHIDShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDShared.h; sourceTree = "<group>"; };
6DBAFDC413B0D4590047ED33 /* IOHIDSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDSystem.h; sourceTree = "<group>"; };
6DBAFDC513B0D4590047ED33 /* IOHIDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDTypes.h; sourceTree = "<group>"; };
6DBAFDC613B0D4590047ED33 /* IOHIDUsageTables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIDUsageTables.h; sourceTree = "<group>"; };
6DBAFDC713B0D4590047ED33 /* IOHIKeyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIKeyboard.h; sourceTree = "<group>"; };
6DBAFDC813B0D4590047ED33 /* IOHIKeyboardMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIKeyboardMapper.h; sourceTree = "<group>"; };
6DBAFDC913B0D4590047ED33 /* IOHIPointing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOHIPointing.h; sourceTree = "<group>"; };
6DBAFDCA13B0D4590047ED33 /* IOLLEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLLEvent.h; sourceTree = "<group>"; };
6DBAFDCC13B0D4590047ED33 /* IOI2CInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOI2CInterface.h; sourceTree = "<group>"; };
6DBAFDCD13B0D4590047ED33 /* IOBSD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBSD.h; sourceTree = "<group>"; };
6DBAFDCE13B0D4590047ED33 /* IOBufferMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBufferMemoryDescriptor.h; sourceTree = "<group>"; };
6DBAFDCF13B0D4590047ED33 /* IOCatalogue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCatalogue.h; sourceTree = "<group>"; };
6DBAFDD013B0D4590047ED33 /* IOCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommand.h; sourceTree = "<group>"; };
6DBAFDD113B0D4590047ED33 /* IOCommandGate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommandGate.h; sourceTree = "<group>"; };
6DBAFDD213B0D4590047ED33 /* IOCommandPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCommandPool.h; sourceTree = "<group>"; };
6DBAFDD313B0D4590047ED33 /* IOConditionLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOConditionLock.h; sourceTree = "<group>"; };
6DBAFDD413B0D4590047ED33 /* IODataQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODataQueue.h; sourceTree = "<group>"; };
6DBAFDD513B0D4590047ED33 /* IODataQueueShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODataQueueShared.h; sourceTree = "<group>"; };
6DBAFDD613B0D4590047ED33 /* IODeviceMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODeviceMemory.h; sourceTree = "<group>"; };
6DBAFDD713B0D4590047ED33 /* IODeviceTreeSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODeviceTreeSupport.h; sourceTree = "<group>"; };
6DBAFDD813B0D4590047ED33 /* IODMACommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMACommand.h; sourceTree = "<group>"; };
6DBAFDD913B0D4590047ED33 /* IODMAController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMAController.h; sourceTree = "<group>"; };
6DBAFDDA13B0D4590047ED33 /* IODMAEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODMAEventSource.h; sourceTree = "<group>"; };
6DBAFDDB13B0D4590047ED33 /* IOEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEventSource.h; sourceTree = "<group>"; };
6DBAFDDC13B0D4590047ED33 /* IOFilterInterruptEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFilterInterruptEventSource.h; sourceTree = "<group>"; };
6DBAFDDD13B0D4590047ED33 /* IOInterleavedMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterleavedMemoryDescriptor.h; sourceTree = "<group>"; };
6DBAFDDE13B0D4590047ED33 /* IOInterruptController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterruptController.h; sourceTree = "<group>"; };
6DBAFDDF13B0D4590047ED33 /* IOInterruptEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterruptEventSource.h; sourceTree = "<group>"; };
6DBAFDE013B0D4590047ED33 /* IOInterrupts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOInterrupts.h; sourceTree = "<group>"; };
6DBAFDE113B0D4590047ED33 /* IOKitDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitDebug.h; sourceTree = "<group>"; };
6DBAFDE213B0D4590047ED33 /* IOKitKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitKeys.h; sourceTree = "<group>"; };
6DBAFDE313B0D4590047ED33 /* IOKitServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKitServer.h; sourceTree = "<group>"; };
6DBAFDE413B0D4590047ED33 /* IOLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLib.h; sourceTree = "<group>"; };
6DBAFDE513B0D4590047ED33 /* IOLocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOLocks.h; sourceTree = "<group>"; };
6DBAFDE613B0D4590047ED33 /* IOMapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMapper.h; sourceTree = "<group>"; };
6DBAFDE713B0D4590047ED33 /* IOMemoryCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMemoryCursor.h; sourceTree = "<group>"; };
6DBAFDE813B0D4590047ED33 /* IOMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMemoryDescriptor.h; sourceTree = "<group>"; };
6DBAFDE913B0D4590047ED33 /* IOMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMessage.h; sourceTree = "<group>"; };
6DBAFDEA13B0D4590047ED33 /* IOMultiMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMultiMemoryDescriptor.h; sourceTree = "<group>"; };
6DBAFDEB13B0D4590047ED33 /* IONotifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONotifier.h; sourceTree = "<group>"; };
6DBAFDEC13B0D4590047ED33 /* IONVRAM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONVRAM.h; sourceTree = "<group>"; };
6DBAFDED13B0D4590047ED33 /* IOPlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPlatformExpert.h; sourceTree = "<group>"; };
6DBAFDEE13B0D4590047ED33 /* IORangeAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORangeAllocator.h; sourceTree = "<group>"; };
6DBAFDEF13B0D4590047ED33 /* IORegistryEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORegistryEntry.h; sourceTree = "<group>"; };
6DBAFDF013B0D4590047ED33 /* IOReturn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOReturn.h; sourceTree = "<group>"; };
6DBAFDF113B0D4590047ED33 /* IOService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOService.h; sourceTree = "<group>"; };
6DBAFDF213B0D4590047ED33 /* IOServicePM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOServicePM.h; sourceTree = "<group>"; };
6DBAFDF313B0D4590047ED33 /* IOSharedDataQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSharedDataQueue.h; sourceTree = "<group>"; };
6DBAFDF413B0D4590047ED33 /* IOSharedLock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSharedLock.h; sourceTree = "<group>"; };
6DBAFDF513B0D4590047ED33 /* IOSubMemoryDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSubMemoryDescriptor.h; sourceTree = "<group>"; };
6DBAFDF613B0D4590047ED33 /* IOSyncer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSyncer.h; sourceTree = "<group>"; };
6DBAFDF713B0D4590047ED33 /* IOTimerEventSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTimerEventSource.h; sourceTree = "<group>"; };
6DBAFDF813B0D4590047ED33 /* IOTimeStamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTimeStamp.h; sourceTree = "<group>"; };
6DBAFDF913B0D4590047ED33 /* IOTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOTypes.h; sourceTree = "<group>"; };
6DBAFDFA13B0D4590047ED33 /* IOUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUserClient.h; sourceTree = "<group>"; };
6DBAFDFB13B0D4590047ED33 /* IOWorkLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOWorkLoop.h; sourceTree = "<group>"; };
6DBAFDFD13B0D4590047ED33 /* IOMacOSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMacOSTypes.h; sourceTree = "<group>"; };
6DBAFDFE13B0D4590047ED33 /* IOMacOSVideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMacOSVideo.h; sourceTree = "<group>"; };
6DBAFDFF13B0D4590047ED33 /* IONDRVFramebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVFramebuffer.h; sourceTree = "<group>"; };
6DBAFE0013B0D4590047ED33 /* IONDRVLibraries.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVLibraries.h; sourceTree = "<group>"; };
6DBAFE0113B0D4590047ED33 /* IONDRVSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONDRVSupport.h; sourceTree = "<group>"; };
6DBAFE0313B0D4590047ED33 /* IOBasicOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBasicOutputQueue.h; sourceTree = "<group>"; };
6DBAFE0413B0D4590047ED33 /* IOEthernetController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetController.h; sourceTree = "<group>"; };
6DBAFE0513B0D4590047ED33 /* IOEthernetInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetInterface.h; sourceTree = "<group>"; };
6DBAFE0613B0D4590047ED33 /* IOEthernetStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOEthernetStats.h; sourceTree = "<group>"; };
6DBAFE0713B0D4590047ED33 /* IOGatedOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGatedOutputQueue.h; sourceTree = "<group>"; };
6DBAFE0813B0D4590047ED33 /* IOKernelDebugger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOKernelDebugger.h; sourceTree = "<group>"; };
6DBAFE0913B0D4590047ED33 /* IOMbufMemoryCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMbufMemoryCursor.h; sourceTree = "<group>"; };
6DBAFE0A13B0D4590047ED33 /* IONetworkController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkController.h; sourceTree = "<group>"; };
6DBAFE0B13B0D4590047ED33 /* IONetworkData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkData.h; sourceTree = "<group>"; };
6DBAFE0C13B0D4590047ED33 /* IONetworkInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkInterface.h; sourceTree = "<group>"; };
6DBAFE0D13B0D4590047ED33 /* IONetworkMedium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkMedium.h; sourceTree = "<group>"; };
6DBAFE0E13B0D4590047ED33 /* IONetworkStats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONetworkStats.h; sourceTree = "<group>"; };
6DBAFE0F13B0D4590047ED33 /* IOOutputQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOOutputQueue.h; sourceTree = "<group>"; };
6DBAFE1013B0D4590047ED33 /* IOPacketQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPacketQueue.h; sourceTree = "<group>"; };
6DBAFE1213B0D4590047ED33 /* IONVRAMController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IONVRAMController.h; sourceTree = "<group>"; };
6DBAFE1313B0D4590047ED33 /* OSMessageNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSMessageNotification.h; sourceTree = "<group>"; };
6DBAFE1513B0D4590047ED33 /* IOAGPDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAGPDevice.h; sourceTree = "<group>"; };
6DBAFE1613B0D4590047ED33 /* IOPCIBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIBridge.h; sourceTree = "<group>"; };
6DBAFE1713B0D4590047ED33 /* IOPCIDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPCIDevice.h; sourceTree = "<group>"; };
6DBAFE1913B0D4590047ED33 /* AppleMacIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleMacIO.h; sourceTree = "<group>"; };
6DBAFE1A13B0D4590047ED33 /* AppleMacIODevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleMacIODevice.h; sourceTree = "<group>"; };
6DBAFE1B13B0D4590047ED33 /* AppleNMI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppleNMI.h; sourceTree = "<group>"; };
6DBAFE1C13B0D4590047ED33 /* ApplePlatformExpert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplePlatformExpert.h; sourceTree = "<group>"; };
6DBAFE1E13B0D4590047ED33 /* IOPwrController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPwrController.h; sourceTree = "<group>"; };
6DBAFE2013B0D4590047ED33 /* IODBDMA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODBDMA.h; sourceTree = "<group>"; };
6DBAFE2213B0D4590047ED33 /* IOPM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPM.h; sourceTree = "<group>"; };
6DBAFE2313B0D4590047ED33 /* IOPMDeprecated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMDeprecated.h; sourceTree = "<group>"; };
6DBAFE2413B0D4590047ED33 /* IOPMLibDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMLibDefs.h; sourceTree = "<group>"; };
6DBAFE2513B0D4590047ED33 /* IOPMPowerSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPowerSource.h; sourceTree = "<group>"; };
6DBAFE2613B0D4590047ED33 /* IOPMPowerSourceList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPowerSourceList.h; sourceTree = "<group>"; };
6DBAFE2713B0D4590047ED33 /* IOPMpowerState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMpowerState.h; sourceTree = "<group>"; };
6DBAFE2813B0D4590047ED33 /* IOPMPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPMPrivate.h; sourceTree = "<group>"; };
6DBAFE2913B0D4590047ED33 /* IOPowerConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPowerConnection.h; sourceTree = "<group>"; };
6DBAFE2A13B0D4590047ED33 /* RootDomain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RootDomain.h; sourceTree = "<group>"; };
6DBAFE2C13B0D4590047ED33 /* IORTCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORTCController.h; sourceTree = "<group>"; };
6DBAFE2E13B0D4590047ED33 /* IOFireWireSBP2Login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2Login.h; sourceTree = "<group>"; };
6DBAFE2F13B0D4590047ED33 /* IOFireWireSBP2LSIWorkaroundDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2LSIWorkaroundDescriptor.h; sourceTree = "<group>"; };
6DBAFE3013B0D4590047ED33 /* IOFireWireSBP2LUN.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2LUN.h; sourceTree = "<group>"; };
6DBAFE3113B0D4590047ED33 /* IOFireWireSBP2ManagementORB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2ManagementORB.h; sourceTree = "<group>"; };
6DBAFE3213B0D4590047ED33 /* IOFireWireSBP2ORB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2ORB.h; sourceTree = "<group>"; };
6DBAFE3313B0D4590047ED33 /* IOFireWireSBP2Target.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2Target.h; sourceTree = "<group>"; };
6DBAFE3413B0D4590047ED33 /* IOFireWireSBP2UserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2UserClient.h; sourceTree = "<group>"; };
6DBAFE3513B0D4590047ED33 /* IOFireWireSBP2UserClientCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSBP2UserClientCommon.h; sourceTree = "<group>"; };
6DBAFE3613B0D4590047ED33 /* IOFireWireSerialBusProtocolTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireSerialBusProtocolTransport.h; sourceTree = "<group>"; };
6DBAFE3813B0D4590047ED33 /* IOBDServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDServices.h; sourceTree = "<group>"; };
6DBAFE3913B0D4590047ED33 /* IOBlockStorageServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageServices.h; sourceTree = "<group>"; };
6DBAFE3A13B0D4590047ED33 /* IOCompactDiscServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCompactDiscServices.h; sourceTree = "<group>"; };
6DBAFE3B13B0D4590047ED33 /* IODVDServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDServices.h; sourceTree = "<group>"; };
6DBAFE3C13B0D4590047ED33 /* IOReducedBlockServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOReducedBlockServices.h; sourceTree = "<group>"; };
6DBAFE3D13B0D4590047ED33 /* IOSCSIBlockCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIBlockCommandsDevice.h; sourceTree = "<group>"; };
6DBAFE3E13B0D4590047ED33 /* IOSCSIMultimediaCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIMultimediaCommandsDevice.h; sourceTree = "<group>"; };
6DBAFE3F13B0D4590047ED33 /* IOSCSIPeripheralDeviceNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceNub.h; sourceTree = "<group>"; };
6DBAFE4013B0D4590047ED33 /* IOSCSIPeripheralDeviceType00.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType00.h; sourceTree = "<group>"; };
6DBAFE4113B0D4590047ED33 /* IOSCSIPeripheralDeviceType05.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType05.h; sourceTree = "<group>"; };
6DBAFE4213B0D4590047ED33 /* IOSCSIPeripheralDeviceType07.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType07.h; sourceTree = "<group>"; };
6DBAFE4313B0D4590047ED33 /* IOSCSIPeripheralDeviceType0E.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPeripheralDeviceType0E.h; sourceTree = "<group>"; };
6DBAFE4413B0D4590047ED33 /* IOSCSIPrimaryCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIPrimaryCommandsDevice.h; sourceTree = "<group>"; };
6DBAFE4513B0D4590047ED33 /* IOSCSIProtocolInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIProtocolInterface.h; sourceTree = "<group>"; };
6DBAFE4613B0D4590047ED33 /* IOSCSIProtocolServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIProtocolServices.h; sourceTree = "<group>"; };
6DBAFE4713B0D4590047ED33 /* IOSCSIReducedBlockCommandsDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIReducedBlockCommandsDevice.h; sourceTree = "<group>"; };
6DBAFE4813B0D4590047ED33 /* SCSICmds_INQUIRY_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_INQUIRY_Definitions.h; sourceTree = "<group>"; };
6DBAFE4913B0D4590047ED33 /* SCSICmds_MODE_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_MODE_Definitions.h; sourceTree = "<group>"; };
6DBAFE4A13B0D4590047ED33 /* SCSICmds_READ_CAPACITY_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_READ_CAPACITY_Definitions.h; sourceTree = "<group>"; };
6DBAFE4B13B0D4590047ED33 /* SCSICmds_REPORT_LUNS_Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_REPORT_LUNS_Definitions.h; sourceTree = "<group>"; };
6DBAFE4C13B0D4590047ED33 /* SCSICmds_REQUEST_SENSE_Defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICmds_REQUEST_SENSE_Defs.h; sourceTree = "<group>"; };
6DBAFE4D13B0D4590047ED33 /* SCSICommandDefinitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICommandDefinitions.h; sourceTree = "<group>"; };
6DBAFE4E13B0D4590047ED33 /* SCSICommandOperationCodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSICommandOperationCodes.h; sourceTree = "<group>"; };
6DBAFE4F13B0D4590047ED33 /* SCSIPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSIPort.h; sourceTree = "<group>"; };
6DBAFE5013B0D4590047ED33 /* SCSITask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCSITask.h; sourceTree = "<group>"; };
6DBAFE5213B0D4590047ED33 /* IOSCSIParallelInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSCSIParallelInterfaceController.h; sourceTree = "<group>"; };
6DBAFE5413B0D4590047ED33 /* IOModemSerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOModemSerialStreamSync.h; sourceTree = "<group>"; };
6DBAFE5513B0D4590047ED33 /* IORS232SerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IORS232SerialStreamSync.h; sourceTree = "<group>"; };
6DBAFE5613B0D4590047ED33 /* IOSerialDriverSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialDriverSync.h; sourceTree = "<group>"; };
6DBAFE5713B0D4590047ED33 /* IOSerialKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialKeys.h; sourceTree = "<group>"; };
6DBAFE5813B0D4590047ED33 /* IOSerialStreamSync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOSerialStreamSync.h; sourceTree = "<group>"; };
6DBAFE5B13B0D4590047ED33 /* IOATAPIProtocolTransport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAPIProtocolTransport.h; sourceTree = "<group>"; };
6DBAFE5C13B0D4590047ED33 /* IOATAStorageDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOATAStorageDefines.h; sourceTree = "<group>"; };
6DBAFE5D13B0D4590047ED33 /* IOAppleLabelScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOAppleLabelScheme.h; sourceTree = "<group>"; };
6DBAFE5E13B0D4590047ED33 /* IOApplePartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOApplePartitionScheme.h; sourceTree = "<group>"; };
6DBAFE5F13B0D4590047ED33 /* IOBDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDBlockStorageDevice.h; sourceTree = "<group>"; };
6DBAFE6013B0D4590047ED33 /* IOBDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDBlockStorageDriver.h; sourceTree = "<group>"; };
6DBAFE6113B0D4590047ED33 /* IOBDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDMedia.h; sourceTree = "<group>"; };
6DBAFE6213B0D4590047ED33 /* IOBDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDMediaBSDClient.h; sourceTree = "<group>"; };
6DBAFE6313B0D4590047ED33 /* IOBDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBDTypes.h; sourceTree = "<group>"; };
6DBAFE6413B0D4590047ED33 /* IOBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageDevice.h; sourceTree = "<group>"; };
6DBAFE6513B0D4590047ED33 /* IOBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBlockStorageDriver.h; sourceTree = "<group>"; };
6DBAFE6613B0D4590047ED33 /* IOCDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDBlockStorageDevice.h; sourceTree = "<group>"; };
6DBAFE6713B0D4590047ED33 /* IOCDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDBlockStorageDriver.h; sourceTree = "<group>"; };
6DBAFE6813B0D4590047ED33 /* IOCDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDMedia.h; sourceTree = "<group>"; };
6DBAFE6913B0D4590047ED33 /* IOCDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDMediaBSDClient.h; sourceTree = "<group>"; };
6DBAFE6A13B0D4590047ED33 /* IOCDPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDPartitionScheme.h; sourceTree = "<group>"; };
6DBAFE6B13B0D4590047ED33 /* IOCDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOCDTypes.h; sourceTree = "<group>"; };
6DBAFE6C13B0D4590047ED33 /* IODVDBlockStorageDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDBlockStorageDevice.h; sourceTree = "<group>"; };
6DBAFE6D13B0D4590047ED33 /* IODVDBlockStorageDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDBlockStorageDriver.h; sourceTree = "<group>"; };
6DBAFE6E13B0D4590047ED33 /* IODVDMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDMedia.h; sourceTree = "<group>"; };
6DBAFE6F13B0D4590047ED33 /* IODVDMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDMediaBSDClient.h; sourceTree = "<group>"; };
6DBAFE7013B0D4590047ED33 /* IODVDTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IODVDTypes.h; sourceTree = "<group>"; };
6DBAFE7113B0D4590047ED33 /* IOFDiskPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFDiskPartitionScheme.h; sourceTree = "<group>"; };
6DBAFE7213B0D4590047ED33 /* IOFilterScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFilterScheme.h; sourceTree = "<group>"; };
6DBAFE7313B0D4590047ED33 /* IOFireWireStorageCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOFireWireStorageCharacteristics.h; sourceTree = "<group>"; };
6DBAFE7413B0D4590047ED33 /* IOGUIDPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOGUIDPartitionScheme.h; sourceTree = "<group>"; };
6DBAFE7513B0D4590047ED33 /* IOMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMedia.h; sourceTree = "<group>"; };
6DBAFE7613B0D4590047ED33 /* IOMediaBSDClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOMediaBSDClient.h; sourceTree = "<group>"; };
6DBAFE7713B0D4590047ED33 /* IOPartitionScheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOPartitionScheme.h; sourceTree = "<group>"; };
6DBAFE7813B0D4590047ED33 /* IOStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorage.h; sourceTree = "<group>"; };
6DBAFE7913B0D4590047ED33 /* IOStorageDeviceCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorageDeviceCharacteristics.h; sourceTree = "<group>"; };
6DBAFE7A13B0D4590047ED33 /* IOStorageProtocolCharacteristics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStorageProtocolCharacteristics.h; sourceTree = "<group>"; };
6DBAFE7C13B0D4590047ED33 /* IOStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStream.h; sourceTree = "<group>"; };
6DBAFE7D13B0D4590047ED33 /* IOStreamFamily.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamFamily.h; sourceTree = "<group>"; };
6DBAFE7E13B0D4590047ED33 /* IOStreamShared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamShared.h; sourceTree = "<group>"; };
6DBAFE7F13B0D4590047ED33 /* IOStreamUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOStreamUserClient.h; sourceTree = "<group>"; };
6DBAFE8013B0D4590047ED33 /* system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system.h; sourceTree = "<group>"; };
6DBAFE8213B0D4590047ED33 /* IOWatchDogTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOWatchDogTimer.h; sourceTree = "<group>"; };
6DBAFE8413B0D4590047ED33 /* IOUFIStorageServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUFIStorageServices.h; sourceTree = "<group>"; };
6DBAFE8513B0D4590047ED33 /* IOUSBBus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBBus.h; sourceTree = "<group>"; };
6DBAFE8613B0D4590047ED33 /* IOUSBCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBCommand.h; sourceTree = "<group>"; };
6DBAFE8713B0D4590047ED33 /* IOUSBCompositeDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBCompositeDriver.h; sourceTree = "<group>"; };
6DBAFE8813B0D4590047ED33 /* IOUSBController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBController.h; sourceTree = "<group>"; };
6DBAFE8913B0D4590047ED33 /* IOUSBControllerListElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerListElement.h; sourceTree = "<group>"; };
6DBAFE8A13B0D4590047ED33 /* IOUSBControllerV2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerV2.h; sourceTree = "<group>"; };
6DBAFE8B13B0D4590047ED33 /* IOUSBControllerV3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBControllerV3.h; sourceTree = "<group>"; };
6DBAFE8C13B0D4590047ED33 /* IOUSBDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBDevice.h; sourceTree = "<group>"; };
6DBAFE8D13B0D4590047ED33 /* IOUSBHIDDriver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHIDDriver.h; sourceTree = "<group>"; };
6DBAFE8E13B0D4590047ED33 /* IOUSBHubDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHubDevice.h; sourceTree = "<group>"; };
6DBAFE8F13B0D4590047ED33 /* IOUSBHubPolicyMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBHubPolicyMaker.h; sourceTree = "<group>"; };
6DBAFE9013B0D4590047ED33 /* IOUSBInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBInterface.h; sourceTree = "<group>"; };
6DBAFE9113B0D4590047ED33 /* IOUSBLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBLog.h; sourceTree = "<group>"; };
6DBAFE9213B0D4590047ED33 /* IOUSBMassStorageClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBMassStorageClass.h; sourceTree = "<group>"; };
6DBAFE9313B0D4590047ED33 /* IOUSBMassStorageUFISubclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBMassStorageUFISubclass.h; sourceTree = "<group>"; };
6DBAFE9413B0D4590047ED33 /* IOUSBNub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBNub.h; sourceTree = "<group>"; };
6DBAFE9513B0D4590047ED33 /* IOUSBPipe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBPipe.h; sourceTree = "<group>"; };
6DBAFE9613B0D4590047ED33 /* IOUSBRootHubDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBRootHubDevice.h; sourceTree = "<group>"; };
6DBAFE9713B0D4590047ED33 /* IOUSBUserClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBUserClient.h; sourceTree = "<group>"; };
6DBAFE9813B0D4590047ED33 /* IOUSBWorkLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOUSBWorkLoop.h; sourceTree = "<group>"; };
6DBAFE9913B0D4590047ED33 /* USB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USB.h; sourceTree = "<group>"; };
6DBAFE9A13B0D4590047ED33 /* USBHub.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBHub.h; sourceTree = "<group>"; };
6DBAFE9B13B0D4590047ED33 /* USBSpec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBSpec.h; sourceTree = "<group>"; };
6DBAFE9C13B0D4590047ED33 /* USBTracepoints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = USBTracepoints.h; sourceTree = "<group>"; };
6DBAFE9E13B0D4590047ED33 /* _OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _OSByteOrder.h; sourceTree = "<group>"; };
6DBAFEA013B0D4590047ED33 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
6DBAFEA113B0D4590047ED33 /* sha1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha1.h; sourceTree = "<group>"; };
6DBAFEA313B0D4590047ED33 /* _OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _OSByteOrder.h; sourceTree = "<group>"; };
6DBAFEA413B0D4590047ED33 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
6DBAFEA613B0D4590047ED33 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
6DBAFEA713B0D4590047ED33 /* OSAtomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSAtomic.h; sourceTree = "<group>"; };
6DBAFEA813B0D4590047ED33 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
6DBAFEA913B0D4590047ED33 /* OSCacheControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSCacheControl.h; sourceTree = "<group>"; };
6DBAFEAA13B0D4590047ED33 /* OSDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSDebug.h; sourceTree = "<group>"; };
6DBAFEAB13B0D4590047ED33 /* OSKextLib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSKextLib.h; sourceTree = "<group>"; };
6DBAFEAC13B0D4590047ED33 /* OSReturn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSReturn.h; sourceTree = "<group>"; };
6DBAFEAD13B0D4590047ED33 /* OSTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSTypes.h; sourceTree = "<group>"; };
6DBAFEAF13B0D4590047ED33 /* OSByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSByteOrder.h; sourceTree = "<group>"; };
6DBAFEB013B0D4590047ED33 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
6DBAFEB113B0D4590047ED33 /* locale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = locale.h; sourceTree = "<group>"; };
6DBAFEB313B0D4590047ED33 /* audit_triggers.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = audit_triggers.defs; sourceTree = "<group>"; };
6DBAFEB413B0D4590047ED33 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
6DBAFEB513B0D4590047ED33 /* bootstrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootstrap.h; sourceTree = "<group>"; };
6DBAFEB613B0D4590047ED33 /* clock.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock.defs; sourceTree = "<group>"; };
6DBAFEB713B0D4590047ED33 /* clock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock.h; sourceTree = "<group>"; };
6DBAFEB813B0D4590047ED33 /* clock_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_priv.defs; sourceTree = "<group>"; };
6DBAFEB913B0D4590047ED33 /* clock_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_priv.h; sourceTree = "<group>"; };
6DBAFEBA13B0D4590047ED33 /* clock_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_reply.defs; sourceTree = "<group>"; };
6DBAFEBB13B0D4590047ED33 /* clock_reply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_reply.h; sourceTree = "<group>"; };
6DBAFEBC13B0D4590047ED33 /* clock_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = clock_types.defs; sourceTree = "<group>"; };
6DBAFEBD13B0D4590047ED33 /* clock_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock_types.h; sourceTree = "<group>"; };
6DBAFEBE13B0D4590047ED33 /* error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = error.h; sourceTree = "<group>"; };
6DBAFEBF13B0D4590047ED33 /* exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = exc.defs; sourceTree = "<group>"; };
6DBAFEC013B0D4590047ED33 /* exc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exc.h; sourceTree = "<group>"; };
6DBAFEC113B0D4590047ED33 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
6DBAFEC213B0D4590047ED33 /* exception_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception_types.h; sourceTree = "<group>"; };
6DBAFEC313B0D4590047ED33 /* host_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_info.h; sourceTree = "<group>"; };
6DBAFEC413B0D4590047ED33 /* host_notify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_notify.h; sourceTree = "<group>"; };
6DBAFEC513B0D4590047ED33 /* host_notify_reply.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_notify_reply.defs; sourceTree = "<group>"; };
6DBAFEC613B0D4590047ED33 /* host_priv.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_priv.defs; sourceTree = "<group>"; };
6DBAFEC713B0D4590047ED33 /* host_priv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_priv.h; sourceTree = "<group>"; };
6DBAFEC813B0D4590047ED33 /* host_reboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_reboot.h; sourceTree = "<group>"; };
6DBAFEC913B0D4590047ED33 /* host_security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = host_security.defs; sourceTree = "<group>"; };
6DBAFECA13B0D4590047ED33 /* host_security.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_security.h; sourceTree = "<group>"; };
6DBAFECB13B0D4590047ED33 /* host_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host_special_ports.h; sourceTree = "<group>"; };
6DBAFECD13B0D4590047ED33 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
6DBAFECE13B0D4590047ED33 /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
6DBAFECF13B0D4590047ED33 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
6DBAFED013B0D4590047ED33 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
6DBAFED113B0D4590047ED33 /* fp_reg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fp_reg.h; sourceTree = "<group>"; };
6DBAFED213B0D4590047ED33 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
6DBAFED313B0D4590047ED33 /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
6DBAFED413B0D4590047ED33 /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
6DBAFED513B0D4590047ED33 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
6DBAFED613B0D4590047ED33 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
6DBAFED713B0D4590047ED33 /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
6DBAFED813B0D4590047ED33 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
6DBAFED913B0D4590047ED33 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
6DBAFEDA13B0D4590047ED33 /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
6DBAFEDB13B0D4590047ED33 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
6DBAFEDC13B0D4590047ED33 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
6DBAFEDD13B0D4590047ED33 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
6DBAFEDE13B0D4590047ED33 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
6DBAFEDF13B0D4590047ED33 /* kmod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kmod.h; sourceTree = "<group>"; };
6DBAFEE013B0D4590047ED33 /* ledger.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = ledger.defs; sourceTree = "<group>"; };
6DBAFEE113B0D4590047ED33 /* ledger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ledger.h; sourceTree = "<group>"; };
6DBAFEE213B0D4590047ED33 /* lock_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = lock_set.defs; sourceTree = "<group>"; };
6DBAFEE313B0D4590047ED33 /* lock_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lock_set.h; sourceTree = "<group>"; };
6DBAFEE413B0D4590047ED33 /* mach.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach.h; sourceTree = "<group>"; };
6DBAFEE513B0D4590047ED33 /* mach_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_error.h; sourceTree = "<group>"; };
6DBAFEE613B0D4590047ED33 /* mach_exc.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_exc.defs; sourceTree = "<group>"; };
6DBAFEE713B0D4590047ED33 /* mach_host.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_host.defs; sourceTree = "<group>"; };
6DBAFEE813B0D4590047ED33 /* mach_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_host.h; sourceTree = "<group>"; };
6DBAFEE913B0D4590047ED33 /* mach_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_init.h; sourceTree = "<group>"; };
6DBAFEEA13B0D4590047ED33 /* mach_interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_interface.h; sourceTree = "<group>"; };
6DBAFEEB13B0D4590047ED33 /* mach_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_param.h; sourceTree = "<group>"; };
6DBAFEEC13B0D4590047ED33 /* mach_port.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_port.defs; sourceTree = "<group>"; };
6DBAFEED13B0D4590047ED33 /* mach_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_port.h; sourceTree = "<group>"; };
6DBAFEEE13B0D4590047ED33 /* mach_syscalls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_syscalls.h; sourceTree = "<group>"; };
6DBAFEEF13B0D4590047ED33 /* mach_time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_time.h; sourceTree = "<group>"; };
6DBAFEF013B0D4590047ED33 /* mach_traps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_traps.h; sourceTree = "<group>"; };
6DBAFEF113B0D4590047ED33 /* mach_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_types.defs; sourceTree = "<group>"; };
6DBAFEF213B0D4590047ED33 /* mach_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_types.h; sourceTree = "<group>"; };
6DBAFEF313B0D4590047ED33 /* mach_vm.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = mach_vm.defs; sourceTree = "<group>"; };
6DBAFEF413B0D4590047ED33 /* mach_vm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mach_vm.h; sourceTree = "<group>"; };
6DBAFEF613B0D4590047ED33 /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
6DBAFEF713B0D4590047ED33 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
6DBAFEF813B0D4590047ED33 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
6DBAFEF913B0D4590047ED33 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
6DBAFEFA13B0D4590047ED33 /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
6DBAFEFB13B0D4590047ED33 /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
6DBAFEFC13B0D4590047ED33 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
6DBAFEFD13B0D4590047ED33 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
6DBAFEFE13B0D4590047ED33 /* sdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt.h; sourceTree = "<group>"; };
6DBAFEFF13B0D4590047ED33 /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
6DBAFF0013B0D4590047ED33 /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
6DBAFF0113B0D4590047ED33 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
6DBAFF0213B0D4590047ED33 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
6DBAFF0313B0D4590047ED33 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
6DBAFF0413B0D4590047ED33 /* machine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = machine.h; sourceTree = "<group>"; };
6DBAFF0513B0D4590047ED33 /* memory_object_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory_object_types.h; sourceTree = "<group>"; };
6DBAFF0613B0D4590047ED33 /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = message.h; sourceTree = "<group>"; };
6DBAFF0713B0D4590047ED33 /* mig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig.h; sourceTree = "<group>"; };
6DBAFF0813B0D4590047ED33 /* mig_errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mig_errors.h; sourceTree = "<group>"; };
6DBAFF0913B0D4590047ED33 /* ndr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr.h; sourceTree = "<group>"; };
6DBAFF0A13B0D4590047ED33 /* notify.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = notify.defs; sourceTree = "<group>"; };
6DBAFF0B13B0D4590047ED33 /* notify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notify.h; sourceTree = "<group>"; };
6DBAFF0C13B0D4590047ED33 /* policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = policy.h; sourceTree = "<group>"; };
6DBAFF0D13B0D4590047ED33 /* port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port.h; sourceTree = "<group>"; };
6DBAFF0E13B0D4590047ED33 /* port_obj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = port_obj.h; sourceTree = "<group>"; };
6DBAFF1013B0D4590047ED33 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
6DBAFF1113B0D4590047ED33 /* asm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm.h; sourceTree = "<group>"; };
6DBAFF1213B0D4590047ED33 /* boolean.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = boolean.h; sourceTree = "<group>"; };
6DBAFF1313B0D4590047ED33 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = "<group>"; };
6DBAFF1413B0D4590047ED33 /* kern_return.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kern_return.h; sourceTree = "<group>"; };
6DBAFF1513B0D4590047ED33 /* machine_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = machine_types.defs; sourceTree = "<group>"; };
6DBAFF1613B0D4590047ED33 /* ndr_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndr_def.h; sourceTree = "<group>"; };
6DBAFF1713B0D4590047ED33 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
6DBAFF1813B0D4590047ED33 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
6DBAFF1913B0D4590047ED33 /* sdt_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt_isa.h; sourceTree = "<group>"; };
6DBAFF1A13B0D4590047ED33 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
6DBAFF1B13B0D4590047ED33 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
6DBAFF1C13B0D4590047ED33 /* thread_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_state.h; sourceTree = "<group>"; };
6DBAFF1D13B0D4590047ED33 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
6DBAFF1E13B0D4590047ED33 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
6DBAFF1F13B0D4590047ED33 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
6DBAFF2013B0D4590047ED33 /* processor.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor.defs; sourceTree = "<group>"; };
6DBAFF2113B0D4590047ED33 /* processor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor.h; sourceTree = "<group>"; };
6DBAFF2213B0D4590047ED33 /* processor_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_info.h; sourceTree = "<group>"; };
6DBAFF2313B0D4590047ED33 /* processor_set.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = processor_set.defs; sourceTree = "<group>"; };
6DBAFF2413B0D4590047ED33 /* processor_set.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = processor_set.h; sourceTree = "<group>"; };
6DBAFF2513B0D4590047ED33 /* rpc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rpc.h; sourceTree = "<group>"; };
6DBAFF2613B0D4590047ED33 /* sdt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdt.h; sourceTree = "<group>"; };
6DBAFF2713B0D4590047ED33 /* security.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = security.defs; sourceTree = "<group>"; };
6DBAFF2813B0D4590047ED33 /* semaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = semaphore.h; sourceTree = "<group>"; };
6DBAFF2913B0D4590047ED33 /* shared_memory_server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_memory_server.h; sourceTree = "<group>"; };
6DBAFF2A13B0D4590047ED33 /* shared_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shared_region.h; sourceTree = "<group>"; };
6DBAFF2B13B0D4590047ED33 /* std_types.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = std_types.defs; sourceTree = "<group>"; };
6DBAFF2C13B0D4590047ED33 /* std_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = std_types.h; sourceTree = "<group>"; };
6DBAFF2D13B0D4590047ED33 /* sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync.h; sourceTree = "<group>"; };
6DBAFF2E13B0D4590047ED33 /* sync_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sync_policy.h; sourceTree = "<group>"; };
6DBAFF2F13B0D4590047ED33 /* task.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task.defs; sourceTree = "<group>"; };
6DBAFF3013B0D4590047ED33 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
6DBAFF3113B0D4590047ED33 /* task_access.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = task_access.defs; sourceTree = "<group>"; };
6DBAFF3213B0D4590047ED33 /* task_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_info.h; sourceTree = "<group>"; };
6DBAFF3313B0D4590047ED33 /* task_ledger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_ledger.h; sourceTree = "<group>"; };
6DBAFF3413B0D4590047ED33 /* task_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_policy.h; sourceTree = "<group>"; };
6DBAFF3513B0D4590047ED33 /* task_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task_special_ports.h; sourceTree = "<group>"; };
6DBAFF3613B0D4590047ED33 /* thread_act.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = thread_act.defs; sourceTree = "<group>"; };
6DBAFF3713B0D4590047ED33 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
6DBAFF3813B0D4590047ED33 /* thread_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_info.h; sourceTree = "<group>"; };
6DBAFF3913B0D4590047ED33 /* thread_policy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_policy.h; sourceTree = "<group>"; };
6DBAFF3A13B0D4590047ED33 /* thread_special_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_special_ports.h; sourceTree = "<group>"; };
6DBAFF3B13B0D4590047ED33 /* thread_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_status.h; sourceTree = "<group>"; };
6DBAFF3C13B0D4590047ED33 /* thread_switch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_switch.h; sourceTree = "<group>"; };
6DBAFF3D13B0D4590047ED33 /* time_value.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time_value.h; sourceTree = "<group>"; };
6DBAFF3E13B0D4590047ED33 /* vm_attributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_attributes.h; sourceTree = "<group>"; };
6DBAFF3F13B0D4590047ED33 /* vm_behavior.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_behavior.h; sourceTree = "<group>"; };
6DBAFF4013B0D4590047ED33 /* vm_inherit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_inherit.h; sourceTree = "<group>"; };
6DBAFF4113B0D4590047ED33 /* vm_map.defs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.mig; path = vm_map.defs; sourceTree = "<group>"; };
6DBAFF4213B0D4590047ED33 /* vm_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_map.h; sourceTree = "<group>"; };
6DBAFF4313B0D4590047ED33 /* vm_param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_param.h; sourceTree = "<group>"; };
6DBAFF4413B0D4590047ED33 /* vm_prot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_prot.h; sourceTree = "<group>"; };
6DBAFF4513B0D4590047ED33 /* vm_purgable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_purgable.h; sourceTree = "<group>"; };
6DBAFF4613B0D4590047ED33 /* vm_region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_region.h; sourceTree = "<group>"; };
6DBAFF4713B0D4590047ED33 /* vm_statistics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_statistics.h; sourceTree = "<group>"; };
6DBAFF4813B0D4590047ED33 /* vm_sync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_sync.h; sourceTree = "<group>"; };
6DBAFF4913B0D4590047ED33 /* vm_task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_task.h; sourceTree = "<group>"; };
6DBAFF4A13B0D4590047ED33 /* vm_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vm_types.h; sourceTree = "<group>"; };
6DBAFF4C13B0D4590047ED33 /* task.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = task.h; sourceTree = "<group>"; };
6DBAFF4D13B0D4590047ED33 /* thread_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread_act.h; sourceTree = "<group>"; };
6DBAFF4F13B0D4590047ED33 /* arch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = arch.h; sourceTree = "<group>"; };
6DBAFF5013B0D4590047ED33 /* compact_unwind_encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compact_unwind_encoding.h; sourceTree = "<group>"; };
6DBAFF5113B0D4590047ED33 /* dyld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyld.h; sourceTree = "<group>"; };
6DBAFF5213B0D4590047ED33 /* dyld_images.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dyld_images.h; sourceTree = "<group>"; };
6DBAFF5313B0D4590047ED33 /* fat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fat.h; sourceTree = "<group>"; };
6DBAFF5413B0D4590047ED33 /* getsect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = getsect.h; sourceTree = "<group>"; };
6DBAFF5613B0D4590047ED33 /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
6DBAFF5713B0D4590047ED33 /* ldsyms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ldsyms.h; sourceTree = "<group>"; };
6DBAFF5813B0D4590047ED33 /* loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loader.h; sourceTree = "<group>"; };
6DBAFF5913B0D4590047ED33 /* nlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nlist.h; sourceTree = "<group>"; };
6DBAFF5B13B0D4590047ED33 /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
6DBAFF5C13B0D4590047ED33 /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
6DBAFF5D13B0D4590047ED33 /* ranlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ranlib.h; sourceTree = "<group>"; };
6DBAFF5E13B0D4590047ED33 /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
6DBAFF5F13B0D4590047ED33 /* stab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stab.h; sourceTree = "<group>"; };
6DBAFF6013B0D4590047ED33 /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
6DBAFF6213B0D4590047ED33 /* reloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloc.h; sourceTree = "<group>"; };
6DBAFF6413B0D4590047ED33 /* _limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _limits.h; sourceTree = "<group>"; };
6DBAFF6513B0D4590047ED33 /* _param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _param.h; sourceTree = "<group>"; };
6DBAFF6613B0D4590047ED33 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
6DBAFF6713B0D4590047ED33 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
6DBAFF6813B0D4590047ED33 /* byte_order.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = byte_order.h; sourceTree = "<group>"; };
6DBAFF6913B0D4590047ED33 /* endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endian.h; sourceTree = "<group>"; };
6DBAFF6A13B0D4590047ED33 /* fasttrap_isa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fasttrap_isa.h; sourceTree = "<group>"; };
6DBAFF6B13B0D4590047ED33 /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
6DBAFF6C13B0D4590047ED33 /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
6DBAFF6D13B0D4590047ED33 /* profile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = profile.h; sourceTree = "<group>"; };
6DBAFF6E13B0D4590047ED33 /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
6DBAFF6F13B0D4590047ED33 /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
6DBAFF7013B0D4590047ED33 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
6DBAFF7113B0D4590047ED33 /* vmparam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vmparam.h; sourceTree = "<group>"; };
6DBAFF7213B0D4590047ED33 /* math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math.h; sourceTree = "<group>"; };
6DBAFF7413B0D4590047ED33 /* bootp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bootp.h; sourceTree = "<group>"; };
6DBAFF7513B0D4590047ED33 /* icmp6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icmp6.h; sourceTree = "<group>"; };
6DBAFF7613B0D4590047ED33 /* icmp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icmp_var.h; sourceTree = "<group>"; };
6DBAFF7713B0D4590047ED33 /* if_ether.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = if_ether.h; sourceTree = "<group>"; };
6DBAFF7813B0D4590047ED33 /* igmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = igmp.h; sourceTree = "<group>"; };
6DBAFF7913B0D4590047ED33 /* igmp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = igmp_var.h; sourceTree = "<group>"; };
6DBAFF7A13B0D4590047ED33 /* in.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in.h; sourceTree = "<group>"; };
6DBAFF7B13B0D4590047ED33 /* in_pcb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_pcb.h; sourceTree = "<group>"; };
6DBAFF7C13B0D4590047ED33 /* in_systm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_systm.h; sourceTree = "<group>"; };
6DBAFF7D13B0D4590047ED33 /* in_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in_var.h; sourceTree = "<group>"; };
6DBAFF7E13B0D4590047ED33 /* ip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip.h; sourceTree = "<group>"; };
6DBAFF7F13B0D4590047ED33 /* ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6.h; sourceTree = "<group>"; };
6DBAFF8013B0D4590047ED33 /* ip_fw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_fw.h; sourceTree = "<group>"; };
6DBAFF8113B0D4590047ED33 /* ip_fw2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_fw2.h; sourceTree = "<group>"; };
6DBAFF8213B0D4590047ED33 /* ip_icmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_icmp.h; sourceTree = "<group>"; };
6DBAFF8313B0D4590047ED33 /* ip_mroute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_mroute.h; sourceTree = "<group>"; };
6DBAFF8413B0D4590047ED33 /* ip_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip_var.h; sourceTree = "<group>"; };
6DBAFF8513B0D4590047ED33 /* tcp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp.h; sourceTree = "<group>"; };
6DBAFF8613B0D4590047ED33 /* tcp_fsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_fsm.h; sourceTree = "<group>"; };
6DBAFF8713B0D4590047ED33 /* tcp_seq.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_seq.h; sourceTree = "<group>"; };
6DBAFF8813B0D4590047ED33 /* tcp_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_timer.h; sourceTree = "<group>"; };
6DBAFF8913B0D4590047ED33 /* tcp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcp_var.h; sourceTree = "<group>"; };
6DBAFF8A13B0D4590047ED33 /* tcpip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcpip.h; sourceTree = "<group>"; };
6DBAFF8B13B0D4590047ED33 /* udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp.h; sourceTree = "<group>"; };
6DBAFF8C13B0D4590047ED33 /* udp_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = udp_var.h; sourceTree = "<group>"; };
6DBAFF8E13B0D4590047ED33 /* ah.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ah.h; sourceTree = "<group>"; };
6DBAFF8F13B0D4590047ED33 /* esp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = esp.h; sourceTree = "<group>"; };
6DBAFF9013B0D4590047ED33 /* in6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in6.h; sourceTree = "<group>"; };
6DBAFF9113B0D4590047ED33 /* in6_var.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = in6_var.h; sourceTree = "<group>"; };
6DBAFF9213B0D4590047ED33 /* ip6_fw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6_fw.h; sourceTree = "<group>"; };
6DBAFF9313B0D4590047ED33 /* ip6_mroute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ip6_mroute.h; sourceTree = "<group>"; };
6DBAFF9413B0D4590047ED33 /* ipcomp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipcomp.h; sourceTree = "<group>"; };
6DBAFF9513B0D4590047ED33 /* ipsec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipsec.h; sourceTree = "<group>"; };
6DBAFF9613B0D4590047ED33 /* nd6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nd6.h; sourceTree = "<group>"; };
6DBAFF9713B0D4590047ED33 /* pim6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pim6.h; sourceTree = "<group>"; };
6DBAFF9813B0D4590047ED33 /* raw_ip6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = raw_ip6.h; sourceTree = "<group>"; };
6DBAFF9913B0D4590047ED33 /* runetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = runetype.h; sourceTree = "<group>"; };
6DBAFF9B13B0D4590047ED33 /* _common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _common.h; sourceTree = "<group>"; };
6DBAFF9C13B0D4590047ED33 /* _stdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _stdio.h; sourceTree = "<group>"; };
6DBAFF9D13B0D4590047ED33 /* setjmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setjmp.h; sourceTree = "<group>"; };
6DBAFF9E13B0D4590047ED33 /* signal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = signal.h; sourceTree = "<group>"; };
6DBAFF9F13B0D4590047ED33 /* stdarg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdarg.h; sourceTree = "<group>"; };
6DBAFFA013B0D4590047ED33 /* stdbool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdbool.h; sourceTree = "<group>"; };
6DBAFFA113B0D4590047ED33 /* stddef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stddef.h; sourceTree = "<group>"; };
6DBAFFA213B0D4590047ED33 /* stdint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdint.h; sourceTree = "<group>"; };
6DBAFFA313B0D4590047ED33 /* stdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdio.h; sourceTree = "<group>"; };
6DBAFFA413B0D4590047ED33 /* stdlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdlib.h; sourceTree = "<group>"; };
6DBAFFA513B0D4590047ED33 /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = "<group>"; };
6DBAFFA713B0D4590047ED33 /* _endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _endian.h; sourceTree = "<group>"; };
6DBAFFA813B0D4590047ED33 /* _select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _select.h; sourceTree = "<group>"; };
6DBAFFA913B0D4590047ED33 /* _structs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _structs.h; sourceTree = "<group>"; };
6DBAFFAA13B0D4590047ED33 /* _types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _types.h; sourceTree = "<group>"; };
6DBAFFAB13B0D4590047ED33 /* appleapiopts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = appleapiopts.h; sourceTree = "<group>"; };
6DBAFFAC13B0D4590047ED33 /* buf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buf.h; sourceTree = "<group>"; };
6DBAFFAD13B0D4590047ED33 /* cdefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cdefs.h; sourceTree = "<group>"; };
6DBAFFAE13B0D4590047ED33 /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
6DBAFFAF13B0D4590047ED33 /* kernel_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kernel_types.h; sourceTree = "<group>"; };
6DBAFFB013B0D4590047ED33 /* param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = param.h; sourceTree = "<group>"; };
6DBAFFB113B0D4590047ED33 /* reboot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reboot.h; sourceTree = "<group>"; };
6DBAFFB213B0D4590047ED33 /* select.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = select.h; sourceTree = "<group>"; };
6DBAFFB313B0D4590047ED33 /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = "<group>"; };
6DBAFFB413B0D4590047ED33 /* syscall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syscall.h; sourceTree = "<group>"; };
6DBAFFB513B0D4590047ED33 /* syslimits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = syslimits.h; sourceTree = "<group>"; };
6DBAFFB613B0D4590047ED33 /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
6DBAFFB713B0D4590047ED33 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
6DBAFFB813B0D4590047ED33 /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
6DBAFFB913B0D4590047ED33 /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = "<group>"; };
6DBAFFBC13B0D4590047ED33 /* ffs_extern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ffs_extern.h; sourceTree = "<group>"; };
6DBAFFBD13B0D4590047ED33 /* fs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fs.h; sourceTree = "<group>"; };
6DBAFFBF13B0D4590047ED33 /* dinode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dinode.h; sourceTree = "<group>"; };
6DBAFFC013B0D4590047ED33 /* dir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dir.h; sourceTree = "<group>"; };
6DBAFFC113B0D4590047ED33 /* inode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inode.h; sourceTree = "<group>"; };
6DBAFFC213B0D4590047ED33 /* ufs_extern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufs_extern.h; sourceTree = "<group>"; };
6DBAFFC313B0D4590047ED33 /* ufsmount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufsmount.h; sourceTree = "<group>"; };
6DBAFFC413B0D4590047ED33 /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
6DBAFFC513B0D4590047ED33 /* unwind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unwind.h; sourceTree = "<group>"; };
A31301A71503CB9900E8C718 /* README.translators */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.translators; sourceTree = "<group>"; };
A354B6271495124F00D81AA5 /* ESPpostinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = ESPpostinstall; sourceTree = "<group>"; };
A354B62A1495124F00D81AA5 /* Standardpostinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = Standardpostinstall; sourceTree = "<group>"; };
A354B62C149514DE00D81AA5 /* CheckDiskMicrocode.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckDiskMicrocode.sh; sourceTree = "<group>"; };
A354B62D149514DE00D81AA5 /* CheckFatType.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckFatType.sh; sourceTree = "<group>"; };
A354B62E149514DE00D81AA5 /* CheckGRUBLinuxLoader.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckGRUBLinuxLoader.sh; sourceTree = "<group>"; };
A354B62F149514DE00D81AA5 /* CheckPartitionScheme.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckPartitionScheme.sh; sourceTree = "<group>"; };
A354B630149514DE00D81AA5 /* CheckPreviousChameleon.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckPreviousChameleon.sh; sourceTree = "<group>"; };
A354B631149514DE00D81AA5 /* CheckProceed.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckProceed.sh; sourceTree = "<group>"; };
A354B632149514DE00D81AA5 /* CheckWindowsDiskSignature.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = CheckWindowsDiskSignature.sh; sourceTree = "<group>"; };
A354B634149514DE00D81AA5 /* MountESP.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = MountESP.sh; sourceTree = "<group>"; };
A354B635149514DE00D81AA5 /* patch */ = {isa = PBXFileReference; lastKnownFileType = text; path = patch; sourceTree = "<group>"; };
A354B636149514DE00D81AA5 /* SetActivePartition.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = SetActivePartition.sh; sourceTree = "<group>"; };
A354B637149514DE00D81AA5 /* UnMountEFIvolumes.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = UnMountEFIvolumes.sh; sourceTree = "<group>"; };
A354B638149514DE00D81AA5 /* WriteChameleonStage0.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = WriteChameleonStage0.sh; sourceTree = "<group>"; };
A354B639149514DE00D81AA5 /* WriteChameleonStage1.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = WriteChameleonStage1.sh; sourceTree = "<group>"; };
A354B63A149514DE00D81AA5 /* WriteChameleonStage2.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = WriteChameleonStage2.sh; sourceTree = "<group>"; };
A3561C731413FD7800E9B51E /* auto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = auto.c; sourceTree = "<group>"; };
A3561C741413FD7800E9B51E /* auto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = auto.h; sourceTree = "<group>"; };
A3561C751413FD7800E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A3561C761413FD7800E9B51E /* cmd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cmd.c; sourceTree = "<group>"; };
A3561C771413FD7800E9B51E /* cmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmd.h; sourceTree = "<group>"; };
A3561C781413FD7800E9B51E /* disk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = disk.c; sourceTree = "<group>"; };
A3561C791413FD7800E9B51E /* disk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = disk.h; sourceTree = "<group>"; };
A3561C7A1413FD7800E9B51E /* fdisk.8 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fdisk.8; sourceTree = "<group>"; };
A3561C7B1413FD7800E9B51E /* fdisk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fdisk.c; sourceTree = "<group>"; };
A3561C7C1413FD7800E9B51E /* getrawpartition.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = getrawpartition.c; sourceTree = "<group>"; };
A3561C7D1413FD7800E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561C7E1413FD7800E9B51E /* mbr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mbr.c; sourceTree = "<group>"; };
A3561C7F1413FD7800E9B51E /* mbr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mbr.h; sourceTree = "<group>"; };
A3561C801413FD7800E9B51E /* mbrcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mbrcode.h; sourceTree = "<group>"; };
A3561C811413FD7800E9B51E /* misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = misc.c; sourceTree = "<group>"; };
A3561C821413FD7800E9B51E /* misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = misc.h; sourceTree = "<group>"; };
A3561C831413FD7800E9B51E /* opendev.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = opendev.c; sourceTree = "<group>"; };
A3561C841413FD7800E9B51E /* part.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = part.c; sourceTree = "<group>"; };
A3561C851413FD7800E9B51E /* part.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = part.h; sourceTree = "<group>"; };
A3561C861413FD7800E9B51E /* user.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = user.c; sourceTree = "<group>"; };
A3561C871413FD7800E9B51E /* user.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user.h; sourceTree = "<group>"; };
A3561C881413FD7800E9B51E /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
A3561C891413FD7800E9B51E /* openUp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openUp.c; sourceTree = "<group>"; };
A3561C8A1413FD7800E9B51E /* dyldsymboltool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dyldsymboltool.c; sourceTree = "<group>"; };
A3561C8B1413FD7800E9B51E /* bdmesg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bdmesg.c; sourceTree = "<group>"; };
A3561CAC1414024C00E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A3561CAE1414024C00E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A3561CAF1414024C00E9B51E /* HelloWorld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HelloWorld.cpp; sourceTree = "<group>"; };
A3561CB11414024C00E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561CB31414024C00E9B51E /* modules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = modules; sourceTree = "<group>"; };
A3561CB81414024D00E9B51E /* __ashldi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __ashldi3.c; sourceTree = "<group>"; };
A3561CB91414024D00E9B51E /* __ashrdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __ashrdi3.c; sourceTree = "<group>"; };
A3561CBA1414024D00E9B51E /* __clzsi2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __clzsi2.c; sourceTree = "<group>"; };
A3561CBB1414024D00E9B51E /* __divdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __divdi3.c; sourceTree = "<group>"; };
A3561CBC1414024D00E9B51E /* __divsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __divsi3.c; sourceTree = "<group>"; };
A3561CBD1414024D00E9B51E /* __lshrdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __lshrdi3.c; sourceTree = "<group>"; };
A3561CBE1414024D00E9B51E /* __moddi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __moddi3.c; sourceTree = "<group>"; };
A3561CBF1414024D00E9B51E /* __modsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __modsi3.c; sourceTree = "<group>"; };
A3561CC01414024D00E9B51E /* __udivdi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivdi3.c; sourceTree = "<group>"; };
A3561CC11414024D00E9B51E /* __udivmoddi4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivmoddi4.c; sourceTree = "<group>"; };
A3561CC21414024D00E9B51E /* __udivmodsi4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivmodsi4.c; sourceTree = "<group>"; };
A3561CC31414024D00E9B51E /* __udivsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __udivsi3.c; sourceTree = "<group>"; };
A3561CC41414024D00E9B51E /* __umoddi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __umoddi3.c; sourceTree = "<group>"; };
A3561CC51414024D00E9B51E /* __umodsi3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __umodsi3.c; sourceTree = "<group>"; };
A3561CC61414024D00E9B51E /* atexit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atexit.c; sourceTree = "<group>"; };
A3561CC71414024D00E9B51E /* atexit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atexit.h; sourceTree = "<group>"; };
A3561CC81414024D00E9B51E /* atoi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atoi.c; sourceTree = "<group>"; };
A3561CC91414024D00E9B51E /* atol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atol.c; sourceTree = "<group>"; };
A3561CCA1414024D00E9B51E /* atoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atoll.c; sourceTree = "<group>"; };
A3561CCB1414024D00E9B51E /* atox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atox.c; sourceTree = "<group>"; };
A3561CCC1414024D00E9B51E /* bsearch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bsearch.c; sourceTree = "<group>"; };
A3561CCD1414024D00E9B51E /* calloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = calloc.c; sourceTree = "<group>"; };
A3561CCE1414024D00E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A3561CCF1414024D00E9B51E /* exit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exit.c; sourceTree = "<group>"; };
A3561CD01414024D00E9B51E /* jrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jrand48.c; sourceTree = "<group>"; };
A3561CD11414024D00E9B51E /* klibc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = klibc.c; sourceTree = "<group>"; };
A3561CD21414024D00E9B51E /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
A3561CD31414024D00E9B51E /* limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = limits.h; sourceTree = "<group>"; };
A3561CD41414024D00E9B51E /* lrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lrand48.c; sourceTree = "<group>"; };
A3561CD51414024D00E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561CD61414024D00E9B51E /* memccpy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memccpy.c; sourceTree = "<group>"; };
A3561CD71414024D00E9B51E /* memchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memchr.c; sourceTree = "<group>"; };
A3561CD81414024D00E9B51E /* memmem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memmem.c; sourceTree = "<group>"; };
A3561CD91414024D00E9B51E /* memmove.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memmove.c; sourceTree = "<group>"; };
A3561CDA1414024D00E9B51E /* memrchr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memrchr.c; sourceTree = "<group>"; };
A3561CDB1414024D00E9B51E /* memswap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memswap.c; sourceTree = "<group>"; };
A3561CDC1414024D00E9B51E /* mrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mrand48.c; sourceTree = "<group>"; };
A3561CDD1414024D00E9B51E /* nrand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nrand48.c; sourceTree = "<group>"; };
A3561CDE1414024D00E9B51E /* onexit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = onexit.c; sourceTree = "<group>"; };
A3561CDF1414024D00E9B51E /* qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qsort.c; sourceTree = "<group>"; };
A3561CE01414024D00E9B51E /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
A3561CE11414024D00E9B51E /* seed48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = seed48.c; sourceTree = "<group>"; };
A3561CE21414024D00E9B51E /* sha1hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha1hash.c; sourceTree = "<group>"; };
A3561CE31414024D00E9B51E /* snprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = snprintf.c; sourceTree = "<group>"; };
A3561CE41414024D00E9B51E /* srand48.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = srand48.c; sourceTree = "<group>"; };
A3561CE51414024D00E9B51E /* sscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sscanf.c; sourceTree = "<group>"; };
A3561CE61414024D00E9B51E /* strcasecmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strcasecmp.c; sourceTree = "<group>"; };
A3561CE71414024D00E9B51E /* strdup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strdup.c; sourceTree = "<group>"; };
A3561CE81414024D00E9B51E /* strlcat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlcat.c; sourceTree = "<group>"; };
A3561CE91414024D00E9B51E /* strncasecmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strncasecmp.c; sourceTree = "<group>"; };
A3561CEA1414024D00E9B51E /* strndup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strndup.c; sourceTree = "<group>"; };
A3561CEB1414024D00E9B51E /* strnlen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strnlen.c; sourceTree = "<group>"; };
A3561CEC1414024D00E9B51E /* strntoimax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strntoimax.c; sourceTree = "<group>"; };
A3561CED1414024D00E9B51E /* strntoumax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strntoumax.c; sourceTree = "<group>"; };
A3561CEE1414024D00E9B51E /* strpbrk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strpbrk.c; sourceTree = "<group>"; };
A3561CEF1414024D00E9B51E /* strsep.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strsep.c; sourceTree = "<group>"; };
A3561CF01414024D00E9B51E /* strtoimax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoimax.c; sourceTree = "<group>"; };
A3561CF11414024D00E9B51E /* strtok.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtok.c; sourceTree = "<group>"; };
A3561CF21414024D00E9B51E /* strtok_r.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtok_r.c; sourceTree = "<group>"; };
A3561CF31414024D00E9B51E /* strtol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtol.c; sourceTree = "<group>"; };
A3561CF41414024D00E9B51E /* strtoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoll.c; sourceTree = "<group>"; };
A3561CF51414024D00E9B51E /* strtotimespec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimespec.c; sourceTree = "<group>"; };
A3561CF61414024D00E9B51E /* strtotimeval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimeval.c; sourceTree = "<group>"; };
A3561CF71414024D00E9B51E /* strtotimex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtotimex.c; sourceTree = "<group>"; };
A3561CF81414024D00E9B51E /* strtoul.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoul.c; sourceTree = "<group>"; };
A3561CF91414024D00E9B51E /* strtoull.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoull.c; sourceTree = "<group>"; };
A3561CFA1414024D00E9B51E /* strtoumax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtoumax.c; sourceTree = "<group>"; };
A3561CFB1414024D00E9B51E /* strtox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strtox.c; sourceTree = "<group>"; };
A3561CFC1414024D00E9B51E /* strxspn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strxspn.c; sourceTree = "<group>"; };
A3561CFD1414024D00E9B51E /* strxspn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strxspn.h; sourceTree = "<group>"; };
A3561CFE1414024D00E9B51E /* version */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = version; sourceTree = "<group>"; };
A3561CFF1414024D00E9B51E /* vsnprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vsnprintf.c; sourceTree = "<group>"; };
A3561D001414024D00E9B51E /* vsscanf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vsscanf.c; sourceTree = "<group>"; };
A3561D011414024D00E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561D021414024D00E9B51E /* MakeInc.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakeInc.dir; sourceTree = "<group>"; };
A3561D031414024D00E9B51E /* Modules.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Modules.txt; sourceTree = "<group>"; };
A3561D051414024D00E9B51E /* 915resolution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 915resolution.c; sourceTree = "<group>"; };
A3561D061414024D00E9B51E /* 915resolution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 915resolution.h; sourceTree = "<group>"; };
A3561D071414024D00E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A3561D081414024D00E9B51E /* edid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = edid.c; sourceTree = "<group>"; };
A3561D0A1414024D00E9B51E /* edid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = edid.h; sourceTree = "<group>"; };
A3561D0B1414024D00E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561D0C1414024D00E9B51E /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
A3561D0D1414024D00E9B51E /* Resolution.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Resolution.c; sourceTree = "<group>"; };
A3561D0E1414024D00E9B51E /* shortatombios.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortatombios.h; sourceTree = "<group>"; };
A3561D101414024D00E9B51E /* abi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = abi.cpp; sourceTree = "<group>"; };
A3561D111414024D00E9B51E /* algorithm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = algorithm.cpp; sourceTree = "<group>"; };
A3561D121414024D00E9B51E /* associative_base.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = associative_base.cpp; sourceTree = "<group>"; };
A3561D131414024D00E9B51E /* bitset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bitset.cpp; sourceTree = "<group>"; };
A3561D141414024D00E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A3561D151414024D00E9B51E /* char_traits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = char_traits.cpp; sourceTree = "<group>"; };
A3561D161414024D00E9B51E /* complex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = complex.cpp; sourceTree = "<group>"; };
A3561D171414024D00E9B51E /* del_op.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_op.cpp; sourceTree = "<group>"; };
A3561D181414024D00E9B51E /* del_opnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opnt.cpp; sourceTree = "<group>"; };
A3561D191414024D00E9B51E /* del_opv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opv.cpp; sourceTree = "<group>"; };
A3561D1A1414024D00E9B51E /* del_opvnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = del_opvnt.cpp; sourceTree = "<group>"; };
A3561D1B1414024D00E9B51E /* deque.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = deque.cpp; sourceTree = "<group>"; };
A3561D1C1414024D00E9B51E /* eh_alloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eh_alloc.cpp; sourceTree = "<group>"; };
A3561D1D1414024D00E9B51E /* eh_globals.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eh_globals.cpp; sourceTree = "<group>"; };
A3561D1E1414024D00E9B51E /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
A3561D1F1414024D00E9B51E /* fstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fstream.cpp; sourceTree = "<group>"; };
A3561D201414024D00E9B51E /* func_exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = func_exception.cpp; sourceTree = "<group>"; };
A3561D221414024D00E9B51E /* algorithm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = algorithm; sourceTree = "<group>"; };
A3561D231414024D00E9B51E /* associative_base */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = associative_base; sourceTree = "<group>"; };
A3561D241414024D00E9B51E /* basic_definitions */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = basic_definitions; sourceTree = "<group>"; };
A3561D251414024D00E9B51E /* bitset */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bitset; sourceTree = "<group>"; };
A3561D261414024D00E9B51E /* cassert */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cassert; sourceTree = "<group>"; };
A3561D271414024D00E9B51E /* cctype */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cctype; sourceTree = "<group>"; };
A3561D281414024D00E9B51E /* cerrno */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cerrno; sourceTree = "<group>"; };
A3561D291414024D00E9B51E /* cfloat */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cfloat; sourceTree = "<group>"; };
A3561D2A1414024D00E9B51E /* char_traits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = char_traits; sourceTree = "<group>"; };
A3561D2B1414024D00E9B51E /* climits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = climits; sourceTree = "<group>"; };
A3561D2C1414024D00E9B51E /* clocale */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = clocale; sourceTree = "<group>"; };
A3561D2D1414024D00E9B51E /* cmath */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cmath; sourceTree = "<group>"; };
A3561D2E1414024D00E9B51E /* complex */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = complex; sourceTree = "<group>"; };
A3561D2F1414024D00E9B51E /* csetjmp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = csetjmp; sourceTree = "<group>"; };
A3561D301414024D00E9B51E /* csignal */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = csignal; sourceTree = "<group>"; };
A3561D311414024D00E9B51E /* cstdarg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdarg; sourceTree = "<group>"; };
A3561D321414024D00E9B51E /* cstddef */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstddef; sourceTree = "<group>"; };
A3561D331414024D00E9B51E /* cstdio */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdio; sourceTree = "<group>"; };
A3561D341414024D00E9B51E /* cstdlib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstdlib; sourceTree = "<group>"; };
A3561D351414024D00E9B51E /* cstring */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cstring; sourceTree = "<group>"; };
A3561D361414024D00E9B51E /* ctime */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ctime; sourceTree = "<group>"; };
A3561D371414024D00E9B51E /* cwchar */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cwchar; sourceTree = "<group>"; };
A3561D381414024D00E9B51E /* cwctype */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cwctype; sourceTree = "<group>"; };
A3561D391414024D00E9B51E /* deque */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = deque; sourceTree = "<group>"; };
A3561D3A1414024D00E9B51E /* exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = exception; sourceTree = "<group>"; };
A3561D3B1414024D00E9B51E /* fstream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fstream; sourceTree = "<group>"; };
A3561D3C1414024D00E9B51E /* func_exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_exception; sourceTree = "<group>"; };
A3561D3D1414024D00E9B51E /* functional */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = functional; sourceTree = "<group>"; };
A3561D3E1414024D00E9B51E /* iomanip */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iomanip; sourceTree = "<group>"; };
A3561D3F1414024D00E9B51E /* ios */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ios; sourceTree = "<group>"; };
A3561D401414024D00E9B51E /* iosfwd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iosfwd; sourceTree = "<group>"; };
A3561D411414024D00E9B51E /* iostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iostream; sourceTree = "<group>"; };
A3561D421414024D00E9B51E /* istream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = istream; sourceTree = "<group>"; };
A3561D431414024D00E9B51E /* istream_helpers */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = istream_helpers; sourceTree = "<group>"; };
A3561D441414024D00E9B51E /* iterator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iterator; sourceTree = "<group>"; };
A3561D451414024D00E9B51E /* iterator_base */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = iterator_base; sourceTree = "<group>"; };
A3561D461414024D00E9B51E /* limits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = limits; sourceTree = "<group>"; };
A3561D471414024D00E9B51E /* list */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = list; sourceTree = "<group>"; };
A3561D481414024D00E9B51E /* locale */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = locale; sourceTree = "<group>"; };
A3561D491414024D00E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561D4A1414024D00E9B51E /* map */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = map; sourceTree = "<group>"; };
A3561D4B1414024D00E9B51E /* map.old */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = map.old; sourceTree = "<group>"; };
A3561D4C1414024D00E9B51E /* memory */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = memory; sourceTree = "<group>"; };
A3561D4D1414024D00E9B51E /* new */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = new; sourceTree = "<group>"; };
A3561D4E1414024D00E9B51E /* numeric */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = numeric; sourceTree = "<group>"; };
A3561D4F1414024D00E9B51E /* ostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ostream; sourceTree = "<group>"; };
A3561D501414024D00E9B51E /* ostream_helpers */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ostream_helpers; sourceTree = "<group>"; };
A3561D511414024D00E9B51E /* queue */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = queue; sourceTree = "<group>"; };
A3561D521414024D00E9B51E /* set */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = set; sourceTree = "<group>"; };
A3561D531414024D00E9B51E /* set.old */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = set.old; sourceTree = "<group>"; };
A3561D541414024D00E9B51E /* sstream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sstream; sourceTree = "<group>"; };
A3561D551414024D00E9B51E /* stack */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stack; sourceTree = "<group>"; };
A3561D561414024D00E9B51E /* stdexcept */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = stdexcept; sourceTree = "<group>"; };
A3561D571414024D00E9B51E /* streambuf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = streambuf; sourceTree = "<group>"; };
A3561D581414024D00E9B51E /* string */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string; sourceTree = "<group>"; };
A3561D591414024D00E9B51E /* string_iostream */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string_iostream; sourceTree = "<group>"; };
A3561D5A1414024D00E9B51E /* support */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = support; sourceTree = "<group>"; };
A3561D5B1414024D00E9B51E /* system_configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = system_configuration.h; sourceTree = "<group>"; };
A3561D5C1414024D00E9B51E /* type_traits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_traits; sourceTree = "<group>"; };
A3561D5D1414024D00E9B51E /* typeinfo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = typeinfo; sourceTree = "<group>"; };
A3561D5E1414024D00E9B51E /* types */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = types; sourceTree = "<group>"; };
A3561D5F1414024D00E9B51E /* unwind-cxx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "unwind-cxx.h"; sourceTree = "<group>"; };
A3561D601414024D00E9B51E /* utility */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = utility; sourceTree = "<group>"; };
A3561D611414024D00E9B51E /* valarray */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = valarray; sourceTree = "<group>"; };
A3561D621414024D00E9B51E /* vector */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector; sourceTree = "<group>"; };
A3561D631414024D00E9B51E /* iomanip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iomanip.cpp; sourceTree = "<group>"; };
A3561D641414024D00E9B51E /* ios.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ios.cpp; sourceTree = "<group>"; };
A3561D651414024D00E9B51E /* iostream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iostream.cpp; sourceTree = "<group>"; };
A3561D661414024D00E9B51E /* istream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = istream.cpp; sourceTree = "<group>"; };
A3561D671414024D00E9B51E /* iterator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iterator.cpp; sourceTree = "<group>"; };
A3561D681414024D00E9B51E /* limits.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = limits.cpp; sourceTree = "<group>"; };
A3561D691414024D00E9B51E /* list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = list.cpp; sourceTree = "<group>"; };
A3561D6A1414024D00E9B51E /* locale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = locale.cpp; sourceTree = "<group>"; };
A3561D6B1414024D00E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561D6C1414024D00E9B51E /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map.cpp; sourceTree = "<group>"; };
A3561D6D1414024D00E9B51E /* new_handler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_handler.cpp; sourceTree = "<group>"; };
A3561D6E1414024D00E9B51E /* new_op.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_op.cpp; sourceTree = "<group>"; };
A3561D6F1414024D00E9B51E /* new_opnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opnt.cpp; sourceTree = "<group>"; };
A3561D701414024D00E9B51E /* new_opv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opv.cpp; sourceTree = "<group>"; };
A3561D711414024D00E9B51E /* new_opvnt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = new_opvnt.cpp; sourceTree = "<group>"; };
A3561D721414024D00E9B51E /* numeric.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = numeric.cpp; sourceTree = "<group>"; };
A3561D731414024D00E9B51E /* ostream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ostream.cpp; sourceTree = "<group>"; };
A3561D741414024D00E9B51E /* queue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = queue.cpp; sourceTree = "<group>"; };
A3561D751414024D00E9B51E /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
A3561D761414024D00E9B51E /* set.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = set.cpp; sourceTree = "<group>"; };
A3561D771414024D00E9B51E /* sstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sstream.cpp; sourceTree = "<group>"; };
A3561D781414024D00E9B51E /* stack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stack.cpp; sourceTree = "<group>"; };
A3561D791414024D00E9B51E /* stdexcept.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stdexcept.cpp; sourceTree = "<group>"; };
A3561D7A1414024D00E9B51E /* streambuf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = streambuf.cpp; sourceTree = "<group>"; };
A3561D7B1414024D00E9B51E /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = string.cpp; sourceTree = "<group>"; };
A3561D7C1414024D00E9B51E /* support.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = support.cpp; sourceTree = "<group>"; };
A3561D7D1414024D00E9B51E /* typeinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = typeinfo.cpp; sourceTree = "<group>"; };
A3561D7E1414024D00E9B51E /* uClibc++.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "uClibc++.c"; sourceTree = "<group>"; };
A3561D7F1414024D00E9B51E /* utility.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utility.cpp; sourceTree = "<group>"; };
A3561D801414024D00E9B51E /* valarray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valarray.cpp; sourceTree = "<group>"; };
A3561D811414024D00E9B51E /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vector.cpp; sourceTree = "<group>"; };
A3561DA61414296600E9B51E /* Keylayout.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Keylayout.c; sourceTree = "<group>"; };
A3561DA71414296600E9B51E /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A3561DA81414296600E9B51E /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
A35D216F141A73B000969AC0 /* cham-mklayout.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "cham-mklayout.c"; sourceTree = "<group>"; };
A35D2171141A73B000969AC0 /* mac-de.slt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "mac-de.slt"; sourceTree = "<group>"; };
A35D2172141A73B000969AC0 /* mac-es.slt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "mac-es.slt"; sourceTree = "<group>"; };
A35D2173141A73B000969AC0 /* mac-fr.slt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "mac-fr.slt"; sourceTree = "<group>"; };
A35D2174141A73B000969AC0 /* mac-it.slt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "mac-it.slt"; sourceTree = "<group>"; };
A35D2175141A73B000969AC0 /* mac-se.slt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "mac-se.slt"; sourceTree = "<group>"; };
A35D2176141A73B000969AC0 /* pc-fr.slt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "pc-fr.slt"; sourceTree = "<group>"; };
A35D2177141A73B000969AC0 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
A35D2178141A753E00969AC0 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
A35D2187141A75DC00969AC0 /* slimpkg.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = slimpkg.sh; sourceTree = "<group>"; };
A35D2188141A75DC00969AC0 /* buildpkg.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = buildpkg.sh; sourceTree = "<group>"; };
A35D2189141A75DC00969AC0 /* builddmg.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = builddmg.sh; sourceTree = "<group>"; };
A360AA7D14136C1A00084D3F /* Make.rules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Make.rules; sourceTree = "<group>"; };
A3F1F267141B9B3B00DDA709 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
B0056CE711F3868000754B65 /* boot0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot0.s; sourceTree = "<group>"; };
B0056CE811F3868000754B65 /* chain0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = chain0.s; sourceTree = "<group>"; };
B0056CE911F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056CED11F3868000754B65 /* boot1f32-install.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "boot1f32-install.sh"; sourceTree = "<group>"; };
B0056CEE11F3868000754B65 /* boot1f32.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1f32.s; sourceTree = "<group>"; };
B0056CEF11F3868000754B65 /* boot1he.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1he.s; sourceTree = "<group>"; };
B0056CF011F3868000754B65 /* boot1hp.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1hp.s; sourceTree = "<group>"; };
B0056CF111F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D1011F3868000754B65 /* cdboot.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = cdboot.s; sourceTree = "<group>"; };
B0056D1111F3868000754B65 /* cdboothdd.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = cdboothdd.s; sourceTree = "<group>"; };
B0056D1211F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D1411F3868000754B65 /* Limits */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Limits; sourceTree = "<group>"; };
B0056D1511F3868000754B65 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
B0056D7611F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D7A11F3868000754B65 /* machOconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = machOconv.c; sourceTree = "<group>"; };
B0056D7B11F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D7C11F3868000754B65 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = "<group>"; };
B0056D7D11F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D7F11F3868000754B65 /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CREDITS; sourceTree = "<group>"; };
B0056D8011F3868000754B65 /* coding_standards.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = coding_standards.txt; sourceTree = "<group>"; };
B0056D8111F3868000754B65 /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CHANGES; sourceTree = "<group>"; };
B0056D8211F3868000754B65 /* APPLE_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = APPLE_LICENSE; sourceTree = "<group>"; };
B0056D8511F3868000754B65 /* Distribution */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = Distribution; sourceTree = "<group>"; };
B0056DB911F3868000754B65 /* smbios.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = smbios.plist; sourceTree = "<group>"; };
B0056E0811F3868000754B65 /* Users_Guide0.4.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.4.pdf; sourceTree = "<group>"; };
B0056E0911F3868000754B65 /* Users_Guide_v0.3.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide_v0.3.pdf; sourceTree = "<group>"; };
B0056E0A11F3868000754B65 /* UsersGuide-v0.2.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "UsersGuide-v0.2.pdf"; sourceTree = "<group>"; };
B0056E0B11F3868000754B65 /* BootHelp.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BootHelp.txt; sourceTree = "<group>"; };
B0056E0C11F3868000754B65 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
B0056E0D11F3868000754B65 /* themeinfo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = themeinfo.png; sourceTree = "<group>"; };
B0056E0F11F3868000754B65 /* Chameleon 2 v0.4.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "Chameleon 2 v0.4.xml"; sourceTree = "<group>"; };
B0056E1011F3868000754B65 /* Chameleon 2 v0.5.docx */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Chameleon 2 v0.5.docx"; sourceTree = "<group>"; };
B0056E1111F3868000754B65 /* chameleon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = chameleon.png; sourceTree = "<group>"; };
B0056E1211F3868000754B65 /* colorchart.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = colorchart.png; sourceTree = "<group>"; };
B0056E1311F3868000754B65 /* install_complete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_complete.png; sourceTree = "<group>"; };
B0056E1411F3868000754B65 /* install_cust.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_cust.png; sourceTree = "<group>"; };
B0056E1511F3868000754B65 /* install_dest.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_dest.png; sourceTree = "<group>"; };
B0056E1611F3868000754B65 /* install_stand.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_stand.png; sourceTree = "<group>"; };
B0056E1711F3868000754B65 /* install_start.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = install_start.png; sourceTree = "<group>"; };
B0056E1811F3868000754B65 /* screen_format.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = screen_format.png; sourceTree = "<group>"; };
B0056E1911F3868000754B65 /* xnulogo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xnulogo.png; sourceTree = "<group>"; };
B0056E1A11F3868000754B65 /* Users_Guide0.5.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = Users_Guide0.5.pdf; sourceTree = "<group>"; };
B0146EFF11FDEF550010765C /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
B0146F0011FDEFB90010765C /* GPL_V2_LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GPL_V2_LICENSE; sourceTree = "<group>"; };
B412979E15BE0C4F00073B54 /* acpi_codec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = acpi_codec.c; path = AcpiCodec/acpi_codec.c; sourceTree = "<group>"; };
B412979F15BE0C4F00073B54 /* acpi_tools.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = acpi_tools.c; path = AcpiCodec/acpi_tools.c; sourceTree = "<group>"; };
B41297A015BE0C4F00073B54 /* acpicode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = acpicode.c; path = AcpiCodec/acpicode.c; sourceTree = "<group>"; };
B41297A115BE0C4F00073B54 /* ACPICodec.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = ACPICodec.c; path = AcpiCodec/ACPICodec.c; sourceTree = "<group>"; };
B41297A215BE0C4F00073B54 /* acpidecode.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = acpidecode.c; path = AcpiCodec/acpidecode.c; sourceTree = "<group>"; };
B41297A315BE0C4F00073B54 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = AcpiCodec/Cconfig; sourceTree = "<group>"; };
B41297A515BE0C4F00073B54 /* acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpi.h; sourceTree = "<group>"; };
B41297A615BE0C4F00073B54 /* acpi_codec.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpi_codec.h; sourceTree = "<group>"; };
B41297A715BE0C4F00073B54 /* acpi_tools.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpi_tools.h; sourceTree = "<group>"; };
B41297A815BE0C4F00073B54 /* acpicode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpicode.h; sourceTree = "<group>"; };
B41297A915BE0C4F00073B54 /* acpidecode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = acpidecode.h; sourceTree = "<group>"; };
B41297AA15BE0C4F00073B54 /* datatype.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = datatype.h; sourceTree = "<group>"; };
B41297AB15BE0C4F00073B54 /* intel_acpi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = intel_acpi.h; sourceTree = "<group>"; };
B41297AC15BE0C4F00073B54 /* ppm.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ppm.h; sourceTree = "<group>"; };
B41297AD15BE0C4F00073B54 /* ppmsetup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ppmsetup.h; sourceTree = "<group>"; };
B41297AE15BE0C4F00073B54 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = AcpiCodec/Makefile; sourceTree = "<group>"; };
B41297AF15BE0C4F00073B54 /* Readme.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = Readme.txt; path = AcpiCodec/Readme.txt; sourceTree = "<group>"; };
B41899FB14BFBE2400ED5B0B /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
B41899FD14BFBE4500ED5B0B /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
B41899FE14BFBE5200ED5B0B /* boot0md.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot0md.s; sourceTree = "<group>"; };
B41899FF14BFBE5D00ED5B0B /* boot0hfs.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot0hfs.s; sourceTree = "<group>"; };
B4189A0014BFBE7D00ED5B0B /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
B4189A0114BFBE8900ED5B0B /* boot1h.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot1h.s; sourceTree = "<group>"; };
B4189A0514BFBF0A00ED5B0B /* BIG.FAT.WARNING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = BIG.FAT.WARNING; path = config/lxdialog/BIG.FAT.WARNING; sourceTree = "<group>"; };
B4189A0614BFBF0A00ED5B0B /* check-lxdialog.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = "check-lxdialog.sh"; path = "config/lxdialog/check-lxdialog.sh"; sourceTree = "<group>"; };
B4189A0714BFBF0A00ED5B0B /* checklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = checklist.c; path = config/lxdialog/checklist.c; sourceTree = "<group>"; };
B4189A0814BFBF0A00ED5B0B /* dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dialog.h; path = config/lxdialog/dialog.h; sourceTree = "<group>"; };
B4189A0914BFBF0A00ED5B0B /* inputbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inputbox.c; path = config/lxdialog/inputbox.c; sourceTree = "<group>"; };
B4189A0A14BFBF0A00ED5B0B /* menubox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = menubox.c; path = config/lxdialog/menubox.c; sourceTree = "<group>"; };
B4189A0B14BFBF0A00ED5B0B /* textbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = textbox.c; path = config/lxdialog/textbox.c; sourceTree = "<group>"; };
B4189A0C14BFBF0A00ED5B0B /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = util.c; path = config/lxdialog/util.c; sourceTree = "<group>"; };
B4189A0D14BFBF0A00ED5B0B /* yesno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = yesno.c; path = config/lxdialog/yesno.c; sourceTree = "<group>"; };
B4189A0E14BFBF1C00ED5B0B /* cconfig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cconfig.c; path = config/cconfig.c; sourceTree = "<group>"; };
B4189A0F14BFBF1C00ED5B0B /* checklist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = checklist.c; path = config/checklist.c; sourceTree = "<group>"; };
B4189A1014BFBF1C00ED5B0B /* confdata.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = confdata.c; path = config/confdata.c; sourceTree = "<group>"; };
B4189A1114BFBF1C00ED5B0B /* dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dialog.h; path = config/dialog.h; sourceTree = "<group>"; };
B4189A1214BFBF1C00ED5B0B /* expr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = expr.c; path = config/expr.c; sourceTree = "<group>"; };
B4189A1314BFBF1C00ED5B0B /* expr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = expr.h; path = config/expr.h; sourceTree = "<group>"; };
B4189A1414BFBF1C00ED5B0B /* inputbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inputbox.c; path = config/inputbox.c; sourceTree = "<group>"; };
B4189A1514BFBF1C00ED5B0B /* lex.zconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lex.zconf.c; path = config/lex.zconf.c; sourceTree = "<group>"; };
B4189A1614BFBF1C00ED5B0B /* lkc_proto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lkc_proto.h; path = config/lkc_proto.h; sourceTree = "<group>"; };
B4189A1714BFBF1C00ED5B0B /* lkc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lkc.h; path = config/lkc.h; sourceTree = "<group>"; };
B4189A1814BFBF1C00ED5B0B /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; name = Makefile; path = config/Makefile; sourceTree = "<group>"; };
B4189A1914BFBF1C00ED5B0B /* menu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = menu.c; path = config/menu.c; sourceTree = "<group>"; };
B4189A1A14BFBF1C00ED5B0B /* menubox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = menubox.c; path = config/menubox.c; sourceTree = "<group>"; };
B4189A1B14BFBF1C00ED5B0B /* nconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = nconf.h; path = config/nconf.h; sourceTree = "<group>"; };
B4189A1C14BFBF1C00ED5B0B /* symbol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = symbol.c; path = config/symbol.c; sourceTree = "<group>"; };
B4189A1D14BFBF1C00ED5B0B /* textbox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = textbox.c; path = config/textbox.c; sourceTree = "<group>"; };
B4189A1E14BFBF1C00ED5B0B /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = util.c; path = config/util.c; sourceTree = "<group>"; };
B4189A1F14BFBF1C00ED5B0B /* yesno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = yesno.c; path = config/yesno.c; sourceTree = "<group>"; };
B4189A2014BFBF1C00ED5B0B /* zconf.hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zconf.hash.c; path = config/zconf.hash.c; sourceTree = "<group>"; };
B4189A2114BFBF1C00ED5B0B /* zconf.tab.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zconf.tab.c; path = config/zconf.tab.c; sourceTree = "<group>"; };
B4189A2414BFBFD100ED5B0B /* Cconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Cconfig; sourceTree = "<group>"; };
B45260B4153EFCF60018E994 /* po4a-chameleon.cfg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "po4a-chameleon.cfg"; sourceTree = "<group>"; };
B4AABE5914C3B8B90055ECD1 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
B4AABE5B14C3B8C70055ECD1 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
B4AABE5D14C3B8D70055ECD1 /* postinstall */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = postinstall; sourceTree = "<group>"; };
B4AABE5E14C3B8EF0055ECD1 /* clean_bootplist.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = clean_bootplist.pl; sourceTree = "<group>"; };
B4B3DD9015B8E347002FAA73 /* org.chameleon.Boot.nvidia.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = org.chameleon.Boot.nvidia.plist; sourceTree = "<group>"; };
B4B3DDA615B8E3CB002FAA73 /* Cconfig */ = {isa = PBXFileReference; lastKnownFileType = text; name = Cconfig; path = Sata/Cconfig; sourceTree = "<group>"; };
B4B3DDA815B8E3CB002FAA73 /* Makefile */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.make; name = Makefile; path = Sata/Makefile; sourceTree = "<group>"; };
B4B3DDA915B8E3CB002FAA73 /* Sata.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = Sata.c; path = Sata/Sata.c; sourceTree = "<group>"; };
B4B3DDC015B8E914002FAA73 /* ar */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ar; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDC215B8E914002FAA73 /* ar */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ar; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDC515B8E914002FAA73 /* bg */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = bg; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDC715B8E914002FAA73 /* bg */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = bg; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDCA15B8E914002FAA73 /* bs */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = bs; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDCC15B8E914002FAA73 /* bs */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = bs; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDCF15B8E914002FAA73 /* ca */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ca; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDD115B8E914002FAA73 /* ca */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ca; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDD315B8E914002FAA73 /* License.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = License.rtf; sourceTree = "<group>"; };
B4B3DDD615B8E914002FAA73 /* cs */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = cs; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDD815B8E914002FAA73 /* cs */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = cs; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDDB15B8E914002FAA73 /* da */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = da; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDDD15B8E914002FAA73 /* da */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = da; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDE015B8E914002FAA73 /* de */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = de; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDE215B8E914002FAA73 /* de */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = de; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDE715B8E914002FAA73 /* el */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = el; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDE915B8E914002FAA73 /* el */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = el; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDEC15B8E914002FAA73 /* en */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = en; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDEE15B8E914002FAA73 /* en */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = en; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDF115B8E914002FAA73 /* es */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = es; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDF315B8E914002FAA73 /* es */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = es; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDF615B8E914002FAA73 /* fa */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = fa; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDF815B8E914002FAA73 /* fa */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = fa; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DDFB15B8E914002FAA73 /* fi */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = fi; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DDFD15B8E914002FAA73 /* fi */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = fi; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE0015B8E914002FAA73 /* fr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = fr; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE0215B8E914002FAA73 /* fr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = fr; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE0515B8E914002FAA73 /* he */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = he; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE0715B8E914002FAA73 /* he */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = he; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE0A15B8E914002FAA73 /* hr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = hr; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE0C15B8E914002FAA73 /* hr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = hr; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE0F15B8E914002FAA73 /* hu */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = hu; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE1115B8E914002FAA73 /* hu */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = hu; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE1415B8E914002FAA73 /* id */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = id; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE1615B8E914002FAA73 /* id */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = id; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE1915B8E914002FAA73 /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = it; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE1B15B8E914002FAA73 /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = it; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE1E15B8E914002FAA73 /* ja */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ja; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE2015B8E914002FAA73 /* ja */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ja; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE2315B8E914002FAA73 /* ko */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ko; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE2515B8E914002FAA73 /* ko */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ko; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE2815B8E914002FAA73 /* mk */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = mk; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE2A15B8E914002FAA73 /* mk */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = mk; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE2D15B8E914002FAA73 /* ms */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ms; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE2F15B8E914002FAA73 /* ms */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ms; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE3215B8E914002FAA73 /* nl */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = nl; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE3415B8E914002FAA73 /* nl */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = nl; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE3715B8E914002FAA73 /* pl */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = pl; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE3915B8E914002FAA73 /* pl */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = pl; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE4615B8E914002FAA73 /* ro */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ro; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE4815B8E914002FAA73 /* ro */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ro; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE4B15B8E914002FAA73 /* ru */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ru; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE4D15B8E914002FAA73 /* ru */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = ru; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE5015B8E914002FAA73 /* sk */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = sk; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE5215B8E914002FAA73 /* sk */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = sk; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE5515B8E914002FAA73 /* sr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = sr; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE5715B8E914002FAA73 /* sr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = sr; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE5A15B8E914002FAA73 /* sv */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = sv; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE5C15B8E914002FAA73 /* sv */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = sv; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE5E15B8E914002FAA73 /* Conclusion.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = Conclusion.html; sourceTree = "<group>"; };
B4B3DE5F15B8E914002FAA73 /* Description.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = Description.html; sourceTree = "<group>"; };
B4B3DE6015B8E914002FAA73 /* Localizable.strings */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; path = Localizable.strings; sourceTree = "<group>"; };
B4B3DE6115B8E914002FAA73 /* Welcome.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = Welcome.html; sourceTree = "<group>"; };
B4B3DE6415B8E914002FAA73 /* th */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = th; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE6615B8E914002FAA73 /* th */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = th; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE6915B8E914002FAA73 /* tr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = tr; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE6B15B8E914002FAA73 /* tr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = tr; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE6E15B8E914002FAA73 /* uk */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = uk; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE7015B8E914002FAA73 /* uk */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = uk; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE7315B8E914002FAA73 /* vi */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = vi; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE7515B8E914002FAA73 /* vi */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = vi; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE7815B8E914002FAA73 /* zh_CN */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = zh_CN; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE7A15B8E914002FAA73 /* zh_CN */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = zh_CN; path = Welcome.rtfd; sourceTree = "<group>"; };
B4B3DE7D15B8E914002FAA73 /* zh_TW */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = zh_TW; path = Conclusion.rtfd; sourceTree = "<group>"; };
B4B3DE7F15B8E914002FAA73 /* zh_TW */ = {isa = PBXFileReference; lastKnownFileType = wrapper.rtfd; name = zh_TW; path = Welcome.rtfd; sourceTree = "<group>"; };
E51057BF1BD174E0002FC0A7 /* IntelBdw.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = IntelBdw.txt; path = OptionalSettings/IntelBdw.txt; sourceTree = "<group>"; };
E51057C01BD174FE002FC0A7 /* IntelSkl.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = IntelSkl.txt; path = OptionalSettings/IntelSkl.txt; sourceTree = "<group>"; };
E51057C11BD17514002FC0A7 /* CrsActiveConfig.txt */ = {isa = PBXFileReference; lastKnownFileType = text; name = CrsActiveConfig.txt; path = OptionalSettings/CrsActiveConfig.txt; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXGroup section */
08FB7794FE84155DC02AAC07 /* Chameleon */ = {
isa = PBXGroup;
children = (
B0056D8211F3868000754B65 /* APPLE_LICENSE */,
B0056DBA11F3868000754B65 /* artwork */,
369689D014BD0AF10013D77F /* BLOCKERS */,
369689D114BD0AF10013D77F /* Cconfig */,
B0056D8111F3868000754B65 /* CHANGES */,
B0056D8011F3868000754B65 /* coding_standards.txt */,
B0056D7F11F3868000754B65 /* CREDITS */,
B0056E0611F3868000754B65 /* doc */,
B0146F0011FDEFB90010765C /* GPL_V2_LICENSE */,
B0056CE511F3868000754B65 /* i386 */,
A360AA7D14136C1A00084D3F /* Make.rules */,
B0056D7D11F3868000754B65 /* Makefile */,
019DFBAF11FB94090013E8CC /* MEMTEST86_LICENSE */,
B0056D8311F3868000754B65 /* package */,
B0146EFF11FDEF550010765C /* README */,
A31301A71503CB9900E8C718 /* README.translators */,
B0056D7C11F3868000754B65 /* TODO */,
369689D214BD0B470013D77F /* version */,
);
name = Chameleon;
sourceTree = "<group>";
};
361BC70414BD979700236488 /* Icons */ = {
isa = PBXGroup;
children = (
361BC70614BD97C800236488 /* dmg.zip */,
361BC70714BD97C800236488 /* doc.zip */,
361BC70814BD97C800236488 /* i386.zip */,
361BC70914BD97C800236488 /* Icon.zip */,
361BC70A14BD97C800236488 /* pan.zip */,
361BC70B14BD97C800236488 /* pkg.zip */,
361BC70C14BD97C800236488 /* tm.zip */,
);
name = Icons;
sourceTree = "<group>";
};
361BC70514BD97A800236488 /* dmg */ = {
isa = PBXGroup;
children = (
);
name = dmg;
sourceTree = "<group>";
};
364E0DDF14BCFB6600F55E58 /* Scripts.templates */ = {
isa = PBXGroup;
children = (
B4AABE5814C3B8B90055ECD1 /* AddOption */,
364E0DE114BCFB7A00F55E58 /* InstallerLog */,
B4AABE5A14C3B8C70055ECD1 /* InstallModule */,
B4AABE5C14C3B8D70055ECD1 /* InstallTheme */,
364E0DE314BCFB7A00F55E58 /* Post */,
364E0DE514BCFB7A00F55E58 /* Pre */,
);
name = Scripts.templates;
sourceTree = "<group>";
};
364E0DE114BCFB7A00F55E58 /* InstallerLog */ = {
isa = PBXGroup;
children = (
36AB75E114BD091C005B8045 /* InstallLog.sh */,
);
name = InstallerLog;
path = Scripts.templates/InstallerLog;
sourceTree = "<group>";
};
364E0DE314BCFB7A00F55E58 /* Post */ = {
isa = PBXGroup;
children = (
36AB75E314BD0925005B8045 /* postinstall */,
);
name = Post;
path = Scripts.templates/Post;
sourceTree = "<group>";
};
364E0DE514BCFB7A00F55E58 /* Pre */ = {
isa = PBXGroup;
children = (
B4AABE5E14C3B8EF0055ECD1 /* clean_bootplist.pl */,
36AB75E414BD092D005B8045 /* preinstall */,
);
name = Pre;
path = Scripts.templates/Pre;
sourceTree = "<group>";
};
3696B2471A1D2EAB004272A6 /* default */ = {
isa = PBXGroup;
children = (
3696B2481A1D2EAB004272A6 /* background.png */,
3696B2491A1D2EAB004272A6 /* boot.png */,
3696B24A1A1D2EAB004272A6 /* device_befs.png */,
3696B24B1A1D2EAB004272A6 /* device_befs_o.png */,
3696B24C1A1D2EAB004272A6 /* device_cdrom.png */,
3696B24D1A1D2EAB004272A6 /* device_cdrom_o.png */,
3696B24E1A1D2EAB004272A6 /* device_ext3.png */,
3696B24F1A1D2EAB004272A6 /* device_ext3_o.png */,
3696B2501A1D2EAB004272A6 /* device_fat.png */,
3696B2511A1D2EAB004272A6 /* device_fat_o.png */,
3696B2521A1D2EAB004272A6 /* device_freebsd.png */,
3696B2531A1D2EAB004272A6 /* device_freebsd_o.png */,
3696B2541A1D2EAB004272A6 /* device_generic.png */,
3696B2551A1D2EAB004272A6 /* device_generic_o.png */,
3696B2561A1D2EAB004272A6 /* device_hfsfusion_mav.png */,
3696B2571A1D2EAB004272A6 /* device_hfsfusion_mav_o.png */,
3696B2581A1D2EAB004272A6 /* device_hfsfusion_yos.png */,
3696B2591A1D2EAB004272A6 /* device_hfsfusion_yos_o.png */,
3696B25A1A1D2EAB004272A6 /* device_hfsplus.png */,
3696B25B1A1D2EAB004272A6 /* device_hfsplus_leo.png */,
3696B25C1A1D2EAB004272A6 /* device_hfsplus_leo_o.png */,
3696B25D1A1D2EAB004272A6 /* device_hfsplus_lion.png */,
3696B25E1A1D2EAB004272A6 /* device_hfsplus_lion_o.png */,
3696B25F1A1D2EAB004272A6 /* device_hfsplus_mav.png */,
3696B2601A1D2EAB004272A6 /* device_hfsplus_mav_o.png */,
3696B2611A1D2EAB004272A6 /* device_hfsplus_ml.png */,
3696B2621A1D2EAB004272A6 /* device_hfsplus_ml_o.png */,
3696B2631A1D2EAB004272A6 /* device_hfsplus_o.png */,
3696B2641A1D2EAB004272A6 /* device_hfsplus_recovery.png */,
3696B2651A1D2EAB004272A6 /* device_hfsplus_recovery_o.png */,
3696B2661A1D2EAB004272A6 /* device_hfsplus_sl.png */,
3696B2671A1D2EAB004272A6 /* device_hfsplus_sl_o.png */,
3696B2681A1D2EAB004272A6 /* device_hfsplus_tiger.png */,
3696B2691A1D2EAB004272A6 /* device_hfsplus_tiger_o.png */,
3696B26A1A1D2EAB004272A6 /* device_hfsplus_yos.png */,
3696B26B1A1D2EAB004272A6 /* device_hfsplus_yos_o.png */,
3696B26C1A1D2EAB004272A6 /* device_hfsraid.png */,
3696B26D1A1D2EAB004272A6 /* device_hfsraid_leo.png */,
3696B26E1A1D2EAB004272A6 /* device_hfsraid_leo_o.png */,
3696B26F1A1D2EAB004272A6 /* device_hfsraid_lion.png */,
3696B2701A1D2EAB004272A6 /* device_hfsraid_lion_o.png */,
3696B2711A1D2EAB004272A6 /* device_hfsraid_mav.png */,
3696B2721A1D2EAB004272A6 /* device_hfsraid_mav_o.png */,
3696B2731A1D2EAB004272A6 /* device_hfsraid_ml.png */,
3696B2741A1D2EAB004272A6 /* device_hfsraid_ml_o.png */,
3696B2751A1D2EAB004272A6 /* device_hfsraid_o.png */,
3696B2761A1D2EAB004272A6 /* device_hfsraid_sl.png */,
3696B2771A1D2EAB004272A6 /* device_hfsraid_sl_o.png */,
3696B2781A1D2EAB004272A6 /* device_hfsraid_tiger.png */,
3696B2791A1D2EAB004272A6 /* device_hfsraid_tiger_o.png */,
3696B27A1A1D2EAB004272A6 /* device_hfsraid_yos.png */,
3696B27B1A1D2EAB004272A6 /* device_hfsraid_yos_o.png */,
3696B27C1A1D2EAB004272A6 /* device_ntfs.png */,
3696B27D1A1D2EAB004272A6 /* device_ntfs_o.png */,
3696B27E1A1D2EAB004272A6 /* device_openbsd.png */,
3696B27F1A1D2EAB004272A6 /* device_openbsd_o.png */,
3696B2801A1D2EAB004272A6 /* device_scroll_next.png */,
3696B2811A1D2EAB004272A6 /* device_scroll_prev.png */,
3696B2821A1D2EAB004272A6 /* device_selection.png */,
3696B2831A1D2EAB004272A6 /* font_console.png */,
3696B2841A1D2EAB004272A6 /* font_small.png */,
3696B2851A1D2EAB004272A6 /* logo.png */,
3696B2861A1D2EAB004272A6 /* menu_boot.png */,
3696B2871A1D2EAB004272A6 /* menu_help.png */,
3696B2881A1D2EAB004272A6 /* menu_ignore_caches.png */,
3696B2891A1D2EAB004272A6 /* menu_ignore_caches_disabled.png */,
3696B28A1A1D2EAB004272A6 /* menu_memory_info.png */,
3696B28B1A1D2EAB004272A6 /* menu_selection.png */,
3696B28C1A1D2EAB004272A6 /* menu_single_user.png */,
3696B28D1A1D2EAB004272A6 /* menu_single_user_disabled.png */,
3696B28E1A1D2EAB004272A6 /* menu_verbose.png */,
3696B28F1A1D2EAB004272A6 /* menu_verbose_disabled.png */,
3696B2901A1D2EAB004272A6 /* menu_video_info.png */,
3696B2911A1D2EAB004272A6 /* progress_bar.png */,
3696B2921A1D2EAB004272A6 /* progress_bar_background.png */,
3696B2931A1D2EAB004272A6 /* text_scroll_next.png */,
3696B2941A1D2EAB004272A6 /* text_scroll_prev.png */,
3696B2951A1D2EAB004272A6 /* theme.plist */,
3696B2961A1D2EAB004272A6 /* thumb.png */,
);
path = default;
sourceTree = "<group>";
};
36A9C0011A2A26C900EEDDF1 /* boot1-install */ = {
isa = PBXGroup;
children = (
36A9C0021A2A26DA00EEDDF1 /* boot1-install.c */,
36A9C0031A2A26DA00EEDDF1 /* Cconfig */,
36A9C0041A2A26DA00EEDDF1 /* Makefile */,
);
name = "boot1-install";
sourceTree = "<group>";
};
36B43E8114BCE91300D29461 /* OptionalSettings */ = {
isa = PBXGroup;
children = (
36B83692167832FC00314162 /* Audio.txt */,
36AB75E514BD095E005B8045 /* Control.txt */,
E51057C11BD17514002FC0A7 /* CrsActiveConfig.txt */,
36AB75E614BD095E005B8045 /* General.txt */,
36CF786716A0DD3D00EE5DC1 /* HDAULayout.txt */,
36B836941678330900314162 /* HDEFLayout.txt */,
361DAA8F177D152200CFBF68 /* IntelAzul.txt */,
E51057BF1BD174E0002FC0A7 /* IntelBdw.txt */,
36C9C9841739EF9900B28C9B /* IntelCapri.txt */,
E51057C01BD174FE002FC0A7 /* IntelSkl.txt */,
36AB75E714BD095E005B8045 /* KernelFlags.txt */,
36AB75E814BD095E005B8045 /* PowerManagement.txt */,
36AB75E914BD095E005B8045 /* Resolution.txt */,
36AB75EA14BD095E005B8045 /* Video.txt */,
);
name = OptionalSettings;
sourceTree = "<group>";
};
36DFBE8C16AF0A4B001A6428 /* FileNVRAM */ = {
isa = PBXGroup;
children = (
36DFBE9016AF0A89001A6428 /* Cconfig */,
36DFBE9116AF0A89001A6428 /* FileNVRAM.dylib */,
36DFBE9216AF0A89001A6428 /* Makefile */,
36DFBE8E16AF0A6B001A6428 /* include */,
);
name = FileNVRAM;
sourceTree = "<group>";
};
36DFBE8E16AF0A6B001A6428 /* include */ = {
isa = PBXGroup;
children = (
36DFBE8F16AF0A7B001A6428 /* FileNVRAM.h */,
);
name = include;
sourceTree = "<group>";
};
36F0179A16A3894A00519CEA /* HDAEnabler */ = {
isa = PBXGroup;
children = (
36F0179C16A3896A00519CEA /* Cconfig */,
36D621D316A4155C006031F3 /* hda_codec.c */,
36D621D416A4155C006031F3 /* hda_codec.h */,
36D621D016A41501006031F3 /* hda_controller.c */,
36D621D116A41501006031F3 /* hda_controller.h */,
36D621D216A41501006031F3 /* hda_enabler.c */,
36F0179B16A3895700519CEA /* include */,
36F0179E16A3896A00519CEA /* Makefile */,
);
name = HDAEnabler;
sourceTree = "<group>";
};
36F0179B16A3895700519CEA /* include */ = {
isa = PBXGroup;
children = (
);
name = include;
sourceTree = "<group>";
};
52073BC817EB130100DE2795 /* KextPatcher */ = {
isa = PBXGroup;
children = (
52073BCA17EB133F00DE2795 /* adler32.c */,
52073BCB17EB133F00DE2795 /* Cconfig */,
52073BCC17EB133F00DE2795 /* deflate.c */,
52073BCD17EB133F00DE2795 /* deflate.h */,
52073BCE17EB133F00DE2795 /* hex_editor.c */,
52073BCF17EB133F00DE2795 /* hex_editor.h */,
52073BD017EB133F00DE2795 /* inffast.c */,
52073BD117EB133F00DE2795 /* inffast.h */,
52073BD217EB133F00DE2795 /* inffixed.h */,
52073BD317EB133F00DE2795 /* inflate.c */,
52073BD417EB133F00DE2795 /* inflate.h */,
52073BD517EB133F00DE2795 /* inftrees.c */,
52073BD617EB133F00DE2795 /* inftrees.h */,
52073BD717EB133F00DE2795 /* kext_patcher.c */,
52073BD817EB133F00DE2795 /* kext_patcher.h */,
52073BD917EB133F00DE2795 /* Makefile */,
52073BDA17EB133F00DE2795 /* mkext.h */,
52073BDB17EB133F00DE2795 /* trees.c */,
52073BDC17EB133F00DE2795 /* trees.h */,
52073BDD17EB133F00DE2795 /* zconf.h */,
52073BDE17EB133F00DE2795 /* zlib.h */,
52073BDF17EB133F00DE2795 /* zutil.c */,
52073BE017EB133F00DE2795 /* zutil.h */,
);
name = KextPatcher;
sourceTree = "<group>";
};
52073BC917EB131A00DE2795 /* KernelPatcher */ = {
isa = PBXGroup;
children = (
52DF7A2D17EDFA5900A88D32 /* Cconfig */,
52DF7A2E17EDFA5900A88D32 /* kernel_patcher.c */,
52DF7A2F17EDFA5900A88D32 /* kernel_patcher.h */,
52DF7A3017EDFA5900A88D32 /* KernelPatcher.dylib */,
52DF7A3117EDFA5900A88D32 /* Makefile */,
);
name = KernelPatcher;
sourceTree = "<group>";
};
6DBAFD1713B0D4590047ED33 /* include */ = {
isa = PBXGroup;
children = (
6DBAFD1813B0D4590047ED33 /* _structs.h */,
6DBAFD1913B0D4590047ED33 /* _types.h */,
6DBAFD1A13B0D4590047ED33 /* architecture */,
6DBAFD3A13B0D4590047ED33 /* assert.h */,
6DBAFD3B13B0D4590047ED33 /* ctype.h */,
6DBAFD3C13B0D4590047ED33 /* device */,
6DBAFD3F13B0D4590047ED33 /* errno.h */,
6DBAFD4013B0D4590047ED33 /* float.h */,
6DBAFD4113B0D4590047ED33 /* hfs */,
6DBAFD4513B0D4590047ED33 /* i386 */,
6DBAFD5513B0D4590047ED33 /* inttypes.h */,
6DBAFD5613B0D4590047ED33 /* IOKit */,
6DBAFE9D13B0D4590047ED33 /* libkern */,
6DBAFEB013B0D4590047ED33 /* limits.h */,
6DBAFEB113B0D4590047ED33 /* locale.h */,
6DBAFEB213B0D4590047ED33 /* mach */,
6DBAFF4E13B0D4590047ED33 /* mach-o */,
6DBAFF6313B0D4590047ED33 /* machine */,
6DBAFF7213B0D4590047ED33 /* math.h */,
6DBAFF7313B0D4590047ED33 /* netinet */,
6DBAFF8D13B0D4590047ED33 /* netinet6 */,
6DBAFF9913B0D4590047ED33 /* runetype.h */,
6DBAFF9A13B0D4590047ED33 /* secure */,
6DBAFF9D13B0D4590047ED33 /* setjmp.h */,
6DBAFF9E13B0D4590047ED33 /* signal.h */,
6DBAFF9F13B0D4590047ED33 /* stdarg.h */,
6DBAFFA013B0D4590047ED33 /* stdbool.h */,
6DBAFFA113B0D4590047ED33 /* stddef.h */,
6DBAFFA213B0D4590047ED33 /* stdint.h */,
6DBAFFA313B0D4590047ED33 /* stdio.h */,
6DBAFFA413B0D4590047ED33 /* stdlib.h */,
6DBAFFA513B0D4590047ED33 /* string.h */,
6DBAFFA613B0D4590047ED33 /* sys */,
6DBAFFB913B0D4590047ED33 /* time.h */,
6DBAFFBA13B0D4590047ED33 /* ufs */,
6DBAFFC413B0D4590047ED33 /* unistd.h */,
6DBAFFC513B0D4590047ED33 /* unwind.h */,
);
path = include;
sourceTree = "<group>";
};
6DBAFD1A13B0D4590047ED33 /* architecture */ = {
isa = PBXGroup;
children = (
6DBAFD1B13B0D4590047ED33 /* alignment.h */,
6DBAFD1C13B0D4590047ED33 /* byte_order.h */,
6DBAFD1D13B0D4590047ED33 /* i386 */,
6DBAFD2D13B0D4590047ED33 /* ppc */,
);
path = architecture;
sourceTree = "<group>";
};
6DBAFD1D13B0D4590047ED33 /* i386 */ = {
isa = PBXGroup;
children = (
6DBAFD1E13B0D4590047ED33 /* alignment.h */,
6DBAFD1F13B0D4590047ED33 /* asm_help.h */,
6DBAFD2013B0D4590047ED33 /* byte_order.h */,
6DBAFD2113B0D4590047ED33 /* cpu.h */,
6DBAFD2213B0D4590047ED33 /* desc.h */,
6DBAFD2313B0D4590047ED33 /* fenv.h */,
6DBAFD2413B0D4590047ED33 /* fpu.h */,
6DBAFD2513B0D4590047ED33 /* frame.h */,
6DBAFD2613B0D4590047ED33 /* io.h */,
6DBAFD2713B0D4590047ED33 /* math.h */,
6DBAFD2813B0D4590047ED33 /* pio.h */,
6DBAFD2913B0D4590047ED33 /* reg_help.h */,
6DBAFD2A13B0D4590047ED33 /* sel.h */,
6DBAFD2B13B0D4590047ED33 /* table.h */,
6DBAFD2C13B0D4590047ED33 /* tss.h */,
);
path = i386;
sourceTree = "<group>";
};
6DBAFD2D13B0D4590047ED33 /* ppc */ = {
isa = PBXGroup;
children = (
6DBAFD2E13B0D4590047ED33 /* alignment.h */,
6DBAFD2F13B0D4590047ED33 /* asm_help.h */,
6DBAFD3013B0D4590047ED33 /* basic_regs.h */,
6DBAFD3113B0D4590047ED33 /* byte_order.h */,
6DBAFD3213B0D4590047ED33 /* cframe.h */,
6DBAFD3313B0D4590047ED33 /* fenv.h */,
6DBAFD3413B0D4590047ED33 /* fp_regs.h */,
6DBAFD3513B0D4590047ED33 /* macro_help.h */,
6DBAFD3613B0D4590047ED33 /* math.h */,
6DBAFD3713B0D4590047ED33 /* mode_independent_asm.h */,
6DBAFD3813B0D4590047ED33 /* pseudo_inst.h */,
6DBAFD3913B0D4590047ED33 /* reg_help.h */,
);
path = ppc;
sourceTree = "<group>";
};
6DBAFD3C13B0D4590047ED33 /* device */ = {
isa = PBXGroup;
children = (
6DBAFD3D13B0D4590047ED33 /* device_port.h */,
6DBAFD3E13B0D4590047ED33 /* device_types.h */,
);
path = device;
sourceTree = "<group>";
};
6DBAFD4113B0D4590047ED33 /* hfs */ = {
isa = PBXGroup;
children = (
6DBAFD4213B0D4590047ED33 /* hfs_encodings.h */,
6DBAFD4313B0D4590047ED33 /* hfs_format.h */,
6DBAFD4413B0D4590047ED33 /* hfs_mount.h */,
);
path = hfs;
sourceTree = "<group>";
};
6DBAFD4513B0D4590047ED33 /* i386 */ = {
isa = PBXGroup;
children = (
6DBAFD4613B0D4590047ED33 /* _limits.h */,
6DBAFD4713B0D4590047ED33 /* _param.h */,
6DBAFD4813B0D4590047ED33 /* _structs.h */,
6DBAFD4913B0D4590047ED33 /* _types.h */,
6DBAFD4A13B0D4590047ED33 /* eflags.h */,
6DBAFD4B13B0D4590047ED33 /* endian.h */,
6DBAFD4C13B0D4590047ED33 /* fasttrap_isa.h */,
6DBAFD4D13B0D4590047ED33 /* limits.h */,
6DBAFD4E13B0D4590047ED33 /* param.h */,
6DBAFD4F13B0D4590047ED33 /* profile.h */,
6DBAFD5013B0D4590047ED33 /* setjmp.h */,
6DBAFD5113B0D4590047ED33 /* signal.h */,
6DBAFD5213B0D4590047ED33 /* types.h */,
6DBAFD5313B0D4590047ED33 /* user_ldt.h */,
6DBAFD5413B0D4590047ED33 /* vmparam.h */,
);
path = i386;
sourceTree = "<group>";
};
6DBAFD5613B0D4590047ED33 /* IOKit */ = {
isa = PBXGroup;
children = (
6DBAFD5713B0D4590047ED33 /* acpi */,
6DBAFD5B13B0D4590047ED33 /* assert.h */,
6DBAFD5C13B0D4590047ED33 /* ata */,
6DBAFD6913B0D4590047ED33 /* audio */,
6DBAFD7713B0D4590047ED33 /* avc */,
6DBAFD7F13B0D4590047ED33 /* bluetooth */,
6DBAFD8813B0D4590047ED33 /* firewire */,
6DBAFDA913B0D4590047ED33 /* graphics */,
6DBAFDB513B0D4590047ED33 /* hid */,
6DBAFDBB13B0D4590047ED33 /* hidevent */,
6DBAFDBE13B0D4590047ED33 /* hidsystem */,
6DBAFDCB13B0D4590047ED33 /* i2c */,
6DBAFDCD13B0D4590047ED33 /* IOBSD.h */,
6DBAFDCE13B0D4590047ED33 /* IOBufferMemoryDescriptor.h */,
6DBAFDCF13B0D4590047ED33 /* IOCatalogue.h */,
6DBAFDD013B0D4590047ED33 /* IOCommand.h */,
6DBAFDD113B0D4590047ED33 /* IOCommandGate.h */,
6DBAFDD213B0D4590047ED33 /* IOCommandPool.h */,
6DBAFDD313B0D4590047ED33 /* IOConditionLock.h */,
6DBAFDD413B0D4590047ED33 /* IODataQueue.h */,
6DBAFDD513B0D4590047ED33 /* IODataQueueShared.h */,
6DBAFDD613B0D4590047ED33 /* IODeviceMemory.h */,
6DBAFDD713B0D4590047ED33 /* IODeviceTreeSupport.h */,
6DBAFDD813B0D4590047ED33 /* IODMACommand.h */,
6DBAFDD913B0D4590047ED33 /* IODMAController.h */,
6DBAFDDA13B0D4590047ED33 /* IODMAEventSource.h */,
6DBAFDDB13B0D4590047ED33 /* IOEventSource.h */,
6DBAFDDC13B0D4590047ED33 /* IOFilterInterruptEventSource.h */,
6DBAFDDD13B0D4590047ED33 /* IOInterleavedMemoryDescriptor.h */,
6DBAFDDE13B0D4590047ED33 /* IOInterruptController.h */,
6DBAFDDF13B0D4590047ED33 /* IOInterruptEventSource.h */,
6DBAFDE013B0D4590047ED33 /* IOInterrupts.h */,
6DBAFDE113B0D4590047ED33 /* IOKitDebug.h */,
6DBAFDE213B0D4590047ED33 /* IOKitKeys.h */,
6DBAFDE313B0D4590047ED33 /* IOKitServer.h */,
6DBAFDE413B0D4590047ED33 /* IOLib.h */,
6DBAFDE513B0D4590047ED33 /* IOLocks.h */,
6DBAFDE613B0D4590047ED33 /* IOMapper.h */,
6DBAFDE713B0D4590047ED33 /* IOMemoryCursor.h */,
6DBAFDE813B0D4590047ED33 /* IOMemoryDescriptor.h */,
6DBAFDE913B0D4590047ED33 /* IOMessage.h */,
6DBAFDEA13B0D4590047ED33 /* IOMultiMemoryDescriptor.h */,
6DBAFDEB13B0D4590047ED33 /* IONotifier.h */,
6DBAFDEC13B0D4590047ED33 /* IONVRAM.h */,
6DBAFDED13B0D4590047ED33 /* IOPlatformExpert.h */,
6DBAFDEE13B0D4590047ED33 /* IORangeAllocator.h */,
6DBAFDEF13B0D4590047ED33 /* IORegistryEntry.h */,
6DBAFDF013B0D4590047ED33 /* IOReturn.h */,
6DBAFDF113B0D4590047ED33 /* IOService.h */,
6DBAFDF213B0D4590047ED33 /* IOServicePM.h */,
6DBAFDF313B0D4590047ED33 /* IOSharedDataQueue.h */,
6DBAFDF413B0D4590047ED33 /* IOSharedLock.h */,
6DBAFDF513B0D4590047ED33 /* IOSubMemoryDescriptor.h */,
6DBAFDF613B0D4590047ED33 /* IOSyncer.h */,
6DBAFDF713B0D4590047ED33 /* IOTimerEventSource.h */,
6DBAFDF813B0D4590047ED33 /* IOTimeStamp.h */,
6DBAFDF913B0D4590047ED33 /* IOTypes.h */,
6DBAFDFA13B0D4590047ED33 /* IOUserClient.h */,
6DBAFDFB13B0D4590047ED33 /* IOWorkLoop.h */,
6DBAFDFC13B0D4590047ED33 /* ndrvsupport */,
6DBAFE0213B0D4590047ED33 /* network */,
6DBAFE1113B0D4590047ED33 /* nvram */,
6DBAFE1313B0D4590047ED33 /* OSMessageNotification.h */,
6DBAFE1413B0D4590047ED33 /* pci */,
6DBAFE1813B0D4590047ED33 /* platform */,
6DBAFE1D13B0D4590047ED33 /* power */,
6DBAFE1F13B0D4590047ED33 /* ppc */,
6DBAFE2113B0D4590047ED33 /* pwr_mgt */,
6DBAFE2B13B0D4590047ED33 /* rtc */,
6DBAFE2D13B0D4590047ED33 /* sbp2 */,
6DBAFE3713B0D4590047ED33 /* scsi */,
6DBAFE5313B0D4590047ED33 /* serial */,
6DBAFE5913B0D4590047ED33 /* storage */,
6DBAFE7B13B0D4590047ED33 /* stream */,
6DBAFE8013B0D4590047ED33 /* system.h */,
6DBAFE8113B0D4590047ED33 /* system_management */,
6DBAFE8313B0D4590047ED33 /* usb */,
);
path = IOKit;
sourceTree = "<group>";
};
6DBAFD5713B0D4590047ED33 /* acpi */ = {
isa = PBXGroup;
children = (
6DBAFD5813B0D4590047ED33 /* IOACPIPlatformDevice.h */,
6DBAFD5913B0D4590047ED33 /* IOACPIPlatformExpert.h */,
6DBAFD5A13B0D4590047ED33 /* IOACPITypes.h */,
);
path = acpi;
sourceTree = "<group>";
};
6DBAFD5C13B0D4590047ED33 /* ata */ = {
isa = PBXGroup;
children = (
6DBAFD5D13B0D4590047ED33 /* ATADeviceNub.h */,
6DBAFD5E13B0D4590047ED33 /* ATATimerEventSource.h */,
6DBAFD5F13B0D4590047ED33 /* IOATABusCommand.h */,
6DBAFD6013B0D4590047ED33 /* IOATABusInfo.h */,
6DBAFD6113B0D4590047ED33 /* IOATACommand.h */,
6DBAFD6213B0D4590047ED33 /* IOATAController.h */,
6DBAFD6313B0D4590047ED33 /* IOATADevConfig.h */,
6DBAFD6413B0D4590047ED33 /* IOATADevice.h */,
6DBAFD6513B0D4590047ED33 /* IOATARegI386.h */,
6DBAFD6613B0D4590047ED33 /* IOATATypes.h */,
6DBAFD6713B0D4590047ED33 /* IOPCIATA.h */,
6DBAFD6813B0D4590047ED33 /* MacIOATA.h */,
);
path = ata;
sourceTree = "<group>";
};
6DBAFD6913B0D4590047ED33 /* audio */ = {
isa = PBXGroup;
children = (
6DBAFD6A13B0D4590047ED33 /* IOAudioControl.h */,
6DBAFD6B13B0D4590047ED33 /* IOAudioControlUserClient.h */,
6DBAFD6C13B0D4590047ED33 /* IOAudioDebug.h */,
6DBAFD6D13B0D4590047ED33 /* IOAudioDefines.h */,
6DBAFD6E13B0D4590047ED33 /* IOAudioDevice.h */,
6DBAFD6F13B0D4590047ED33 /* IOAudioEngine.h */,
6DBAFD7013B0D4590047ED33 /* IOAudioEngineUserClient.h */,
6DBAFD7113B0D4590047ED33 /* IOAudioLevelControl.h */,
6DBAFD7213B0D4590047ED33 /* IOAudioPort.h */,
6DBAFD7313B0D4590047ED33 /* IOAudioSelectorControl.h */,
6DBAFD7413B0D4590047ED33 /* IOAudioStream.h */,
6DBAFD7513B0D4590047ED33 /* IOAudioToggleControl.h */,
6DBAFD7613B0D4590047ED33 /* IOAudioTypes.h */,
);
path = audio;
sourceTree = "<group>";
};
6DBAFD7713B0D4590047ED33 /* avc */ = {
isa = PBXGroup;
children = (
6DBAFD7813B0D4590047ED33 /* IOFireWireAVCCommand.h */,
6DBAFD7913B0D4590047ED33 /* IOFireWireAVCConsts.h */,
6DBAFD7A13B0D4590047ED33 /* IOFireWireAVCRequestSpace.h */,
6DBAFD7B13B0D4590047ED33 /* IOFireWireAVCTargetSpace.h */,
6DBAFD7C13B0D4590047ED33 /* IOFireWireAVCUnit.h */,
6DBAFD7D13B0D4590047ED33 /* IOFireWireAVCUserClientCommon.h */,
6DBAFD7E13B0D4590047ED33 /* IOFireWirePCRSpace.h */,
);
path = avc;
sourceTree = "<group>";
};
6DBAFD7F13B0D4590047ED33 /* bluetooth */ = {
isa = PBXGroup;
children = (
6DBAFD8013B0D4590047ED33 /* Bluetooth.h */,
6DBAFD8113B0D4590047ED33 /* BluetoothAssignedNumbers.h */,
6DBAFD8213B0D4590047ED33 /* IOBluetoothHCIController.h */,
6DBAFD8313B0D4590047ED33 /* IOBluetoothHCIRequest.h */,
6DBAFD8413B0D4590047ED33 /* IOBluetoothHIDDriver.h */,
6DBAFD8513B0D4590047ED33 /* IOBluetoothHIDDriverTypes.h */,
6DBAFD8613B0D4590047ED33 /* IOBluetoothInternal.h */,
6DBAFD8713B0D4590047ED33 /* IOBluetoothTypes.h */,
);
path = bluetooth;
sourceTree = "<group>";
};
6DBAFD8813B0D4590047ED33 /* firewire */ = {
isa = PBXGroup;
children = (
6DBAFD8913B0D4590047ED33 /* IOConfigDirectory.h */,
6DBAFD8A13B0D4590047ED33 /* IOFireWireBus.h */,
6DBAFD8B13B0D4590047ED33 /* IOFireWireController.h */,
6DBAFD8C13B0D4590047ED33 /* IOFireWireDevice.h */,
6DBAFD8D13B0D4590047ED33 /* IOFireWireFamilyCommon.h */,
6DBAFD8E13B0D4590047ED33 /* IOFireWireIRMAllocation.h */,
6DBAFD8F13B0D4590047ED33 /* IOFireWireLocalNode.h */,
6DBAFD9013B0D4590047ED33 /* IOFireWireMultiIsochReceive.h */,
6DBAFD9113B0D4590047ED33 /* IOFireWireNub.h */,
6DBAFD9213B0D4590047ED33 /* IOFireWirePowerManager.h */,
6DBAFD9313B0D4590047ED33 /* IOFireWireUnit.h */,
6DBAFD9413B0D4590047ED33 /* IOFWAddressSpace.h */,
6DBAFD9513B0D4590047ED33 /* IOFWAsyncStreamListener.h */,
6DBAFD9613B0D4590047ED33 /* IOFWCommand.h */,
6DBAFD9713B0D4590047ED33 /* IOFWDCL.h */,
6DBAFD9813B0D4590047ED33 /* IOFWDCLPool.h */,
6DBAFD9913B0D4590047ED33 /* IOFWDCLProgram.h */,
6DBAFD9A13B0D4590047ED33 /* IOFWDCLTranslator.h */,
6DBAFD9B13B0D4590047ED33 /* IOFWIsochChannel.h */,
6DBAFD9C13B0D4590047ED33 /* IOFWIsochPort.h */,
6DBAFD9D13B0D4590047ED33 /* IOFWLocalIsochPort.h */,
6DBAFD9E13B0D4590047ED33 /* IOFWPHYPacketListener.h */,
6DBAFD9F13B0D4590047ED33 /* IOFWPhysicalAddressSpace.h */,
6DBAFDA013B0D4590047ED33 /* IOFWPseudoAddressSpace.h */,
6DBAFDA113B0D4590047ED33 /* IOFWRegs.h */,
6DBAFDA213B0D4590047ED33 /* IOFWSimpleContiguousPhysicalAddressSpace.h */,
6DBAFDA313B0D4590047ED33 /* IOFWSimplePhysicalAddressSpace.h */,
6DBAFDA413B0D4590047ED33 /* IOFWSyncer.h */,
6DBAFDA513B0D4590047ED33 /* IOFWUserObjectExporter.h */,
6DBAFDA613B0D4590047ED33 /* IOFWUtils.h */,
6DBAFDA713B0D4590047ED33 /* IOLocalConfigDirectory.h */,
6DBAFDA813B0D4590047ED33 /* IORemoteConfigDirectory.h */,
);
path = firewire;
sourceTree = "<group>";
};
6DBAFDA913B0D4590047ED33 /* graphics */ = {
isa = PBXGroup;
children = (
6DBAFDAA13B0D4590047ED33 /* IOAccelClientConnect.h */,
6DBAFDAB13B0D4590047ED33 /* IOAccelerator.h */,
6DBAFDAC13B0D4590047ED33 /* IOAccelSurfaceConnect.h */,
6DBAFDAD13B0D4590047ED33 /* IOAccelTypes.h */,
6DBAFDAE13B0D4590047ED33 /* IODisplay.h */,
6DBAFDAF13B0D4590047ED33 /* IOFramebuffer.h */,
6DBAFDB013B0D4590047ED33 /* IOFramebufferShared.h */,
6DBAFDB113B0D4590047ED33 /* IOGraphicsDevice.h */,
6DBAFDB213B0D4590047ED33 /* IOGraphicsEngine.h */,
6DBAFDB313B0D4590047ED33 /* IOGraphicsInterfaceTypes.h */,
6DBAFDB413B0D4590047ED33 /* IOGraphicsTypes.h */,
);
path = graphics;
sourceTree = "<group>";
};
6DBAFDB513B0D4590047ED33 /* hid */ = {
isa = PBXGroup;
children = (
6DBAFDB613B0D4590047ED33 /* IOHIDDevice.h */,
6DBAFDB713B0D4590047ED33 /* IOHIDElement.h */,
6DBAFDB813B0D4590047ED33 /* IOHIDInterface.h */,
6DBAFDB913B0D4590047ED33 /* IOHIDKeys.h */,
6DBAFDBA13B0D4590047ED33 /* IOHIDUsageTables.h */,
);
path = hid;
sourceTree = "<group>";
};
6DBAFDBB13B0D4590047ED33 /* hidevent */ = {
isa = PBXGroup;
children = (
6DBAFDBC13B0D4590047ED33 /* IOHIDEventDriver.h */,
6DBAFDBD13B0D4590047ED33 /* IOHIDEventService.h */,
);
path = hidevent;
sourceTree = "<group>";
};
6DBAFDBE13B0D4590047ED33 /* hidsystem */ = {
isa = PBXGroup;
children = (
6DBAFDBF13B0D4590047ED33 /* ev_keymap.h */,
6DBAFDC013B0D4590047ED33 /* IOHIDDescriptorParser.h */,
6DBAFDC113B0D4590047ED33 /* IOHIDevice.h */,
6DBAFDC213B0D4590047ED33 /* IOHIDParameter.h */,
6DBAFDC313B0D4590047ED33 /* IOHIDShared.h */,
6DBAFDC413B0D4590047ED33 /* IOHIDSystem.h */,
6DBAFDC513B0D4590047ED33 /* IOHIDTypes.h */,
6DBAFDC613B0D4590047ED33 /* IOHIDUsageTables.h */,
6DBAFDC713B0D4590047ED33 /* IOHIKeyboard.h */,
6DBAFDC813B0D4590047ED33 /* IOHIKeyboardMapper.h */,
6DBAFDC913B0D4590047ED33 /* IOHIPointing.h */,
6DBAFDCA13B0D4590047ED33 /* IOLLEvent.h */,
);
path = hidsystem;
sourceTree = "<group>";
};
6DBAFDCB13B0D4590047ED33 /* i2c */ = {
isa = PBXGroup;
children = (
6DBAFDCC13B0D4590047ED33 /* IOI2CInterface.h */,
);
path = i2c;
sourceTree = "<group>";
};
6DBAFDFC13B0D4590047ED33 /* ndrvsupport */ = {
isa = PBXGroup;
children = (
6DBAFDFD13B0D4590047ED33 /* IOMacOSTypes.h */,
6DBAFDFE13B0D4590047ED33 /* IOMacOSVideo.h */,
6DBAFDFF13B0D4590047ED33 /* IONDRVFramebuffer.h */,
6DBAFE0013B0D4590047ED33 /* IONDRVLibraries.h */,
6DBAFE0113B0D4590047ED33 /* IONDRVSupport.h */,
);
path = ndrvsupport;
sourceTree = "<group>";
};
6DBAFE0213B0D4590047ED33 /* network */ = {
isa = PBXGroup;
children = (
6DBAFE0313B0D4590047ED33 /* IOBasicOutputQueue.h */,
6DBAFE0413B0D4590047ED33 /* IOEthernetController.h */,
6DBAFE0513B0D4590047ED33 /* IOEthernetInterface.h */,
6DBAFE0613B0D4590047ED33 /* IOEthernetStats.h */,
6DBAFE0713B0D4590047ED33 /* IOGatedOutputQueue.h */,
6DBAFE0813B0D4590047ED33 /* IOKernelDebugger.h */,
6DBAFE0913B0D4590047ED33 /* IOMbufMemoryCursor.h */,
6DBAFE0A13B0D4590047ED33 /* IONetworkController.h */,
6DBAFE0B13B0D4590047ED33 /* IONetworkData.h */,
6DBAFE0C13B0D4590047ED33 /* IONetworkInterface.h */,
6DBAFE0D13B0D4590047ED33 /* IONetworkMedium.h */,
6DBAFE0E13B0D4590047ED33 /* IONetworkStats.h */,
6DBAFE0F13B0D4590047ED33 /* IOOutputQueue.h */,
6DBAFE1013B0D4590047ED33 /* IOPacketQueue.h */,
);
path = network;
sourceTree = "<group>";
};
6DBAFE1113B0D4590047ED33 /* nvram */ = {
isa = PBXGroup;
children = (
6DBAFE1213B0D4590047ED33 /* IONVRAMController.h */,
);
path = nvram;
sourceTree = "<group>";
};
6DBAFE1413B0D4590047ED33 /* pci */ = {
isa = PBXGroup;
children = (
6DBAFE1513B0D4590047ED33 /* IOAGPDevice.h */,
6DBAFE1613B0D4590047ED33 /* IOPCIBridge.h */,
6DBAFE1713B0D4590047ED33 /* IOPCIDevice.h */,
);
path = pci;
sourceTree = "<group>";
};
6DBAFE1813B0D4590047ED33 /* platform */ = {
isa = PBXGroup;
children = (
6DBAFE1913B0D4590047ED33 /* AppleMacIO.h */,
6DBAFE1A13B0D4590047ED33 /* AppleMacIODevice.h */,
6DBAFE1B13B0D4590047ED33 /* AppleNMI.h */,
6DBAFE1C13B0D4590047ED33 /* ApplePlatformExpert.h */,
);
path = platform;
sourceTree = "<group>";
};
6DBAFE1D13B0D4590047ED33 /* power */ = {
isa = PBXGroup;
children = (
6DBAFE1E13B0D4590047ED33 /* IOPwrController.h */,
);
path = power;
sourceTree = "<group>";
};
6DBAFE1F13B0D4590047ED33 /* ppc */ = {
isa = PBXGroup;
children = (
6DBAFE2013B0D4590047ED33 /* IODBDMA.h */,
);
path = ppc;
sourceTree = "<group>";
};
6DBAFE2113B0D4590047ED33 /* pwr_mgt */ = {
isa = PBXGroup;
children = (
6DBAFE2213B0D4590047ED33 /* IOPM.h */,
6DBAFE2313B0D4590047ED33 /* IOPMDeprecated.h */,
6DBAFE2413B0D4590047ED33 /* IOPMLibDefs.h */,
6DBAFE2513B0D4590047ED33 /* IOPMPowerSource.h */,
6DBAFE2613B0D4590047ED33 /* IOPMPowerSourceList.h */,
6DBAFE2713B0D4590047ED33 /* IOPMpowerState.h */,
6DBAFE2813B0D4590047ED33 /* IOPMPrivate.h */,
6DBAFE2913B0D4590047ED33 /* IOPowerConnection.h */,
6DBAFE2A13B0D4590047ED33 /* RootDomain.h */,
);
path = pwr_mgt;
sourceTree = "<group>";
};
6DBAFE2B13B0D4590047ED33 /* rtc */ = {
isa = PBXGroup;
children = (
6DBAFE2C13B0D4590047ED33 /* IORTCController.h */,
);
path = rtc;
sourceTree = "<group>";
};
6DBAFE2D13B0D4590047ED33 /* sbp2 */ = {
isa = PBXGroup;
children = (
6DBAFE2E13B0D4590047ED33 /* IOFireWireSBP2Login.h */,
6DBAFE2F13B0D4590047ED33 /* IOFireWireSBP2LSIWorkaroundDescriptor.h */,
6DBAFE3013B0D4590047ED33 /* IOFireWireSBP2LUN.h */,
6DBAFE3113B0D4590047ED33 /* IOFireWireSBP2ManagementORB.h */,
6DBAFE3213B0D4590047ED33 /* IOFireWireSBP2ORB.h */,
6DBAFE3313B0D4590047ED33 /* IOFireWireSBP2Target.h */,
6DBAFE3413B0D4590047ED33 /* IOFireWireSBP2UserClient.h */,
6DBAFE3513B0D4590047ED33 /* IOFireWireSBP2UserClientCommon.h */,
6DBAFE3613B0D4590047ED33 /* IOFireWireSerialBusProtocolTransport.h */,
);
path = sbp2;
sourceTree = "<group>";
};
6DBAFE3713B0D4590047ED33 /* scsi */ = {
isa = PBXGroup;
children = (
6DBAFE3813B0D4590047ED33 /* IOBDServices.h */,
6DBAFE3913B0D4590047ED33 /* IOBlockStorageServices.h */,
6DBAFE3A13B0D4590047ED33 /* IOCompactDiscServices.h */,
6DBAFE3B13B0D4590047ED33 /* IODVDServices.h */,
6DBAFE3C13B0D4590047ED33 /* IOReducedBlockServices.h */,
6DBAFE3D13B0D4590047ED33 /* IOSCSIBlockCommandsDevice.h */,
6DBAFE3E13B0D4590047ED33 /* IOSCSIMultimediaCommandsDevice.h */,
6DBAFE3F13B0D4590047ED33 /* IOSCSIPeripheralDeviceNub.h */,
6DBAFE4013B0D4590047ED33 /* IOSCSIPeripheralDeviceType00.h */,
6DBAFE4113B0D4590047ED33 /* IOSCSIPeripheralDeviceType05.h */,
6DBAFE4213B0D4590047ED33 /* IOSCSIPeripheralDeviceType07.h */,
6DBAFE4313B0D4590047ED33 /* IOSCSIPeripheralDeviceType0E.h */,
6DBAFE4413B0D4590047ED33 /* IOSCSIPrimaryCommandsDevice.h */,
6DBAFE4513B0D4590047ED33 /* IOSCSIProtocolInterface.h */,
6DBAFE4613B0D4590047ED33 /* IOSCSIProtocolServices.h */,
6DBAFE4713B0D4590047ED33 /* IOSCSIReducedBlockCommandsDevice.h */,
6DBAFE4813B0D4590047ED33 /* SCSICmds_INQUIRY_Definitions.h */,
6DBAFE4913B0D4590047ED33 /* SCSICmds_MODE_Definitions.h */,
6DBAFE4A13B0D4590047ED33 /* SCSICmds_READ_CAPACITY_Definitions.h */,
6DBAFE4B13B0D4590047ED33 /* SCSICmds_REPORT_LUNS_Definitions.h */,
6DBAFE4C13B0D4590047ED33 /* SCSICmds_REQUEST_SENSE_Defs.h */,
6DBAFE4D13B0D4590047ED33 /* SCSICommandDefinitions.h */,
6DBAFE4E13B0D4590047ED33 /* SCSICommandOperationCodes.h */,
6DBAFE4F13B0D4590047ED33 /* SCSIPort.h */,
6DBAFE5013B0D4590047ED33 /* SCSITask.h */,
6DBAFE5113B0D4590047ED33 /* spi */,
);
path = scsi;
sourceTree = "<group>";
};
6DBAFE5113B0D4590047ED33 /* spi */ = {
isa = PBXGroup;
children = (
6DBAFE5213B0D4590047ED33 /* IOSCSIParallelInterfaceController.h */,
);
path = spi;
sourceTree = "<group>";
};
6DBAFE5313B0D4590047ED33 /* serial */ = {
isa = PBXGroup;
children = (
6DBAFE5413B0D4590047ED33 /* IOModemSerialStreamSync.h */,
6DBAFE5513B0D4590047ED33 /* IORS232SerialStreamSync.h */,
6DBAFE5613B0D4590047ED33 /* IOSerialDriverSync.h */,
6DBAFE5713B0D4590047ED33 /* IOSerialKeys.h */,
6DBAFE5813B0D4590047ED33 /* IOSerialStreamSync.h */,
);
path = serial;
sourceTree = "<group>";
};
6DBAFE5913B0D4590047ED33 /* storage */ = {
isa = PBXGroup;
children = (
6DBAFE5A13B0D4590047ED33 /* ata */,
6DBAFE5D13B0D4590047ED33 /* IOAppleLabelScheme.h */,
6DBAFE5E13B0D4590047ED33 /* IOApplePartitionScheme.h */,
6DBAFE5F13B0D4590047ED33 /* IOBDBlockStorageDevice.h */,
6DBAFE6013B0D4590047ED33 /* IOBDBlockStorageDriver.h */,
6DBAFE6113B0D4590047ED33 /* IOBDMedia.h */,
6DBAFE6213B0D4590047ED33 /* IOBDMediaBSDClient.h */,
6DBAFE6313B0D4590047ED33 /* IOBDTypes.h */,
6DBAFE6413B0D4590047ED33 /* IOBlockStorageDevice.h */,
6DBAFE6513B0D4590047ED33 /* IOBlockStorageDriver.h */,
6DBAFE6613B0D4590047ED33 /* IOCDBlockStorageDevice.h */,
6DBAFE6713B0D4590047ED33 /* IOCDBlockStorageDriver.h */,
6DBAFE6813B0D4590047ED33 /* IOCDMedia.h */,
6DBAFE6913B0D4590047ED33 /* IOCDMediaBSDClient.h */,
6DBAFE6A13B0D4590047ED33 /* IOCDPartitionScheme.h */,
6DBAFE6B13B0D4590047ED33 /* IOCDTypes.h */,
6DBAFE6C13B0D4590047ED33 /* IODVDBlockStorageDevice.h */,
6DBAFE6D13B0D4590047ED33 /* IODVDBlockStorageDriver.h */,
6DBAFE6E13B0D4590047ED33 /* IODVDMedia.h */,
6DBAFE6F13B0D4590047ED33 /* IODVDMediaBSDClient.h */,
6DBAFE7013B0D4590047ED33 /* IODVDTypes.h */,
6DBAFE7113B0D4590047ED33 /* IOFDiskPartitionScheme.h */,
6DBAFE7213B0D4590047ED33 /* IOFilterScheme.h */,
6DBAFE7313B0D4590047ED33 /* IOFireWireStorageCharacteristics.h */,
6DBAFE7413B0D4590047ED33 /* IOGUIDPartitionScheme.h */,
6DBAFE7513B0D4590047ED33 /* IOMedia.h */,
6DBAFE7613B0D4590047ED33 /* IOMediaBSDClient.h */,
6DBAFE7713B0D4590047ED33 /* IOPartitionScheme.h */,
6DBAFE7813B0D4590047ED33 /* IOStorage.h */,
6DBAFE7913B0D4590047ED33 /* IOStorageDeviceCharacteristics.h */,
6DBAFE7A13B0D4590047ED33 /* IOStorageProtocolCharacteristics.h */,
);
path = storage;
sourceTree = "<group>";
};
6DBAFE5A13B0D4590047ED33 /* ata */ = {
isa = PBXGroup;
children = (
6DBAFE5B13B0D4590047ED33 /* IOATAPIProtocolTransport.h */,
6DBAFE5C13B0D4590047ED33 /* IOATAStorageDefines.h */,
);
path = ata;
sourceTree = "<group>";
};
6DBAFE7B13B0D4590047ED33 /* stream */ = {
isa = PBXGroup;
children = (
6DBAFE7C13B0D4590047ED33 /* IOStream.h */,
6DBAFE7D13B0D4590047ED33 /* IOStreamFamily.h */,
6DBAFE7E13B0D4590047ED33 /* IOStreamShared.h */,
6DBAFE7F13B0D4590047ED33 /* IOStreamUserClient.h */,
);
path = stream;
sourceTree = "<group>";
};
6DBAFE8113B0D4590047ED33 /* system_management */ = {
isa = PBXGroup;
children = (
6DBAFE8213B0D4590047ED33 /* IOWatchDogTimer.h */,
);
path = system_management;
sourceTree = "<group>";
};
6DBAFE8313B0D4590047ED33 /* usb */ = {
isa = PBXGroup;
children = (
6DBAFE8413B0D4590047ED33 /* IOUFIStorageServices.h */,
6DBAFE8513B0D4590047ED33 /* IOUSBBus.h */,
6DBAFE8613B0D4590047ED33 /* IOUSBCommand.h */,
6DBAFE8713B0D4590047ED33 /* IOUSBCompositeDriver.h */,
6DBAFE8813B0D4590047ED33 /* IOUSBController.h */,
6DBAFE8913B0D4590047ED33 /* IOUSBControllerListElement.h */,
6DBAFE8A13B0D4590047ED33 /* IOUSBControllerV2.h */,
6DBAFE8B13B0D4590047ED33 /* IOUSBControllerV3.h */,
6DBAFE8C13B0D4590047ED33 /* IOUSBDevice.h */,
6DBAFE8D13B0D4590047ED33 /* IOUSBHIDDriver.h */,
6DBAFE8E13B0D4590047ED33 /* IOUSBHubDevice.h */,
6DBAFE8F13B0D4590047ED33 /* IOUSBHubPolicyMaker.h */,
6DBAFE9013B0D4590047ED33 /* IOUSBInterface.h */,
6DBAFE9113B0D4590047ED33 /* IOUSBLog.h */,
6DBAFE9213B0D4590047ED33 /* IOUSBMassStorageClass.h */,
6DBAFE9313B0D4590047ED33 /* IOUSBMassStorageUFISubclass.h */,
6DBAFE9413B0D4590047ED33 /* IOUSBNub.h */,
6DBAFE9513B0D4590047ED33 /* IOUSBPipe.h */,
6DBAFE9613B0D4590047ED33 /* IOUSBRootHubDevice.h */,
6DBAFE9713B0D4590047ED33 /* IOUSBUserClient.h */,
6DBAFE9813B0D4590047ED33 /* IOUSBWorkLoop.h */,
6DBAFE9913B0D4590047ED33 /* USB.h */,
6DBAFE9A13B0D4590047ED33 /* USBHub.h */,
6DBAFE9B13B0D4590047ED33 /* USBSpec.h */,
6DBAFE9C13B0D4590047ED33 /* USBTracepoints.h */,
);
path = usb;
sourceTree = "<group>";
};
6DBAFE9D13B0D4590047ED33 /* libkern */ = {
isa = PBXGroup;
children = (
6DBAFE9E13B0D4590047ED33 /* _OSByteOrder.h */,
6DBAFE9F13B0D4590047ED33 /* crypto */,
6DBAFEA213B0D4590047ED33 /* i386 */,
6DBAFEA513B0D4590047ED33 /* machine */,
6DBAFEA713B0D4590047ED33 /* OSAtomic.h */,
6DBAFEA813B0D4590047ED33 /* OSByteOrder.h */,
6DBAFEA913B0D4590047ED33 /* OSCacheControl.h */,
6DBAFEAA13B0D4590047ED33 /* OSDebug.h */,
6DBAFEAB13B0D4590047ED33 /* OSKextLib.h */,
6DBAFEAC13B0D4590047ED33 /* OSReturn.h */,
6DBAFEAD13B0D4590047ED33 /* OSTypes.h */,
6DBAFEAE13B0D4590047ED33 /* ppc */,
);
path = libkern;
sourceTree = "<group>";
};
6DBAFE9F13B0D4590047ED33 /* crypto */ = {
isa = PBXGroup;
children = (
6DBAFEA013B0D4590047ED33 /* md5.h */,
6DBAFEA113B0D4590047ED33 /* sha1.h */,
);
path = crypto;
sourceTree = "<group>";
};
6DBAFEA213B0D4590047ED33 /* i386 */ = {
isa = PBXGroup;
children = (
6DBAFEA313B0D4590047ED33 /* _OSByteOrder.h */,
6DBAFEA413B0D4590047ED33 /* OSByteOrder.h */,
);
path = i386;
sourceTree = "<group>";
};
6DBAFEA513B0D4590047ED33 /* machine */ = {
isa = PBXGroup;
children = (
6DBAFEA613B0D4590047ED33 /* OSByteOrder.h */,
);
path = machine;
sourceTree = "<group>";
};
6DBAFEAE13B0D4590047ED33 /* ppc */ = {
isa = PBXGroup;
children = (
6DBAFEAF13B0D4590047ED33 /* OSByteOrder.h */,
);
path = ppc;
sourceTree = "<group>";
};
6DBAFEB213B0D4590047ED33 /* mach */ = {
isa = PBXGroup;
children = (
6DBAFEB313B0D4590047ED33 /* audit_triggers.defs */,
6DBAFEB413B0D4590047ED33 /* boolean.h */,
6DBAFEB513B0D4590047ED33 /* bootstrap.h */,
6DBAFEB613B0D4590047ED33 /* clock.defs */,
6DBAFEB713B0D4590047ED33 /* clock.h */,
6DBAFEB813B0D4590047ED33 /* clock_priv.defs */,
6DBAFEB913B0D4590047ED33 /* clock_priv.h */,
6DBAFEBA13B0D4590047ED33 /* clock_reply.defs */,
6DBAFEBB13B0D4590047ED33 /* clock_reply.h */,
6DBAFEBC13B0D4590047ED33 /* clock_types.defs */,
6DBAFEBD13B0D4590047ED33 /* clock_types.h */,
6DBAFEBE13B0D4590047ED33 /* error.h */,
6DBAFEBF13B0D4590047ED33 /* exc.defs */,
6DBAFEC013B0D4590047ED33 /* exc.h */,
6DBAFEC113B0D4590047ED33 /* exception.h */,
6DBAFEC213B0D4590047ED33 /* exception_types.h */,
6DBAFEC313B0D4590047ED33 /* host_info.h */,
6DBAFEC413B0D4590047ED33 /* host_notify.h */,
6DBAFEC513B0D4590047ED33 /* host_notify_reply.defs */,
6DBAFEC613B0D4590047ED33 /* host_priv.defs */,
6DBAFEC713B0D4590047ED33 /* host_priv.h */,
6DBAFEC813B0D4590047ED33 /* host_reboot.h */,
6DBAFEC913B0D4590047ED33 /* host_security.defs */,
6DBAFECA13B0D4590047ED33 /* host_security.h */,
6DBAFECB13B0D4590047ED33 /* host_special_ports.h */,
6DBAFECC13B0D4590047ED33 /* i386 */,
6DBAFEDE13B0D4590047ED33 /* kern_return.h */,
6DBAFEDF13B0D4590047ED33 /* kmod.h */,
6DBAFEE013B0D4590047ED33 /* ledger.defs */,
6DBAFEE113B0D4590047ED33 /* ledger.h */,
6DBAFEE213B0D4590047ED33 /* lock_set.defs */,
6DBAFEE313B0D4590047ED33 /* lock_set.h */,
6DBAFEE413B0D4590047ED33 /* mach.h */,
6DBAFEE513B0D4590047ED33 /* mach_error.h */,
6DBAFEE613B0D4590047ED33 /* mach_exc.defs */,
6DBAFEE713B0D4590047ED33 /* mach_host.defs */,
6DBAFEE813B0D4590047ED33 /* mach_host.h */,
6DBAFEE913B0D4590047ED33 /* mach_init.h */,
6DBAFEEA13B0D4590047ED33 /* mach_interface.h */,
6DBAFEEB13B0D4590047ED33 /* mach_param.h */,
6DBAFEEC13B0D4590047ED33 /* mach_port.defs */,
6DBAFEED13B0D4590047ED33 /* mach_port.h */,
6DBAFEEE13B0D4590047ED33 /* mach_syscalls.h */,
6DBAFEEF13B0D4590047ED33 /* mach_time.h */,
6DBAFEF013B0D4590047ED33 /* mach_traps.h */,
6DBAFEF113B0D4590047ED33 /* mach_types.defs */,
6DBAFEF213B0D4590047ED33 /* mach_types.h */,
6DBAFEF313B0D4590047ED33 /* mach_vm.defs */,
6DBAFEF413B0D4590047ED33 /* mach_vm.h */,
6DBAFEF513B0D4590047ED33 /* machine */,
6DBAFF0413B0D4590047ED33 /* machine.h */,
6DBAFF0513B0D4590047ED33 /* memory_object_types.h */,
6DBAFF0613B0D4590047ED33 /* message.h */,
6DBAFF0713B0D4590047ED33 /* mig.h */,
6DBAFF0813B0D4590047ED33 /* mig_errors.h */,
6DBAFF0913B0D4590047ED33 /* ndr.h */,
6DBAFF0A13B0D4590047ED33 /* notify.defs */,
6DBAFF0B13B0D4590047ED33 /* notify.h */,
6DBAFF0C13B0D4590047ED33 /* policy.h */,
6DBAFF0D13B0D4590047ED33 /* port.h */,
6DBAFF0E13B0D4590047ED33 /* port_obj.h */,
6DBAFF0F13B0D4590047ED33 /* ppc */,
6DBAFF2013B0D4590047ED33 /* processor.defs */,
6DBAFF2113B0D4590047ED33 /* processor.h */,
6DBAFF2213B0D4590047ED33 /* processor_info.h */,
6DBAFF2313B0D4590047ED33 /* processor_set.defs */,
6DBAFF2413B0D4590047ED33 /* processor_set.h */,
6DBAFF2513B0D4590047ED33 /* rpc.h */,
6DBAFF2613B0D4590047ED33 /* sdt.h */,
6DBAFF2713B0D4590047ED33 /* security.defs */,
6DBAFF2813B0D4590047ED33 /* semaphore.h */,
6DBAFF2913B0D4590047ED33 /* shared_memory_server.h */,
6DBAFF2A13B0D4590047ED33 /* shared_region.h */,
6DBAFF2B13B0D4590047ED33 /* std_types.defs */,
6DBAFF2C13B0D4590047ED33 /* std_types.h */,
6DBAFF2D13B0D4590047ED33 /* sync.h */,
6DBAFF2E13B0D4590047ED33 /* sync_policy.h */,
6DBAFF2F13B0D4590047ED33 /* task.defs */,
6DBAFF3013B0D4590047ED33 /* task.h */,
6DBAFF3113B0D4590047ED33 /* task_access.defs */,
6DBAFF3213B0D4590047ED33 /* task_info.h */,
6DBAFF3313B0D4590047ED33 /* task_ledger.h */,
6DBAFF3413B0D4590047ED33 /* task_policy.h */,
6DBAFF3513B0D4590047ED33 /* task_special_ports.h */,
6DBAFF3613B0D4590047ED33 /* thread_act.defs */,
6DBAFF3713B0D4590047ED33 /* thread_act.h */,
6DBAFF3813B0D4590047ED33 /* thread_info.h */,
6DBAFF3913B0D4590047ED33 /* thread_policy.h */,
6DBAFF3A13B0D4590047ED33 /* thread_special_ports.h */,
6DBAFF3B13B0D4590047ED33 /* thread_status.h */,
6DBAFF3C13B0D4590047ED33 /* thread_switch.h */,
6DBAFF3D13B0D4590047ED33 /* time_value.h */,
6DBAFF3E13B0D4590047ED33 /* vm_attributes.h */,
6DBAFF3F13B0D4590047ED33 /* vm_behavior.h */,
6DBAFF4013B0D4590047ED33 /* vm_inherit.h */,
6DBAFF4113B0D4590047ED33 /* vm_map.defs */,
6DBAFF4213B0D4590047ED33 /* vm_map.h */,
6DBAFF4313B0D4590047ED33 /* vm_param.h */,
6DBAFF4413B0D4590047ED33 /* vm_prot.h */,
6DBAFF4513B0D4590047ED33 /* vm_purgable.h */,
6DBAFF4613B0D4590047ED33 /* vm_region.h */,
6DBAFF4713B0D4590047ED33 /* vm_statistics.h */,
6DBAFF4813B0D4590047ED33 /* vm_sync.h */,
6DBAFF4913B0D4590047ED33 /* vm_task.h */,
6DBAFF4A13B0D4590047ED33 /* vm_types.h */,
6DBAFF4B13B0D4590047ED33 /* x86_64 */,
);
path = mach;
sourceTree = "<group>";
};
6DBAFECC13B0D4590047ED33 /* i386 */ = {
isa = PBXGroup;
children = (
6DBAFECD13B0D4590047ED33 /* _structs.h */,
6DBAFECE13B0D4590047ED33 /* asm.h */,
6DBAFECF13B0D4590047ED33 /* boolean.h */,
6DBAFED013B0D4590047ED33 /* exception.h */,
6DBAFED113B0D4590047ED33 /* fp_reg.h */,
6DBAFED213B0D4590047ED33 /* kern_return.h */,
6DBAFED313B0D4590047ED33 /* machine_types.defs */,
6DBAFED413B0D4590047ED33 /* ndr_def.h */,
6DBAFED513B0D4590047ED33 /* processor_info.h */,
6DBAFED613B0D4590047ED33 /* rpc.h */,
6DBAFED713B0D4590047ED33 /* sdt_isa.h */,
6DBAFED813B0D4590047ED33 /* task.h */,
6DBAFED913B0D4590047ED33 /* thread_act.h */,
6DBAFEDA13B0D4590047ED33 /* thread_state.h */,
6DBAFEDB13B0D4590047ED33 /* thread_status.h */,
6DBAFEDC13B0D4590047ED33 /* vm_param.h */,
6DBAFEDD13B0D4590047ED33 /* vm_types.h */,
);
path = i386;
sourceTree = "<group>";
};
6DBAFEF513B0D4590047ED33 /* machine */ = {
isa = PBXGroup;
children = (
6DBAFEF613B0D4590047ED33 /* asm.h */,
6DBAFEF713B0D4590047ED33 /* boolean.h */,
6DBAFEF813B0D4590047ED33 /* exception.h */,
6DBAFEF913B0D4590047ED33 /* kern_return.h */,
6DBAFEFA13B0D4590047ED33 /* machine_types.defs */,
6DBAFEFB13B0D4590047ED33 /* ndr_def.h */,
6DBAFEFC13B0D4590047ED33 /* processor_info.h */,
6DBAFEFD13B0D4590047ED33 /* rpc.h */,
6DBAFEFE13B0D4590047ED33 /* sdt.h */,
6DBAFEFF13B0D4590047ED33 /* sdt_isa.h */,
6DBAFF0013B0D4590047ED33 /* thread_state.h */,
6DBAFF0113B0D4590047ED33 /* thread_status.h */,
6DBAFF0213B0D4590047ED33 /* vm_param.h */,
6DBAFF0313B0D4590047ED33 /* vm_types.h */,
);
path = machine;
sourceTree = "<group>";
};
6DBAFF0F13B0D4590047ED33 /* ppc */ = {
isa = PBXGroup;
children = (
6DBAFF1013B0D4590047ED33 /* _structs.h */,
6DBAFF1113B0D4590047ED33 /* asm.h */,
6DBAFF1213B0D4590047ED33 /* boolean.h */,
6DBAFF1313B0D4590047ED33 /* exception.h */,
6DBAFF1413B0D4590047ED33 /* kern_return.h */,
6DBAFF1513B0D4590047ED33 /* machine_types.defs */,
6DBAFF1613B0D4590047ED33 /* ndr_def.h */,
6DBAFF1713B0D4590047ED33 /* processor_info.h */,
6DBAFF1813B0D4590047ED33 /* rpc.h */,
6DBAFF1913B0D4590047ED33 /* sdt_isa.h */,
6DBAFF1A13B0D4590047ED33 /* task.h */,
6DBAFF1B13B0D4590047ED33 /* thread_act.h */,
6DBAFF1C13B0D4590047ED33 /* thread_state.h */,
6DBAFF1D13B0D4590047ED33 /* thread_status.h */,
6DBAFF1E13B0D4590047ED33 /* vm_param.h */,
6DBAFF1F13B0D4590047ED33 /* vm_types.h */,
);
path = ppc;
sourceTree = "<group>";
};
6DBAFF4B13B0D4590047ED33 /* x86_64 */ = {
isa = PBXGroup;
children = (
6DBAFF4C13B0D4590047ED33 /* task.h */,
6DBAFF4D13B0D4590047ED33 /* thread_act.h */,
);
path = x86_64;
sourceTree = "<group>";
};
6DBAFF4E13B0D4590047ED33 /* mach-o */ = {
isa = PBXGroup;
children = (
6DBAFF4F13B0D4590047ED33 /* arch.h */,
6DBAFF5013B0D4590047ED33 /* compact_unwind_encoding.h */,
6DBAFF5113B0D4590047ED33 /* dyld.h */,
6DBAFF5213B0D4590047ED33 /* dyld_images.h */,
6DBAFF5313B0D4590047ED33 /* fat.h */,
6DBAFF5413B0D4590047ED33 /* getsect.h */,
6DBAFF5513B0D4590047ED33 /* i386 */,
6DBAFF5713B0D4590047ED33 /* ldsyms.h */,
6DBAFF5813B0D4590047ED33 /* loader.h */,
6DBAFF5913B0D4590047ED33 /* nlist.h */,
6DBAFF5A13B0D4590047ED33 /* ppc */,
6DBAFF5D13B0D4590047ED33 /* ranlib.h */,
6DBAFF5E13B0D4590047ED33 /* reloc.h */,
6DBAFF5F13B0D4590047ED33 /* stab.h */,
6DBAFF6013B0D4590047ED33 /* swap.h */,
6DBAFF6113B0D4590047ED33 /* x86_64 */,
);
path = "mach-o";
sourceTree = "<group>";
};
6DBAFF5513B0D4590047ED33 /* i386 */ = {
isa = PBXGroup;
children = (
6DBAFF5613B0D4590047ED33 /* swap.h */,
);
path = i386;
sourceTree = "<group>";
};
6DBAFF5A13B0D4590047ED33 /* ppc */ = {
isa = PBXGroup;
children = (
6DBAFF5B13B0D4590047ED33 /* reloc.h */,
6DBAFF5C13B0D4590047ED33 /* swap.h */,
);
path = ppc;
sourceTree = "<group>";
};
6DBAFF6113B0D4590047ED33 /* x86_64 */ = {
isa = PBXGroup;
children = (
6DBAFF6213B0D4590047ED33 /* reloc.h */,
);
path = x86_64;
sourceTree = "<group>";
};
6DBAFF6313B0D4590047ED33 /* machine */ = {
isa = PBXGroup;
children = (
6DBAFF6413B0D4590047ED33 /* _limits.h */,
6DBAFF6513B0D4590047ED33 /* _param.h */,
6DBAFF6613B0D4590047ED33 /* _structs.h */,
6DBAFF6713B0D4590047ED33 /* _types.h */,
6DBAFF6813B0D4590047ED33 /* byte_order.h */,
6DBAFF6913B0D4590047ED33 /* endian.h */,
6DBAFF6A13B0D4590047ED33 /* fasttrap_isa.h */,
6DBAFF6B13B0D4590047ED33 /* limits.h */,
6DBAFF6C13B0D4590047ED33 /* param.h */,
6DBAFF6D13B0D4590047ED33 /* profile.h */,
6DBAFF6E13B0D4590047ED33 /* setjmp.h */,
6DBAFF6F13B0D4590047ED33 /* signal.h */,
6DBAFF7013B0D4590047ED33 /* types.h */,
6DBAFF7113B0D4590047ED33 /* vmparam.h */,
);
path = machine;
sourceTree = "<group>";
};
6DBAFF7313B0D4590047ED33 /* netinet */ = {
isa = PBXGroup;
children = (
6DBAFF7413B0D4590047ED33 /* bootp.h */,
6DBAFF7513B0D4590047ED33 /* icmp6.h */,
6DBAFF7613B0D4590047ED33 /* icmp_var.h */,
6DBAFF7713B0D4590047ED33 /* if_ether.h */,
6DBAFF7813B0D4590047ED33 /* igmp.h */,
6DBAFF7913B0D4590047ED33 /* igmp_var.h */,
6DBAFF7A13B0D4590047ED33 /* in.h */,
6DBAFF7B13B0D4590047ED33 /* in_pcb.h */,
6DBAFF7C13B0D4590047ED33 /* in_systm.h */,
6DBAFF7D13B0D4590047ED33 /* in_var.h */,
6DBAFF7E13B0D4590047ED33 /* ip.h */,
6DBAFF7F13B0D4590047ED33 /* ip6.h */,
6DBAFF8013B0D4590047ED33 /* ip_fw.h */,
6DBAFF8113B0D4590047ED33 /* ip_fw2.h */,
6DBAFF8213B0D4590047ED33 /* ip_icmp.h */,
6DBAFF8313B0D4590047ED33 /* ip_mroute.h */,
6DBAFF8413B0D4590047ED33 /* ip_var.h */,
6DBAFF8513B0D4590047ED33 /* tcp.h */,
6DBAFF8613B0D4590047ED33 /* tcp_fsm.h */,
6DBAFF8713B0D4590047ED33 /* tcp_seq.h */,
6DBAFF8813B0D4590047ED33 /* tcp_timer.h */,
6DBAFF8913B0D4590047ED33 /* tcp_var.h */,
6DBAFF8A13B0D4590047ED33 /* tcpip.h */,
6DBAFF8B13B0D4590047ED33 /* udp.h */,
6DBAFF8C13B0D4590047ED33 /* udp_var.h */,
);
path = netinet;
sourceTree = "<group>";
};
6DBAFF8D13B0D4590047ED33 /* netinet6 */ = {
isa = PBXGroup;
children = (
6DBAFF8E13B0D4590047ED33 /* ah.h */,
6DBAFF8F13B0D4590047ED33 /* esp.h */,
6DBAFF9013B0D4590047ED33 /* in6.h */,
6DBAFF9113B0D4590047ED33 /* in6_var.h */,
6DBAFF9213B0D4590047ED33 /* ip6_fw.h */,
6DBAFF9313B0D4590047ED33 /* ip6_mroute.h */,
6DBAFF9413B0D4590047ED33 /* ipcomp.h */,
6DBAFF9513B0D4590047ED33 /* ipsec.h */,
6DBAFF9613B0D4590047ED33 /* nd6.h */,
6DBAFF9713B0D4590047ED33 /* pim6.h */,
6DBAFF9813B0D4590047ED33 /* raw_ip6.h */,
);
path = netinet6;
sourceTree = "<group>";
};
6DBAFF9A13B0D4590047ED33 /* secure */ = {
isa = PBXGroup;
children = (
6DBAFF9B13B0D4590047ED33 /* _common.h */,
6DBAFF9C13B0D4590047ED33 /* _stdio.h */,
);
path = secure;
sourceTree = "<group>";
};
6DBAFFA613B0D4590047ED33 /* sys */ = {
isa = PBXGroup;
children = (
6DBAFFA713B0D4590047ED33 /* _endian.h */,
6DBAFFA813B0D4590047ED33 /* _select.h */,
6DBAFFA913B0D4590047ED33 /* _structs.h */,
6DBAFFAA13B0D4590047ED33 /* _types.h */,
6DBAFFAB13B0D4590047ED33 /* appleapiopts.h */,
6DBAFFAC13B0D4590047ED33 /* buf.h */,
6DBAFFAD13B0D4590047ED33 /* cdefs.h */,
6DBAFFAE13B0D4590047ED33 /* disk.h */,
6DBAFFAF13B0D4590047ED33 /* kernel_types.h */,
6DBAFFB013B0D4590047ED33 /* param.h */,
6DBAFFB113B0D4590047ED33 /* reboot.h */,
6DBAFFB213B0D4590047ED33 /* select.h */,
6DBAFFB313B0D4590047ED33 /* socket.h */,
6DBAFFB413B0D4590047ED33 /* syscall.h */,
6DBAFFB513B0D4590047ED33 /* syslimits.h */,
6DBAFFB613B0D4590047ED33 /* time.h */,
6DBAFFB713B0D4590047ED33 /* types.h */,
6DBAFFB813B0D4590047ED33 /* unistd.h */,
);
path = sys;
sourceTree = "<group>";
};
6DBAFFBA13B0D4590047ED33 /* ufs */ = {
isa = PBXGroup;
children = (
6DBAFFBB13B0D4590047ED33 /* ffs */,
6DBAFFBE13B0D4590047ED33 /* ufs */,
);
path = ufs;
sourceTree = "<group>";
};
6DBAFFBB13B0D4590047ED33 /* ffs */ = {
isa = PBXGroup;
children = (
6DBAFFBC13B0D4590047ED33 /* ffs_extern.h */,
6DBAFFBD13B0D4590047ED33 /* fs.h */,
);
path = ffs;
sourceTree = "<group>";
};
6DBAFFBE13B0D4590047ED33 /* ufs */ = {
isa = PBXGroup;
children = (
6DBAFFBF13B0D4590047ED33 /* dinode.h */,
6DBAFFC013B0D4590047ED33 /* dir.h */,
6DBAFFC113B0D4590047ED33 /* inode.h */,
6DBAFFC213B0D4590047ED33 /* ufs_extern.h */,
6DBAFFC313B0D4590047ED33 /* ufsmount.h */,
);
path = ufs;
sourceTree = "<group>";
};
A354B6261495124F00D81AA5 /* Main */ = {
isa = PBXGroup;
children = (
A354B6271495124F00D81AA5 /* ESPpostinstall */,
A354B62A1495124F00D81AA5 /* Standardpostinstall */,
);
path = Main;
sourceTree = "<group>";
};
A354B62B149514DE00D81AA5 /* Sub */ = {
isa = PBXGroup;
children = (
A354B62C149514DE00D81AA5 /* CheckDiskMicrocode.sh */,
A354B62D149514DE00D81AA5 /* CheckFatType.sh */,
A354B62E149514DE00D81AA5 /* CheckGRUBLinuxLoader.sh */,
A354B62F149514DE00D81AA5 /* CheckPartitionScheme.sh */,
A354B630149514DE00D81AA5 /* CheckPreviousChameleon.sh */,
A354B631149514DE00D81AA5 /* CheckProceed.sh */,
A354B632149514DE00D81AA5 /* CheckWindowsDiskSignature.sh */,
A354B634149514DE00D81AA5 /* MountESP.sh */,
A354B635149514DE00D81AA5 /* patch */,
A354B636149514DE00D81AA5 /* SetActivePartition.sh */,
A354B637149514DE00D81AA5 /* UnMountEFIvolumes.sh */,
A354B638149514DE00D81AA5 /* WriteChameleonStage0.sh */,
A354B639149514DE00D81AA5 /* WriteChameleonStage1.sh */,
A354B63A149514DE00D81AA5 /* WriteChameleonStage2.sh */,
);
path = Sub;
sourceTree = "<group>";
};
A3561C721413FD7800E9B51E /* fdisk */ = {
isa = PBXGroup;
children = (
A3561C731413FD7800E9B51E /* auto.c */,
A3561C741413FD7800E9B51E /* auto.h */,
A3561C751413FD7800E9B51E /* Cconfig */,
A3561C761413FD7800E9B51E /* cmd.c */,
A3561C771413FD7800E9B51E /* cmd.h */,
A3561C781413FD7800E9B51E /* disk.c */,
A3561C791413FD7800E9B51E /* disk.h */,
A3561C7A1413FD7800E9B51E /* fdisk.8 */,
A3561C7B1413FD7800E9B51E /* fdisk.c */,
A3561C7C1413FD7800E9B51E /* getrawpartition.c */,
A3561C7D1413FD7800E9B51E /* Makefile */,
A3561C7E1413FD7800E9B51E /* mbr.c */,
A3561C7F1413FD7800E9B51E /* mbr.h */,
A3561C801413FD7800E9B51E /* mbrcode.h */,
A3561C811413FD7800E9B51E /* misc.c */,
A3561C821413FD7800E9B51E /* misc.h */,
A3561C831413FD7800E9B51E /* opendev.c */,
A3561C841413FD7800E9B51E /* part.c */,
A3561C851413FD7800E9B51E /* part.h */,
A3561C861413FD7800E9B51E /* user.c */,
A3561C871413FD7800E9B51E /* user.h */,
A3561C881413FD7800E9B51E /* util.h */,
);
path = fdisk;
sourceTree = "<group>";
};
A3561CAB1414024C00E9B51E /* modules */ = {
isa = PBXGroup;
children = (
B412979C15BE0C3100073B54 /* AcpiCodec */,
A3561CAC1414024C00E9B51E /* Cconfig */,
36DFBE8C16AF0A4B001A6428 /* FileNVRAM */,
36F0179A16A3894A00519CEA /* HDAEnabler */,
A3561CAD1414024C00E9B51E /* HelloWorld */,
A3561CB21414024C00E9B51E /* include */,
52073BC917EB131A00DE2795 /* KernelPatcher */,
52073BC817EB130100DE2795 /* KextPatcher */,
A3561CB41414024C00E9B51E /* Keylayout */,
A3561CB71414024D00E9B51E /* klibc */,
A3561D011414024D00E9B51E /* Makefile */,
A3561D021414024D00E9B51E /* MakeInc.dir */,
A3561D031414024D00E9B51E /* Modules.txt */,
A3561D041414024D00E9B51E /* Resolution */,
B4B3DDA515B8E384002FAA73 /* Sata */,
A3561D0F1414024D00E9B51E /* uClibcxx */,
);
path = modules;
sourceTree = "<group>";
};
A3561CAD1414024C00E9B51E /* HelloWorld */ = {
isa = PBXGroup;
children = (
A3561CAE1414024C00E9B51E /* Cconfig */,
A3561CAF1414024C00E9B51E /* HelloWorld.cpp */,
A3561CB01414024C00E9B51E /* include */,
A3561CB11414024C00E9B51E /* Makefile */,
);
path = HelloWorld;
sourceTree = "<group>";
};
A3561CB01414024C00E9B51E /* include */ = {
isa = PBXGroup;
children = (
);
path = include;
sourceTree = "<group>";
};
A3561CB21414024C00E9B51E /* include */ = {
isa = PBXGroup;
children = (
A3561CB31414024C00E9B51E /* modules */,
);
path = include;
sourceTree = "<group>";
};
A3561CB41414024C00E9B51E /* Keylayout */ = {
isa = PBXGroup;
children = (
A3F1F267141B9B3B00DDA709 /* Readme.txt */,
A35D216E141A73B000969AC0 /* layouts */,
A3561DA81414296600E9B51E /* Cconfig */,
A3561DA61414296600E9B51E /* Keylayout.c */,
A3561DA71414296600E9B51E /* Makefile */,
);
path = Keylayout;
sourceTree = "<group>";
};
A3561CB71414024D00E9B51E /* klibc */ = {
isa = PBXGroup;
children = (
A3561CB81414024D00E9B51E /* __ashldi3.c */,
A3561CB91414024D00E9B51E /* __ashrdi3.c */,
A3561CBA1414024D00E9B51E /* __clzsi2.c */,
A3561CBB1414024D00E9B51E /* __divdi3.c */,
A3561CBC1414024D00E9B51E /* __divsi3.c */,
A3561CBD1414024D00E9B51E /* __lshrdi3.c */,
A3561CBE1414024D00E9B51E /* __moddi3.c */,
A3561CBF1414024D00E9B51E /* __modsi3.c */,
A3561CC01414024D00E9B51E /* __udivdi3.c */,
A3561CC11414024D00E9B51E /* __udivmoddi4.c */,
A3561CC21414024D00E9B51E /* __udivmodsi4.c */,
A3561CC31414024D00E9B51E /* __udivsi3.c */,
A3561CC41414024D00E9B51E /* __umoddi3.c */,
A3561CC51414024D00E9B51E /* __umodsi3.c */,
A3561CC61414024D00E9B51E /* atexit.c */,
A3561CC71414024D00E9B51E /* atexit.h */,
A3561CC81414024D00E9B51E /* atoi.c */,
A3561CC91414024D00E9B51E /* atol.c */,
A3561CCA1414024D00E9B51E /* atoll.c */,
A3561CCB1414024D00E9B51E /* atox.c */,
A3561CCC1414024D00E9B51E /* bsearch.c */,
A3561CCD1414024D00E9B51E /* calloc.c */,
A3561CCE1414024D00E9B51E /* Cconfig */,
A3561CCF1414024D00E9B51E /* exit.c */,
A3561CD01414024D00E9B51E /* jrand48.c */,
A3561CD11414024D00E9B51E /* klibc.c */,
A3561CD21414024D00E9B51E /* LICENSE */,
A3561CD31414024D00E9B51E /* limits.h */,
A3561CD41414024D00E9B51E /* lrand48.c */,
A3561CD51414024D00E9B51E /* Makefile */,
A3561CD61414024D00E9B51E /* memccpy.c */,
A3561CD71414024D00E9B51E /* memchr.c */,
A3561CD81414024D00E9B51E /* memmem.c */,
A3561CD91414024D00E9B51E /* memmove.c */,
A3561CDA1414024D00E9B51E /* memrchr.c */,
A3561CDB1414024D00E9B51E /* memswap.c */,
A3561CDC1414024D00E9B51E /* mrand48.c */,
A3561CDD1414024D00E9B51E /* nrand48.c */,
A3561CDE1414024D00E9B51E /* onexit.c */,
A3561CDF1414024D00E9B51E /* qsort.c */,
A3561CE01414024D00E9B51E /* Readme.txt */,
A3561CE11414024D00E9B51E /* seed48.c */,
A3561CE21414024D00E9B51E /* sha1hash.c */,
A3561CE31414024D00E9B51E /* snprintf.c */,
A3561CE41414024D00E9B51E /* srand48.c */,
A3561CE51414024D00E9B51E /* sscanf.c */,
A3561CE61414024D00E9B51E /* strcasecmp.c */,
A3561CE71414024D00E9B51E /* strdup.c */,
A3561CE81414024D00E9B51E /* strlcat.c */,
A3561CE91414024D00E9B51E /* strncasecmp.c */,
A3561CEA1414024D00E9B51E /* strndup.c */,
A3561CEB1414024D00E9B51E /* strnlen.c */,
A3561CEC1414024D00E9B51E /* strntoimax.c */,
A3561CED1414024D00E9B51E /* strntoumax.c */,
A3561CEE1414024D00E9B51E /* strpbrk.c */,
A3561CEF1414024D00E9B51E /* strsep.c */,
A3561CF01414024D00E9B51E /* strtoimax.c */,
A3561CF11414024D00E9B51E /* strtok.c */,
A3561CF21414024D00E9B51E /* strtok_r.c */,
A3561CF31414024D00E9B51E /* strtol.c */,
A3561CF41414024D00E9B51E /* strtoll.c */,
A3561CF51414024D00E9B51E /* strtotimespec.c */,
A3561CF61414024D00E9B51E /* strtotimeval.c */,
A3561CF71414024D00E9B51E /* strtotimex.c */,
A3561CF81414024D00E9B51E /* strtoul.c */,
A3561CF91414024D00E9B51E /* strtoull.c */,
A3561CFA1414024D00E9B51E /* strtoumax.c */,
A3561CFB1414024D00E9B51E /* strtox.c */,
A3561CFC1414024D00E9B51E /* strxspn.c */,
A3561CFD1414024D00E9B51E /* strxspn.h */,
A3561CFE1414024D00E9B51E /* version */,
A3561CFF1414024D00E9B51E /* vsnprintf.c */,
A3561D001414024D00E9B51E /* vsscanf.c */,
);
path = klibc;
sourceTree = "<group>";
};
A3561D041414024D00E9B51E /* Resolution */ = {
isa = PBXGroup;
children = (
A3561D051414024D00E9B51E /* 915resolution.c */,
A3561D061414024D00E9B51E /* 915resolution.h */,
A3561D071414024D00E9B51E /* Cconfig */,
A3561D081414024D00E9B51E /* edid.c */,
A3561D091414024D00E9B51E /* include */,
A3561D0B1414024D00E9B51E /* Makefile */,
A3561D0C1414024D00E9B51E /* Readme.txt */,
A3561D0D1414024D00E9B51E /* Resolution.c */,
A3561D0E1414024D00E9B51E /* shortatombios.h */,
);
path = Resolution;
sourceTree = "<group>";
};
A3561D091414024D00E9B51E /* include */ = {
isa = PBXGroup;
children = (
A3561D0A1414024D00E9B51E /* edid.h */,
);
path = include;
sourceTree = "<group>";
};
A3561D0F1414024D00E9B51E /* uClibcxx */ = {
isa = PBXGroup;
children = (
A3561D101414024D00E9B51E /* abi.cpp */,
A3561D111414024D00E9B51E /* algorithm.cpp */,
A3561D121414024D00E9B51E /* associative_base.cpp */,
A3561D131414024D00E9B51E /* bitset.cpp */,
A3561D141414024D00E9B51E /* Cconfig */,
A3561D151414024D00E9B51E /* char_traits.cpp */,
A3561D161414024D00E9B51E /* complex.cpp */,
A3561D171414024D00E9B51E /* del_op.cpp */,
A3561D181414024D00E9B51E /* del_opnt.cpp */,
A3561D191414024D00E9B51E /* del_opv.cpp */,
A3561D1A1414024D00E9B51E /* del_opvnt.cpp */,
A3561D1B1414024D00E9B51E /* deque.cpp */,
A3561D1C1414024D00E9B51E /* eh_alloc.cpp */,
A3561D1D1414024D00E9B51E /* eh_globals.cpp */,
A3561D1E1414024D00E9B51E /* exception.cpp */,
A3561D1F1414024D00E9B51E /* fstream.cpp */,
A3561D201414024D00E9B51E /* func_exception.cpp */,
A3561D211414024D00E9B51E /* include */,
A3561D631414024D00E9B51E /* iomanip.cpp */,
A3561D641414024D00E9B51E /* ios.cpp */,
A3561D651414024D00E9B51E /* iostream.cpp */,
A3561D661414024D00E9B51E /* istream.cpp */,
A3561D671414024D00E9B51E /* iterator.cpp */,
A3561D681414024D00E9B51E /* limits.cpp */,
A3561D691414024D00E9B51E /* list.cpp */,
A3561D6A1414024D00E9B51E /* locale.cpp */,
A3561D6B1414024D00E9B51E /* Makefile */,
A3561D6C1414024D00E9B51E /* map.cpp */,
A3561D6D1414024D00E9B51E /* new_handler.cpp */,
A3561D6E1414024D00E9B51E /* new_op.cpp */,
A3561D6F1414024D00E9B51E /* new_opnt.cpp */,
A3561D701414024D00E9B51E /* new_opv.cpp */,
A3561D711414024D00E9B51E /* new_opvnt.cpp */,
A3561D721414024D00E9B51E /* numeric.cpp */,
A3561D731414024D00E9B51E /* ostream.cpp */,
A3561D741414024D00E9B51E /* queue.cpp */,
A3561D751414024D00E9B51E /* Readme.txt */,
A3561D761414024D00E9B51E /* set.cpp */,
A3561D771414024D00E9B51E /* sstream.cpp */,
A3561D781414024D00E9B51E /* stack.cpp */,
A3561D791414024D00E9B51E /* stdexcept.cpp */,
A3561D7A1414024D00E9B51E /* streambuf.cpp */,
A3561D7B1414024D00E9B51E /* string.cpp */,
A3561D7C1414024D00E9B51E /* support.cpp */,
A3561D7D1414024D00E9B51E /* typeinfo.cpp */,
A3561D7E1414024D00E9B51E /* uClibc++.c */,
A3561D7F1414024D00E9B51E /* utility.cpp */,
A3561D801414024D00E9B51E /* valarray.cpp */,
A3561D811414024D00E9B51E /* vector.cpp */,
);
path = uClibcxx;
sourceTree = "<group>";
};
A3561D211414024D00E9B51E /* include */ = {
isa = PBXGroup;
children = (
A3561D221414024D00E9B51E /* algorithm */,
A3561D231414024D00E9B51E /* associative_base */,
A3561D241414024D00E9B51E /* basic_definitions */,
A3561D251414024D00E9B51E /* bitset */,
A3561D261414024D00E9B51E /* cassert */,
A3561D271414024D00E9B51E /* cctype */,
A3561D281414024D00E9B51E /* cerrno */,
A3561D291414024D00E9B51E /* cfloat */,
A3561D2A1414024D00E9B51E /* char_traits */,
A3561D2B1414024D00E9B51E /* climits */,
A3561D2C1414024D00E9B51E /* clocale */,
A3561D2D1414024D00E9B51E /* cmath */,
A3561D2E1414024D00E9B51E /* complex */,
A3561D2F1414024D00E9B51E /* csetjmp */,
A3561D301414024D00E9B51E /* csignal */,
A3561D311414024D00E9B51E /* cstdarg */,
A3561D321414024D00E9B51E /* cstddef */,
A3561D331414024D00E9B51E /* cstdio */,
A3561D341414024D00E9B51E /* cstdlib */,
A3561D351414024D00E9B51E /* cstring */,
A3561D361414024D00E9B51E /* ctime */,
A3561D371414024D00E9B51E /* cwchar */,
A3561D381414024D00E9B51E /* cwctype */,
A3561D391414024D00E9B51E /* deque */,
A3561D3A1414024D00E9B51E /* exception */,
A3561D3B1414024D00E9B51E /* fstream */,
A3561D3C1414024D00E9B51E /* func_exception */,
A3561D3D1414024D00E9B51E /* functional */,
A3561D3E1414024D00E9B51E /* iomanip */,
A3561D3F1414024D00E9B51E /* ios */,
A3561D401414024D00E9B51E /* iosfwd */,
A3561D411414024D00E9B51E /* iostream */,
A3561D421414024D00E9B51E /* istream */,
A3561D431414024D00E9B51E /* istream_helpers */,
A3561D441414024D00E9B51E /* iterator */,
A3561D451414024D00E9B51E /* iterator_base */,
A3561D461414024D00E9B51E /* limits */,
A3561D471414024D00E9B51E /* list */,
A3561D481414024D00E9B51E /* locale */,
A3561D491414024D00E9B51E /* Makefile */,
A3561D4A1414024D00E9B51E /* map */,
A3561D4B1414024D00E9B51E /* map.old */,
A3561D4C1414024D00E9B51E /* memory */,
A3561D4D1414024D00E9B51E /* new */,
A3561D4E1414024D00E9B51E /* numeric */,
A3561D4F1414024D00E9B51E /* ostream */,
A3561D501414024D00E9B51E /* ostream_helpers */,
A3561D511414024D00E9B51E /* queue */,
A3561D521414024D00E9B51E /* set */,
A3561D531414024D00E9B51E /* set.old */,
A3561D541414024D00E9B51E /* sstream */,
A3561D551414024D00E9B51E /* stack */,
A3561D561414024D00E9B51E /* stdexcept */,
A3561D571414024D00E9B51E /* streambuf */,
A3561D581414024D00E9B51E /* string */,
A3561D591414024D00E9B51E /* string_iostream */,
A3561D5A1414024D00E9B51E /* support */,
A3561D5B1414024D00E9B51E /* system_configuration.h */,
A3561D5C1414024D00E9B51E /* type_traits */,
A3561D5D1414024D00E9B51E /* typeinfo */,
A3561D5E1414024D00E9B51E /* types */,
A3561D5F1414024D00E9B51E /* unwind-cxx.h */,
A3561D601414024D00E9B51E /* utility */,
A3561D611414024D00E9B51E /* valarray */,
A3561D621414024D00E9B51E /* vector */,
);
path = include;
sourceTree = "<group>";
};
A35D216E141A73B000969AC0 /* layouts */ = {
isa = PBXGroup;
children = (
A35D216F141A73B000969AC0 /* cham-mklayout.c */,
A35D2170141A73B000969AC0 /* layouts-src */,
A35D2177141A73B000969AC0 /* Makefile */,
);
path = layouts;
sourceTree = "<group>";
};
A35D2170141A73B000969AC0 /* layouts-src */ = {
isa = PBXGroup;
children = (
A35D2178141A753E00969AC0 /* README */,
A35D2171141A73B000969AC0 /* mac-de.slt */,
A35D2172141A73B000969AC0 /* mac-es.slt */,
A35D2173141A73B000969AC0 /* mac-fr.slt */,
A35D2174141A73B000969AC0 /* mac-it.slt */,
A35D2175141A73B000969AC0 /* mac-se.slt */,
A35D2176141A73B000969AC0 /* pc-fr.slt */,
);
path = "layouts-src";
sourceTree = "<group>";
};
A396E2CA150247630025A245 /* Resources */ = {
isa = PBXGroup;
children = (
B4B3DDBE15B8E914002FAA73 /* ar.lproj */,
B4B3DDC315B8E914002FAA73 /* bg.lproj */,
B4B3DDC815B8E914002FAA73 /* bs.lproj */,
B4B3DE3A15B8E914002FAA73 /* br.lproj */,
B4B3DDCD15B8E914002FAA73 /* ca.lproj */,
B4B3DDD215B8E914002FAA73 /* common */,
B4B3DDD415B8E914002FAA73 /* cs.lproj */,
B4B3DDD915B8E914002FAA73 /* da.lproj */,
B4B3DDDE15B8E914002FAA73 /* de.lproj */,
B4B3DDE515B8E914002FAA73 /* el.lproj */,
B4B3DDEA15B8E914002FAA73 /* en.lproj */,
B4B3DDEF15B8E914002FAA73 /* es.lproj */,
B4B3DDF415B8E914002FAA73 /* fa.lproj */,
B4B3DDF915B8E914002FAA73 /* fi.lproj */,
B4B3DDFE15B8E914002FAA73 /* fr.lproj */,
B4B3DE0315B8E914002FAA73 /* he.lproj */,
B4B3DE0815B8E914002FAA73 /* hr.lproj */,
B4B3DE0D15B8E914002FAA73 /* hu.lproj */,
B4B3DE1215B8E914002FAA73 /* id.lproj */,
B4B3DE1715B8E914002FAA73 /* it.lproj */,
B4B3DE1C15B8E914002FAA73 /* ja.lproj */,
B4B3DE2115B8E914002FAA73 /* ko.lproj */,
B4B3DE2615B8E914002FAA73 /* mk.lproj */,
B4B3DE2B15B8E914002FAA73 /* ms.lproj */,
B4B3DE3015B8E914002FAA73 /* nl.lproj */,
B4B3DE3515B8E914002FAA73 /* pl.lproj */,
B4B3DE3F15B8E914002FAA73 /* pt.lproj */,
B4B3DE4415B8E914002FAA73 /* ro.lproj */,
B4B3DE4915B8E914002FAA73 /* ru.lproj */,
B4B3DE4E15B8E914002FAA73 /* sk.lproj */,
B4B3DE5315B8E914002FAA73 /* sr.lproj */,
B4B3DE5815B8E914002FAA73 /* sv.lproj */,
B4B3DE5D15B8E914002FAA73 /* templates */,
B4B3DE6215B8E914002FAA73 /* th.lproj */,
B4B3DE6715B8E914002FAA73 /* tr.lproj */,
B4B3DE6C15B8E914002FAA73 /* uk.lproj */,
B4B3DE7115B8E914002FAA73 /* vi.lproj */,
B4B3DE7615B8E914002FAA73 /* zh_CN.lproj */,
B4B3DE7B15B8E914002FAA73 /* zh_TW.lproj */,
);
path = Resources;
sourceTree = "<group>";
};
A3F1F20D141B9B0D00DDA709 /* Scripts */ = {
isa = PBXGroup;
children = (
A354B6261495124F00D81AA5 /* Main */,
A354B62B149514DE00D81AA5 /* Sub */,
);
path = Scripts;
sourceTree = "<group>";
};
B0056CE511F3868000754B65 /* i386 */ = {
isa = PBXGroup;
children = (
B0056CE611F3868000754B65 /* boot0 */,
B0056CEA11F3868000754B65 /* boot1 */,
B0056CF211F3868000754B65 /* boot2 */,
B41899FB14BFBE2400ED5B0B /* Cconfig */,
B0056D0F11F3868000754B65 /* cdboot */,
B4189A0314BFBED900ED5B0B /* config */,
B0056D1311F3868000754B65 /* doc */,
6DBAFD1713B0D4590047ED33 /* include */,
B0056D1611F3868000754B65 /* libsa */,
B0056D2411F3868000754B65 /* libsaio */,
B0056D7611F3868000754B65 /* Makefile */,
A3561CAB1414024C00E9B51E /* modules */,
B0056D7911F3868000754B65 /* util */,
);
path = i386;
sourceTree = "<group>";
};
B0056CE611F3868000754B65 /* boot0 */ = {
isa = PBXGroup;
children = (
3608A84C1A42F30800602D1C /* boot0.old */,
B0056CE711F3868000754B65 /* boot0.s */,
B41899FF14BFBE5D00ED5B0B /* boot0hfs.s */,
B41899FE14BFBE5200ED5B0B /* boot0md.s */,
B41899FD14BFBE4500ED5B0B /* Cconfig */,
B0056CE811F3868000754B65 /* chain0.s */,
B0056CE911F3868000754B65 /* Makefile */,
);
path = boot0;
sourceTree = "<group>";
};
B0056CEA11F3868000754B65 /* boot1 */ = {
isa = PBXGroup;
children = (
B0056CED11F3868000754B65 /* boot1f32-install.sh */,
B0056CEE11F3868000754B65 /* boot1f32.s */,
B4189A0114BFBE8900ED5B0B /* boot1h.s */,
B0056CEF11F3868000754B65 /* boot1he.s */,
B0056CF011F3868000754B65 /* boot1hp.s */,
36A9C0051A2A26E900EEDDF1 /* boot1x.s */,
B4189A0014BFBE7D00ED5B0B /* Cconfig */,
B0056CF111F3868000754B65 /* Makefile */,
);
path = boot1;
sourceTree = "<group>";
};
B0056CF211F3868000754B65 /* boot2 */ = {
isa = PBXGroup;
children = (
3617E24317503A9300AE753C /* appleboot.h */,
3617E24417503A9300AE753C /* appleClut8.h */,
3617E24517503A9300AE753C /* bmdecompress.c */,
3617E24617503A9300AE753C /* boot.c */,
3617E24717503A9300AE753C /* boot.h */,
3617E24817503A9300AE753C /* boot2.s */,
54EE60B01E83478900D682EB /* config.h */,
3617E24917503A9300AE753C /* Cconfig */,
3617E24A17503A9300AE753C /* drivers.c */,
3617E24B17503A9300AE753C /* graphic_utils.c */,
3617E24C17503A9300AE753C /* graphic_utils.h */,
3617E24D17503A9300AE753C /* graphics.c */,
3617E24E17503A9300AE753C /* graphics.h */,
3617E24F17503A9300AE753C /* gui.c */,
3617E25017503A9300AE753C /* gui.h */,
3617E25117503A9300AE753C /* IOHibernatePrivate.h */,
3608A84D1A42F33500602D1C /* lzvn.c */,
3617E25417503A9300AE753C /* lzss.c */,
3617E25517503A9300AE753C /* Makefile */,
3617E25617503A9300AE753C /* mboot.c */,
3617E25717503A9300AE753C /* mboot.h */,
3617E25817503A9300AE753C /* modules_support.s */,
3617E25917503A9300AE753C /* modules.c */,
3617E25A17503A9300AE753C /* modules.h */,
3617E25B17503A9300AE753C /* multiboot.h */,
3617E25C17503A9300AE753C /* options.c */,
3617E25D17503A9300AE753C /* picopng.c */,
3617E25E17503A9300AE753C /* picopng.h */,
3617E25F17503A9300AE753C /* prompt.c */,
3617E26017503A9300AE753C /* ramdisk.c */,
3617E26117503A9300AE753C /* ramdisk.h */,
3617E26217503A9300AE753C /* resume.c */,
3617E26317503A9300AE753C /* WKdm.h */,
3617E26417503A9300AE753C /* WKdmDecompress.c */,
);
path = boot2;
sourceTree = "<group>";
};
B0056D0F11F3868000754B65 /* cdboot */ = {
isa = PBXGroup;
children = (
B0056D1011F3868000754B65 /* cdboot.s */,
B0056D1111F3868000754B65 /* cdboothdd.s */,
B0056D1211F3868000754B65 /* Makefile */,
);
path = cdboot;
sourceTree = "<group>";
};
B0056D1311F3868000754B65 /* doc */ = {
isa = PBXGroup;
children = (
B0056D1411F3868000754B65 /* Limits */,
B0056D1511F3868000754B65 /* README */,
);
path = doc;
sourceTree = "<group>";
};
B0056D1611F3868000754B65 /* libsa */ = {
isa = PBXGroup;
children = (
3696B2391A1D2DD1004272A6 /* Cconfig */,
3696B23A1A1D2DD1004272A6 /* efi_tables.c */,
3696B23B1A1D2DD1004272A6 /* efi_tables.h */,
3696B23C1A1D2DD1004272A6 /* error.c */,
361EE41A1A96706600AE9455 /* interrupts.c */,
3696B23D1A1D2DD1004272A6 /* libsa.h */,
3696B23E1A1D2DD1004272A6 /* Makefile */,
3696B23F1A1D2DD1004272A6 /* memory.h */,
3696B2401A1D2DD1004272A6 /* prf.c */,
3696B2411A1D2DD1004272A6 /* printf.c */,
3696B2421A1D2DD1004272A6 /* qsort.c */,
3696B2431A1D2DD1004272A6 /* setjmp.s */,
3696B2441A1D2DD1004272A6 /* string.c */,
3696B2451A1D2DD1004272A6 /* strtol.c */,
3696B2461A1D2DD1004272A6 /* zalloc.c */,
);
path = libsa;
sourceTree = "<group>";
};
B0056D2411F3868000754B65 /* libsaio */ = {
isa = PBXGroup;
children = (
3696B1CE1A1D2DB5004272A6 /* acpi_patcher.c */,
3696B1CF1A1D2DB5004272A6 /* acpi_patcher.h */,
3696B1D01A1D2DB5004272A6 /* acpi.h */,
3696B1D11A1D2DB5004272A6 /* allocate.c */,
3696B1D21A1D2DB5004272A6 /* aml_generator.c */,
3696B1D31A1D2DB5004272A6 /* aml_generator.h */,
3696B1D41A1D2DB5004272A6 /* asm.s */,
3696B1D51A1D2DB5004272A6 /* ati_reg.h */,
3696B1D61A1D2DB5004272A6 /* ati.c */,
3696B1D71A1D2DB5004272A6 /* ati.h */,
3696B1D81A1D2DB5004272A6 /* base64-decode.c */,
3696B1D91A1D2DB5004272A6 /* befs.c */,
3696B1DA1A1D2DB5004272A6 /* befs.h */,
3696B1DB1A1D2DB5004272A6 /* bios.h */,
3696B1DC1A1D2DB5004272A6 /* bios.s */,
3696B1DD1A1D2DB5004272A6 /* biosfn.c */,
3696B1DE1A1D2DB5004272A6 /* bootargs.h */,
3696B1DF1A1D2DB5004272A6 /* bootstruct.c */,
3696B1E01A1D2DB5004272A6 /* bootstruct.h */,
3696B1E11A1D2DB5004272A6 /* cache.c */,
3696B1E21A1D2DB5004272A6 /* Cconfig */,
3696B1E31A1D2DB5004272A6 /* console.c */,
3696B1E41A1D2DB5004272A6 /* convert.c */,
3696B1E51A1D2DB5004272A6 /* convert.h */,
3696B1E61A1D2DB5004272A6 /* cpu.c */,
3696B1E71A1D2DB5004272A6 /* cpu.h */,
3696B1E81A1D2DB5004272A6 /* device_inject.c */,
3696B1E91A1D2DB5004272A6 /* device_inject.h */,
3696B1EA1A1D2DB5004272A6 /* device_tree.c */,
3696B1EB1A1D2DB5004272A6 /* device_tree.h */,
3696B1EC1A1D2DB5004272A6 /* disk.c */,
3696B1ED1A1D2DB5004272A6 /* disk.h */,
3696B1EE1A1D2DB5004272A6 /* dram_controllers.c */,
3696B1EF1A1D2DB5004272A6 /* dram_controllers.h */,
3696B1F01A1D2DB5004272A6 /* efi.h */,
3696B1F11A1D2DB5004272A6 /* exfat.c */,
3696B1F21A1D2DB5004272A6 /* exfat.h */,
3696B1F31A1D2DB5004272A6 /* ext2fs.c */,
3696B1F41A1D2DB5004272A6 /* ext2fs.h */,
3696B1F51A1D2DB5004272A6 /* fake_efi.c */,
3696B1F61A1D2DB5004272A6 /* fake_efi.h */,
3696B1F71A1D2DB5004272A6 /* fdisk.h */,
3696B1F81A1D2DB5004272A6 /* freebsd.c */,
3696B1F91A1D2DB5004272A6 /* freebsd.h */,
3696B1FA1A1D2DB5004272A6 /* gma.c */,
3696B1FB1A1D2DB5004272A6 /* gma.h */,
3696B1FC1A1D2DB5004272A6 /* hda.c */,
3696B1FD1A1D2DB5004272A6 /* hda.h */,
3696B1FE1A1D2DB5004272A6 /* hfs_CaseTables.h */,
3696B1FF1A1D2DB5004272A6 /* hfs_compare.c */,
3696B2001A1D2DB5004272A6 /* hfs.c */,
3696B2011A1D2DB5004272A6 /* hfs.h */,
3696B2021A1D2DB5004272A6 /* hpet.c */,
3696B2031A1D2DB5004272A6 /* hpet.h */,
3696B2041A1D2DB5004272A6 /* io_inline.h */,
3696B2051A1D2DB5004272A6 /* libsaio.h */,
3696B2061A1D2DB5004272A6 /* load.c */,
3696B2071A1D2DB5004272A6 /* Makefile */,
3696B2081A1D2DB5004272A6 /* md5c.c */,
3696B2091A1D2DB5004272A6 /* memvendors.h */,
3696B20A1A1D2DB5004272A6 /* misc.c */,
3696B20B1A1D2DB5004272A6 /* msdos_private.h */,
3696B20C1A1D2DB5004272A6 /* msdos.c */,
3696B20D1A1D2DB5004272A6 /* msdos.h */,
3696B20E1A1D2DB5004272A6 /* nbp_cmd.h */,
3696B20F1A1D2DB5004272A6 /* nbp.c */,
3696B2101A1D2DB5004272A6 /* networking.c */,
3696B2111A1D2DB5004272A6 /* networking.h */,
3696B2121A1D2DB5004272A6 /* ntfs_private.h */,
3696B2131A1D2DB5004272A6 /* ntfs.c */,
3696B2141A1D2DB5004272A6 /* ntfs.h */,
3696B2151A1D2DB5004272A6 /* nvidia_helper.c */,
3696B2161A1D2DB5004272A6 /* nvidia_helper.h */,
3696B2171A1D2DB5004272A6 /* nvidia.c */,
3696B2181A1D2DB5004272A6 /* nvidia.h */,
3696B2191A1D2DB5004272A6 /* openbsd.c */,
3696B21A1A1D2DB5004272A6 /* openbsd.h */,
3696B21B1A1D2DB5004272A6 /* pci_root.c */,
3696B21C1A1D2DB5004272A6 /* pci_root.h */,
3696B21D1A1D2DB5004272A6 /* pci_setup.c */,
3696B21E1A1D2DB5004272A6 /* pci.c */,
3696B21F1A1D2DB5004272A6 /* pci.h */,
3696B2201A1D2DB5004272A6 /* platform.c */,
3696B2211A1D2DB5004272A6 /* platform.h */,
3696B2221A1D2DB5004272A6 /* saio_internal.h */,
3696B2231A1D2DB5004272A6 /* saio_types.h */,
3696B2241A1D2DB5004272A6 /* sl.h */,
3696B2251A1D2DB5004272A6 /* smbios_decode.c */,
3696B2261A1D2DB5004272A6 /* smbios_getters.c */,
3696B2271A1D2DB5004272A6 /* smbios_getters.h */,
3696B2281A1D2DB5004272A6 /* smbios.c */,
3696B2291A1D2DB5004272A6 /* smbios.h */,
3696B22A1A1D2DB5004272A6 /* spd.c */,
3696B22B1A1D2DB5004272A6 /* spd.h */,
3696B22C1A1D2DB5004272A6 /* state_generator.c */,
3696B22D1A1D2DB5004272A6 /* state_generator.h */,
3696B22E1A1D2DB5004272A6 /* stringTable.c */,
3696B22F1A1D2DB5004272A6 /* sys.c */,
3696B2301A1D2DB5004272A6 /* table.c */,
3696B2311A1D2DB5004272A6 /* term.h */,
3696B2321A1D2DB5004272A6 /* ufs_byteorder.h */,
3696B2331A1D2DB5004272A6 /* ufs.h */,
3696B2341A1D2DB5004272A6 /* usb.c */,
3696B2351A1D2DB5004272A6 /* vbe.c */,
3696B2361A1D2DB5004272A6 /* vbe.h */,
3696B2371A1D2DB5004272A6 /* xml.c */,
3696B2381A1D2DB5004272A6 /* xml.h */,
);
path = libsaio;
sourceTree = "<group>";
};
B0056D7911F3868000754B65 /* util */ = {
isa = PBXGroup;
children = (
A3561C8B1413FD7800E9B51E /* bdmesg.c */,
36A9C0011A2A26C900EEDDF1 /* boot1-install */,
B4189A2414BFBFD100ED5B0B /* Cconfig */,
A3561C8A1413FD7800E9B51E /* dyldsymboltool.c */,
A3561C721413FD7800E9B51E /* fdisk */,
B0056D7A11F3868000754B65 /* machOconv.c */,
B0056D7B11F3868000754B65 /* Makefile */,
A3561C891413FD7800E9B51E /* openUp.c */,
);
path = util;
sourceTree = "<group>";
};
B0056D8311F3868000754B65 /* package */ = {
isa = PBXGroup;
children = (
A35D2189141A75DC00969AC0 /* builddmg.sh */,
A35D2188141A75DC00969AC0 /* buildpkg.sh */,
361BC70214BD977700236488 /* Changes.txt */,
B0056D8511F3868000754B65 /* Distribution */,
361BC70514BD97A800236488 /* dmg */,
361BC70414BD979700236488 /* Icons */,
36B43E8114BCE91300D29461 /* OptionalSettings */,
B4526096153EFCE90018E994 /* po */,
B45260B4153EFCF60018E994 /* po4a-chameleon.cfg */,
A396E2CA150247630025A245 /* Resources */,
A3F1F20D141B9B0D00DDA709 /* Scripts */,
364E0DDF14BCFB6600F55E58 /* Scripts.templates */,
A35D2187141A75DC00969AC0 /* slimpkg.sh */,
B0056DB911F3868000754B65 /* smbios.plist */,
);
path = package;
sourceTree = "<group>";
};
B0056DBA11F3868000754B65 /* artwork */ = {
isa = PBXGroup;
children = (
B0056DBB11F3868000754B65 /* themes */,
);
path = artwork;
sourceTree = "<group>";
};
B0056DBB11F3868000754B65 /* themes */ = {
isa = PBXGroup;
children = (
3696B2471A1D2EAB004272A6 /* default */,
);
path = themes;
sourceTree = "<group>";
};
B0056E0611F3868000754B65 /* doc */ = {
isa = PBXGroup;
children = (
B0056E0711F3868000754B65 /* archive */,
B0056E0B11F3868000754B65 /* BootHelp.txt */,
B4B3DD9015B8E347002FAA73 /* org.chameleon.Boot.nvidia.plist */,
B0056E0C11F3868000754B65 /* README */,
B0056E0D11F3868000754B65 /* themeinfo.png */,
B0056E0E11F3868000754B65 /* User_Guide_src */,
B0056E1A11F3868000754B65 /* Users_Guide0.5.pdf */,
);
path = doc;
sourceTree = "<group>";
};
B0056E0711F3868000754B65 /* archive */ = {
isa = PBXGroup;
children = (
B0056E0811F3868000754B65 /* Users_Guide0.4.pdf */,
B0056E0911F3868000754B65 /* Users_Guide_v0.3.pdf */,
B0056E0A11F3868000754B65 /* UsersGuide-v0.2.pdf */,
);
path = archive;
sourceTree = "<group>";
};
B0056E0E11F3868000754B65 /* User_Guide_src */ = {
isa = PBXGroup;
children = (
B0056E0F11F3868000754B65 /* Chameleon 2 v0.4.xml */,
B0056E1011F3868000754B65 /* Chameleon 2 v0.5.docx */,
B0056E1111F3868000754B65 /* chameleon.png */,
B0056E1211F3868000754B65 /* colorchart.png */,
B0056E1311F3868000754B65 /* install_complete.png */,
B0056E1411F3868000754B65 /* install_cust.png */,
B0056E1511F3868000754B65 /* install_dest.png */,
B0056E1611F3868000754B65 /* install_stand.png */,
B0056E1711F3868000754B65 /* install_start.png */,
B0056E1811F3868000754B65 /* screen_format.png */,
B0056E1911F3868000754B65 /* xnulogo.png */,
);
path = User_Guide_src;
sourceTree = "<group>";
};
B412979C15BE0C3100073B54 /* AcpiCodec */ = {
isa = PBXGroup;
children = (
B412979E15BE0C4F00073B54 /* acpi_codec.c */,
B412979F15BE0C4F00073B54 /* acpi_tools.c */,
B41297A015BE0C4F00073B54 /* acpicode.c */,
B41297A115BE0C4F00073B54 /* ACPICodec.c */,
B41297A215BE0C4F00073B54 /* acpidecode.c */,
B41297A315BE0C4F00073B54 /* Cconfig */,
B41297A415BE0C4F00073B54 /* include */,
B41297AE15BE0C4F00073B54 /* Makefile */,
B41297AF15BE0C4F00073B54 /* Readme.txt */,
);
name = AcpiCodec;
sourceTree = "<group>";
};
B41297A415BE0C4F00073B54 /* include */ = {
isa = PBXGroup;
children = (
B41297A515BE0C4F00073B54 /* acpi.h */,
B41297A615BE0C4F00073B54 /* acpi_codec.h */,
B41297A715BE0C4F00073B54 /* acpi_tools.h */,
B41297A815BE0C4F00073B54 /* acpicode.h */,
B41297A915BE0C4F00073B54 /* acpidecode.h */,
B41297AA15BE0C4F00073B54 /* datatype.h */,
B41297AB15BE0C4F00073B54 /* intel_acpi.h */,
B41297AC15BE0C4F00073B54 /* ppm.h */,
B41297AD15BE0C4F00073B54 /* ppmsetup.h */,
);
name = include;
path = AcpiCodec/include;
sourceTree = "<group>";
};
B4189A0314BFBED900ED5B0B /* config */ = {
isa = PBXGroup;
children = (
B4189A0E14BFBF1C00ED5B0B /* cconfig.c */,
B4189A0F14BFBF1C00ED5B0B /* checklist.c */,
B4189A1014BFBF1C00ED5B0B /* confdata.c */,
B4189A1114BFBF1C00ED5B0B /* dialog.h */,
B4189A1214BFBF1C00ED5B0B /* expr.c */,
B4189A1314BFBF1C00ED5B0B /* expr.h */,
B4189A1414BFBF1C00ED5B0B /* inputbox.c */,
B4189A1514BFBF1C00ED5B0B /* lex.zconf.c */,
B4189A1614BFBF1C00ED5B0B /* lkc_proto.h */,
B4189A1714BFBF1C00ED5B0B /* lkc.h */,
B4189A0414BFBEEF00ED5B0B /* lxdialog */,
B4189A1814BFBF1C00ED5B0B /* Makefile */,
B4189A1914BFBF1C00ED5B0B /* menu.c */,
B4189A1A14BFBF1C00ED5B0B /* menubox.c */,
B4189A1B14BFBF1C00ED5B0B /* nconf.h */,
B4189A1C14BFBF1C00ED5B0B /* symbol.c */,
B4189A1D14BFBF1C00ED5B0B /* textbox.c */,
B4189A1E14BFBF1C00ED5B0B /* util.c */,
B4189A1F14BFBF1C00ED5B0B /* yesno.c */,
B4189A2014BFBF1C00ED5B0B /* zconf.hash.c */,
B4189A2114BFBF1C00ED5B0B /* zconf.tab.c */,
);
name = config;
sourceTree = "<group>";
};
B4189A0414BFBEEF00ED5B0B /* lxdialog */ = {
isa = PBXGroup;
children = (
B4189A0514BFBF0A00ED5B0B /* BIG.FAT.WARNING */,
B4189A0614BFBF0A00ED5B0B /* check-lxdialog.sh */,
B4189A0714BFBF0A00ED5B0B /* checklist.c */,
B4189A0814BFBF0A00ED5B0B /* dialog.h */,
B4189A0914BFBF0A00ED5B0B /* inputbox.c */,
B4189A0A14BFBF0A00ED5B0B /* menubox.c */,
B4189A0B14BFBF0A00ED5B0B /* textbox.c */,
B4189A0C14BFBF0A00ED5B0B /* util.c */,
B4189A0D14BFBF0A00ED5B0B /* yesno.c */,
);
name = lxdialog;
sourceTree = "<group>";
};
B4526096153EFCE90018E994 /* po */ = {
isa = PBXGroup;
children = (
36256EF41752BA5A0018189D /* ar.po */,
36256EF51752BA5A0018189D /* bg.po */,
36256EF71752BA5A0018189D /* bs.po */,
36256EF81752BA5A0018189D /* ca.po */,
36256EF91752BA5A0018189D /* chameleon.pot */,
36256EFB1752BA5A0018189D /* de.po */,
36256EFC1752BA5A0018189D /* el.po */,
36256EFD1752BA5A0018189D /* en.po */,
36256EFE1752BA5A0018189D /* es.po */,
36256EFF1752BA5A0018189D /* fa.po */,
36256F001752BA5A0018189D /* fr.po */,
36256F011752BA5A0018189D /* he.po */,
36256F021752BA5A0018189D /* hr.po */,
36256F031752BA5A0018189D /* hu.po */,
36256F041752BA5A0018189D /* id.po */,
36256F051752BA5A0018189D /* it.po */,
36256F061752BA5A0018189D /* ja.po */,
36256F071752BA5A0018189D /* ko.po */,
36256F081752BA5A0018189D /* mk.po */,
36256F091752BA5A0018189D /* nl.po */,
36256F0A1752BA5A0018189D /* pl.po */,
36256F0B1752BA5A0018189D /* pt.po */,
36256F0C1752BA5A0018189D /* ro.po */,
36256F0D1752BA5A0018189D /* ru.po */,
36256F0E1752BA5A0018189D /* sr.po */,
36256F0F1752BA5A0018189D /* zh_CN.po */,
36256F101752BA5A0018189D /* zh_TW.po */,
);
path = po;
sourceTree = "<group>";
};
B4AABE5814C3B8B90055ECD1 /* AddOption */ = {
isa = PBXGroup;
children = (
B4AABE5914C3B8B90055ECD1 /* postinstall */,
);
name = AddOption;
path = Scripts.templates/AddOption;
sourceTree = "<group>";
};
B4AABE5A14C3B8C70055ECD1 /* InstallModule */ = {
isa = PBXGroup;
children = (
B4AABE5B14C3B8C70055ECD1 /* postinstall */,
);
name = InstallModule;
path = Scripts.templates/InstallModule;
sourceTree = "<group>";
};
B4AABE5C14C3B8D70055ECD1 /* InstallTheme */ = {
isa = PBXGroup;
children = (
B4AABE5D14C3B8D70055ECD1 /* postinstall */,
);
name = InstallTheme;
path = Scripts.templates/InstallTheme;
sourceTree = "<group>";
};
B4B3DDA515B8E384002FAA73 /* Sata */ = {
isa = PBXGroup;
children = (
B4B3DDA615B8E3CB002FAA73 /* Cconfig */,
B4B3DDA715B8E3CB002FAA73 /* include */,
B4B3DDA815B8E3CB002FAA73 /* Makefile */,
B4B3DDA915B8E3CB002FAA73 /* Sata.c */,
);
name = Sata;
sourceTree = "<group>";
};
B4B3DDA715B8E3CB002FAA73 /* include */ = {
isa = PBXGroup;
children = (
);
name = include;
path = Sata/include;
sourceTree = "<group>";
};
B4B3DDBE15B8E914002FAA73 /* ar.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDBF15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDC115B8E914002FAA73 /* Welcome.rtfd */,
);
path = ar.lproj;
sourceTree = "<group>";
};
B4B3DDC315B8E914002FAA73 /* bg.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDC415B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDC615B8E914002FAA73 /* Welcome.rtfd */,
);
path = bg.lproj;
sourceTree = "<group>";
};
B4B3DDC815B8E914002FAA73 /* bs.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDC915B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDCB15B8E914002FAA73 /* Welcome.rtfd */,
);
path = bs.lproj;
sourceTree = "<group>";
};
B4B3DDCD15B8E914002FAA73 /* ca.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDCE15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDD015B8E914002FAA73 /* Welcome.rtfd */,
);
path = ca.lproj;
sourceTree = "<group>";
};
B4B3DDD215B8E914002FAA73 /* common */ = {
isa = PBXGroup;
children = (
B4B3DDD315B8E914002FAA73 /* License.rtf */,
);
path = common;
sourceTree = "<group>";
};
B4B3DDD415B8E914002FAA73 /* cs.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDD515B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDD715B8E914002FAA73 /* Welcome.rtfd */,
);
path = cs.lproj;
sourceTree = "<group>";
};
B4B3DDD915B8E914002FAA73 /* da.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDDA15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDDC15B8E914002FAA73 /* Welcome.rtfd */,
);
path = da.lproj;
sourceTree = "<group>";
};
B4B3DDDE15B8E914002FAA73 /* de.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDDF15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDE115B8E914002FAA73 /* Welcome.rtfd */,
);
path = de.lproj;
sourceTree = "<group>";
};
B4B3DDE515B8E914002FAA73 /* el.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDE615B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDE815B8E914002FAA73 /* Welcome.rtfd */,
);
path = el.lproj;
sourceTree = "<group>";
};
B4B3DDEA15B8E914002FAA73 /* en.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDEB15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDED15B8E914002FAA73 /* Welcome.rtfd */,
);
path = en.lproj;
sourceTree = "<group>";
};
B4B3DDEF15B8E914002FAA73 /* es.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDF015B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDF215B8E914002FAA73 /* Welcome.rtfd */,
);
path = es.lproj;
sourceTree = "<group>";
};
B4B3DDF415B8E914002FAA73 /* fa.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDF515B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDF715B8E914002FAA73 /* Welcome.rtfd */,
);
path = fa.lproj;
sourceTree = "<group>";
};
B4B3DDF915B8E914002FAA73 /* fi.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDFA15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DDFC15B8E914002FAA73 /* Welcome.rtfd */,
);
path = fi.lproj;
sourceTree = "<group>";
};
B4B3DDFE15B8E914002FAA73 /* fr.lproj */ = {
isa = PBXGroup;
children = (
B4B3DDFF15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE0115B8E914002FAA73 /* Welcome.rtfd */,
);
path = fr.lproj;
sourceTree = "<group>";
};
B4B3DE0315B8E914002FAA73 /* he.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE0415B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE0615B8E914002FAA73 /* Welcome.rtfd */,
);
path = he.lproj;
sourceTree = "<group>";
};
B4B3DE0815B8E914002FAA73 /* hr.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE0915B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE0B15B8E914002FAA73 /* Welcome.rtfd */,
);
path = hr.lproj;
sourceTree = "<group>";
};
B4B3DE0D15B8E914002FAA73 /* hu.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE0E15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE1015B8E914002FAA73 /* Welcome.rtfd */,
);
path = hu.lproj;
sourceTree = "<group>";
};
B4B3DE1215B8E914002FAA73 /* id.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE1315B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE1515B8E914002FAA73 /* Welcome.rtfd */,
);
path = id.lproj;
sourceTree = "<group>";
};
B4B3DE1715B8E914002FAA73 /* it.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE1815B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE1A15B8E914002FAA73 /* Welcome.rtfd */,
);
path = it.lproj;
sourceTree = "<group>";
};
B4B3DE1C15B8E914002FAA73 /* ja.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE1D15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE1F15B8E914002FAA73 /* Welcome.rtfd */,
);
path = ja.lproj;
sourceTree = "<group>";
};
B4B3DE2115B8E914002FAA73 /* ko.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE2215B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE2415B8E914002FAA73 /* Welcome.rtfd */,
);
path = ko.lproj;
sourceTree = "<group>";
};
B4B3DE2615B8E914002FAA73 /* mk.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE2715B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE2915B8E914002FAA73 /* Welcome.rtfd */,
);
path = mk.lproj;
sourceTree = "<group>";
};
B4B3DE2B15B8E914002FAA73 /* ms.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE2C15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE2E15B8E914002FAA73 /* Welcome.rtfd */,
);
path = ms.lproj;
sourceTree = "<group>";
};
B4B3DE3015B8E914002FAA73 /* nl.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE3115B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE3315B8E914002FAA73 /* Welcome.rtfd */,
);
path = nl.lproj;
sourceTree = "<group>";
};
B4B3DE3515B8E914002FAA73 /* pl.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE3615B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE3815B8E914002FAA73 /* Welcome.rtfd */,
);
path = pl.lproj;
sourceTree = "<group>";
};
B4B3DE3A15B8E914002FAA73 /* br.lproj */ = {
isa = PBXGroup;
children = (
362317A517510EB900A25D5D /* Conclusion.rtfd */,
362317A717510EB900A25D5D /* Welcome.rtfd */,
);
name = br.lproj;
path = "pt-BR.lproj";
sourceTree = "<group>";
};
B4B3DE3F15B8E914002FAA73 /* pt.lproj */ = {
isa = PBXGroup;
children = (
362317A917510ECE00A25D5D /* Conclusion.rtfd */,
362317AB17510ECE00A25D5D /* Welcome.rtfd */,
);
name = pt.lproj;
path = "pt-PT.lproj";
sourceTree = "<group>";
};
B4B3DE4415B8E914002FAA73 /* ro.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE4515B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE4715B8E914002FAA73 /* Welcome.rtfd */,
);
path = ro.lproj;
sourceTree = "<group>";
};
B4B3DE4915B8E914002FAA73 /* ru.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE4A15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE4C15B8E914002FAA73 /* Welcome.rtfd */,
);
path = ru.lproj;
sourceTree = "<group>";
};
B4B3DE4E15B8E914002FAA73 /* sk.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE4F15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE5115B8E914002FAA73 /* Welcome.rtfd */,
);
path = sk.lproj;
sourceTree = "<group>";
};
B4B3DE5315B8E914002FAA73 /* sr.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE5415B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE5615B8E914002FAA73 /* Welcome.rtfd */,
);
path = sr.lproj;
sourceTree = "<group>";
};
B4B3DE5815B8E914002FAA73 /* sv.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE5915B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE5B15B8E914002FAA73 /* Welcome.rtfd */,
);
path = sv.lproj;
sourceTree = "<group>";
};
B4B3DE5D15B8E914002FAA73 /* templates */ = {
isa = PBXGroup;
children = (
B4B3DE5E15B8E914002FAA73 /* Conclusion.html */,
B4B3DE5F15B8E914002FAA73 /* Description.html */,
B4B3DE6015B8E914002FAA73 /* Localizable.strings */,
B4B3DE6115B8E914002FAA73 /* Welcome.html */,
);
path = templates;
sourceTree = "<group>";
};
B4B3DE6215B8E914002FAA73 /* th.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE6315B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE6515B8E914002FAA73 /* Welcome.rtfd */,
);
path = th.lproj;
sourceTree = "<group>";
};
B4B3DE6715B8E914002FAA73 /* tr.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE6815B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE6A15B8E914002FAA73 /* Welcome.rtfd */,
);
path = tr.lproj;
sourceTree = "<group>";
};
B4B3DE6C15B8E914002FAA73 /* uk.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE6D15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE6F15B8E914002FAA73 /* Welcome.rtfd */,
);
path = uk.lproj;
sourceTree = "<group>";
};
B4B3DE7115B8E914002FAA73 /* vi.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE7215B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE7415B8E914002FAA73 /* Welcome.rtfd */,
);
path = vi.lproj;
sourceTree = "<group>";
};
B4B3DE7615B8E914002FAA73 /* zh_CN.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE7715B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE7915B8E914002FAA73 /* Welcome.rtfd */,
);
path = zh_CN.lproj;
sourceTree = "<group>";
};
B4B3DE7B15B8E914002FAA73 /* zh_TW.lproj */ = {
isa = PBXGroup;
children = (
B4B3DE7C15B8E914002FAA73 /* Conclusion.rtfd */,
B4B3DE7E15B8E914002FAA73 /* Welcome.rtfd */,
);
path = zh_TW.lproj;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXLegacyTarget section */
D28A88AD04BDD90700651E21 /* Enoch */ = {
isa = PBXLegacyTarget;
buildArgumentsString = "$(ACTION)";
buildConfigurationList = 1DEB918F08733D9F0010E9CD /* Build configuration list for PBXLegacyTarget "Enoch" */;
buildPhases = (
);
buildToolPath = /usr/bin/make;
buildWorkingDirectory = "";
dependencies = (
);
name = Enoch;
passBuildSettingsInEnvironment = 1;
productName = Chameleon;
};
/* End PBXLegacyTarget section */
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0620;
};
buildConfigurationList = 1DEB919308733D9F0010E9CD /* Build configuration list for PBXProject "Enoch" */;
compatibilityVersion = "Xcode 6.3";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
ar,
bg,
bs,
ca,
cs,
da,
de,
el,
en,
es,
fi,
fr,
he,
hr,
hu,
id,
it,
ja,
ko,
mk,
ms,
nl,
no,
pl,
"pt-BR",
"pt-PT",
ro,
ru,
sk,
sr,
sv,
th,
tr,
uk,
vi,
zh_CN,
zh_TW,
fa,
br,
pt,
);
mainGroup = 08FB7794FE84155DC02AAC07 /* Chameleon */;
projectDirPath = "";
projectRoot = "";
targets = (
D28A88AD04BDD90700651E21 /* Enoch */,
);
};
/* End PBXProject section */
/* Begin PBXVariantGroup section */
362317A517510EB900A25D5D /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
362317A617510EB900A25D5D /* br */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
362317A717510EB900A25D5D /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
362317A817510EB900A25D5D /* br */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
362317A917510ECE00A25D5D /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
362317AA17510ECE00A25D5D /* pt */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
362317AB17510ECE00A25D5D /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
362317AC17510ECE00A25D5D /* pt */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDBF15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDC015B8E914002FAA73 /* ar */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDC115B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDC215B8E914002FAA73 /* ar */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDC415B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDC515B8E914002FAA73 /* bg */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDC615B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDC715B8E914002FAA73 /* bg */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDC915B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDCA15B8E914002FAA73 /* bs */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDCB15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDCC15B8E914002FAA73 /* bs */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDCE15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDCF15B8E914002FAA73 /* ca */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDD015B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDD115B8E914002FAA73 /* ca */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDD515B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDD615B8E914002FAA73 /* cs */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDD715B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDD815B8E914002FAA73 /* cs */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDDA15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDDB15B8E914002FAA73 /* da */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDDC15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDDD15B8E914002FAA73 /* da */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDDF15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDE015B8E914002FAA73 /* de */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDE115B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDE215B8E914002FAA73 /* de */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDE615B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDE715B8E914002FAA73 /* el */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDE815B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDE915B8E914002FAA73 /* el */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDEB15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDEC15B8E914002FAA73 /* en */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDED15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDEE15B8E914002FAA73 /* en */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDF015B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDF115B8E914002FAA73 /* es */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDF215B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDF315B8E914002FAA73 /* es */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDF515B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDF615B8E914002FAA73 /* fa */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDF715B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDF815B8E914002FAA73 /* fa */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDFA15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDFB15B8E914002FAA73 /* fi */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DDFC15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DDFD15B8E914002FAA73 /* fi */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DDFF15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0015B8E914002FAA73 /* fr */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE0115B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0215B8E914002FAA73 /* fr */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE0415B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0515B8E914002FAA73 /* he */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE0615B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0715B8E914002FAA73 /* he */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE0915B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0A15B8E914002FAA73 /* hr */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE0B15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0C15B8E914002FAA73 /* hr */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE0E15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE0F15B8E914002FAA73 /* hu */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE1015B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE1115B8E914002FAA73 /* hu */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE1315B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE1415B8E914002FAA73 /* id */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE1515B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE1615B8E914002FAA73 /* id */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE1815B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE1915B8E914002FAA73 /* it */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE1A15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE1B15B8E914002FAA73 /* it */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE1D15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE1E15B8E914002FAA73 /* ja */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE1F15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2015B8E914002FAA73 /* ja */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE2215B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2315B8E914002FAA73 /* ko */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE2415B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2515B8E914002FAA73 /* ko */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE2715B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2815B8E914002FAA73 /* mk */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE2915B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2A15B8E914002FAA73 /* mk */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE2C15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2D15B8E914002FAA73 /* ms */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE2E15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE2F15B8E914002FAA73 /* ms */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE3115B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE3215B8E914002FAA73 /* nl */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE3315B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE3415B8E914002FAA73 /* nl */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE3615B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE3715B8E914002FAA73 /* pl */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE3815B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE3915B8E914002FAA73 /* pl */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE4515B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE4615B8E914002FAA73 /* ro */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE4715B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE4815B8E914002FAA73 /* ro */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE4A15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE4B15B8E914002FAA73 /* ru */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE4C15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE4D15B8E914002FAA73 /* ru */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE4F15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE5015B8E914002FAA73 /* sk */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE5115B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE5215B8E914002FAA73 /* sk */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE5415B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE5515B8E914002FAA73 /* sr */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE5615B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE5715B8E914002FAA73 /* sr */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE5915B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE5A15B8E914002FAA73 /* sv */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE5B15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE5C15B8E914002FAA73 /* sv */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE6315B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE6415B8E914002FAA73 /* th */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE6515B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE6615B8E914002FAA73 /* th */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE6815B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE6915B8E914002FAA73 /* tr */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE6A15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE6B15B8E914002FAA73 /* tr */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE6D15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE6E15B8E914002FAA73 /* uk */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE6F15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7015B8E914002FAA73 /* uk */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE7215B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7315B8E914002FAA73 /* vi */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE7415B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7515B8E914002FAA73 /* vi */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE7715B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7815B8E914002FAA73 /* zh_CN */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE7915B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7A15B8E914002FAA73 /* zh_CN */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
B4B3DE7C15B8E914002FAA73 /* Conclusion.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7D15B8E914002FAA73 /* zh_TW */,
);
name = Conclusion.rtfd;
sourceTree = "<group>";
};
B4B3DE7E15B8E914002FAA73 /* Welcome.rtfd */ = {
isa = PBXVariantGroup;
children = (
B4B3DE7F15B8E914002FAA73 /* zh_TW */,
);
name = Welcome.rtfd;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
1DEB919008733D9F0010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEBUGGING_SYMBOLS = YES;
GCC_DYNAMIC_NO_PIC = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
OTHER_CFLAGS = "";
OTHER_LDFLAGS = "";
PRODUCT_NAME = Enoch;
};
name = Debug;
};
1DEB919108733D9F0010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
OTHER_CFLAGS = "";
OTHER_LDFLAGS = "";
PRODUCT_NAME = Enoch;
};
name = Release;
};
1DEB919408733D9F0010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
1DEB919508733D9F0010E9CD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
SDKROOT = macosx;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
1DEB918F08733D9F0010E9CD /* Build configuration list for PBXLegacyTarget "Enoch" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB919008733D9F0010E9CD /* Debug */,
1DEB919108733D9F0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
1DEB919308733D9F0010E9CD /* Build configuration list for PBXProject "Enoch" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1DEB919408733D9F0010E9CD /* Debug */,
1DEB919508733D9F0010E9CD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}
branches/ErmaC/Enoch/i386/boot2/config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// config.h
// Enoch
//
// Created by ErmaC on 20/06/16.
//
//
#ifndef config_h
#define config_h
#endif /* config_h */

Archive Download the corresponding diff file

Revision: 2850