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

/* Begin PBXBuildFile section */
		080D35EB1D5E060D0029B7E5 /* http2_debug_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 080D35EA1D5E060D0029B7E5 /* http2_debug_state.c */; };
		084FC7C11D54B90D00E89F66 /* http2_debug_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 084FC7C01D54B90D00E89F66 /* http2_debug_state.c */; };
		084FC7C51D54BB9200E89F66 /* http2_debug_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 084FC7C31D54BB9200E89F66 /* http2_debug_state.c */; };
		08E9CC4E1E41F6660049DD26 /* embedded.c.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E9CC4D1E41F6660049DD26 /* embedded.c.h */; };
		100A55101C2BB15600C4E3E0 /* http_request.c in Sources */ = {isa = PBXBuildFile; fileRef = 100A550E1C2BB15100C4E3E0 /* http_request.c */; };
		100A55151C30C5BC00C4E3E0 /* chunked.c in Sources */ = {isa = PBXBuildFile; fileRef = 100A55141C30C5BC00C4E3E0 /* chunked.c */; };
		101788B219B561AA0084C6D8 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 101788B119B561AA0084C6D8 /* socket.c */; };
		101B670C19ADD3380084A351 /* access_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 101B670B19ADD3380084A351 /* access_log.c */; };
		1022E7C11CA8BC9E00CE2A05 /* send_text.c in Sources */ = {isa = PBXBuildFile; fileRef = 1022E7C01CA8BC9E00CE2A05 /* send_text.c */; };
		1022E7C31CA8BCCE00CE2A05 /* text_mode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1022E7C21CA8BCCE00CE2A05 /* text_mode.c */; };
		1022E7C61CA8BCEB00CE2A05 /* yrmcds_portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 1022E7C41CA8BCEB00CE2A05 /* yrmcds_portability.h */; };
		1022E7C71CA8BCEB00CE2A05 /* yrmcds_text.h in Headers */ = {isa = PBXBuildFile; fileRef = 1022E7C51CA8BCEB00CE2A05 /* yrmcds_text.h */; };
		1024A3FC1D22315000EB13F1 /* cache_digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 1024A3FB1D22315000EB13F1 /* cache_digests.c */; };
		1024A3FE1D22546800EB13F1 /* cache_digests.h in Headers */ = {isa = PBXBuildFile; fileRef = 1024A3FD1D22546800EB13F1 /* cache_digests.h */; };
		1024A4001D23606300EB13F1 /* cache_digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 1024A3FF1D23606300EB13F1 /* cache_digests.c */; };
		103BAB361B130666000694F4 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 103BAB351B130666000694F4 /* socket.c */; };
		1044812E1BFD0FBE0007863F /* filecache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1044812D1BFD0FBE0007863F /* filecache.h */; };
		104481301BFD10450007863F /* filecache.c in Sources */ = {isa = PBXBuildFile; fileRef = 1044812F1BFD10450007863F /* filecache.c */; };
		1047A9FF1D0E6D5900CC4BCE /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 1047A9FE1D0E6D5900CC4BCE /* rand.h */; };
		104B9A261A4A5041009EEE64 /* serverutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 104B9A231A4A4FAF009EEE64 /* serverutil.h */; };
		104B9A281A4A5139009EEE64 /* serverutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A271A4A5139009EEE64 /* serverutil.c */; };
		104B9A2D1A4BE029009EEE64 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = 104B9A2C1A4BE029009EEE64 /* version.h */; };
		104B9A461A5F608A009EEE64 /* serverutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A241A4A4FEE009EEE64 /* serverutil.c */; };
		104B9A481A5F9472009EEE64 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A471A5F9472009EEE64 /* headers.c */; };
		104B9A491A5F9638009EEE64 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B019A3217300C52AD6 /* headers.c */; };
		104B9A511A5FB096009EEE64 /* expires.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A501A5FB096009EEE64 /* expires.c */; };
		104B9A531A5FC7C4009EEE64 /* expires.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A521A5FC7C4009EEE64 /* expires.c */; };
		105534BE1A3B8F7700627ECB /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534BD1A3B8F7700627ECB /* file.c */; };
		105534C11A3B911300627ECB /* hpack.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534C01A3B911300627ECB /* hpack.c */; };
		105534C31A3B917000627ECB /* mimemap.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534C21A3B917000627ECB /* mimemap.c */; };
		105534C71A3BB29100627ECB /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534C61A3BB29100627ECB /* string.c */; };
		105534C91A3BB41C00627ECB /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534C81A3BB41C00627ECB /* proxy.c */; };
		105534CA1A3BB46900627ECB /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0905A19F230280043D458 /* string.c */; };
		105534D81A3C791B00627ECB /* configurator.h in Headers */ = {isa = PBXBuildFile; fileRef = 105534D71A3C785000627ECB /* configurator.h */; };
		105534DB1A3C7A5400627ECB /* access_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534DA1A3C7A5400627ECB /* access_log.c */; };
		105534DD1A3C7AA900627ECB /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534DC1A3C7AA900627ECB /* file.c */; };
		105534DF1A3C7B9800627ECB /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534DE1A3C7B9800627ECB /* proxy.c */; };
		105534EB1A42A87E00627ECB /* _templates.c.h in Headers */ = {isa = PBXBuildFile; fileRef = 105534EA1A42A87E00627ECB /* _templates.c.h */; };
		105534ED1A42AD5E00627ECB /* templates.c.h in Headers */ = {isa = PBXBuildFile; fileRef = 105534EC1A42AD5E00627ECB /* templates.c.h */; };
		105534EF1A440FC800627ECB /* config.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534EE1A440FC800627ECB /* config.c */; };
		10583BF11AE5A37B004A3AD6 /* Makefile in Sources */ = {isa = PBXBuildFile; fileRef = 10583BED1AE5A37B004A3AD6 /* Makefile */; };
		10583C001AEF368A004A3AD6 /* 293.c in Sources */ = {isa = PBXBuildFile; fileRef = 10583BFF1AEF368A004A3AD6 /* 293.c */; };
		1058C87D1AA41789008D6180 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 1058C87C1AA41789008D6180 /* headers.c */; };
		1058C87E1AA41A1F008D6180 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EBD1AA019D8004322AC /* headers.c */; };
		1058C8881AA6DE4B008D6180 /* hostinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1058C8871AA6DE4B008D6180 /* hostinfo.h */; };
		1058C88A1AA6E5E3008D6180 /* hostinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 1058C8891AA6E5E3008D6180 /* hostinfo.c */; };
		1058F6ED1D7CC99B00FFFFA3 /* openssl_backport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1058F6EC1D7CC81E00FFFFA3 /* openssl_backport.h */; };
		106530A71D82C0A6005B2C60 /* percent-encode-zero-byte.c in Sources */ = {isa = PBXBuildFile; fileRef = 106530A51D82C09E005B2C60 /* percent-encode-zero-byte.c */; };
		1065E6ED19B7B9CB00686E72 /* websocket.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923C119A3217300C52AD6 /* websocket.c */; };
		1065E6EE19B7BA5A00686E72 /* websocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923A319A3215F00C52AD6 /* websocket.h */; };
		1065E6F919BEBAC600686E72 /* timeout.c in Sources */ = {isa = PBXBuildFile; fileRef = 1065E6F819BEBAC600686E72 /* timeout.c */; };
		1065E70C19BF664300686E72 /* evloop.h in Headers */ = {isa = PBXBuildFile; fileRef = 1065E70419BF145700686E72 /* evloop.h */; };
		1065E70D19BF6D4600686E72 /* uv-binding.h in Headers */ = {isa = PBXBuildFile; fileRef = 1065E70619BF14E500686E72 /* uv-binding.h */; };
		1065E70E19BF6D9400686E72 /* uv-binding.c.h in Headers */ = {isa = PBXBuildFile; fileRef = 1065E70719BF17FE00686E72 /* uv-binding.c.h */; };
		106C22F81C040F6400405689 /* tunnel.c in Sources */ = {isa = PBXBuildFile; fileRef = 106C22F71C040F6400405689 /* tunnel.c */; };
		106C22FA1C040F7800405689 /* tunnel.h in Headers */ = {isa = PBXBuildFile; fileRef = 106C22F91C040F7800405689 /* tunnel.h */; };
		106C22FF1C05436100405689 /* errordoc.c in Sources */ = {isa = PBXBuildFile; fileRef = 106C22FE1C05436100405689 /* errordoc.c */; };
		106C23011C0544CE00405689 /* errordoc.c in Sources */ = {isa = PBXBuildFile; fileRef = 106C23001C0544CE00405689 /* errordoc.c */; };
		1070866A1B70A00F002B8F18 /* casper.c in Sources */ = {isa = PBXBuildFile; fileRef = 107086691B70A00F002B8F18 /* casper.c */; };
		1070866C1B787D06002B8F18 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 1070866B1B787D06002B8F18 /* compress.c */; };
		107086701B7925D5002B8F18 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 1070866F1B7925D5002B8F18 /* compress.c */; };
		107086721B798488002B8F18 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 107086711B798487002B8F18 /* compress.c */; };
		1070E1631B4508B0001CCAFA /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 1070E1621B4508B0001CCAFA /* util.c */; };
		10756E2A1AC126420009BF57 /* api.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E261AC126420009BF57 /* api.c */; };
		10756E2B1AC126420009BF57 /* dumper.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E271AC126420009BF57 /* dumper.c */; };
		10756E2C1AC126420009BF57 /* emitter.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E281AC126420009BF57 /* emitter.c */; };
		10756E2D1AC126420009BF57 /* loader.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E291AC126420009BF57 /* loader.c */; };
		10756E331AC1264D0009BF57 /* parser.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E2E1AC1264D0009BF57 /* parser.c */; };
		10756E341AC1264D0009BF57 /* reader.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E2F1AC1264D0009BF57 /* reader.c */; };
		10756E351AC1264D0009BF57 /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E301AC1264D0009BF57 /* scanner.c */; };
		10756E361AC1264D0009BF57 /* writer.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E311AC1264D0009BF57 /* writer.c */; };
		1079236A19A3210E00C52AD6 /* khash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1079232619A3210D00C52AD6 /* khash.h */; };
		1079239619A3210E00C52AD6 /* picohttpparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 1079235A19A3210D00C52AD6 /* picohttpparser.c */; };
		1079239719A3210E00C52AD6 /* picohttpparser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1079235B19A3210D00C52AD6 /* picohttpparser.h */; };
		107923A519A3215F00C52AD6 /* http1.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923A019A3215F00C52AD6 /* http1.h */; };
		107923A619A3215F00C52AD6 /* http2.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923A119A3215F00C52AD6 /* http2.h */; };
		107923A719A3215F00C52AD6 /* token.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923A219A3215F00C52AD6 /* token.h */; };
		107923A919A3215F00C52AD6 /* h2o.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923A419A3215F00C52AD6 /* h2o.h */; };
		107923C219A3217300C52AD6 /* chunked.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923AE19A3217300C52AD6 /* chunked.c */; };
		107923C319A3217300C52AD6 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923AF19A3217300C52AD6 /* file.c */; };
		107923C519A3217300C52AD6 /* http1.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B119A3217300C52AD6 /* http1.c */; };
		107923C619A3217300C52AD6 /* connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B319A3217300C52AD6 /* connection.c */; };
		107923C719A3217300C52AD6 /* hpack.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B419A3217300C52AD6 /* hpack.c */; };
		107923C819A3217300C52AD6 /* hpack_huffman_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923B519A3217300C52AD6 /* hpack_huffman_table.h */; };
		107923C919A3217300C52AD6 /* hpack_static_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 107923B619A3217300C52AD6 /* hpack_static_table.h */; };
		107923CB19A3217300C52AD6 /* frame.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B819A3217300C52AD6 /* frame.c */; };
		107923CC19A3217300C52AD6 /* context.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B919A3217300C52AD6 /* context.c */; };
		107923CD19A3217300C52AD6 /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BA19A3217300C52AD6 /* memory.c */; };
		107923CE19A3217300C52AD6 /* mimemap.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BB19A3217300C52AD6 /* mimemap.c */; };
		107923CF19A3217300C52AD6 /* request.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BC19A3217300C52AD6 /* request.c */; };
		107923D219A3217300C52AD6 /* token.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BF19A3217300C52AD6 /* token.c */; };
		107923D319A3217300C52AD6 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923C019A3217300C52AD6 /* util.c */; };
		1079240119A3241A00C52AD6 /* libh2o.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1079231519A320A700C52AD6 /* libh2o.a */; };
		1079240819A3247A00C52AD6 /* libh2o.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1079231519A320A700C52AD6 /* libh2o.a */; };
		1079241619A324B400C52AD6 /* websocket.c in Sources */ = {isa = PBXBuildFile; fileRef = 1079241319A324B400C52AD6 /* websocket.c */; settings = {COMPILER_FLAGS = "-Wno-deprecated-declarations"; }; };
		1079242919A325BE00C52AD6 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923FC19A3238500C52AD6 /* simple.c */; settings = {COMPILER_FLAGS = "-Wno-deprecated-declarations"; }; };
		1079243019A3260E00C52AD6 /* libh2o.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1079231519A320A700C52AD6 /* libh2o.a */; };
		1079244119A3264300C52AD6 /* picohttpparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 1079235A19A3210D00C52AD6 /* picohttpparser.c */; };
		1079244419A3265C00C52AD6 /* chunked.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923AE19A3217300C52AD6 /* chunked.c */; };
		1079244719A3265C00C52AD6 /* http1.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B119A3217300C52AD6 /* http1.c */; };
		1079244819A3265C00C52AD6 /* connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B319A3217300C52AD6 /* connection.c */; };
		1079244A19A3266700C52AD6 /* frame.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B819A3217300C52AD6 /* frame.c */; };
		1079244B19A3266700C52AD6 /* context.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B919A3217300C52AD6 /* context.c */; };
		1079244C19A3266700C52AD6 /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BA19A3217300C52AD6 /* memory.c */; };
		1079244E19A3266700C52AD6 /* request.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BC19A3217300C52AD6 /* request.c */; };
		1079245119A3266700C52AD6 /* token.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BF19A3217300C52AD6 /* token.c */; };
		1079245419A32C0800C52AD6 /* token_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 1079245319A32C0800C52AD6 /* token_table.h */; };
		107D4D441B588021004A9B21 /* ssl.c in Sources */ = {isa = PBXBuildFile; fileRef = 107D4D431B588021004A9B21 /* ssl.c */; };
		107D4D451B5880BC004A9B21 /* api.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E261AC126420009BF57 /* api.c */; };
		107D4D461B5880BC004A9B21 /* dumper.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E271AC126420009BF57 /* dumper.c */; };
		107D4D471B5880BC004A9B21 /* emitter.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E281AC126420009BF57 /* emitter.c */; };
		107D4D481B5880BC004A9B21 /* loader.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E291AC126420009BF57 /* loader.c */; };
		107D4D491B5880BC004A9B21 /* parser.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E2E1AC1264D0009BF57 /* parser.c */; };
		107D4D4A1B5880BC004A9B21 /* reader.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E2F1AC1264D0009BF57 /* reader.c */; };
		107D4D4B1B5880BC004A9B21 /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E301AC1264D0009BF57 /* scanner.c */; };
		107D4D4C1B5880BC004A9B21 /* writer.c in Sources */ = {isa = PBXBuildFile; fileRef = 10756E311AC1264D0009BF57 /* writer.c */; };
		107D4D4F1B58970D004A9B21 /* ssl.c in Sources */ = {isa = PBXBuildFile; fileRef = 107D4D4D1B58970D004A9B21 /* ssl.c */; };
		107D4D531B5B2412004A9B21 /* file.h in Headers */ = {isa = PBXBuildFile; fileRef = 107D4D521B5B2412004A9B21 /* file.h */; };
		107D4D551B5B30EE004A9B21 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 107D4D541B5B30EE004A9B21 /* file.c */; };
		107E33F41C7EAF5A00AEF5F8 /* backward_references.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33EF1C7EAF5A00AEF5F8 /* backward_references.cc */; };
		107E33F51C7EAF5A00AEF5F8 /* block_splitter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F01C7EAF5A00AEF5F8 /* block_splitter.cc */; };
		107E33F61C7EAF5A00AEF5F8 /* brotli_bit_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F11C7EAF5A00AEF5F8 /* brotli_bit_stream.cc */; };
		107E33F71C7EAF5A00AEF5F8 /* compress_fragment_two_pass.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F21C7EAF5A00AEF5F8 /* compress_fragment_two_pass.cc */; };
		107E33F81C7EAF5A00AEF5F8 /* compress_fragment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F31C7EAF5A00AEF5F8 /* compress_fragment.cc */; };
		107E34031C7EAF9300AEF5F8 /* encode.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FA1C7EAF9300AEF5F8 /* encode.cc */; };
		107E34041C7EAF9300AEF5F8 /* entropy_encode.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FB1C7EAF9300AEF5F8 /* entropy_encode.cc */; };
		107E34051C7EAF9300AEF5F8 /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FC1C7EAF9300AEF5F8 /* histogram.cc */; };
		107E34061C7EAF9300AEF5F8 /* literal_cost.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FD1C7EAF9300AEF5F8 /* literal_cost.cc */; };
		107E34071C7EAF9300AEF5F8 /* metablock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FE1C7EAF9300AEF5F8 /* metablock.cc */; };
		107E34081C7EAF9300AEF5F8 /* static_dict.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FF1C7EAF9300AEF5F8 /* static_dict.cc */; };
		107E34091C7EAF9300AEF5F8 /* streams.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E34001C7EAF9300AEF5F8 /* streams.cc */; };
		107E340A1C7EAF9300AEF5F8 /* utf8_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E34011C7EAF9300AEF5F8 /* utf8_util.cc */; };
		107E340D1C7EAFE600AEF5F8 /* dictionary.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E340C1C7EAFE600AEF5F8 /* dictionary.cc */; };
		107E34101C7EB13F00AEF5F8 /* gzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 107E340F1C7EB13F00AEF5F8 /* gzip.c */; };
		107E34131C7FAC2000AEF5F8 /* brotli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E34111C7EE0D200AEF5F8 /* brotli.cc */; };
		107E34141C7FEE1000AEF5F8 /* backward_references.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33EF1C7EAF5A00AEF5F8 /* backward_references.cc */; };
		107E34151C7FEE1000AEF5F8 /* block_splitter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F01C7EAF5A00AEF5F8 /* block_splitter.cc */; };
		107E34161C7FEE1000AEF5F8 /* brotli_bit_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F11C7EAF5A00AEF5F8 /* brotli_bit_stream.cc */; };
		107E34171C7FEE1000AEF5F8 /* compress_fragment_two_pass.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F21C7EAF5A00AEF5F8 /* compress_fragment_two_pass.cc */; };
		107E34181C7FEE1000AEF5F8 /* compress_fragment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33F31C7EAF5A00AEF5F8 /* compress_fragment.cc */; };
		107E34191C7FEE1000AEF5F8 /* dictionary.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E340C1C7EAFE600AEF5F8 /* dictionary.cc */; };
		107E341A1C7FEE1000AEF5F8 /* encode.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FA1C7EAF9300AEF5F8 /* encode.cc */; };
		107E341B1C7FEE1000AEF5F8 /* entropy_encode.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FB1C7EAF9300AEF5F8 /* entropy_encode.cc */; };
		107E341C1C7FEE1000AEF5F8 /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FC1C7EAF9300AEF5F8 /* histogram.cc */; };
		107E341D1C7FEE1000AEF5F8 /* literal_cost.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FD1C7EAF9300AEF5F8 /* literal_cost.cc */; };
		107E341E1C7FEE1000AEF5F8 /* metablock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FE1C7EAF9300AEF5F8 /* metablock.cc */; };
		107E341F1C7FEE1000AEF5F8 /* static_dict.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E33FF1C7EAF9300AEF5F8 /* static_dict.cc */; };
		107E34201C7FEE1000AEF5F8 /* streams.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E34001C7EAF9300AEF5F8 /* streams.cc */; };
		107E34211C7FEE1000AEF5F8 /* utf8_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E34011C7EAF9300AEF5F8 /* utf8_util.cc */; };
		107E34221C7FEE2200AEF5F8 /* brotli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 107E34111C7EE0D200AEF5F8 /* brotli.cc */; };
		10835E011C9A6C2400197E59 /* logconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 10835E001C9A6C2400197E59 /* logconf.c */; };
		10835E031C9A860000197E59 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 10835E021C9A860000197E59 /* status.c */; };
		10835E051C9B3C6200197E59 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 10835E041C9B3C6200197E59 /* status.c */; };
		108867751AD9069900987967 /* defaults.c.h in Headers */ = {isa = PBXBuildFile; fileRef = 108867741AD9069900987967 /* defaults.c.h */; };
		108DD0861BA22E46004167DC /* mruby.c in Sources */ = {isa = PBXBuildFile; fileRef = 10B38A651B8D345D007DC191 /* mruby.c */; };
		10A3D3D21B4CDBDC00327CF9 /* memcached.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3D11B4CDBDC00327CF9 /* memcached.c */; };
		10A3D3D31B4CDF1200327CF9 /* memcached.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A3D3D01B4CDBC700327CF9 /* memcached.h */; };
		10A3D4081B50DAB700327CF9 /* close.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3ED1B4FAAEC00327CF9 /* close.c */; };
		10A3D4091B50DAB700327CF9 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3EE1B4FAAEC00327CF9 /* connect.c */; };
		10A3D40A1B50DAB700327CF9 /* recv.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3F61B4FAAF500327CF9 /* recv.c */; };
		10A3D40B1B50DAB700327CF9 /* send.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3F71B4FAAF500327CF9 /* send.c */; };
		10A3D40C1B50DAB700327CF9 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3F91B4FAAF500327CF9 /* socket.c */; };
		10A3D40D1B50DAB700327CF9 /* strerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3FA1B4FAAF500327CF9 /* strerror.c */; };
		10AA2E941A80A592004322AC /* time_.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AA2E931A80A592004322AC /* time_.h */; };
		10AA2E961A80A612004322AC /* time.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2E951A80A612004322AC /* time.c */; };
		10AA2E991A81F68A004322AC /* time.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2E981A81F68A004322AC /* time.c */; };
		10AA2E9F1A8807CF004322AC /* url.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AA2E9E1A8807CF004322AC /* url.h */; };
		10AA2EA11A88082E004322AC /* url.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA01A88082E004322AC /* url.c */; };
		10AA2EA31A88090B004322AC /* url.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA21A88090B004322AC /* url.c */; };
		10AA2EA51A8D9999004322AC /* redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA41A8D9999004322AC /* redirect.c */; };
		10AA2EA71A8DA93C004322AC /* redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA61A8DA93C004322AC /* redirect.c */; };
		10AA2EAA1A8DDC57004322AC /* multithread.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AA2EA91A8DDC57004322AC /* multithread.h */; };
		10AA2EAC1A8DE0AE004322AC /* multithread.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EAB1A8DE0AE004322AC /* multithread.c */; };
		10AA2EAE1A8E22DA004322AC /* multithread.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EAD1A8E22DA004322AC /* multithread.c */; };
		10AA2EB71A970EFC004322AC /* http2_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AA2EB61A970EFC004322AC /* http2_internal.h */; };
		10AA2EB91A971280004322AC /* http2_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AA2EB81A971280004322AC /* http2_scheduler.h */; };
		10AA2EBC1A9EEDF8004322AC /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EBB1A9EEDF8004322AC /* proxy.c */; };
		10AA2EC01AA019FC004322AC /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EBF1AA019FC004322AC /* headers.c */; };
		10AA2EC21AA0402E004322AC /* reproxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EC11AA0402E004322AC /* reproxy.c */; };
		10AA2EC41AA0403A004322AC /* reproxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EC31AA0403A004322AC /* reproxy.c */; };
		10AAAC631B6C7A7D004487C3 /* http2_casper.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AAAC621B6C7A7D004487C3 /* http2_casper.h */; };
		10AAAC651B6C9275004487C3 /* casper.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AAAC641B6C9275004487C3 /* casper.c */; };
		10B38A721B8D34BB007DC191 /* mruby_.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B38A711B8D34BB007DC191 /* mruby_.h */; };
		10BA72AA19AAD6300059392A /* stream.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BA72A919AAD6300059392A /* stream.c */; };
		10BCF2FD1B168CAE0076939D /* fastcgi.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BCF2FC1B168CAE0076939D /* fastcgi.c */; };
		10BCF2FF1B1A892F0076939D /* fastcgi.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BCF2FE1B1A892F0076939D /* fastcgi.c */; };
		10BCF3011B214C460076939D /* fastcgi.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BCF3001B214C460076939D /* fastcgi.c */; };
		10C45D4F1CFD15FA0096DB06 /* throttle_resp.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D4E1CFD15FA0096DB06 /* throttle_resp.c */; };
		10C45D511CFD160A0096DB06 /* throttle_resp.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D501CFD160A0096DB06 /* throttle_resp.c */; };
		10C45D551CFE9B300096DB06 /* events.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D531CFE9B300096DB06 /* events.c */; };
		10C45D561CFE9B300096DB06 /* requests.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D541CFE9B300096DB06 /* requests.c */; };
		10D0903A19F0A51C0043D458 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0903919F0A51C0043D458 /* memory.h */; };
		10D0903E19F0A8190043D458 /* socket.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0903D19F0A8190043D458 /* socket.h */; };
		10D0904119F0B9CD0043D458 /* timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0904019F0B9CD0043D458 /* timeout.h */; };
		10D0904319F0BA780043D458 /* linklist.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0904219F0BA780043D458 /* linklist.h */; };
		10D0904A19F0CA9C0043D458 /* libh2o.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1079231519A320A700C52AD6 /* libh2o.a */; };
		10D0905519F102C70043D458 /* http1client.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0905419F102C70043D458 /* http1client.c */; };
		10D0905719F102DA0043D458 /* http1client.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0905619F102DA0043D458 /* http1client.h */; };
		10D0905919F22FA10043D458 /* string_.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D0905819F22FA10043D458 /* string_.h */; };
		10D0906219F38B2E0043D458 /* libh2o.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1079231519A320A700C52AD6 /* libh2o.a */; };
		10D0906B19F38B850043D458 /* http1client.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0906A19F38B850043D458 /* http1client.c */; };
		10D0906C19F395FC0043D458 /* socket-client.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0905219F0CB130043D458 /* socket-client.c */; };
		10D0907019F494CC0043D458 /* test.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0906E19F494CC0043D458 /* test.c */; };
		10D0907319F633B00043D458 /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0907219F633B00043D458 /* proxy.c */; };
		10DA969C1CD2BF9000679165 /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 10DA969B1CD2BF9000679165 /* cache.h */; };
		10DA969E1CD2BFAC00679165 /* cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 10DA969D1CD2BFAC00679165 /* cache.c */; };
		10DA96A01CD2BFEE00679165 /* cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 10DA969F1CD2BFEE00679165 /* cache.c */; };
		10E299581A67E68500701AA6 /* scheduler.c in Sources */ = {isa = PBXBuildFile; fileRef = 10E299571A67E68500701AA6 /* scheduler.c */; };
		10E2995A1A68D03100701AA6 /* scheduler.c in Sources */ = {isa = PBXBuildFile; fileRef = 10E299591A68D03100701AA6 /* scheduler.c */; };
		10E598011CE1683A000D7B94 /* mruby.c in Sources */ = {isa = PBXBuildFile; fileRef = 10B38A731B8D3544007DC191 /* mruby.c */; };
		10EA45D81D0949BF00769A2B /* libh2o.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1079231519A320A700C52AD6 /* libh2o.a */; };
		10EA45E11D094A1200769A2B /* latency-optimization.c in Sources */ = {isa = PBXBuildFile; fileRef = 10EA45E01D094A1200769A2B /* latency-optimization.c */; };
		10EC2A361A0B4D370083514F /* socketpool.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EC2A351A0B4D370083514F /* socketpool.h */; };
		10EC2A381A0B4DC70083514F /* socketpool.c in Sources */ = {isa = PBXBuildFile; fileRef = 10EC2A371A0B4DC70083514F /* socketpool.c */; };
		10F417D619C190F800B6E31A /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F417D519C190F800B6E31A /* main.c */; settings = {COMPILER_FLAGS = "-Wno-deprecated-declarations"; }; };
		10F417FF19C2D2F800B6E31A /* picotest.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F417FD19C2D2F800B6E31A /* picotest.c */; };
		10F4180119C2D31600B6E31A /* yoml.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F4180019C2D31600B6E31A /* yoml.h */; };
		10F4180519CA75C500B6E31A /* configurator.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F4180419CA75C500B6E31A /* configurator.c */; };
		10F419801B64E70D00BEAEAC /* golombset.h in Headers */ = {isa = PBXBuildFile; fileRef = 10F4197F1B64E70D00BEAEAC /* golombset.h */; };
		10F9F2651AF4795D0056F26B /* redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F9F2641AF4795D0056F26B /* redirect.c */; };
		10F9F2671AFC5F550056F26B /* hostinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F9F2661AFC5F550056F26B /* hostinfo.c */; };
		10FCC13E1B2E4A4500F13674 /* cloexec.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FCC13C1B2E4A4500F13674 /* cloexec.c */; };
		10FCC13F1B2E4A4500F13674 /* cloexec.h in Headers */ = {isa = PBXBuildFile; fileRef = 10FCC13D1B2E4A4500F13674 /* cloexec.h */; };
		10FCC1401B2E59E600F13674 /* cloexec.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FCC13C1B2E4A4500F13674 /* cloexec.c */; };
		10FEF24A1D6FC6F600E11B1D /* durations.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FEF2491D6FC6F600E11B1D /* durations.c */; };
		10FEF24E1D6FC8E200E11B1D /* gkc.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FEF24C1D6FC8E200E11B1D /* gkc.c */; };
		10FEF24F1D6FC8E200E11B1D /* gkc.h in Headers */ = {isa = PBXBuildFile; fileRef = 10FEF24D1D6FC8E200E11B1D /* gkc.h */; };
		10FFEE0A1BB23A8C0087AD75 /* neverbleed.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FFEE081BB23A8C0087AD75 /* neverbleed.c */; };
		E90A95F31E30795100483D6C /* headers_util.c in Sources */ = {isa = PBXBuildFile; fileRef = E90A95F21E30795100483D6C /* headers_util.c */; };
		E90A95F51E30797D00483D6C /* headers_util.c in Sources */ = {isa = PBXBuildFile; fileRef = E90A95F41E30797D00483D6C /* headers_util.c */; };
		E927CD632074855D00D4797E /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = E927CD612074855300D4797E /* sha512.c */; };
		E9708AE01E49A2120029E0A5 /* picotls.h in Headers */ = {isa = PBXBuildFile; fileRef = E9708ADF1E49A2120029E0A5 /* picotls.h */; };
		E9708AE61E49A2420029E0A5 /* cifra.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AD81E499E040029E0A5 /* cifra.c */; };
		E9708AE71E49A2420029E0A5 /* openssl.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AD91E499E040029E0A5 /* openssl.c */; };
		E9708AE81E49A2420029E0A5 /* picotls.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708ADA1E499E040029E0A5 /* picotls.c */; };
		E9708B1C1E49A3480029E0A5 /* handy.h in Headers */ = {isa = PBXBuildFile; fileRef = E9708B1B1E49A3480029E0A5 /* handy.h */; };
		E9708B1D1E49BABC0029E0A5 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AEC1E49A2910029E0A5 /* aes.c */; };
		E9708B1E1E49BAC10029E0A5 /* blockwise.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AF11E49A2B90029E0A5 /* blockwise.c */; };
		E9708B1F1E49BAC60029E0A5 /* chash.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AF71E49A3130029E0A5 /* chash.c */; };
		E9708B201E49BACA0029E0A5 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AF91E49A3130029E0A5 /* curve25519.c */; };
		E9708B221E49BAD00029E0A5 /* drbg.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AFC1E49A3130029E0A5 /* drbg.c */; };
		E9708B231E49BAD40029E0A5 /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AFE1E49A3130029E0A5 /* gcm.c */; };
		E9708B241E49BAD70029E0A5 /* gf128.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708AFF1E49A3130029E0A5 /* gf128.c */; };
		E9708B251E49BADA0029E0A5 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708B011E49A3130029E0A5 /* hmac.c */; };
		E9708B261E49BADE0029E0A5 /* modes.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708B031E49A3130029E0A5 /* modes.c */; };
		E9708B271E49BAE10029E0A5 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = E9708B061E49A3130029E0A5 /* sha256.c */; };
		E9708B391E52C75A0029E0A5 /* cloexec.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FCC13C1B2E4A4500F13674 /* cloexec.c */; };
		E9708B3A1E52C7640029E0A5 /* gkc.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FEF24C1D6FC8E200E11B1D /* gkc.c */; };
		E9708B3B1E52C7730029E0A5 /* close.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3ED1B4FAAEC00327CF9 /* close.c */; };
		E9708B3C1E52C7860029E0A5 /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3EE1B4FAAEC00327CF9 /* connect.c */; };
		E9708B3D1E52C7860029E0A5 /* recv.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3F61B4FAAF500327CF9 /* recv.c */; };
		E9708B3E1E52C7860029E0A5 /* send.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3F71B4FAAF500327CF9 /* send.c */; };
		E9708B3F1E52C7860029E0A5 /* send_text.c in Sources */ = {isa = PBXBuildFile; fileRef = 1022E7C01CA8BC9E00CE2A05 /* send_text.c */; };
		E9708B401E52C7860029E0A5 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3F91B4FAAF500327CF9 /* socket.c */; };
		E9708B411E52C7860029E0A5 /* strerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3FA1B4FAAF500327CF9 /* strerror.c */; };
		E9708B421E52C7860029E0A5 /* text_mode.c in Sources */ = {isa = PBXBuildFile; fileRef = 1022E7C21CA8BCCE00CE2A05 /* text_mode.c */; };
		E9708B431E52C7AA0029E0A5 /* picohttpparser.c in Sources */ = {isa = PBXBuildFile; fileRef = 1079235A19A3210D00C52AD6 /* picohttpparser.c */; };
		E9708B441E52C7DF0029E0A5 /* cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 10DA969D1CD2BFAC00679165 /* cache.c */; };
		E9708B451E52C7DF0029E0A5 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 107D4D541B5B30EE004A9B21 /* file.c */; };
		E9708B461E52C7DF0029E0A5 /* filecache.c in Sources */ = {isa = PBXBuildFile; fileRef = 1044812F1BFD10450007863F /* filecache.c */; };
		E9708B471E52C7DF0029E0A5 /* hostinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 1058C8891AA6E5E3008D6180 /* hostinfo.c */; };
		E9708B481E52C7DF0029E0A5 /* http1client.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0905419F102C70043D458 /* http1client.c */; };
		E9708B491E52C7DF0029E0A5 /* memcached.c in Sources */ = {isa = PBXBuildFile; fileRef = 10A3D3D11B4CDBDC00327CF9 /* memcached.c */; };
		E9708B4A1E52C7DF0029E0A5 /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BA19A3217300C52AD6 /* memory.c */; };
		E9708B4B1E52C7DF0029E0A5 /* multithread.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EAB1A8DE0AE004322AC /* multithread.c */; };
		E9708B4C1E52C7DF0029E0A5 /* serverutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A241A4A4FEE009EEE64 /* serverutil.c */; };
		E9708B4D1E52C7DF0029E0A5 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 101788B119B561AA0084C6D8 /* socket.c */; };
		E9708B4E1E52C7E50029E0A5 /* socketpool.c in Sources */ = {isa = PBXBuildFile; fileRef = 10EC2A371A0B4DC70083514F /* socketpool.c */; };
		E9708B4F1E52C7E50029E0A5 /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0905A19F230280043D458 /* string.c */; };
		E9708B501E52C7E50029E0A5 /* time.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2E951A80A612004322AC /* time.c */; };
		E9708B511E52C7E50029E0A5 /* timeout.c in Sources */ = {isa = PBXBuildFile; fileRef = 1065E6F819BEBAC600686E72 /* timeout.c */; };
		E9708B521E52C7E50029E0A5 /* url.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA01A88082E004322AC /* url.c */; };
		E9708B531E52C7EE0029E0A5 /* config.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534EE1A440FC800627ECB /* config.c */; };
		E9708B541E52C7EE0029E0A5 /* configurator.c in Sources */ = {isa = PBXBuildFile; fileRef = 10F4180419CA75C500B6E31A /* configurator.c */; };
		E9708B551E52C7EE0029E0A5 /* context.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B919A3217300C52AD6 /* context.c */; };
		E9708B561E52C7EE0029E0A5 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B019A3217300C52AD6 /* headers.c */; };
		E9708B571E52C7EE0029E0A5 /* logconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 10835E001C9A6C2400197E59 /* logconf.c */; };
		E9708B581E52C7EE0029E0A5 /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EBB1A9EEDF8004322AC /* proxy.c */; };
		E9708B591E52C7EE0029E0A5 /* request.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BC19A3217300C52AD6 /* request.c */; };
		E9708B5A1E52C7EE0029E0A5 /* token.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BF19A3217300C52AD6 /* token.c */; };
		E9708B5B1E52C7F30029E0A5 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923C019A3217300C52AD6 /* util.c */; };
		E9708B5C1E52C80F0029E0A5 /* access_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534DA1A3C7A5400627ECB /* access_log.c */; };
		E9708B5D1E52C80F0029E0A5 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 107086711B798487002B8F18 /* compress.c */; };
		E9708B5E1E52C80F0029E0A5 /* expires.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A521A5FC7C4009EEE64 /* expires.c */; };
		E9708B5F1E52C80F0029E0A5 /* errordoc.c in Sources */ = {isa = PBXBuildFile; fileRef = 106C23001C0544CE00405689 /* errordoc.c */; };
		E9708B601E52C80F0029E0A5 /* fastcgi.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BCF2FE1B1A892F0076939D /* fastcgi.c */; };
		E9708B611E52C80F0029E0A5 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534DC1A3C7AA900627ECB /* file.c */; };
		E9708B621E52C80F0029E0A5 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EBF1AA019FC004322AC /* headers.c */; };
		E9708B631E52C80F0029E0A5 /* headers_util.c in Sources */ = {isa = PBXBuildFile; fileRef = E90A95F41E30797D00483D6C /* headers_util.c */; };
		E9708B641E52C80F0029E0A5 /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 105534DE1A3C7B9800627ECB /* proxy.c */; };
		E9708B651E52C80F0029E0A5 /* redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA61A8DA93C004322AC /* redirect.c */; };
		E9708B661E52C80F0029E0A5 /* reproxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EC11AA0402E004322AC /* reproxy.c */; };
		E9708B671E52C80F0029E0A5 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 10835E041C9B3C6200197E59 /* status.c */; };
		E9708B681E52C80F0029E0A5 /* throttle_resp.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D4E1CFD15FA0096DB06 /* throttle_resp.c */; };
		E9708B691E52C80F0029E0A5 /* http2_debug_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 084FC7C31D54BB9200E89F66 /* http2_debug_state.c */; };
		E9708B6A1E52C81D0029E0A5 /* access_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 101B670B19ADD3380084A351 /* access_log.c */; };
		E9708B6B1E52C81D0029E0A5 /* chunked.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923AE19A3217300C52AD6 /* chunked.c */; };
		E9708B6C1E52C81D0029E0A5 /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = 1070866B1B787D06002B8F18 /* compress.c */; };
		E9708B6D1E52C8250029E0A5 /* gzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 107E340F1C7EB13F00AEF5F8 /* gzip.c */; };
		E9708B721E52C82A0029E0A5 /* errordoc.c in Sources */ = {isa = PBXBuildFile; fileRef = 106C22FE1C05436100405689 /* errordoc.c */; };
		E9708B731E52C82A0029E0A5 /* expires.c in Sources */ = {isa = PBXBuildFile; fileRef = 104B9A501A5FB096009EEE64 /* expires.c */; };
		E9708B741E52C82A0029E0A5 /* fastcgi.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BCF2FC1B168CAE0076939D /* fastcgi.c */; };
		E9708B751E52C82A0029E0A5 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923AF19A3217300C52AD6 /* file.c */; };
		E9708B761E52C8330029E0A5 /* headers.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EBD1AA019D8004322AC /* headers.c */; };
		E9708B771E52C8330029E0A5 /* headers_util.c in Sources */ = {isa = PBXBuildFile; fileRef = E90A95F21E30795100483D6C /* headers_util.c */; };
		E9708B781E52C8330029E0A5 /* mimemap.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923BB19A3217300C52AD6 /* mimemap.c */; };
		E9708B791E52C83D0029E0A5 /* proxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10D0907219F633B00043D458 /* proxy.c */; };
		E9708B7A1E52C83D0029E0A5 /* redirect.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EA41A8D9999004322AC /* redirect.c */; };
		E9708B7B1E52C83D0029E0A5 /* reproxy.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AA2EC31AA0403A004322AC /* reproxy.c */; };
		E9708B7C1E52C83D0029E0A5 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 10835E021C9A860000197E59 /* status.c */; };
		E9708B7D1E52C8430029E0A5 /* durations.c in Sources */ = {isa = PBXBuildFile; fileRef = 10FEF2491D6FC6F600E11B1D /* durations.c */; };
		E9708B7E1E52C8430029E0A5 /* events.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D531CFE9B300096DB06 /* events.c */; };
		E9708B7F1E52C8430029E0A5 /* requests.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D541CFE9B300096DB06 /* requests.c */; };
		E9708B801E52C84A0029E0A5 /* throttle_resp.c in Sources */ = {isa = PBXBuildFile; fileRef = 10C45D501CFD160A0096DB06 /* throttle_resp.c */; };
		E9708B811E52C84A0029E0A5 /* http2_debug_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 084FC7C01D54B90D00E89F66 /* http2_debug_state.c */; };
		E9708B821E52C84E0029E0A5 /* http1.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B119A3217300C52AD6 /* http1.c */; };
		E9708B831E52C8560029E0A5 /* cache_digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 1024A3FB1D22315000EB13F1 /* cache_digests.c */; };
		E9708B841E52C8560029E0A5 /* casper.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AAAC641B6C9275004487C3 /* casper.c */; };
		E9708B851E52C8560029E0A5 /* connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B319A3217300C52AD6 /* connection.c */; };
		E9708B861E52C8560029E0A5 /* frame.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B819A3217300C52AD6 /* frame.c */; };
		E9708B871E52C8560029E0A5 /* hpack.c in Sources */ = {isa = PBXBuildFile; fileRef = 107923B419A3217300C52AD6 /* hpack.c */; };
		E9708B881E52C8560029E0A5 /* stream.c in Sources */ = {isa = PBXBuildFile; fileRef = 10BA72A919AAD6300059392A /* stream.c */; };
		E9708B891E52C8560029E0A5 /* scheduler.c in Sources */ = {isa = PBXBuildFile; fileRef = 10E299571A67E68500701AA6 /* scheduler.c */; };
		E9708B8A1E52C8560029E0A5 /* http2_debug_state.c in Sources */ = {isa = PBXBuildFile; fileRef = 080D35EA1D5E060D0029B7E5 /* http2_debug_state.c */; };
		E9708B8B1E52C85A0029E0A5 /* tunnel.c in Sources */ = {isa = PBXBuildFile; fileRef = 106C22F71C040F6400405689 /* tunnel.c */; };
		E9BC76E51F00E70700EB7A09 /* salsa20.h in Headers */ = {isa = PBXBuildFile; fileRef = E9BC76E41F00E70700EB7A09 /* salsa20.h */; };
		E9BC76E81F00E73900EB7A09 /* chacha20.c in Sources */ = {isa = PBXBuildFile; fileRef = E9BC76E61F00E72D00EB7A09 /* chacha20.c */; };
		E9BC76EB1F00E74F00EB7A09 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = E9BC76E91F00E74C00EB7A09 /* poly1305.c */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		107923FF19A3241000C52AD6 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1079230D19A320A700C52AD6 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1079231419A320A700C52AD6;
			remoteInfo = h2o;
		};
		10D0904619F0CA9C0043D458 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1079230D19A320A700C52AD6 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1079231419A320A700C52AD6;
			remoteInfo = h2o;
		};
		10D0905E19F38B2E0043D458 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1079230D19A320A700C52AD6 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1079231419A320A700C52AD6;
			remoteInfo = h2o;
		};
		10EA45D41D0949BF00769A2B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1079230D19A320A700C52AD6 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1079231419A320A700C52AD6;
			remoteInfo = h2o;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		107923D719A321F400C52AD6 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		1079240919A3247A00C52AD6 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		1079243119A3260E00C52AD6 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		10D0904B19F0CA9C0043D458 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		10D0906319F38B2E0043D458 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		10EA45D91D0949BF00769A2B /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		10F417CD19C1907B00B6E31A /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		080D35EA1D5E060D0029B7E5 /* http2_debug_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http2_debug_state.c; sourceTree = "<group>"; };
		084FC7C01D54B90D00E89F66 /* http2_debug_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http2_debug_state.c; sourceTree = "<group>"; };
		084FC7C31D54BB9200E89F66 /* http2_debug_state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http2_debug_state.c; sourceTree = "<group>"; };
		08E9CC4D1E41F6660049DD26 /* embedded.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = embedded.c.h; sourceTree = "<group>"; };
		100A550C1C22857B00C4E3E0 /* 50mruby-htpasswd.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50mruby-htpasswd.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		100A550E1C2BB15100C4E3E0 /* http_request.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http_request.c; sourceTree = "<group>"; };
		100A55131C2E5FAC00C4E3E0 /* 50mruby-http-request.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50mruby-http-request.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		100A55141C30C5BC00C4E3E0 /* chunked.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chunked.c; sourceTree = "<group>"; };
		100AE41A1B27D74800CE18BB /* 50file-range.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50file-range.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		101788B119B561AA0084C6D8 /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket.c; sourceTree = "<group>"; };
		101B670B19ADD3380084A351 /* access_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = access_log.c; sourceTree = "<group>"; };
		1022E7C01CA8BC9E00CE2A05 /* send_text.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = send_text.c; sourceTree = "<group>"; };
		1022E7C21CA8BCCE00CE2A05 /* text_mode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = text_mode.c; sourceTree = "<group>"; };
		1022E7C41CA8BCEB00CE2A05 /* yrmcds_portability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yrmcds_portability.h; sourceTree = "<group>"; };
		1022E7C51CA8BCEB00CE2A05 /* yrmcds_text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yrmcds_text.h; sourceTree = "<group>"; };
		1024A3FB1D22315000EB13F1 /* cache_digests.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache_digests.c; sourceTree = "<group>"; };
		1024A3FD1D22546800EB13F1 /* cache_digests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache_digests.h; sourceTree = "<group>"; };
		1024A3FF1D23606300EB13F1 /* cache_digests.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache_digests.c; sourceTree = "<group>"; };
		1039A20A1BB89531005D3B8F /* mruby_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = mruby_directives.mt; sourceTree = "<group>"; };
		103BAB351B130666000694F4 /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket.c; sourceTree = "<group>"; };
		104481271BFC05FC0007863F /* 80issues595.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 80issues595.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		1044812D1BFD0FBE0007863F /* filecache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filecache.h; sourceTree = "<group>"; };
		1044812F1BFD10450007863F /* filecache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = filecache.c; sourceTree = "<group>"; };
		1047A9FE1D0E6D5900CC4BCE /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
		104960151B9D3F9100FF136D /* dump-github-repository.pl */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; path = "dump-github-repository.pl"; sourceTree = "<group>"; };
		104B9A221A47BBA1009EEE64 /* 40unix-socket.t */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "40unix-socket.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104B9A231A4A4FAF009EEE64 /* serverutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = serverutil.h; sourceTree = "<group>"; };
		104B9A241A4A4FEE009EEE64 /* serverutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = serverutil.c; sourceTree = "<group>"; };
		104B9A271A4A5139009EEE64 /* serverutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = serverutil.c; sourceTree = "<group>"; };
		104B9A2B1A4BBDA4009EEE64 /* 50server-starter.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50server-starter.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104B9A2C1A4BE029009EEE64 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = "<group>"; };
		104B9A301A58F55E009EEE64 /* 40max-connections.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40max-connections.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104B9A311A59D7A2009EEE64 /* 40running-user.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40running-user.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104B9A321A59E27A009EEE64 /* 40ssl-cipher-suite.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40ssl-cipher-suite.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104B9A401A5CD69B009EEE64 /* fetch-ocsp-response */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = "fetch-ocsp-response"; sourceTree = "<group>"; };
		104B9A451A5D1004009EEE64 /* 90live-fetch-ocsp-response.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "90live-fetch-ocsp-response.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104B9A471A5F9472009EEE64 /* headers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers.c; sourceTree = "<group>"; };
		104B9A501A5FB096009EEE64 /* expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = expires.c; sourceTree = "<group>"; };
		104B9A521A5FC7C4009EEE64 /* expires.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = expires.c; sourceTree = "<group>"; };
		104B9A541A60773E009EEE64 /* 50expires.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50expires.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104C65021A6DF36B000AC190 /* 50reverse-proxy-config.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50reverse-proxy-config.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		104CD5021CC465AF0057C62F /* 40env.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 40env.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		1054DF471BBBB038008347C9 /* benchmarks.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = benchmarks.mt; sourceTree = "<group>"; };
		105534BD1A3B8F7700627ECB /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = file.c; sourceTree = "<group>"; };
		105534C01A3B911300627ECB /* hpack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hpack.c; sourceTree = "<group>"; };
		105534C21A3B917000627ECB /* mimemap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mimemap.c; sourceTree = "<group>"; };
		105534C61A3BB29100627ECB /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
		105534C81A3BB41C00627ECB /* proxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = proxy.c; sourceTree = "<group>"; };
		105534D71A3C785000627ECB /* configurator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = configurator.h; sourceTree = "<group>"; };
		105534DA1A3C7A5400627ECB /* access_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = access_log.c; sourceTree = "<group>"; };
		105534DC1A3C7AA900627ECB /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = file.c; sourceTree = "<group>"; };
		105534DE1A3C7B9800627ECB /* proxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = proxy.c; sourceTree = "<group>"; };
		105534EA1A42A87E00627ECB /* _templates.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _templates.c.h; sourceTree = "<group>"; };
		105534EC1A42AD5E00627ECB /* templates.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = templates.c.h; sourceTree = "<group>"; };
		105534EE1A440FC800627ECB /* config.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = config.c; sourceTree = "<group>"; };
		105534F21A460EF600627ECB /* 00unit.evloop.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = 00unit.evloop.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534F31A460EF600627ECB /* 00unit.libuv.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = 00unit.libuv.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534F41A460EF600627ECB /* 10http1client.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 10http1client.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534F51A460EF600627ECB /* 40protocol.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 40protocol.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534F61A460EF600627ECB /* 50file-config.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50file-config.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534F71A460F2E00627ECB /* 50mimemap.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 50mimemap.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534F81A460F2E00627ECB /* 50post-size-limit.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50post-size-limit.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		105534FB1A460F4200627ECB /* Util.pm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = Util.pm; sourceTree = "<group>"; };
		105534FE1A46134A00627ECB /* 80issues61.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 80issues61.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10583BE01AE5A222004A3AD6 /* wrapper.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = wrapper.mt; sourceTree = "<group>"; };
		10583BE11AE5A22D004A3AD6 /* configure.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = configure.mt; sourceTree = "<group>"; };
		10583BE21AE5A22D004A3AD6 /* faq.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = faq.mt; sourceTree = "<group>"; };
		10583BE31AE5A22D004A3AD6 /* index.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = index.mt; sourceTree = "<group>"; };
		10583BE41AE5A22D004A3AD6 /* install.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = install.mt; sourceTree = "<group>"; };
		10583BE61AE5A322004A3AD6 /* clang-format-all.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = "clang-format-all.sh"; sourceTree = "<group>"; };
		10583BE71AE5A322004A3AD6 /* install-perl-module.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = "install-perl-module.pl"; sourceTree = "<group>"; };
		10583BE81AE5A330004A3AD6 /* libressl.mk */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libressl.mk; sourceTree = "<group>"; };
		10583BE91AE5A330004A3AD6 /* makedoc.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = makedoc.pl; sourceTree = "<group>"; };
		10583BEA1AE5A341004A3AD6 /* picotemplate-conf.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = "picotemplate-conf.pl"; sourceTree = "<group>"; };
		10583BEB1AE5A341004A3AD6 /* regen.mk */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = regen.mk; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = "<none>"; };
		10583BED1AE5A37B004A3AD6 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
		10583BEE1AE5A37B004A3AD6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
		10583BF51AE765E0004A3AD6 /* command_options.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = command_options.mt; sourceTree = "<group>"; };
		10583BF61AE765E0004A3AD6 /* quick_start.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = quick_start.mt; sourceTree = "<group>"; };
		10583BF81AE783BE004A3AD6 /* remotebench.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = remotebench.png; path = assets/remotebench.png; sourceTree = "<group>"; };
		10583BF91AE783BE004A3AD6 /* searchstyle.css */ = {isa = PBXFileReference; lastKnownFileType = text.css; name = searchstyle.css; path = assets/searchstyle.css; sourceTree = "<group>"; };
		10583BFA1AE783BE004A3AD6 /* style.css */ = {isa = PBXFileReference; lastKnownFileType = text.css; name = style.css; path = assets/style.css; sourceTree = "<group>"; };
		10583BFB1AE78DCC004A3AD6 /* syntax_and_structure.mt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = syntax_and_structure.mt; sourceTree = "<group>"; };
		10583BFC1AE88782004A3AD6 /* base_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = base_directives.mt; sourceTree = "<group>"; };
		10583BFD1AE8A7E1004A3AD6 /* directive.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = directive.mt; sourceTree = "<group>"; };
		10583BFF1AEF368A004A3AD6 /* 293.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 293.c; sourceTree = "<group>"; };
		10583C011AEF86E6004A3AD6 /* http1_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = http1_directives.mt; sourceTree = "<group>"; };
		10583C021AEF8C7D004A3AD6 /* http2_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = http2_directives.mt; sourceTree = "<group>"; };
		10583C031AF1D7D5004A3AD6 /* access_log_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = access_log_directives.mt; sourceTree = "<group>"; };
		10583C041AF1F315004A3AD6 /* expires_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = expires_directives.mt; sourceTree = "<group>"; };
		10583C051AF1F893004A3AD6 /* file_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = file_directives.mt; sourceTree = "<group>"; };
		10583C061AF20BE5004A3AD6 /* headers_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = headers_directives.mt; sourceTree = "<group>"; };
		10583C071AF21539004A3AD6 /* proxy_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = proxy_directives.mt; sourceTree = "<group>"; };
		10583C081AF2188E004A3AD6 /* redirect_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = redirect_directives.mt; sourceTree = "<group>"; };
		10583C091AF2D302004A3AD6 /* reproxy_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = reproxy_directives.mt; sourceTree = "<group>"; };
		1058C87C1AA41789008D6180 /* headers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers.c; sourceTree = "<group>"; };
		1058C87F1AA42568008D6180 /* 50headers.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50headers.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		1058C8871AA6DE4B008D6180 /* hostinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hostinfo.h; sourceTree = "<group>"; };
		1058C8891AA6E5E3008D6180 /* hostinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hostinfo.c; sourceTree = "<group>"; };
		1058F6EC1D7CC81E00FFFFA3 /* openssl_backport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = openssl_backport.h; sourceTree = "<group>"; };
		1063FE901BB291300064D9C7 /* compress_directives.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = compress_directives.mt; sourceTree = "<group>"; };
		106530A51D82C09E005B2C60 /* percent-encode-zero-byte.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "percent-encode-zero-byte.c"; sourceTree = "<group>"; };
		106530A81D8A21A7005B2C60 /* 80reverse-proxy-missing-content-length-for-post.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "80reverse-proxy-missing-content-length-for-post.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		1065E6EF19B8C64200686E72 /* evloop.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evloop.c.h; sourceTree = "<group>"; };
		1065E6F619B99E6D00686E72 /* kqueue.c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = kqueue.c.h; sourceTree = "<group>"; };
		1065E6F719B9B1AC00686E72 /* epoll.c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = epoll.c.h; sourceTree = "<group>"; };
		1065E6F819BEBAC600686E72 /* timeout.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = timeout.c; sourceTree = "<group>"; };
		1065E70419BF145700686E72 /* evloop.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = evloop.h; sourceTree = "<group>"; };
		1065E70619BF14E500686E72 /* uv-binding.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "uv-binding.h"; sourceTree = "<group>"; };
		1065E70719BF17FE00686E72 /* uv-binding.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "uv-binding.c.h"; sourceTree = "<group>"; };
		106C22F71C040F6400405689 /* tunnel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tunnel.c; sourceTree = "<group>"; };
		106C22F91C040F7800405689 /* tunnel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tunnel.h; sourceTree = "<group>"; };
		106C22FB1C0413DA00405689 /* 40websocket.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 40websocket.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		106C22FE1C05436100405689 /* errordoc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = errordoc.c; sourceTree = "<group>"; };
		106C23001C0544CE00405689 /* errordoc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = errordoc.c; sourceTree = "<group>"; };
		106C23021C06AB2F00405689 /* 50errordoc.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50errordoc.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		106C23041C1132E000405689 /* errordoc_directives.mt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = errordoc_directives.mt; sourceTree = "<group>"; };
		107086691B70A00F002B8F18 /* casper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = casper.c; sourceTree = "<group>"; };
		1070866B1B787D06002B8F18 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = "<group>"; };
		1070866F1B7925D5002B8F18 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = "<group>"; };
		107086711B798487002B8F18 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = "<group>"; };
		107086741B79A08D002B8F18 /* 50compress.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50compress.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		1070E15C1B438E8F001CCAFA /* poll.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = poll.c.h; sourceTree = "<group>"; };
		1070E1621B4508B0001CCAFA /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
		1070E1641B451D43001CCAFA /* 40proxy-protocol.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40proxy-protocol.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10756E251AC126250009BF57 /* yaml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yaml.h; sourceTree = "<group>"; };
		10756E261AC126420009BF57 /* api.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = api.c; sourceTree = "<group>"; };
		10756E271AC126420009BF57 /* dumper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dumper.c; sourceTree = "<group>"; };
		10756E281AC126420009BF57 /* emitter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = emitter.c; sourceTree = "<group>"; };
		10756E291AC126420009BF57 /* loader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = loader.c; sourceTree = "<group>"; };
		10756E2E1AC1264D0009BF57 /* parser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parser.c; sourceTree = "<group>"; };
		10756E2F1AC1264D0009BF57 /* reader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reader.c; sourceTree = "<group>"; };
		10756E301AC1264D0009BF57 /* scanner.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = scanner.c; sourceTree = "<group>"; };
		10756E311AC1264D0009BF57 /* writer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = writer.c; sourceTree = "<group>"; };
		10756E321AC1264D0009BF57 /* yaml_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yaml_private.h; sourceTree = "<group>"; };
		1079231519A320A700C52AD6 /* libh2o.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libh2o.a; sourceTree = BUILT_PRODUCTS_DIR; };
		1079232619A3210D00C52AD6 /* khash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = khash.h; sourceTree = "<group>"; };
		1079235A19A3210D00C52AD6 /* picohttpparser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picohttpparser.c; sourceTree = "<group>"; };
		1079235B19A3210D00C52AD6 /* picohttpparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = picohttpparser.h; sourceTree = "<group>"; };
		107923A019A3215F00C52AD6 /* http1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http1.h; sourceTree = "<group>"; };
		107923A119A3215F00C52AD6 /* http2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http2.h; sourceTree = "<group>"; };
		107923A219A3215F00C52AD6 /* token.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = token.h; sourceTree = "<group>"; };
		107923A319A3215F00C52AD6 /* websocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = websocket.h; sourceTree = "<group>"; };
		107923A419A3215F00C52AD6 /* h2o.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h2o.h; sourceTree = "<group>"; };
		107923AB19A3216B00C52AD6 /* tokens.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = tokens.pl; sourceTree = "<group>"; };
		107923AE19A3217300C52AD6 /* chunked.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chunked.c; sourceTree = "<group>"; };
		107923AF19A3217300C52AD6 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = file.c; sourceTree = "<group>"; };
		107923B019A3217300C52AD6 /* headers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers.c; sourceTree = "<group>"; };
		107923B119A3217300C52AD6 /* http1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http1.c; sourceTree = "<group>"; };
		107923B319A3217300C52AD6 /* connection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = connection.c; sourceTree = "<group>"; };
		107923B419A3217300C52AD6 /* hpack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hpack.c; sourceTree = "<group>"; };
		107923B519A3217300C52AD6 /* hpack_huffman_table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hpack_huffman_table.h; sourceTree = "<group>"; };
		107923B619A3217300C52AD6 /* hpack_static_table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hpack_static_table.h; sourceTree = "<group>"; };
		107923B819A3217300C52AD6 /* frame.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = frame.c; sourceTree = "<group>"; };
		107923B919A3217300C52AD6 /* context.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = context.c; sourceTree = "<group>"; };
		107923BA19A3217300C52AD6 /* memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memory.c; sourceTree = "<group>"; };
		107923BB19A3217300C52AD6 /* mimemap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mimemap.c; sourceTree = "<group>"; };
		107923BC19A3217300C52AD6 /* request.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = request.c; sourceTree = "<group>"; };
		107923BF19A3217300C52AD6 /* token.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = token.c; sourceTree = "<group>"; };
		107923C019A3217300C52AD6 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
		107923C119A3217300C52AD6 /* websocket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = websocket.c; sourceTree = "<group>"; };
		107923D919A321F400C52AD6 /* examples-simple */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "examples-simple"; sourceTree = BUILT_PRODUCTS_DIR; };
		107923FC19A3238500C52AD6 /* simple.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = simple.c; sourceTree = "<group>"; };
		1079240D19A3247A00C52AD6 /* websocket */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = websocket; sourceTree = BUILT_PRODUCTS_DIR; };
		1079241319A324B400C52AD6 /* websocket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = websocket.c; sourceTree = "<group>"; };
		1079243519A3260E00C52AD6 /* unittest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = unittest; sourceTree = BUILT_PRODUCTS_DIR; };
		1079245319A32C0800C52AD6 /* token_table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = token_table.h; sourceTree = "<group>"; };
		107D4D431B588021004A9B21 /* ssl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ssl.c; sourceTree = "<group>"; };
		107D4D4D1B58970D004A9B21 /* ssl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ssl.c; sourceTree = "<group>"; };
		107D4D501B58B342004A9B21 /* 40session-ticket.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40session-ticket.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		107D4D521B5B2412004A9B21 /* file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = file.h; sourceTree = "<group>"; };
		107D4D541B5B30EE004A9B21 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = file.c; sourceTree = "<group>"; };
		107D4D5D1B5F143B004A9B21 /* setuidgid.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = setuidgid.c; sourceTree = "<group>"; };
		107E33EF1C7EAF5A00AEF5F8 /* backward_references.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = backward_references.cc; sourceTree = "<group>"; };
		107E33F01C7EAF5A00AEF5F8 /* block_splitter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = block_splitter.cc; sourceTree = "<group>"; };
		107E33F11C7EAF5A00AEF5F8 /* brotli_bit_stream.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = brotli_bit_stream.cc; sourceTree = "<group>"; };
		107E33F21C7EAF5A00AEF5F8 /* compress_fragment_two_pass.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = compress_fragment_two_pass.cc; sourceTree = "<group>"; };
		107E33F31C7EAF5A00AEF5F8 /* compress_fragment.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = compress_fragment.cc; sourceTree = "<group>"; };
		107E33FA1C7EAF9300AEF5F8 /* encode.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = encode.cc; sourceTree = "<group>"; };
		107E33FB1C7EAF9300AEF5F8 /* entropy_encode.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = entropy_encode.cc; sourceTree = "<group>"; };
		107E33FC1C7EAF9300AEF5F8 /* histogram.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = histogram.cc; sourceTree = "<group>"; };
		107E33FD1C7EAF9300AEF5F8 /* literal_cost.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = literal_cost.cc; sourceTree = "<group>"; };
		107E33FE1C7EAF9300AEF5F8 /* metablock.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metablock.cc; sourceTree = "<group>"; };
		107E33FF1C7EAF9300AEF5F8 /* static_dict.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = static_dict.cc; sourceTree = "<group>"; };
		107E34001C7EAF9300AEF5F8 /* streams.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = streams.cc; sourceTree = "<group>"; };
		107E34011C7EAF9300AEF5F8 /* utf8_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utf8_util.cc; sourceTree = "<group>"; };
		107E340B1C7EAFAB00AEF5F8 /* encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = encode.h; sourceTree = "<group>"; };
		107E340C1C7EAFE600AEF5F8 /* dictionary.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dictionary.cc; sourceTree = "<group>"; };
		107E340F1C7EB13F00AEF5F8 /* gzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gzip.c; sourceTree = "<group>"; };
		107E34111C7EE0D200AEF5F8 /* brotli.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = brotli.cc; sourceTree = "<group>"; };
		107E34231C86801E00AEF5F8 /* 50file-file.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50file-file.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		108102151C3DB05100C024CD /* 50reverse-proxy-disconnected-keepalive.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50reverse-proxy-disconnected-keepalive.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		108214FE1AAD34DD00D27E66 /* 50reverse-proxy-0.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50reverse-proxy-0.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		108215071AAD41CE00D27E66 /* test.pl */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; name = test.pl; path = "50reverse-proxy/test.pl"; sourceTree = "<group>"; };
		108215081AB14B1100D27E66 /* 40server-push.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40server-push.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		1082150A1AB26F2A00D27E66 /* CMakeLists.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
		1082150C1AB26F4700D27E66 /* FindWslay.cmake */ = {isa = PBXFileReference; lastKnownFileType = text; path = FindWslay.cmake; sourceTree = "<group>"; };
		1082150D1AB26F4700D27E66 /* FindLibYAML.cmake */ = {isa = PBXFileReference; lastKnownFileType = text; path = FindLibYAML.cmake; sourceTree = "<group>"; };
		1082150E1AB26F4700D27E66 /* FindLibUV.cmake */ = {isa = PBXFileReference; lastKnownFileType = text; path = FindLibUV.cmake; sourceTree = "<group>"; };
		10835E001C9A6C2400197E59 /* logconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = logconf.c; sourceTree = "<group>"; };
		10835E021C9A860000197E59 /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = status.c; sourceTree = "<group>"; };
		10835E041C9B3C6200197E59 /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = status.c; sourceTree = "<group>"; };
		10835E071C9B8EA700197E59 /* index.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
		10835E081CA2204E00197E59 /* status_directives.mt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = status_directives.mt; sourceTree = "<group>"; };
		108867741AD9069900987967 /* defaults.c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = defaults.c.h; sourceTree = "<group>"; };
		1092E0011BEB1DDC001074BF /* 80issues579.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 80issues579.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109428AB1CC6C4C700E676CB /* openssl_hostname_validation.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = openssl_hostname_validation.c; sourceTree = "<group>"; };
		109428AC1CC6C4C700E676CB /* openssl_hostname_validation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = openssl_hostname_validation.h; sourceTree = "<group>"; };
		10952D591C5082F7000D664C /* 80issues-from-proxy-reproxy-to-different-host.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "80issues-from-proxy-reproxy-to-different-host.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10952D5B1C608A6B000D664C /* cgi.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = cgi.mt; sourceTree = "<group>"; };
		10952D5C1C608D19000D664C /* basic_auth.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = basic_auth.mt; sourceTree = "<group>"; };
		10952D5D1C62D4DC000D664C /* mruby.mt */ = {isa = PBXFileReference; lastKnownFileType = text; path = mruby.mt; sourceTree = "<group>"; };
		10955C2C1D1BA47100935796 /* throttle_response_directives.mt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = throttle_response_directives.mt; sourceTree = "<group>"; };
		109EEFD81D77B336001F11D1 /* 80one-byte-window.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "80one-byte-window.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFD91D77B336001F11D1 /* 50chunked-encoding-proxying.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50chunked-encoding-proxying.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFDA1D77B336001F11D1 /* 50config-tag.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50config-tag.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFDB1D77B336001F11D1 /* 50http2_debug_state.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 50http2_debug_state.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFDC1D77B350001F11D1 /* 00unit.mruby.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 00unit.mruby.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFDD1D77B350001F11D1 /* 50mruby-acl.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50mruby-acl.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFDE1D77B350001F11D1 /* 40server-push-multiple.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "40server-push-multiple.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFDF1D77B350001F11D1 /* 50mruby-dos-detector.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50mruby-dos-detector.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE01D77B350001F11D1 /* 50reverse-dont-add-x-forwarded-headers.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50reverse-dont-add-x-forwarded-headers.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE11D77B350001F11D1 /* 80dup-host-headers.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "80dup-host-headers.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE21D77B350001F11D1 /* 80invalid-h2-chars-in-headers.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "80invalid-h2-chars-in-headers.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE31D77B350001F11D1 /* 90live-sni.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "90live-sni.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE41D77B360001F11D1 /* 50file.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 50file.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE51D77B36C001F11D1 /* 50servername.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 50servername.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		109EEFE61D77B376001F11D1 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
		10A3D3D01B4CDBC700327CF9 /* memcached.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = memcached.h; sourceTree = "<group>"; };
		10A3D3D11B4CDBDC00327CF9 /* memcached.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = memcached.c; sourceTree = "<group>"; };
		10A3D3D61B4F1E3200327CF9 /* 50mruby.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50mruby.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10A3D3D71B4F4D0900327CF9 /* 40memcached-session-resumption.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40memcached-session-resumption.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10A3D3ED1B4FAAEC00327CF9 /* close.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = close.c; sourceTree = "<group>"; };
		10A3D3EE1B4FAAEC00327CF9 /* connect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = connect.c; sourceTree = "<group>"; };
		10A3D3F61B4FAAF500327CF9 /* recv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = recv.c; sourceTree = "<group>"; };
		10A3D3F71B4FAAF500327CF9 /* send.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = send.c; sourceTree = "<group>"; };
		10A3D3F91B4FAAF500327CF9 /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket.c; sourceTree = "<group>"; };
		10A3D3FA1B4FAAF500327CF9 /* strerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strerror.c; sourceTree = "<group>"; };
		10A3D3FE1B4FAAF500327CF9 /* yrmcds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yrmcds.h; sourceTree = "<group>"; };
		10A3D40E1B584BEC00327CF9 /* standalone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = standalone.h; sourceTree = "<group>"; };
		10A60DE91B0D87FE006E38EC /* annotate-backtrace-symbols */ = {isa = PBXFileReference; lastKnownFileType = text; path = "annotate-backtrace-symbols"; sourceTree = "<group>"; };
		10AA2E931A80A592004322AC /* time_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time_.h; sourceTree = "<group>"; };
		10AA2E951A80A612004322AC /* time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = time.c; sourceTree = "<group>"; };
		10AA2E981A81F68A004322AC /* time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = time.c; sourceTree = "<group>"; };
		10AA2E9E1A8807CF004322AC /* url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = url.h; sourceTree = "<group>"; };
		10AA2EA01A88082E004322AC /* url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = url.c; sourceTree = "<group>"; };
		10AA2EA21A88090B004322AC /* url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = url.c; sourceTree = "<group>"; };
		10AA2EA41A8D9999004322AC /* redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = redirect.c; sourceTree = "<group>"; };
		10AA2EA61A8DA93C004322AC /* redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = redirect.c; sourceTree = "<group>"; };
		10AA2EA81A8DAFD4004322AC /* 50redirect.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50redirect.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10AA2EA91A8DDC57004322AC /* multithread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = multithread.h; sourceTree = "<group>"; };
		10AA2EAB1A8DE0AE004322AC /* multithread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = multithread.c; sourceTree = "<group>"; };
		10AA2EAD1A8E22DA004322AC /* multithread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = multithread.c; sourceTree = "<group>"; };
		10AA2EB11A931409004322AC /* 50access-log.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50access-log.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10AA2EB21A9479B4004322AC /* 50reverse-proxy-upstream-down.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50reverse-proxy-upstream-down.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10AA2EB31A94B66D004322AC /* 40virtual-host.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "40virtual-host.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10AA2EB61A970EFC004322AC /* http2_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http2_internal.h; sourceTree = "<group>"; };
		10AA2EB81A971280004322AC /* http2_scheduler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http2_scheduler.h; sourceTree = "<group>"; };
		10AA2EBB1A9EEDF8004322AC /* proxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = proxy.c; sourceTree = "<group>"; };
		10AA2EBD1AA019D8004322AC /* headers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers.c; sourceTree = "<group>"; };
		10AA2EBF1AA019FC004322AC /* headers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers.c; sourceTree = "<group>"; };
		10AA2EC11AA0402E004322AC /* reproxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reproxy.c; sourceTree = "<group>"; };
		10AA2EC31AA0403A004322AC /* reproxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reproxy.c; sourceTree = "<group>"; };
		10AA2EC61AA05598004322AC /* upstream.psgi */ = {isa = PBXFileReference; lastKnownFileType = text; path = upstream.psgi; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10AAAC621B6C7A7D004487C3 /* http2_casper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http2_casper.h; sourceTree = "<group>"; };
		10AAAC641B6C9275004487C3 /* casper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = casper.c; sourceTree = "<group>"; };
		10B38A651B8D345D007DC191 /* mruby.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mruby.c; sourceTree = "<group>"; };
		10B38A711B8D34BB007DC191 /* mruby_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mruby_.h; sourceTree = "<group>"; };
		10B38A731B8D3544007DC191 /* mruby.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mruby.c; sourceTree = "<group>"; };
		10B6D4501C727315005F0CF8 /* 80yaml-merge.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "80yaml-merge.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10BA72A919AAD6300059392A /* stream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stream.c; sourceTree = "<group>"; };
		10BCF2FC1B168CAE0076939D /* fastcgi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fastcgi.c; sourceTree = "<group>"; };
		10BCF2FE1B1A892F0076939D /* fastcgi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fastcgi.c; sourceTree = "<group>"; };
		10BCF3001B214C460076939D /* fastcgi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fastcgi.c; sourceTree = "<group>"; };
		10C2117C1B8164B1005A9D02 /* 90root-fastcgi-php.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "90root-fastcgi-php.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10C45D4D1CFD15890096DB06 /* 50throttle-response.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50throttle-response.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10C45D4E1CFD15FA0096DB06 /* throttle_resp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = throttle_resp.c; sourceTree = "<group>"; };
		10C45D501CFD160A0096DB06 /* throttle_resp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = throttle_resp.c; sourceTree = "<group>"; };
		10C45D531CFE9B300096DB06 /* events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = events.c; sourceTree = "<group>"; };
		10C45D541CFE9B300096DB06 /* requests.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = requests.c; sourceTree = "<group>"; };
		10C45D571CFE9BB60096DB06 /* 50status.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 50status.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10C5A6311B268632006094A6 /* 50fastcgi.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = 50fastcgi.t; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10D0903919F0A51C0043D458 /* memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memory.h; sourceTree = "<group>"; };
		10D0903D19F0A8190043D458 /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = "<group>"; };
		10D0904019F0B9CD0043D458 /* timeout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timeout.h; sourceTree = "<group>"; };
		10D0904219F0BA780043D458 /* linklist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linklist.h; sourceTree = "<group>"; };
		10D0905119F0CA9C0043D458 /* examples-socket-server */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "examples-socket-server"; sourceTree = BUILT_PRODUCTS_DIR; };
		10D0905219F0CB130043D458 /* socket-client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "socket-client.c"; sourceTree = "<group>"; };
		10D0905419F102C70043D458 /* http1client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http1client.c; sourceTree = "<group>"; };
		10D0905619F102DA0043D458 /* http1client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = http1client.h; sourceTree = "<group>"; };
		10D0905819F22FA10043D458 /* string_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string_.h; sourceTree = "<group>"; };
		10D0905A19F230280043D458 /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
		10D0906919F38B2E0043D458 /* examples-http1client */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "examples-http1client"; sourceTree = BUILT_PRODUCTS_DIR; };
		10D0906A19F38B850043D458 /* http1client.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http1client.c; sourceTree = "<group>"; };
		10D0906E19F494CC0043D458 /* test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = test.c; sourceTree = "<group>"; };
		10D0906F19F494CC0043D458 /* test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = test.h; sourceTree = "<group>"; };
		10D0907219F633B00043D458 /* proxy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = proxy.c; sourceTree = "<group>"; };
		10DA969A1CCEF2C200679165 /* 50reverse-proxy-https.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50reverse-proxy-https.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10DA969B1CD2BF9000679165 /* cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache.h; sourceTree = "<group>"; };
		10DA969D1CD2BFAC00679165 /* cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache.c; sourceTree = "<group>"; };
		10DA969F1CD2BFEE00679165 /* cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cache.c; sourceTree = "<group>"; };
		10E299571A67E68500701AA6 /* scheduler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = scheduler.c; sourceTree = "<group>"; };
		10E299591A68D03100701AA6 /* scheduler.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = scheduler.c; sourceTree = "<group>"; };
		10EA45DF1D0949BF00769A2B /* examples-latency-optimization */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "examples-latency-optimization"; sourceTree = BUILT_PRODUCTS_DIR; };
		10EA45E01D094A1200769A2B /* latency-optimization.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "latency-optimization.c"; sourceTree = "<group>"; };
		10EC2A351A0B4D370083514F /* socketpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socketpool.h; sourceTree = "<group>"; };
		10EC2A371A0B4DC70083514F /* socketpool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socketpool.c; sourceTree = "<group>"; };
		10F417D319C1907B00B6E31A /* h2o */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = h2o; sourceTree = BUILT_PRODUCTS_DIR; };
		10F417D519C190F800B6E31A /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
		10F417FD19C2D2F800B6E31A /* picotest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picotest.c; sourceTree = "<group>"; };
		10F417FE19C2D2F800B6E31A /* picotest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = picotest.h; sourceTree = "<group>"; };
		10F4180019C2D31600B6E31A /* yoml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = yoml.h; path = yoml/yoml.h; sourceTree = "<group>"; };
		10F4180219C2D32100B6E31A /* yoml-parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "yoml-parser.h"; path = "yoml/yoml-parser.h"; sourceTree = "<group>"; };
		10F4180419CA75C500B6E31A /* configurator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = configurator.c; sourceTree = "<group>"; };
		10F4197F1B64E70D00BEAEAC /* golombset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = golombset.h; sourceTree = "<group>"; };
		10F4EB831C165B92003DA150 /* fastcgi-cgi.pl */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; path = "fastcgi-cgi.pl"; sourceTree = "<group>"; };
		10F4EB841C16BADD003DA150 /* 50fastcgi-cgi.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50fastcgi-cgi.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10F4EB861C177A12003DA150 /* hello.cgi */ = {isa = PBXFileReference; lastKnownFileType = text; path = hello.cgi; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10F4EB891C195B9E003DA150 /* htpasswd.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = htpasswd.rb; sourceTree = "<group>"; };
		10F9F2641AF4795D0056F26B /* redirect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = redirect.c; sourceTree = "<group>"; };
		10F9F2661AFC5F550056F26B /* hostinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hostinfo.c; sourceTree = "<group>"; };
		10FCC13C1B2E4A4500F13674 /* cloexec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cloexec.c; sourceTree = "<group>"; };
		10FCC13D1B2E4A4500F13674 /* cloexec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cloexec.h; sourceTree = "<group>"; };
		10FCC1411B2FCC6B00F13674 /* kill-on-close */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = "kill-on-close"; sourceTree = "<group>"; };
		10FCC1421B300A6800F13674 /* 50fastcgi-php.t */ = {isa = PBXFileReference; lastKnownFileType = text; path = "50fastcgi-php.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10FCC1431B31408B00F13674 /* fastcgi_directives.mt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fastcgi_directives.mt; sourceTree = "<group>"; };
		10FEF2441D6444E900E11B1D /* 50reverse-proxy-proxy-protocol.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "50reverse-proxy-proxy-protocol.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10FEF2481D6EC30800E11B1D /* 40bad-request.t */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "40bad-request.t"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.perl; };
		10FEF2491D6FC6F600E11B1D /* durations.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = durations.c; sourceTree = "<group>"; };
		10FEF24C1D6FC8E200E11B1D /* gkc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gkc.c; sourceTree = "<group>"; };
		10FEF24D1D6FC8E200E11B1D /* gkc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gkc.h; sourceTree = "<group>"; };
		10FFEE081BB23A8C0087AD75 /* neverbleed.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = neverbleed.c; sourceTree = "<group>"; };
		10FFEE091BB23A8C0087AD75 /* neverbleed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = neverbleed.h; sourceTree = "<group>"; };
		E90A95F21E30795100483D6C /* headers_util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers_util.c; sourceTree = "<group>"; };
		E90A95F41E30797D00483D6C /* headers_util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = headers_util.c; sourceTree = "<group>"; };
		E927CD612074855300D4797E /* sha512.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha512.c; sourceTree = "<group>"; };
		E9708AD81E499E040029E0A5 /* cifra.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cifra.c; sourceTree = "<group>"; };
		E9708AD91E499E040029E0A5 /* openssl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openssl.c; sourceTree = "<group>"; };
		E9708ADA1E499E040029E0A5 /* picotls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = picotls.c; sourceTree = "<group>"; };
		E9708ADF1E49A2120029E0A5 /* picotls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = picotls.h; sourceTree = "<group>"; };
		E9708AE21E49A2260029E0A5 /* minicrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = minicrypto.h; sourceTree = "<group>"; };
		E9708AE31E49A2260029E0A5 /* openssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openssl.h; sourceTree = "<group>"; };
		E9708AEC1E49A2910029E0A5 /* aes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aes.c; sourceTree = "<group>"; };
		E9708AED1E49A2910029E0A5 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
		E9708AF01E49A2B90029E0A5 /* bitops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bitops.h; sourceTree = "<group>"; };
		E9708AF11E49A2B90029E0A5 /* blockwise.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = blockwise.c; sourceTree = "<group>"; };
		E9708AF21E49A2B90029E0A5 /* blockwise.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blockwise.h; sourceTree = "<group>"; };
		E9708AF61E49A3130029E0A5 /* cf_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cf_config.h; sourceTree = "<group>"; };
		E9708AF71E49A3130029E0A5 /* chash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chash.c; sourceTree = "<group>"; };
		E9708AF81E49A3130029E0A5 /* chash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chash.h; sourceTree = "<group>"; };
		E9708AF91E49A3130029E0A5 /* curve25519.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = curve25519.c; sourceTree = "<group>"; };
		E9708AFA1E49A3130029E0A5 /* curve25519.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = curve25519.h; sourceTree = "<group>"; };
		E9708AFC1E49A3130029E0A5 /* drbg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = drbg.c; sourceTree = "<group>"; };
		E9708AFD1E49A3130029E0A5 /* drbg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = drbg.h; sourceTree = "<group>"; };
		E9708AFE1E49A3130029E0A5 /* gcm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gcm.c; sourceTree = "<group>"; };
		E9708AFF1E49A3130029E0A5 /* gf128.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gf128.c; sourceTree = "<group>"; };
		E9708B001E49A3130029E0A5 /* gf128.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gf128.h; sourceTree = "<group>"; };
		E9708B011E49A3130029E0A5 /* hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hmac.c; sourceTree = "<group>"; };
		E9708B021E49A3130029E0A5 /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
		E9708B031E49A3130029E0A5 /* modes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = modes.c; sourceTree = "<group>"; };
		E9708B041E49A3130029E0A5 /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
		E9708B051E49A3130029E0A5 /* sha2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha2.h; sourceTree = "<group>"; };
		E9708B061E49A3130029E0A5 /* sha256.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sha256.c; sourceTree = "<group>"; };
		E9708B071E49A3130029E0A5 /* tassert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tassert.h; sourceTree = "<group>"; };
		E9708B1B1E49A3480029E0A5 /* handy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = handy.h; sourceTree = "<group>"; };
		E9BC76E21F00E6DA00EB7A09 /* poly1305.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = poly1305.h; sourceTree = "<group>"; };
		E9BC76E41F00E70700EB7A09 /* salsa20.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = salsa20.h; sourceTree = "<group>"; };
		E9BC76E61F00E72D00EB7A09 /* chacha20.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chacha20.c; sourceTree = "<group>"; };
		E9BC76E91F00E74C00EB7A09 /* poly1305.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poly1305.c; sourceTree = "<group>"; };
		E9CD04271F8F1D5D00524877 /* Changes */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Changes; sourceTree = "<group>"; };
		E9CD04281F8F1D7500524877 /* CONTRIBUTING.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = CONTRIBUTING.md; sourceTree = "<group>"; };
		E9CD04291F8F1D7F00524877 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
		E9CD042A1F8F1D8A00524877 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		1079231219A320A700C52AD6 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		107923D619A321F400C52AD6 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1079240119A3241A00C52AD6 /* libh2o.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1079240719A3247A00C52AD6 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1079240819A3247A00C52AD6 /* libh2o.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1079242F19A3260E00C52AD6 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1079243019A3260E00C52AD6 /* libh2o.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10D0904919F0CA9C0043D458 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				10D0904A19F0CA9C0043D458 /* libh2o.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10D0906119F38B2E0043D458 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				10D0906219F38B2E0043D458 /* libh2o.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10EA45D71D0949BF00769A2B /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				10EA45D81D0949BF00769A2B /* libh2o.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10F417CB19C1907B00B6E31A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		100A550D1C2BB12A00C4E3E0 /* mruby */ = {
			isa = PBXGroup;
			children = (
				08E9CC4D1E41F6660049DD26 /* embedded.c.h */,
				100A55141C30C5BC00C4E3E0 /* chunked.c */,
				100A550E1C2BB15100C4E3E0 /* http_request.c */,
			);
			path = mruby;
			sourceTree = "<group>";
		};
		104B9A3F1A5CD684009EEE64 /* share */ = {
			isa = PBXGroup;
			children = (
				104B9A431A5D0028009EEE64 /* h2o */,
			);
			path = share;
			sourceTree = "<group>";
		};
		104B9A431A5D0028009EEE64 /* h2o */ = {
			isa = PBXGroup;
			children = (
				10F4EB881C195B5C003DA150 /* mruby */,
				10835E061C9B8E8000197E59 /* status */,
				10A60DE91B0D87FE006E38EC /* annotate-backtrace-symbols */,
				104B9A401A5CD69B009EEE64 /* fetch-ocsp-response */,
				10FCC1411B2FCC6B00F13674 /* kill-on-close */,
			);
			path = h2o;
			sourceTree = "<group>";
		};
		104B9A4A1A5FA7E5009EEE64 /* common */ = {
			isa = PBXGroup;
			children = (
				10DA969D1CD2BFAC00679165 /* cache.c */,
				107D4D541B5B30EE004A9B21 /* file.c */,
				1044812F1BFD10450007863F /* filecache.c */,
				1058C8891AA6E5E3008D6180 /* hostinfo.c */,
				10D0905419F102C70043D458 /* http1client.c */,
				10A3D3D11B4CDBDC00327CF9 /* memcached.c */,
				107923BA19A3217300C52AD6 /* memory.c */,
				10AA2EAB1A8DE0AE004322AC /* multithread.c */,
				104B9A241A4A4FEE009EEE64 /* serverutil.c */,
				101788B119B561AA0084C6D8 /* socket.c */,
				1065E70919BF18A600686E72 /* socket */,
				10EC2A371A0B4DC70083514F /* socketpool.c */,
				10D0905A19F230280043D458 /* string.c */,
				10AA2E951A80A612004322AC /* time.c */,
				1065E6F819BEBAC600686E72 /* timeout.c */,
				10AA2EA01A88082E004322AC /* url.c */,
			);
			path = common;
			sourceTree = "<group>";
		};
		104B9A4B1A5FA804009EEE64 /* handler */ = {
			isa = PBXGroup;
			children = (
				105534D91A3C7A2000627ECB /* configurator */,
				101B670B19ADD3380084A351 /* access_log.c */,
				107923AE19A3217300C52AD6 /* chunked.c */,
				1070866B1B787D06002B8F18 /* compress.c */,
				107E340E1C7EB10700AEF5F8 /* compress */,
				106C22FE1C05436100405689 /* errordoc.c */,
				104B9A501A5FB096009EEE64 /* expires.c */,
				10BCF2FC1B168CAE0076939D /* fastcgi.c */,
				107923AF19A3217300C52AD6 /* file.c */,
				105534E91A42A83700627ECB /* file */,
				10AA2EBD1AA019D8004322AC /* headers.c */,
				E90A95F21E30795100483D6C /* headers_util.c */,
				107923BB19A3217300C52AD6 /* mimemap.c */,
				108867731AD9061100987967 /* mimemap */,
				10B38A651B8D345D007DC191 /* mruby.c */,
				100A550D1C2BB12A00C4E3E0 /* mruby */,
				10D0907219F633B00043D458 /* proxy.c */,
				10AA2EA41A8D9999004322AC /* redirect.c */,
				10AA2EC31AA0403A004322AC /* reproxy.c */,
				10835E021C9A860000197E59 /* status.c */,
				10C45D521CFE9B180096DB06 /* status */,
				10C45D501CFD160A0096DB06 /* throttle_resp.c */,
				084FC7C01D54B90D00E89F66 /* http2_debug_state.c */,
			);
			path = handler;
			sourceTree = "<group>";
		};
		104B9A4C1A5FA8B5009EEE64 /* core */ = {
			isa = PBXGroup;
			children = (
				105534EE1A440FC800627ECB /* config.c */,
				10F4180419CA75C500B6E31A /* configurator.c */,
				107923B919A3217300C52AD6 /* context.c */,
				107923B019A3217300C52AD6 /* headers.c */,
				10835E001C9A6C2400197E59 /* logconf.c */,
				10AA2EBB1A9EEDF8004322AC /* proxy.c */,
				107923BC19A3217300C52AD6 /* request.c */,
				107923BF19A3217300C52AD6 /* token.c */,
				1079245319A32C0800C52AD6 /* token_table.h */,
				107923C019A3217300C52AD6 /* util.c */,
			);
			path = core;
			sourceTree = "<group>";
		};
		104B9A4D1A5FAA7B009EEE64 /* common */ = {
			isa = PBXGroup;
			children = (
				10DA969F1CD2BFEE00679165 /* cache.c */,
				10F9F2661AFC5F550056F26B /* hostinfo.c */,
				10AA2EAD1A8E22DA004322AC /* multithread.c */,
				104B9A271A4A5139009EEE64 /* serverutil.c */,
				103BAB351B130666000694F4 /* socket.c */,
				105534C61A3BB29100627ECB /* string.c */,
				10AA2E981A81F68A004322AC /* time.c */,
				10AA2EA21A88090B004322AC /* url.c */,
			);
			path = common;
			sourceTree = "<group>";
		};
		104B9A4E1A5FAA91009EEE64 /* core */ = {
			isa = PBXGroup;
			children = (
				104B9A471A5F9472009EEE64 /* headers.c */,
				105534C81A3BB41C00627ECB /* proxy.c */,
				1070E1621B4508B0001CCAFA /* util.c */,
			);
			path = core;
			sourceTree = "<group>";
		};
		104B9A4F1A5FAAA5009EEE64 /* handler */ = {
			isa = PBXGroup;
			children = (
				10BCF3001B214C460076939D /* fastcgi.c */,
				105534BD1A3B8F7700627ECB /* file.c */,
				1070866F1B7925D5002B8F18 /* compress.c */,
				105534C21A3B917000627ECB /* mimemap.c */,
				1058C87C1AA41789008D6180 /* headers.c */,
				10F9F2641AF4795D0056F26B /* redirect.c */,
			);
			path = handler;
			sourceTree = "<group>";
		};
		105534BF1A3B90E600627ECB /* http2 */ = {
			isa = PBXGroup;
			children = (
				1024A3FF1D23606300EB13F1 /* cache_digests.c */,
				107086691B70A00F002B8F18 /* casper.c */,
				105534C01A3B911300627ECB /* hpack.c */,
				10E299591A68D03100701AA6 /* scheduler.c */,
			);
			path = http2;
			sourceTree = "<group>";
		};
		105534C41A3BB1C300627ECB /* 00unit */ = {
			isa = PBXGroup;
			children = (
				10583BFE1AEF3652004A3AD6 /* issues */,
				105534C51A3BB1E700627ECB /* lib */,
				107D4D421B587ED6004A9B21 /* src */,
				10D0906F19F494CC0043D458 /* test.h */,
				10D0906E19F494CC0043D458 /* test.c */,
			);
			path = 00unit;
			sourceTree = "<group>";
		};
		105534C51A3BB1E700627ECB /* lib */ = {
			isa = PBXGroup;
			children = (
				104B9A4D1A5FAA7B009EEE64 /* common */,
				104B9A4E1A5FAA91009EEE64 /* core */,
				104B9A4F1A5FAAA5009EEE64 /* handler */,
				105534BF1A3B90E600627ECB /* http2 */,
			);
			path = lib;
			sourceTree = "<group>";
		};
		105534D91A3C7A2000627ECB /* configurator */ = {
			isa = PBXGroup;
			children = (
				105534DA1A3C7A5400627ECB /* access_log.c */,
				107086711B798487002B8F18 /* compress.c */,
				104B9A521A5FC7C4009EEE64 /* expires.c */,
				106C23001C0544CE00405689 /* errordoc.c */,
				10BCF2FE1B1A892F0076939D /* fastcgi.c */,
				105534DC1A3C7AA900627ECB /* file.c */,
				10AA2EBF1AA019FC004322AC /* headers.c */,
				E90A95F41E30797D00483D6C /* headers_util.c */,
				10B38A731B8D3544007DC191 /* mruby.c */,
				105534DE1A3C7B9800627ECB /* proxy.c */,
				10AA2EA61A8DA93C004322AC /* redirect.c */,
				10AA2EC11AA0402E004322AC /* reproxy.c */,
				10835E041C9B3C6200197E59 /* status.c */,
				10C45D4E1CFD15FA0096DB06 /* throttle_resp.c */,
				084FC7C31D54BB9200E89F66 /* http2_debug_state.c */,
			);
			path = configurator;
			sourceTree = "<group>";
		};
		105534E91A42A83700627ECB /* file */ = {
			isa = PBXGroup;
			children = (
				105534EC1A42AD5E00627ECB /* templates.c.h */,
				105534EA1A42A87E00627ECB /* _templates.c.h */,
			);
			path = file;
			sourceTree = "<group>";
		};
		10583BDB1AE5A1E3004A3AD6 /* srcdoc */ = {
			isa = PBXGroup;
			children = (
				10583BF31AE764A7004A3AD6 /* configure */,
				1054DF471BBBB038008347C9 /* benchmarks.mt */,
				10583BE11AE5A22D004A3AD6 /* configure.mt */,
				10583BE21AE5A22D004A3AD6 /* faq.mt */,
				10583BE31AE5A22D004A3AD6 /* index.mt */,
				10583BE41AE5A22D004A3AD6 /* install.mt */,
				10583BDC1AE5A20A004A3AD6 /* snippets */,
			);
			path = srcdoc;
			sourceTree = "<group>";
		};
		10583BDC1AE5A20A004A3AD6 /* snippets */ = {
			isa = PBXGroup;
			children = (
				10583BE01AE5A222004A3AD6 /* wrapper.mt */,
				10583BFD1AE8A7E1004A3AD6 /* directive.mt */,
			);
			path = snippets;
			sourceTree = "<group>";
		};
		10583BEC1AE5A353004A3AD6 /* doc */ = {
			isa = PBXGroup;
			children = (
				10583BF71AE783AB004A3AD6 /* assets */,
				10583BED1AE5A37B004A3AD6 /* Makefile */,
				10583BEE1AE5A37B004A3AD6 /* README.md */,
			);
			path = doc;
			sourceTree = "<group>";
		};
		10583BF31AE764A7004A3AD6 /* configure */ = {
			isa = PBXGroup;
			children = (
				10583BFB1AE78DCC004A3AD6 /* syntax_and_structure.mt */,
				10583BF51AE765E0004A3AD6 /* command_options.mt */,
				10583BF61AE765E0004A3AD6 /* quick_start.mt */,
				10583BFC1AE88782004A3AD6 /* base_directives.mt */,
				10583C011AEF86E6004A3AD6 /* http1_directives.mt */,
				10583C021AEF8C7D004A3AD6 /* http2_directives.mt */,
				10583C031AF1D7D5004A3AD6 /* access_log_directives.mt */,
				106C23041C1132E000405689 /* errordoc_directives.mt */,
				10583C041AF1F315004A3AD6 /* expires_directives.mt */,
				10FCC1431B31408B00F13674 /* fastcgi_directives.mt */,
				10583C051AF1F893004A3AD6 /* file_directives.mt */,
				1063FE901BB291300064D9C7 /* compress_directives.mt */,
				10583C061AF20BE5004A3AD6 /* headers_directives.mt */,
				1039A20A1BB89531005D3B8F /* mruby_directives.mt */,
				10583C071AF21539004A3AD6 /* proxy_directives.mt */,
				10583C081AF2188E004A3AD6 /* redirect_directives.mt */,
				10583C091AF2D302004A3AD6 /* reproxy_directives.mt */,
				10835E081CA2204E00197E59 /* status_directives.mt */,
				10955C2C1D1BA47100935796 /* throttle_response_directives.mt */,
				10952D5C1C608D19000D664C /* basic_auth.mt */,
				10952D5B1C608A6B000D664C /* cgi.mt */,
				10952D5D1C62D4DC000D664C /* mruby.mt */,
			);
			path = configure;
			sourceTree = "<group>";
		};
		10583BF71AE783AB004A3AD6 /* assets */ = {
			isa = PBXGroup;
			children = (
				10583BF81AE783BE004A3AD6 /* remotebench.png */,
				10583BF91AE783BE004A3AD6 /* searchstyle.css */,
				10583BFA1AE783BE004A3AD6 /* style.css */,
			);
			name = assets;
			sourceTree = "<group>";
		};
		10583BFE1AEF3652004A3AD6 /* issues */ = {
			isa = PBXGroup;
			children = (
				10583BFF1AEF368A004A3AD6 /* 293.c */,
				106530A51D82C09E005B2C60 /* percent-encode-zero-byte.c */,
			);
			path = issues;
			sourceTree = "<group>";
		};
		1065E6F319B9969000686E72 /* evloop */ = {
			isa = PBXGroup;
			children = (
				1070E15C1B438E8F001CCAFA /* poll.c.h */,
				1065E6F619B99E6D00686E72 /* kqueue.c.h */,
				1065E6F719B9B1AC00686E72 /* epoll.c.h */,
			);
			path = evloop;
			sourceTree = "<group>";
		};
		1065E70919BF18A600686E72 /* socket */ = {
			isa = PBXGroup;
			children = (
				1065E6EF19B8C64200686E72 /* evloop.c.h */,
				1065E6F319B9969000686E72 /* evloop */,
				1065E70719BF17FE00686E72 /* uv-binding.c.h */,
			);
			path = socket;
			sourceTree = "<group>";
		};
		10756E221AC125E00009BF57 /* yaml */ = {
			isa = PBXGroup;
			children = (
				10756E231AC126020009BF57 /* include */,
				10756E241AC126080009BF57 /* src */,
			);
			path = yaml;
			sourceTree = "<group>";
		};
		10756E231AC126020009BF57 /* include */ = {
			isa = PBXGroup;
			children = (
				10756E251AC126250009BF57 /* yaml.h */,
			);
			path = include;
			sourceTree = "<group>";
		};
		10756E241AC126080009BF57 /* src */ = {
			isa = PBXGroup;
			children = (
				10756E261AC126420009BF57 /* api.c */,
				10756E271AC126420009BF57 /* dumper.c */,
				10756E281AC126420009BF57 /* emitter.c */,
				10756E291AC126420009BF57 /* loader.c */,
				10756E2E1AC1264D0009BF57 /* parser.c */,
				10756E2F1AC1264D0009BF57 /* reader.c */,
				10756E301AC1264D0009BF57 /* scanner.c */,
				10756E311AC1264D0009BF57 /* writer.c */,
				10756E321AC1264D0009BF57 /* yaml_private.h */,
			);
			path = src;
			sourceTree = "<group>";
		};
		1079230C19A320A700C52AD6 = {
			isa = PBXGroup;
			children = (
				1082150B1AB26F2F00D27E66 /* cmake */,
				1082150A1AB26F2A00D27E66 /* CMakeLists.txt */,
				1079231E19A3210D00C52AD6 /* deps */,
				10583BEC1AE5A353004A3AD6 /* doc */,
				1079239E19A3215F00C52AD6 /* include */,
				107923AD19A3217300C52AD6 /* lib */,
				107923AA19A3216B00C52AD6 /* misc */,
				104B9A3F1A5CD684009EEE64 /* share */,
				10F417D419C190DD00B6E31A /* src */,
				10583BDB1AE5A1E3004A3AD6 /* srcdoc */,
				10D0906D19F494990043D458 /* t */,
				107923FE19A3239200C52AD6 /* examples */,
				1079231619A320A700C52AD6 /* Products */,
			);
			sourceTree = "<group>";
		};
		1079231619A320A700C52AD6 /* Products */ = {
			isa = PBXGroup;
			children = (
				1079231519A320A700C52AD6 /* libh2o.a */,
				107923D919A321F400C52AD6 /* examples-simple */,
				1079240D19A3247A00C52AD6 /* websocket */,
				1079243519A3260E00C52AD6 /* unittest */,
				10F417D319C1907B00B6E31A /* h2o */,
				10D0905119F0CA9C0043D458 /* examples-socket-server */,
				10D0906919F38B2E0043D458 /* examples-http1client */,
				10EA45DF1D0949BF00769A2B /* examples-latency-optimization */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		1079231E19A3210D00C52AD6 /* deps */ = {
			isa = PBXGroup;
			children = (
				107E33ED1C7EAECD00AEF5F8 /* brotli */,
				10FCC13B1B2E4A2C00F13674 /* cloexec */,
				10F4197E1B64E6C300BEAEAC /* golombset */,
				10FEF24B1D6FC8C800E11B1D /* libgkc */,
				1079231F19A3210D00C52AD6 /* klib */,
				10A3D3DC1B4FAA5900327CF9 /* libyrmcds */,
				10FFEE071BB23A730087AD75 /* neverbleed */,
				1079235619A3210D00C52AD6 /* picohttpparser */,
				10F417FB19C2D2B400B6E31A /* picotest */,
				E9708AD01E499D8B0029E0A5 /* picotls */,
				109428A91CC6C48C00E676CB /* ssl-conservatory */,
				10756E221AC125E00009BF57 /* yaml */,
				10F417FC19C2D2BA00B6E31A /* yoml */,
			);
			path = deps;
			sourceTree = "<group>";
		};
		1079231F19A3210D00C52AD6 /* klib */ = {
			isa = PBXGroup;
			children = (
				1079232619A3210D00C52AD6 /* khash.h */,
			);
			path = klib;
			sourceTree = "<group>";
		};
		1079235619A3210D00C52AD6 /* picohttpparser */ = {
			isa = PBXGroup;
			children = (
				1079235A19A3210D00C52AD6 /* picohttpparser.c */,
				1079235B19A3210D00C52AD6 /* picohttpparser.h */,
			);
			path = picohttpparser;
			sourceTree = "<group>";
		};
		1079239E19A3215F00C52AD6 /* include */ = {
			isa = PBXGroup;
			children = (
				107923A419A3215F00C52AD6 /* h2o.h */,
				1079239F19A3215F00C52AD6 /* h2o */,
			);
			path = include;
			sourceTree = "<group>";
		};
		1079239F19A3215F00C52AD6 /* h2o */ = {
			isa = PBXGroup;
			children = (
				10DA969B1CD2BF9000679165 /* cache.h */,
				1024A3FD1D22546800EB13F1 /* cache_digests.h */,
				105534D71A3C785000627ECB /* configurator.h */,
				107D4D521B5B2412004A9B21 /* file.h */,
				1044812D1BFD0FBE0007863F /* filecache.h */,
				1058C8871AA6DE4B008D6180 /* hostinfo.h */,
				107923A019A3215F00C52AD6 /* http1.h */,
				10D0905619F102DA0043D458 /* http1client.h */,
				107923A119A3215F00C52AD6 /* http2.h */,
				10AAAC621B6C7A7D004487C3 /* http2_casper.h */,
				10AA2EB61A970EFC004322AC /* http2_internal.h */,
				10AA2EB81A971280004322AC /* http2_scheduler.h */,
				10A3D3D01B4CDBC700327CF9 /* memcached.h */,
				10D0904219F0BA780043D458 /* linklist.h */,
				10D0903919F0A51C0043D458 /* memory.h */,
				10AA2EA91A8DDC57004322AC /* multithread.h */,
				10B38A711B8D34BB007DC191 /* mruby_.h */,
				1058F6EC1D7CC81E00FFFFA3 /* openssl_backport.h */,
				1047A9FE1D0E6D5900CC4BCE /* rand.h */,
				104B9A231A4A4FAF009EEE64 /* serverutil.h */,
				10D0903F19F0B90A0043D458 /* socket */,
				10D0903D19F0A8190043D458 /* socket.h */,
				10EC2A351A0B4D370083514F /* socketpool.h */,
				10D0905819F22FA10043D458 /* string_.h */,
				10AA2E931A80A592004322AC /* time_.h */,
				10D0904019F0B9CD0043D458 /* timeout.h */,
				107923A219A3215F00C52AD6 /* token.h */,
				106C22F91C040F7800405689 /* tunnel.h */,
				10AA2E9E1A8807CF004322AC /* url.h */,
				107923A319A3215F00C52AD6 /* websocket.h */,
				104B9A2C1A4BE029009EEE64 /* version.h */,
			);
			path = h2o;
			sourceTree = "<group>";
		};
		107923AA19A3216B00C52AD6 /* misc */ = {
			isa = PBXGroup;
			children = (
				10F4EB831C165B92003DA150 /* fastcgi-cgi.pl */,
				10583BE61AE5A322004A3AD6 /* clang-format-all.sh */,
				104960151B9D3F9100FF136D /* dump-github-repository.pl */,
				10583BE71AE5A322004A3AD6 /* install-perl-module.pl */,
				10583BE81AE5A330004A3AD6 /* libressl.mk */,
				10583BE91AE5A330004A3AD6 /* makedoc.pl */,
				10583BEA1AE5A341004A3AD6 /* picotemplate-conf.pl */,
				10583BEB1AE5A341004A3AD6 /* regen.mk */,
				107923AB19A3216B00C52AD6 /* tokens.pl */,
			);
			path = misc;
			sourceTree = "<group>";
		};
		107923AD19A3217300C52AD6 /* lib */ = {
			isa = PBXGroup;
			children = (
				104B9A4A1A5FA7E5009EEE64 /* common */,
				104B9A4C1A5FA8B5009EEE64 /* core */,
				104B9A4B1A5FA804009EEE64 /* handler */,
				107923B119A3217300C52AD6 /* http1.c */,
				107923B219A3217300C52AD6 /* http2 */,
				106C22F71C040F6400405689 /* tunnel.c */,
				107923C119A3217300C52AD6 /* websocket.c */,
			);
			path = lib;
			sourceTree = "<group>";
		};
		107923B219A3217300C52AD6 /* http2 */ = {
			isa = PBXGroup;
			children = (
				107923B519A3217300C52AD6 /* hpack_huffman_table.h */,
				107923B619A3217300C52AD6 /* hpack_static_table.h */,
				1024A3FB1D22315000EB13F1 /* cache_digests.c */,
				10AAAC641B6C9275004487C3 /* casper.c */,
				107923B319A3217300C52AD6 /* connection.c */,
				107923B819A3217300C52AD6 /* frame.c */,
				107923B419A3217300C52AD6 /* hpack.c */,
				10BA72A919AAD6300059392A /* stream.c */,
				10E299571A67E68500701AA6 /* scheduler.c */,
				080D35EA1D5E060D0029B7E5 /* http2_debug_state.c */,
			);
			path = http2;
			sourceTree = "<group>";
		};
		107923FE19A3239200C52AD6 /* examples */ = {
			isa = PBXGroup;
			children = (
				10BF213E1A087CDF008F7129 /* libh2o */,
			);
			path = examples;
			sourceTree = "<group>";
		};
		107D4D421B587ED6004A9B21 /* src */ = {
			isa = PBXGroup;
			children = (
				107D4D431B588021004A9B21 /* ssl.c */,
			);
			path = src;
			sourceTree = "<group>";
		};
		107E33ED1C7EAECD00AEF5F8 /* brotli */ = {
			isa = PBXGroup;
			children = (
				107E33EE1C7EAEF500AEF5F8 /* enc */,
			);
			path = brotli;
			sourceTree = "<group>";
		};
		107E33EE1C7EAEF500AEF5F8 /* enc */ = {
			isa = PBXGroup;
			children = (
				107E340B1C7EAFAB00AEF5F8 /* encode.h */,
				107E33EF1C7EAF5A00AEF5F8 /* backward_references.cc */,
				107E33F01C7EAF5A00AEF5F8 /* block_splitter.cc */,
				107E33F11C7EAF5A00AEF5F8 /* brotli_bit_stream.cc */,
				107E33F21C7EAF5A00AEF5F8 /* compress_fragment_two_pass.cc */,
				107E33F31C7EAF5A00AEF5F8 /* compress_fragment.cc */,
				107E340C1C7EAFE600AEF5F8 /* dictionary.cc */,
				107E33FA1C7EAF9300AEF5F8 /* encode.cc */,
				107E33FB1C7EAF9300AEF5F8 /* entropy_encode.cc */,
				107E33FC1C7EAF9300AEF5F8 /* histogram.cc */,
				107E33FD1C7EAF9300AEF5F8 /* literal_cost.cc */,
				107E33FE1C7EAF9300AEF5F8 /* metablock.cc */,
				107E33FF1C7EAF9300AEF5F8 /* static_dict.cc */,
				107E34001C7EAF9300AEF5F8 /* streams.cc */,
				107E34011C7EAF9300AEF5F8 /* utf8_util.cc */,
			);
			path = enc;
			sourceTree = "<group>";
		};
		107E340E1C7EB10700AEF5F8 /* compress */ = {
			isa = PBXGroup;
			children = (
				107E340F1C7EB13F00AEF5F8 /* gzip.c */,
				107E34111C7EE0D200AEF5F8 /* brotli.cc */,
			);
			path = compress;
			sourceTree = "<group>";
		};
		108215061AAD41A000D27E66 /* 50reverse-proxy */ = {
			isa = PBXGroup;
			children = (
				108215071AAD41CE00D27E66 /* test.pl */,
			);
			name = "50reverse-proxy";
			sourceTree = "<group>";
		};
		1082150B1AB26F2F00D27E66 /* cmake */ = {
			isa = PBXGroup;
			children = (
				1082150C1AB26F4700D27E66 /* FindWslay.cmake */,
				1082150D1AB26F4700D27E66 /* FindLibYAML.cmake */,
				1082150E1AB26F4700D27E66 /* FindLibUV.cmake */,
			);
			path = cmake;
			sourceTree = "<group>";
		};
		10835E061C9B8E8000197E59 /* status */ = {
			isa = PBXGroup;
			children = (
				10835E071C9B8EA700197E59 /* index.html */,
			);
			path = status;
			sourceTree = "<group>";
		};
		108867731AD9061100987967 /* mimemap */ = {
			isa = PBXGroup;
			children = (
				108867741AD9069900987967 /* defaults.c.h */,
			);
			path = mimemap;
			sourceTree = "<group>";
		};
		109428A91CC6C48C00E676CB /* ssl-conservatory */ = {
			isa = PBXGroup;
			children = (
				109428AA1CC6C4B600E676CB /* openssl */,
			);
			path = "ssl-conservatory";
			sourceTree = "<group>";
		};
		109428AA1CC6C4B600E676CB /* openssl */ = {
			isa = PBXGroup;
			children = (
				109428AB1CC6C4C700E676CB /* openssl_hostname_validation.c */,
				109428AC1CC6C4C700E676CB /* openssl_hostname_validation.h */,
			);
			path = openssl;
			sourceTree = "<group>";
		};
		10A3D3DC1B4FAA5900327CF9 /* libyrmcds */ = {
			isa = PBXGroup;
			children = (
				10A3D3FE1B4FAAF500327CF9 /* yrmcds.h */,
				1022E7C41CA8BCEB00CE2A05 /* yrmcds_portability.h */,
				1022E7C51CA8BCEB00CE2A05 /* yrmcds_text.h */,
				10A3D3ED1B4FAAEC00327CF9 /* close.c */,
				10A3D3EE1B4FAAEC00327CF9 /* connect.c */,
				10A3D3F61B4FAAF500327CF9 /* recv.c */,
				10A3D3F71B4FAAF500327CF9 /* send.c */,
				1022E7C01CA8BC9E00CE2A05 /* send_text.c */,
				10A3D3F91B4FAAF500327CF9 /* socket.c */,
				10A3D3FA1B4FAAF500327CF9 /* strerror.c */,
				1022E7C21CA8BCCE00CE2A05 /* text_mode.c */,
			);
			path = libyrmcds;
			sourceTree = "<group>";
		};
		10AA2EC51AA0557A004322AC /* assets */ = {
			isa = PBXGroup;
			children = (
				10F4EB851C1779F8003DA150 /* doc_root */,
				10AA2EC61AA05598004322AC /* upstream.psgi */,
			);
			path = assets;
			sourceTree = "<group>";
		};
		10BF213E1A087CDF008F7129 /* libh2o */ = {
			isa = PBXGroup;
			children = (
				10D0906A19F38B850043D458 /* http1client.c */,
				10D0905219F0CB130043D458 /* socket-client.c */,
				107923FC19A3238500C52AD6 /* simple.c */,
				1079241319A324B400C52AD6 /* websocket.c */,
				10EA45E01D094A1200769A2B /* latency-optimization.c */,
			);
			path = libh2o;
			sourceTree = "<group>";
		};
		10C45D521CFE9B180096DB06 /* status */ = {
			isa = PBXGroup;
			children = (
				10FEF2491D6FC6F600E11B1D /* durations.c */,
				10C45D531CFE9B300096DB06 /* events.c */,
				10C45D541CFE9B300096DB06 /* requests.c */,
			);
			path = status;
			sourceTree = "<group>";
		};
		10D0903F19F0B90A0043D458 /* socket */ = {
			isa = PBXGroup;
			children = (
				1065E70419BF145700686E72 /* evloop.h */,
				1065E70619BF14E500686E72 /* uv-binding.h */,
			);
			path = socket;
			sourceTree = "<group>";
		};
		10D0906D19F494990043D458 /* t */ = {
			isa = PBXGroup;
			children = (
				109EEFE61D77B376001F11D1 /* README.md */,
				105534C41A3BB1C300627ECB /* 00unit */,
				105534F21A460EF600627ECB /* 00unit.evloop.t */,
				105534F31A460EF600627ECB /* 00unit.libuv.t */,
				109EEFDC1D77B350001F11D1 /* 00unit.mruby.t */,
				105534F41A460EF600627ECB /* 10http1client.t */,
				10FEF2481D6EC30800E11B1D /* 40bad-request.t */,
				104CD5021CC465AF0057C62F /* 40env.t */,
				104B9A301A58F55E009EEE64 /* 40max-connections.t */,
				10A3D3D71B4F4D0900327CF9 /* 40memcached-session-resumption.t */,
				105534F51A460EF600627ECB /* 40protocol.t */,
				1070E1641B451D43001CCAFA /* 40proxy-protocol.t */,
				104B9A311A59D7A2009EEE64 /* 40running-user.t */,
				108215081AB14B1100D27E66 /* 40server-push.t */,
				109EEFDE1D77B350001F11D1 /* 40server-push-multiple.t */,
				107D4D501B58B342004A9B21 /* 40session-ticket.t */,
				104B9A321A59E27A009EEE64 /* 40ssl-cipher-suite.t */,
				104B9A221A47BBA1009EEE64 /* 40unix-socket.t */,
				10AA2EB31A94B66D004322AC /* 40virtual-host.t */,
				106C22FB1C0413DA00405689 /* 40websocket.t */,
				10AA2EB11A931409004322AC /* 50access-log.t */,
				109EEFD91D77B336001F11D1 /* 50chunked-encoding-proxying.t */,
				107086741B79A08D002B8F18 /* 50compress.t */,
				109EEFDA1D77B336001F11D1 /* 50config-tag.t */,
				106C23021C06AB2F00405689 /* 50errordoc.t */,
				104B9A541A60773E009EEE64 /* 50expires.t */,
				10C5A6311B268632006094A6 /* 50fastcgi.t */,
				10F4EB841C16BADD003DA150 /* 50fastcgi-cgi.t */,
				10FCC1421B300A6800F13674 /* 50fastcgi-php.t */,
				105534F61A460EF600627ECB /* 50file-config.t */,
				109EEFE41D77B360001F11D1 /* 50file.t */,
				107E34231C86801E00AEF5F8 /* 50file-file.t */,
				100AE41A1B27D74800CE18BB /* 50file-range.t */,
				1058C87F1AA42568008D6180 /* 50headers.t */,
				109EEFDB1D77B336001F11D1 /* 50http2_debug_state.t */,
				105534F71A460F2E00627ECB /* 50mimemap.t */,
				10A3D3D61B4F1E3200327CF9 /* 50mruby.t */,
				109EEFDD1D77B350001F11D1 /* 50mruby-acl.t */,
				109EEFDF1D77B350001F11D1 /* 50mruby-dos-detector.t */,
				100A550C1C22857B00C4E3E0 /* 50mruby-htpasswd.t */,
				100A55131C2E5FAC00C4E3E0 /* 50mruby-http-request.t */,
				105534F81A460F2E00627ECB /* 50post-size-limit.t */,
				10AA2EA81A8DAFD4004322AC /* 50redirect.t */,
				108215061AAD41A000D27E66 /* 50reverse-proxy */,
				108214FE1AAD34DD00D27E66 /* 50reverse-proxy-0.t */,
				108102151C3DB05100C024CD /* 50reverse-proxy-disconnected-keepalive.t */,
				104C65021A6DF36B000AC190 /* 50reverse-proxy-config.t */,
				109EEFE01D77B350001F11D1 /* 50reverse-dont-add-x-forwarded-headers.t */,
				10FEF2441D6444E900E11B1D /* 50reverse-proxy-proxy-protocol.t */,
				10AA2EB21A9479B4004322AC /* 50reverse-proxy-upstream-down.t */,
				10DA969A1CCEF2C200679165 /* 50reverse-proxy-https.t */,
				104B9A2B1A4BBDA4009EEE64 /* 50server-starter.t */,
				109EEFE51D77B36C001F11D1 /* 50servername.t */,
				10C45D571CFE9BB60096DB06 /* 50status.t */,
				10C45D4D1CFD15890096DB06 /* 50throttle-response.t */,
				109EEFE11D77B350001F11D1 /* 80dup-host-headers.t */,
				109EEFE21D77B350001F11D1 /* 80invalid-h2-chars-in-headers.t */,
				105534FE1A46134A00627ECB /* 80issues61.t */,
				1092E0011BEB1DDC001074BF /* 80issues579.t */,
				104481271BFC05FC0007863F /* 80issues595.t */,
				10952D591C5082F7000D664C /* 80issues-from-proxy-reproxy-to-different-host.t */,
				109EEFD81D77B336001F11D1 /* 80one-byte-window.t */,
				106530A81D8A21A7005B2C60 /* 80reverse-proxy-missing-content-length-for-post.t */,
				10B6D4501C727315005F0CF8 /* 80yaml-merge.t */,
				104B9A451A5D1004009EEE64 /* 90live-fetch-ocsp-response.t */,
				109EEFE31D77B350001F11D1 /* 90live-sni.t */,
				10C2117C1B8164B1005A9D02 /* 90root-fastcgi-php.t */,
				10AA2EC51AA0557A004322AC /* assets */,
				105534FB1A460F4200627ECB /* Util.pm */,
			);
			path = t;
			sourceTree = "<group>";
		};
		10F417D419C190DD00B6E31A /* src */ = {
			isa = PBXGroup;
			children = (
				10A3D40E1B584BEC00327CF9 /* standalone.h */,
				10F417D519C190F800B6E31A /* main.c */,
				107D4D4D1B58970D004A9B21 /* ssl.c */,
				107D4D5D1B5F143B004A9B21 /* setuidgid.c */,
			);
			path = src;
			sourceTree = "<group>";
		};
		10F417FB19C2D2B400B6E31A /* picotest */ = {
			isa = PBXGroup;
			children = (
				10F417FD19C2D2F800B6E31A /* picotest.c */,
				10F417FE19C2D2F800B6E31A /* picotest.h */,
			);
			path = picotest;
			sourceTree = "<group>";
		};
		10F417FC19C2D2BA00B6E31A /* yoml */ = {
			isa = PBXGroup;
			children = (
				10F4180219C2D32100B6E31A /* yoml-parser.h */,
				10F4180019C2D31600B6E31A /* yoml.h */,
			);
			name = yoml;
			sourceTree = "<group>";
		};
		10F4197E1B64E6C300BEAEAC /* golombset */ = {
			isa = PBXGroup;
			children = (
				10F4197F1B64E70D00BEAEAC /* golombset.h */,
			);
			path = golombset;
			sourceTree = "<group>";
		};
		10F4EB851C1779F8003DA150 /* doc_root */ = {
			isa = PBXGroup;
			children = (
				10F4EB861C177A12003DA150 /* hello.cgi */,
			);
			path = doc_root;
			sourceTree = "<group>";
		};
		10F4EB881C195B5C003DA150 /* mruby */ = {
			isa = PBXGroup;
			children = (
				10F4EB891C195B9E003DA150 /* htpasswd.rb */,
			);
			path = mruby;
			sourceTree = "<group>";
		};
		10FCC13B1B2E4A2C00F13674 /* cloexec */ = {
			isa = PBXGroup;
			children = (
				10FCC13C1B2E4A4500F13674 /* cloexec.c */,
				10FCC13D1B2E4A4500F13674 /* cloexec.h */,
			);
			path = cloexec;
			sourceTree = "<group>";
		};
		10FEF24B1D6FC8C800E11B1D /* libgkc */ = {
			isa = PBXGroup;
			children = (
				10FEF24C1D6FC8E200E11B1D /* gkc.c */,
				10FEF24D1D6FC8E200E11B1D /* gkc.h */,
			);
			path = libgkc;
			sourceTree = "<group>";
		};
		10FFEE071BB23A730087AD75 /* neverbleed */ = {
			isa = PBXGroup;
			children = (
				10FFEE081BB23A8C0087AD75 /* neverbleed.c */,
				10FFEE091BB23A8C0087AD75 /* neverbleed.h */,
			);
			path = neverbleed;
			sourceTree = "<group>";
		};
		E9708AD01E499D8B0029E0A5 /* picotls */ = {
			isa = PBXGroup;
			children = (
				E9708AE91E49A2610029E0A5 /* deps */,
				E9708ADE1E499E100029E0A5 /* include */,
				E9708AD71E499DEA0029E0A5 /* lib */,
			);
			path = picotls;
			sourceTree = "<group>";
		};
		E9708AD71E499DEA0029E0A5 /* lib */ = {
			isa = PBXGroup;
			children = (
				E9708AD81E499E040029E0A5 /* cifra.c */,
				E9708AD91E499E040029E0A5 /* openssl.c */,
				E9708ADA1E499E040029E0A5 /* picotls.c */,
			);
			path = lib;
			sourceTree = "<group>";
		};
		E9708ADE1E499E100029E0A5 /* include */ = {
			isa = PBXGroup;
			children = (
				E9708AE11E49A2160029E0A5 /* picotls */,
				E9708ADF1E49A2120029E0A5 /* picotls.h */,
			);
			path = include;
			sourceTree = "<group>";
		};
		E9708AE11E49A2160029E0A5 /* picotls */ = {
			isa = PBXGroup;
			children = (
				E9708AE21E49A2260029E0A5 /* minicrypto.h */,
				E9708AE31E49A2260029E0A5 /* openssl.h */,
			);
			path = picotls;
			sourceTree = "<group>";
		};
		E9708AE91E49A2610029E0A5 /* deps */ = {
			isa = PBXGroup;
			children = (
				E9708AEA1E49A26E0029E0A5 /* cifra */,
			);
			path = deps;
			sourceTree = "<group>";
		};
		E9708AEA1E49A26E0029E0A5 /* cifra */ = {
			isa = PBXGroup;
			children = (
				E9708AEB1E49A2800029E0A5 /* src */,
			);
			path = cifra;
			sourceTree = "<group>";
		};
		E9708AEB1E49A2800029E0A5 /* src */ = {
			isa = PBXGroup;
			children = (
				E9708B1A1E49A3380029E0A5 /* ext */,
				E9708AEC1E49A2910029E0A5 /* aes.c */,
				E9708AED1E49A2910029E0A5 /* aes.h */,
				E9708AF01E49A2B90029E0A5 /* bitops.h */,
				E9708AF11E49A2B90029E0A5 /* blockwise.c */,
				E9708AF21E49A2B90029E0A5 /* blockwise.h */,
				E9708AF61E49A3130029E0A5 /* cf_config.h */,
				E9BC76E61F00E72D00EB7A09 /* chacha20.c */,
				E9708AF71E49A3130029E0A5 /* chash.c */,
				E9708AF81E49A3130029E0A5 /* chash.h */,
				E9708AF91E49A3130029E0A5 /* curve25519.c */,
				E9708AFA1E49A3130029E0A5 /* curve25519.h */,
				E9708AFC1E49A3130029E0A5 /* drbg.c */,
				E9708AFD1E49A3130029E0A5 /* drbg.h */,
				E9708AFE1E49A3130029E0A5 /* gcm.c */,
				E9708AFF1E49A3130029E0A5 /* gf128.c */,
				E9708B001E49A3130029E0A5 /* gf128.h */,
				E9708B011E49A3130029E0A5 /* hmac.c */,
				E9708B021E49A3130029E0A5 /* hmac.h */,
				E9708B031E49A3130029E0A5 /* modes.c */,
				E9708B041E49A3130029E0A5 /* modes.h */,
				E9BC76E21F00E6DA00EB7A09 /* poly1305.h */,
				E9BC76E91F00E74C00EB7A09 /* poly1305.c */,
				E9BC76E41F00E70700EB7A09 /* salsa20.h */,
				E9708B051E49A3130029E0A5 /* sha2.h */,
				E9708B061E49A3130029E0A5 /* sha256.c */,
				E927CD612074855300D4797E /* sha512.c */,
				E9708B071E49A3130029E0A5 /* tassert.h */,
			);
			path = src;
			sourceTree = "<group>";
		};
		E9708B1A1E49A3380029E0A5 /* ext */ = {
			isa = PBXGroup;
			children = (
				E9708B1B1E49A3480029E0A5 /* handy.h */,
			);
			path = ext;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		1079231319A320A700C52AD6 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				107923C919A3217300C52AD6 /* hpack_static_table.h in Headers */,
				10AAAC631B6C7A7D004487C3 /* http2_casper.h in Headers */,
				08E9CC4E1E41F6660049DD26 /* embedded.c.h in Headers */,
				1022E7C61CA8BCEB00CE2A05 /* yrmcds_portability.h in Headers */,
				10D0904319F0BA780043D458 /* linklist.h in Headers */,
				10EC2A361A0B4D370083514F /* socketpool.h in Headers */,
				105534EB1A42A87E00627ECB /* _templates.c.h in Headers */,
				1079236A19A3210E00C52AD6 /* khash.h in Headers */,
				1022E7C71CA8BCEB00CE2A05 /* yrmcds_text.h in Headers */,
				105534D81A3C791B00627ECB /* configurator.h in Headers */,
				10AA2EAA1A8DDC57004322AC /* multithread.h in Headers */,
				10AA2E9F1A8807CF004322AC /* url.h in Headers */,
				10B38A721B8D34BB007DC191 /* mruby_.h in Headers */,
				10FCC13F1B2E4A4500F13674 /* cloexec.h in Headers */,
				E9708B1C1E49A3480029E0A5 /* handy.h in Headers */,
				1024A3FE1D22546800EB13F1 /* cache_digests.h in Headers */,
				10DA969C1CD2BF9000679165 /* cache.h in Headers */,
				1044812E1BFD0FBE0007863F /* filecache.h in Headers */,
				107923A619A3215F00C52AD6 /* http2.h in Headers */,
				107923A719A3215F00C52AD6 /* token.h in Headers */,
				107923A919A3215F00C52AD6 /* h2o.h in Headers */,
				108867751AD9069900987967 /* defaults.c.h in Headers */,
				1058C8881AA6DE4B008D6180 /* hostinfo.h in Headers */,
				1047A9FF1D0E6D5900CC4BCE /* rand.h in Headers */,
				10AA2E941A80A592004322AC /* time_.h in Headers */,
				107923A519A3215F00C52AD6 /* http1.h in Headers */,
				10A3D3D31B4CDF1200327CF9 /* memcached.h in Headers */,
				10D0905719F102DA0043D458 /* http1client.h in Headers */,
				106C22FA1C040F7800405689 /* tunnel.h in Headers */,
				10D0903A19F0A51C0043D458 /* memory.h in Headers */,
				104B9A2D1A4BE029009EEE64 /* version.h in Headers */,
				1058F6ED1D7CC99B00FFFFA3 /* openssl_backport.h in Headers */,
				10D0905919F22FA10043D458 /* string_.h in Headers */,
				10FEF24F1D6FC8E200E11B1D /* gkc.h in Headers */,
				10D0904119F0B9CD0043D458 /* timeout.h in Headers */,
				10AA2EB71A970EFC004322AC /* http2_internal.h in Headers */,
				10F419801B64E70D00BEAEAC /* golombset.h in Headers */,
				104B9A261A4A5041009EEE64 /* serverutil.h in Headers */,
				1079239719A3210E00C52AD6 /* picohttpparser.h in Headers */,
				1065E70C19BF664300686E72 /* evloop.h in Headers */,
				107923C819A3217300C52AD6 /* hpack_huffman_table.h in Headers */,
				107D4D531B5B2412004A9B21 /* file.h in Headers */,
				E9708AE01E49A2120029E0A5 /* picotls.h in Headers */,
				105534ED1A42AD5E00627ECB /* templates.c.h in Headers */,
				10AA2EB91A971280004322AC /* http2_scheduler.h in Headers */,
				10D0903E19F0A8190043D458 /* socket.h in Headers */,
				10F4180119C2D31600B6E31A /* yoml.h in Headers */,
				1065E6EE19B7BA5A00686E72 /* websocket.h in Headers */,
				E9BC76E51F00E70700EB7A09 /* salsa20.h in Headers */,
				1079245419A32C0800C52AD6 /* token_table.h in Headers */,
				1065E70D19BF6D4600686E72 /* uv-binding.h in Headers */,
				1065E70E19BF6D9400686E72 /* uv-binding.c.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		1079231419A320A700C52AD6 /* h2o */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1079231919A320A700C52AD6 /* Build configuration list for PBXNativeTarget "h2o" */;
			buildPhases = (
				1079231119A320A700C52AD6 /* Sources */,
				1079231219A320A700C52AD6 /* Frameworks */,
				1079231319A320A700C52AD6 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = h2o;
			productName = h2o;
			productReference = 1079231519A320A700C52AD6 /* libh2o.a */;
			productType = "com.apple.product-type.library.static";
		};
		107923D819A321F400C52AD6 /* examples-simple */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 107923DF19A321F400C52AD6 /* Build configuration list for PBXNativeTarget "examples-simple" */;
			buildPhases = (
				107923D519A321F400C52AD6 /* Sources */,
				107923D619A321F400C52AD6 /* Frameworks */,
				107923D719A321F400C52AD6 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				1079240019A3241000C52AD6 /* PBXTargetDependency */,
			);
			name = "examples-simple";
			productName = simple;
			productReference = 107923D919A321F400C52AD6 /* examples-simple */;
			productType = "com.apple.product-type.tool";
		};
		1079240219A3247A00C52AD6 /* examples-websocket */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1079240A19A3247A00C52AD6 /* Build configuration list for PBXNativeTarget "examples-websocket" */;
			buildPhases = (
				1079240519A3247A00C52AD6 /* Sources */,
				1079240719A3247A00C52AD6 /* Frameworks */,
				1079240919A3247A00C52AD6 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "examples-websocket";
			productName = simple;
			productReference = 1079240D19A3247A00C52AD6 /* websocket */;
			productType = "com.apple.product-type.tool";
		};
		1079242A19A3260E00C52AD6 /* unittest */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1079243219A3260E00C52AD6 /* Build configuration list for PBXNativeTarget "unittest" */;
			buildPhases = (
				1079242D19A3260E00C52AD6 /* Sources */,
				1079242F19A3260E00C52AD6 /* Frameworks */,
				1079243119A3260E00C52AD6 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = unittest;
			productName = simple;
			productReference = 1079243519A3260E00C52AD6 /* unittest */;
			productType = "com.apple.product-type.tool";
		};
		10D0904419F0CA9C0043D458 /* examples-socket-client */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 10D0904C19F0CA9C0043D458 /* Build configuration list for PBXNativeTarget "examples-socket-client" */;
			buildPhases = (
				10D0904719F0CA9C0043D458 /* Sources */,
				10D0904919F0CA9C0043D458 /* Frameworks */,
				10D0904B19F0CA9C0043D458 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				10D0904519F0CA9C0043D458 /* PBXTargetDependency */,
			);
			name = "examples-socket-client";
			productName = simple;
			productReference = 10D0905119F0CA9C0043D458 /* examples-socket-server */;
			productType = "com.apple.product-type.tool";
		};
		10D0905C19F38B2E0043D458 /* examples-http1client */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 10D0906419F38B2E0043D458 /* Build configuration list for PBXNativeTarget "examples-http1client" */;
			buildPhases = (
				10D0905F19F38B2E0043D458 /* Sources */,
				10D0906119F38B2E0043D458 /* Frameworks */,
				10D0906319F38B2E0043D458 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				10D0905D19F38B2E0043D458 /* PBXTargetDependency */,
			);
			name = "examples-http1client";
			productName = simple;
			productReference = 10D0906919F38B2E0043D458 /* examples-http1client */;
			productType = "com.apple.product-type.tool";
		};
		10EA45D21D0949BF00769A2B /* examples-latency-optimization */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 10EA45DA1D0949BF00769A2B /* Build configuration list for PBXNativeTarget "examples-latency-optimization" */;
			buildPhases = (
				10EA45D51D0949BF00769A2B /* Sources */,
				10EA45D71D0949BF00769A2B /* Frameworks */,
				10EA45D91D0949BF00769A2B /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				10EA45D31D0949BF00769A2B /* PBXTargetDependency */,
			);
			name = "examples-latency-optimization";
			productName = simple;
			productReference = 10EA45DF1D0949BF00769A2B /* examples-latency-optimization */;
			productType = "com.apple.product-type.tool";
		};
		10F417C619C1907B00B6E31A /* server */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 10F417CE19C1907B00B6E31A /* Build configuration list for PBXNativeTarget "server" */;
			buildPhases = (
				10F417C919C1907B00B6E31A /* Sources */,
				10F417CB19C1907B00B6E31A /* Frameworks */,
				10F417CD19C1907B00B6E31A /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = server;
			productName = simple;
			productReference = 10F417D319C1907B00B6E31A /* h2o */;
			productType = "com.apple.product-type.tool";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		1079230D19A320A700C52AD6 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0610;
				ORGANIZATIONNAME = "Kazuho Oku";
			};
			buildConfigurationList = 1079231019A320A700C52AD6 /* Build configuration list for PBXProject "h2o" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 1079230C19A320A700C52AD6;
			productRefGroup = 1079231619A320A700C52AD6 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				1079231419A320A700C52AD6 /* h2o */,
				1079242A19A3260E00C52AD6 /* unittest */,
				10F417C619C1907B00B6E31A /* server */,
				107923D819A321F400C52AD6 /* examples-simple */,
				1079240219A3247A00C52AD6 /* examples-websocket */,
				10D0904419F0CA9C0043D458 /* examples-socket-client */,
				10D0905C19F38B2E0043D458 /* examples-http1client */,
				10EA45D21D0949BF00769A2B /* examples-latency-optimization */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		1079231119A320A700C52AD6 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				107E34101C7EB13F00AEF5F8 /* gzip.c in Sources */,
				107923C719A3217300C52AD6 /* hpack.c in Sources */,
				10A3D40A1B50DAB700327CF9 /* recv.c in Sources */,
				101788B219B561AA0084C6D8 /* socket.c in Sources */,
				1024A3FC1D22315000EB13F1 /* cache_digests.c in Sources */,
				E90A95F51E30797D00483D6C /* headers_util.c in Sources */,
				10D0905519F102C70043D458 /* http1client.c in Sources */,
				10DA969E1CD2BFAC00679165 /* cache.c in Sources */,
				107923D219A3217300C52AD6 /* token.c in Sources */,
				10C45D551CFE9B300096DB06 /* events.c in Sources */,
				1058C88A1AA6E5E3008D6180 /* hostinfo.c in Sources */,
				10AA2EBC1A9EEDF8004322AC /* proxy.c in Sources */,
				10AA2EC01AA019FC004322AC /* headers.c in Sources */,
				104B9A511A5FB096009EEE64 /* expires.c in Sources */,
				105534DB1A3C7A5400627ECB /* access_log.c in Sources */,
				107923CE19A3217300C52AD6 /* mimemap.c in Sources */,
				107923C619A3217300C52AD6 /* connection.c in Sources */,
				1022E7C31CA8BCCE00CE2A05 /* text_mode.c in Sources */,
				080D35EB1D5E060D0029B7E5 /* http2_debug_state.c in Sources */,
				10835E051C9B3C6200197E59 /* status.c in Sources */,
				1058C87E1AA41A1F008D6180 /* headers.c in Sources */,
				10835E031C9A860000197E59 /* status.c in Sources */,
				084FC7C51D54BB9200E89F66 /* http2_debug_state.c in Sources */,
				10AA2E961A80A612004322AC /* time.c in Sources */,
				107923C319A3217300C52AD6 /* file.c in Sources */,
				106C22F81C040F6400405689 /* tunnel.c in Sources */,
				10583BF11AE5A37B004A3AD6 /* Makefile in Sources */,
				107923CD19A3217300C52AD6 /* memory.c in Sources */,
				107923CC19A3217300C52AD6 /* context.c in Sources */,
				10C45D561CFE9B300096DB06 /* requests.c in Sources */,
				10A3D40C1B50DAB700327CF9 /* socket.c in Sources */,
				10AA2EC21AA0402E004322AC /* reproxy.c in Sources */,
				10835E011C9A6C2400197E59 /* logconf.c in Sources */,
				107923C519A3217300C52AD6 /* http1.c in Sources */,
				10AA2EA71A8DA93C004322AC /* redirect.c in Sources */,
				10FEF24A1D6FC6F600E11B1D /* durations.c in Sources */,
				10AA2EA11A88082E004322AC /* url.c in Sources */,
				10EC2A381A0B4DC70083514F /* socketpool.c in Sources */,
				1079239619A3210E00C52AD6 /* picohttpparser.c in Sources */,
				10AAAC651B6C9275004487C3 /* casper.c in Sources */,
				10AA2EC41AA0403A004322AC /* reproxy.c in Sources */,
				10AA2EAC1A8DE0AE004322AC /* multithread.c in Sources */,
				1065E6F919BEBAC600686E72 /* timeout.c in Sources */,
				10F4180519CA75C500B6E31A /* configurator.c in Sources */,
				10FEF24E1D6FC8E200E11B1D /* gkc.c in Sources */,
				104B9A461A5F608A009EEE64 /* serverutil.c in Sources */,
				1065E6ED19B7B9CB00686E72 /* websocket.c in Sources */,
				10C45D511CFD160A0096DB06 /* throttle_resp.c in Sources */,
				10AA2EA51A8D9999004322AC /* redirect.c in Sources */,
				101B670C19ADD3380084A351 /* access_log.c in Sources */,
				10BA72AA19AAD6300059392A /* stream.c in Sources */,
				107D4D551B5B30EE004A9B21 /* file.c in Sources */,
				10D0907319F633B00043D458 /* proxy.c in Sources */,
				10A3D3D21B4CDBDC00327CF9 /* memcached.c in Sources */,
				107923CF19A3217300C52AD6 /* request.c in Sources */,
				1070866C1B787D06002B8F18 /* compress.c in Sources */,
				107086721B798488002B8F18 /* compress.c in Sources */,
				10BCF2FF1B1A892F0076939D /* fastcgi.c in Sources */,
				E90A95F31E30795100483D6C /* headers_util.c in Sources */,
				104B9A531A5FC7C4009EEE64 /* expires.c in Sources */,
				10A3D40D1B50DAB700327CF9 /* strerror.c in Sources */,
				107923CB19A3217300C52AD6 /* frame.c in Sources */,
				104B9A491A5F9638009EEE64 /* headers.c in Sources */,
				106C22FF1C05436100405689 /* errordoc.c in Sources */,
				10C45D4F1CFD15FA0096DB06 /* throttle_resp.c in Sources */,
				107923C219A3217300C52AD6 /* chunked.c in Sources */,
				10A3D4081B50DAB700327CF9 /* close.c in Sources */,
				105534EF1A440FC800627ECB /* config.c in Sources */,
				10E299581A67E68500701AA6 /* scheduler.c in Sources */,
				107923D319A3217300C52AD6 /* util.c in Sources */,
				105534CA1A3BB46900627ECB /* string.c in Sources */,
				1022E7C11CA8BC9E00CE2A05 /* send_text.c in Sources */,
				104481301BFD10450007863F /* filecache.c in Sources */,
				10BCF2FD1B168CAE0076939D /* fastcgi.c in Sources */,
				084FC7C11D54B90D00E89F66 /* http2_debug_state.c in Sources */,
				10A3D40B1B50DAB700327CF9 /* send.c in Sources */,
				106C23011C0544CE00405689 /* errordoc.c in Sources */,
				10FCC13E1B2E4A4500F13674 /* cloexec.c in Sources */,
				105534DF1A3C7B9800627ECB /* proxy.c in Sources */,
				10A3D4091B50DAB700327CF9 /* connect.c in Sources */,
				105534DD1A3C7AA900627ECB /* file.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		107923D519A321F400C52AD6 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1079242919A325BE00C52AD6 /* simple.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1079240519A3247A00C52AD6 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1079241619A324B400C52AD6 /* websocket.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1079242D19A3260E00C52AD6 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				107E34211C7FEE1000AEF5F8 /* utf8_util.cc in Sources */,
				107D4D441B588021004A9B21 /* ssl.c in Sources */,
				1079244A19A3266700C52AD6 /* frame.c in Sources */,
				107E34141C7FEE1000AEF5F8 /* backward_references.cc in Sources */,
				1079244B19A3266700C52AD6 /* context.c in Sources */,
				1079244C19A3266700C52AD6 /* memory.c in Sources */,
				107E34161C7FEE1000AEF5F8 /* brotli_bit_stream.cc in Sources */,
				10FCC1401B2E59E600F13674 /* cloexec.c in Sources */,
				105534C71A3BB29100627ECB /* string.c in Sources */,
				107E341C1C7FEE1000AEF5F8 /* histogram.cc in Sources */,
				107D4D4B1B5880BC004A9B21 /* scanner.c in Sources */,
				1079244E19A3266700C52AD6 /* request.c in Sources */,
				10D0907019F494CC0043D458 /* test.c in Sources */,
				107E341A1C7FEE1000AEF5F8 /* encode.cc in Sources */,
				107E34181C7FEE1000AEF5F8 /* compress_fragment.cc in Sources */,
				107D4D481B5880BC004A9B21 /* loader.c in Sources */,
				105534C11A3B911300627ECB /* hpack.c in Sources */,
				107E34221C7FEE2200AEF5F8 /* brotli.cc in Sources */,
				107E341B1C7FEE1000AEF5F8 /* entropy_encode.cc in Sources */,
				105534C31A3B917000627ECB /* mimemap.c in Sources */,
				10AA2E991A81F68A004322AC /* time.c in Sources */,
				10F417FF19C2D2F800B6E31A /* picotest.c in Sources */,
				107D4D471B5880BC004A9B21 /* emitter.c in Sources */,
				10BCF3011B214C460076939D /* fastcgi.c in Sources */,
				107E34191C7FEE1000AEF5F8 /* dictionary.cc in Sources */,
				104B9A281A4A5139009EEE64 /* serverutil.c in Sources */,
				107E341F1C7FEE1000AEF5F8 /* static_dict.cc in Sources */,
				10AA2EA31A88090B004322AC /* url.c in Sources */,
				1024A4001D23606300EB13F1 /* cache_digests.c in Sources */,
				105534C91A3BB41C00627ECB /* proxy.c in Sources */,
				107D4D461B5880BC004A9B21 /* dumper.c in Sources */,
				107D4D451B5880BC004A9B21 /* api.c in Sources */,
				1079245119A3266700C52AD6 /* token.c in Sources */,
				1079244419A3265C00C52AD6 /* chunked.c in Sources */,
				1070866A1B70A00F002B8F18 /* casper.c in Sources */,
				107D4D491B5880BC004A9B21 /* parser.c in Sources */,
				107E34171C7FEE1000AEF5F8 /* compress_fragment_two_pass.cc in Sources */,
				104B9A481A5F9472009EEE64 /* headers.c in Sources */,
				107086701B7925D5002B8F18 /* compress.c in Sources */,
				107D4D4C1B5880BC004A9B21 /* writer.c in Sources */,
				10E2995A1A68D03100701AA6 /* scheduler.c in Sources */,
				103BAB361B130666000694F4 /* socket.c in Sources */,
				10583C001AEF368A004A3AD6 /* 293.c in Sources */,
				107E34151C7FEE1000AEF5F8 /* block_splitter.cc in Sources */,
				105534BE1A3B8F7700627ECB /* file.c in Sources */,
				10F9F2671AFC5F550056F26B /* hostinfo.c in Sources */,
				107E34201C7FEE1000AEF5F8 /* streams.cc in Sources */,
				1079244719A3265C00C52AD6 /* http1.c in Sources */,
				10F9F2651AF4795D0056F26B /* redirect.c in Sources */,
				107D4D4A1B5880BC004A9B21 /* reader.c in Sources */,
				1079244819A3265C00C52AD6 /* connection.c in Sources */,
				1079244119A3264300C52AD6 /* picohttpparser.c in Sources */,
				106530A71D82C0A6005B2C60 /* percent-encode-zero-byte.c in Sources */,
				10DA96A01CD2BFEE00679165 /* cache.c in Sources */,
				1070E1631B4508B0001CCAFA /* util.c in Sources */,
				107E341D1C7FEE1000AEF5F8 /* literal_cost.cc in Sources */,
				1058C87D1AA41789008D6180 /* headers.c in Sources */,
				107E341E1C7FEE1000AEF5F8 /* metablock.cc in Sources */,
				10AA2EAE1A8E22DA004322AC /* multithread.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10D0904719F0CA9C0043D458 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				10D0906C19F395FC0043D458 /* socket-client.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10D0905F19F38B2E0043D458 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				10D0906B19F38B850043D458 /* http1client.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10EA45D51D0949BF00769A2B /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				10EA45E11D094A1200769A2B /* latency-optimization.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		10F417C919C1907B00B6E31A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E9708B7C1E52C83D0029E0A5 /* status.c in Sources */,
				E9708B7D1E52C8430029E0A5 /* durations.c in Sources */,
				E9BC76E81F00E73900EB7A09 /* chacha20.c in Sources */,
				E9708B3F1E52C7860029E0A5 /* send_text.c in Sources */,
				E9708B261E49BADE0029E0A5 /* modes.c in Sources */,
				E9708B221E49BAD00029E0A5 /* drbg.c in Sources */,
				E9708B641E52C80F0029E0A5 /* proxy.c in Sources */,
				E9708B471E52C7DF0029E0A5 /* hostinfo.c in Sources */,
				E9708B481E52C7DF0029E0A5 /* http1client.c in Sources */,
				E9708B4E1E52C7E50029E0A5 /* socketpool.c in Sources */,
				107E34061C7EAF9300AEF5F8 /* literal_cost.cc in Sources */,
				E9708B731E52C82A0029E0A5 /* expires.c in Sources */,
				E9708B591E52C7EE0029E0A5 /* request.c in Sources */,
				E9708B861E52C8560029E0A5 /* frame.c in Sources */,
				E9708B201E49BACA0029E0A5 /* curve25519.c in Sources */,
				E9708B1D1E49BABC0029E0A5 /* aes.c in Sources */,
				E9708B8B1E52C85A0029E0A5 /* tunnel.c in Sources */,
				E9708B531E52C7EE0029E0A5 /* config.c in Sources */,
				E9708B801E52C84A0029E0A5 /* throttle_resp.c in Sources */,
				107D4D4F1B58970D004A9B21 /* ssl.c in Sources */,
				E9708B501E52C7E50029E0A5 /* time.c in Sources */,
				E9708B4C1E52C7DF0029E0A5 /* serverutil.c in Sources */,
				E9708B631E52C80F0029E0A5 /* headers_util.c in Sources */,
				E9708B541E52C7EE0029E0A5 /* configurator.c in Sources */,
				E9708B6D1E52C8250029E0A5 /* gzip.c in Sources */,
				10756E2C1AC126420009BF57 /* emitter.c in Sources */,
				E9708B3D1E52C7860029E0A5 /* recv.c in Sources */,
				107E34051C7EAF9300AEF5F8 /* histogram.cc in Sources */,
				E9708B691E52C80F0029E0A5 /* http2_debug_state.c in Sources */,
				100A55151C30C5BC00C4E3E0 /* chunked.c in Sources */,
				E9708B3E1E52C7860029E0A5 /* send.c in Sources */,
				E9708B461E52C7DF0029E0A5 /* filecache.c in Sources */,
				E9708B5F1E52C80F0029E0A5 /* errordoc.c in Sources */,
				E9708B3C1E52C7860029E0A5 /* connect.c in Sources */,
				E9708B611E52C80F0029E0A5 /* file.c in Sources */,
				E9708B7B1E52C83D0029E0A5 /* reproxy.c in Sources */,
				E9708B5C1E52C80F0029E0A5 /* access_log.c in Sources */,
				100A55101C2BB15600C4E3E0 /* http_request.c in Sources */,
				E9708B1E1E49BAC10029E0A5 /* blockwise.c in Sources */,
				E9708B651E52C80F0029E0A5 /* redirect.c in Sources */,
				10756E2A1AC126420009BF57 /* api.c in Sources */,
				E9708B6B1E52C81D0029E0A5 /* chunked.c in Sources */,
				107E33F81C7EAF5A00AEF5F8 /* compress_fragment.cc in Sources */,
				10756E2B1AC126420009BF57 /* dumper.c in Sources */,
				E9708B721E52C82A0029E0A5 /* errordoc.c in Sources */,
				107E33F51C7EAF5A00AEF5F8 /* block_splitter.cc in Sources */,
				107E34031C7EAF9300AEF5F8 /* encode.cc in Sources */,
				E9708B4B1E52C7DF0029E0A5 /* multithread.c in Sources */,
				E9708B421E52C7860029E0A5 /* text_mode.c in Sources */,
				10756E2D1AC126420009BF57 /* loader.c in Sources */,
				E9708B561E52C7EE0029E0A5 /* headers.c in Sources */,
				E9708B661E52C80F0029E0A5 /* reproxy.c in Sources */,
				E9708B391E52C75A0029E0A5 /* cloexec.c in Sources */,
				E9708B451E52C7DF0029E0A5 /* file.c in Sources */,
				E9708B6C1E52C81D0029E0A5 /* compress.c in Sources */,
				E9708AE61E49A2420029E0A5 /* cifra.c in Sources */,
				E9708B1F1E49BAC60029E0A5 /* chash.c in Sources */,
				E9708B821E52C84E0029E0A5 /* http1.c in Sources */,
				E9708B7E1E52C8430029E0A5 /* events.c in Sources */,
				E9708B771E52C8330029E0A5 /* headers_util.c in Sources */,
				E9708B781E52C8330029E0A5 /* mimemap.c in Sources */,
				107E340A1C7EAF9300AEF5F8 /* utf8_util.cc in Sources */,
				E9708B5D1E52C80F0029E0A5 /* compress.c in Sources */,
				10FFEE0A1BB23A8C0087AD75 /* neverbleed.c in Sources */,
				E9708B811E52C84A0029E0A5 /* http2_debug_state.c in Sources */,
				E9708B7A1E52C83D0029E0A5 /* redirect.c in Sources */,
				E9708B231E49BAD40029E0A5 /* gcm.c in Sources */,
				E9708B4D1E52C7DF0029E0A5 /* socket.c in Sources */,
				107E34041C7EAF9300AEF5F8 /* entropy_encode.cc in Sources */,
				10E598011CE1683A000D7B94 /* mruby.c in Sources */,
				E9708B6A1E52C81D0029E0A5 /* access_log.c in Sources */,
				E9BC76EB1F00E74F00EB7A09 /* poly1305.c in Sources */,
				107E33F71C7EAF5A00AEF5F8 /* compress_fragment_two_pass.cc in Sources */,
				107E34081C7EAF9300AEF5F8 /* static_dict.cc in Sources */,
				107E34091C7EAF9300AEF5F8 /* streams.cc in Sources */,
				E9708AE81E49A2420029E0A5 /* picotls.c in Sources */,
				10756E361AC1264D0009BF57 /* writer.c in Sources */,
				E9708B851E52C8560029E0A5 /* connection.c in Sources */,
				E9708B601E52C80F0029E0A5 /* fastcgi.c in Sources */,
				107E34071C7EAF9300AEF5F8 /* metablock.cc in Sources */,
				E9708B621E52C80F0029E0A5 /* headers.c in Sources */,
				E9708B581E52C7EE0029E0A5 /* proxy.c in Sources */,
				E9708B881E52C8560029E0A5 /* stream.c in Sources */,
				E9708B401E52C7860029E0A5 /* socket.c in Sources */,
				10756E351AC1264D0009BF57 /* scanner.c in Sources */,
				E9708B5A1E52C7EE0029E0A5 /* token.c in Sources */,
				E9708B241E49BAD70029E0A5 /* gf128.c in Sources */,
				E9708B441E52C7DF0029E0A5 /* cache.c in Sources */,
				E9708B831E52C8560029E0A5 /* cache_digests.c in Sources */,
				E9708B7F1E52C8430029E0A5 /* requests.c in Sources */,
				E9708B511E52C7E50029E0A5 /* timeout.c in Sources */,
				E9708B431E52C7AA0029E0A5 /* picohttpparser.c in Sources */,
				E9708B671E52C80F0029E0A5 /* status.c in Sources */,
				E9708B411E52C7860029E0A5 /* strerror.c in Sources */,
				E9708B3A1E52C7640029E0A5 /* gkc.c in Sources */,
				E9708B5E1E52C80F0029E0A5 /* expires.c in Sources */,
				E9708B491E52C7DF0029E0A5 /* memcached.c in Sources */,
				10756E331AC1264D0009BF57 /* parser.c in Sources */,
				E9708B761E52C8330029E0A5 /* headers.c in Sources */,
				E927CD632074855D00D4797E /* sha512.c in Sources */,
				E9708B871E52C8560029E0A5 /* hpack.c in Sources */,
				E9708B8A1E52C8560029E0A5 /* http2_debug_state.c in Sources */,
				E9708B841E52C8560029E0A5 /* casper.c in Sources */,
				107E34131C7FAC2000AEF5F8 /* brotli.cc in Sources */,
				E9708B4F1E52C7E50029E0A5 /* string.c in Sources */,
				108DD0861BA22E46004167DC /* mruby.c in Sources */,
				107E340D1C7EAFE600AEF5F8 /* dictionary.cc in Sources */,
				E9708B5B1E52C7F30029E0A5 /* util.c in Sources */,
				E9708B681E52C80F0029E0A5 /* throttle_resp.c in Sources */,
				E9708B251E49BADA0029E0A5 /* hmac.c in Sources */,
				E9708B791E52C83D0029E0A5 /* proxy.c in Sources */,
				107E33F61C7EAF5A00AEF5F8 /* brotli_bit_stream.cc in Sources */,
				E9708B551E52C7EE0029E0A5 /* context.c in Sources */,
				E9708B3B1E52C7730029E0A5 /* close.c in Sources */,
				10F417D619C190F800B6E31A /* main.c in Sources */,
				10756E341AC1264D0009BF57 /* reader.c in Sources */,
				E9708B4A1E52C7DF0029E0A5 /* memory.c in Sources */,
				E9708B741E52C82A0029E0A5 /* fastcgi.c in Sources */,
				E9708AE71E49A2420029E0A5 /* openssl.c in Sources */,
				E9708B751E52C82A0029E0A5 /* file.c in Sources */,
				E9708B891E52C8560029E0A5 /* scheduler.c in Sources */,
				E9708B521E52C7E50029E0A5 /* url.c in Sources */,
				E9708B271E49BAE10029E0A5 /* sha256.c in Sources */,
				E9708B571E52C7EE0029E0A5 /* logconf.c in Sources */,
				107E33F41C7EAF5A00AEF5F8 /* backward_references.cc in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		1079240019A3241000C52AD6 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1079231419A320A700C52AD6 /* h2o */;
			targetProxy = 107923FF19A3241000C52AD6 /* PBXContainerItemProxy */;
		};
		10D0904519F0CA9C0043D458 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1079231419A320A700C52AD6 /* h2o */;
			targetProxy = 10D0904619F0CA9C0043D458 /* PBXContainerItemProxy */;
		};
		10D0905D19F38B2E0043D458 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1079231419A320A700C52AD6 /* h2o */;
			targetProxy = 10D0905E19F38B2E0043D458 /* PBXContainerItemProxy */;
		};
		10EA45D31D0949BF00769A2B /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1079231419A320A700C52AD6 /* h2o */;
			targetProxy = 10EA45D41D0949BF00769A2B /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		1065E70F19BF752300686E72 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_DEADCODE_DEADSTORES = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"H2O_USE_MRUBY=1",
					"H2O_USE_BROTLI=1",
					"H2O_ROOT=/mydev/h2o",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
			};
			name = "libuv-debug";
		};
		1065E71019BF752300686E72 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				EXECUTABLE_PREFIX = lib;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
				);
				LIBRARY_SEARCH_PATHS = "/usr/local/openssl-1.0.2/lib";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "libuv-debug";
		};
		1065E71119BF752300686E72 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"H2O_UNITTEST=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					deps/yaml/include,
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = unittest;
			};
			name = "libuv-debug";
		};
		1065E71219BF752300686E72 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "libuv-debug";
		};
		1065E71319BF752300686E72 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lwslay",
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = websocket;
			};
			name = "libuv-debug";
		};
		1065E71419BF754100686E72 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_DEADCODE_DEADSTORES = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"H2O_USE_MRUBY=1",
					"H2O_USE_BROTLI=1",
					"H2O_ROOT=/mydev/h2o",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				SDKROOT = macosx;
			};
			name = "libuv-release";
		};
		1065E71519BF754100686E72 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				EXECUTABLE_PREFIX = lib;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
				);
				LIBRARY_SEARCH_PATHS = "/usr/local/openssl-1.0.2/lib";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "libuv-release";
		};
		1065E71619BF754100686E72 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = "H2O_UNITTEST=1";
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					deps/yaml/include,
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = unittest;
			};
			name = "libuv-release";
		};
		1065E71719BF754100686E72 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "libuv-release";
		};
		1065E71819BF754100686E72 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lwslay",
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = websocket;
			};
			name = "libuv-release";
		};
		1079231719A320A700C52AD6 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_DEADCODE_DEADSTORES = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"H2O_USE_MRUBY=1",
					"H2O_USE_LIBUV=0",
					"H2O_USE_BROTLI=1",
					"H2O_ROOT=/mydev/h2o",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
			};
			name = "evloop-debug";
		};
		1079231819A320A700C52AD6 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_DEADCODE_DEADSTORES = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"H2O_USE_MRUBY=1",
					"H2O_USE_LIBUV=0",
					"H2O_USE_BROTLI=1",
					"H2O_ROOT=/mydev/h2o",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.9;
				SDKROOT = macosx;
			};
			name = "evloop-release";
		};
		1079231A19A320A700C52AD6 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				EXECUTABLE_PREFIX = lib;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
				);
				LIBRARY_SEARCH_PATHS = "/usr/local/openssl-1.0.2/lib";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "evloop-debug";
		};
		1079231B19A320A700C52AD6 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				EXECUTABLE_PREFIX = lib;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
				);
				LIBRARY_SEARCH_PATHS = "/usr/local/openssl-1.0.2/lib";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "evloop-release";
		};
		107923E019A321F400C52AD6 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "evloop-debug";
		};
		107923E119A321F400C52AD6 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "evloop-release";
		};
		1079240B19A3247A00C52AD6 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lwslay",
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = websocket;
			};
			name = "evloop-debug";
		};
		1079240C19A3247A00C52AD6 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lwslay",
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = websocket;
			};
			name = "evloop-release";
		};
		1079243319A3260E00C52AD6 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"H2O_UNITTEST=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					deps/yaml/include,
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = unittest;
			};
			name = "evloop-debug";
		};
		1079243419A3260E00C52AD6 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"H2O_UNITTEST=1",
					"H2O_USE_LIBUV=0",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					deps/yaml/include,
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = unittest;
			};
			name = "evloop-release";
		};
		10D0904D19F0CA9C0043D458 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "examples-socket-server";
			};
			name = "evloop-debug";
		};
		10D0904E19F0CA9C0043D458 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "examples-socket-server";
			};
			name = "libuv-debug";
		};
		10D0904F19F0CA9C0043D458 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "examples-socket-server";
			};
			name = "evloop-release";
		};
		10D0905019F0CA9C0043D458 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "examples-socket-server";
			};
			name = "libuv-release";
		};
		10D0906519F38B2E0043D458 /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "examples-http1client";
			};
			name = "evloop-debug";
		};
		10D0906619F38B2E0043D458 /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "examples-http1client";
			};
			name = "libuv-debug";
		};
		10D0906719F38B2E0043D458 /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "examples-http1client";
			};
			name = "evloop-release";
		};
		10D0906819F38B2E0043D458 /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/include",
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "examples-http1client";
			};
			name = "libuv-release";
		};
		10EA45DB1D0949BF00769A2B /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "evloop-debug";
		};
		10EA45DC1D0949BF00769A2B /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "libuv-debug";
		};
		10EA45DD1D0949BF00769A2B /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "evloop-release";
		};
		10EA45DE1D0949BF00769A2B /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"/usr/local/openssl-1.0.2/include",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = "libuv-release";
		};
		10F417CF19C1907B00B6E31A /* evloop-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"H2O_USE_PICOTLS=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					deps/yaml/include,
					deps/mruby/include,
					"deps/mruby-input-stream/src",
					deps/picotls/include,
					"/usr/local/openssl-1.0.2/include",
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					build/default/mruby/host/lib,
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lmruby",
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = h2o;
			};
			name = "evloop-debug";
		};
		10F417D019C1907B00B6E31A /* libuv-debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					deps/yaml/include,
					deps/mruby/include,
					"deps/mruby-input-stream/src",
					deps/picotls/include,
					"/usr/local/openssl-1.0.2/include",
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					build/default/mruby/host/lib,
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = h2o;
			};
			name = "libuv-debug";
		};
		10F417D119C1907B00B6E31A /* evloop-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					deps/yaml/include,
					deps/mruby/include,
					"deps/mruby-input-stream/src",
					deps/picotls/include,
					"/usr/local/openssl-1.0.2/include",
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					build/default/mruby/host/lib,
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lmruby",
					"-lssl",
					"-lcrypto",
					"-lz",
				);
				PRODUCT_NAME = h2o;
			};
			name = "evloop-release";
		};
		10F417D219C1907B00B6E31A /* libuv-release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					deps/yaml/include,
					deps/mruby/include,
					"deps/mruby-input-stream/src",
					deps/picotls/include,
					"/usr/local/openssl-1.0.2/include",
					/usr/local/include,
					include,
				);
				LIBRARY_SEARCH_PATHS = (
					"/usr/local/openssl-1.0.2/lib",
					build/default/mruby/host/lib,
					/usr/local/lib,
				);
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lssl",
					"-lcrypto",
					"-luv",
					"-lz",
				);
				PRODUCT_NAME = h2o;
			};
			name = "libuv-release";
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1079231019A320A700C52AD6 /* Build configuration list for PBXProject "h2o" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1079231719A320A700C52AD6 /* evloop-debug */,
				1065E70F19BF752300686E72 /* libuv-debug */,
				1079231819A320A700C52AD6 /* evloop-release */,
				1065E71419BF754100686E72 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		1079231919A320A700C52AD6 /* Build configuration list for PBXNativeTarget "h2o" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1079231A19A320A700C52AD6 /* evloop-debug */,
				1065E71019BF752300686E72 /* libuv-debug */,
				1079231B19A320A700C52AD6 /* evloop-release */,
				1065E71519BF754100686E72 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		107923DF19A321F400C52AD6 /* Build configuration list for PBXNativeTarget "examples-simple" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				107923E019A321F400C52AD6 /* evloop-debug */,
				1065E71219BF752300686E72 /* libuv-debug */,
				107923E119A321F400C52AD6 /* evloop-release */,
				1065E71719BF754100686E72 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		1079240A19A3247A00C52AD6 /* Build configuration list for PBXNativeTarget "examples-websocket" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1079240B19A3247A00C52AD6 /* evloop-debug */,
				1065E71319BF752300686E72 /* libuv-debug */,
				1079240C19A3247A00C52AD6 /* evloop-release */,
				1065E71819BF754100686E72 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		1079243219A3260E00C52AD6 /* Build configuration list for PBXNativeTarget "unittest" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1079243319A3260E00C52AD6 /* evloop-debug */,
				1065E71119BF752300686E72 /* libuv-debug */,
				1079243419A3260E00C52AD6 /* evloop-release */,
				1065E71619BF754100686E72 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		10D0904C19F0CA9C0043D458 /* Build configuration list for PBXNativeTarget "examples-socket-client" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				10D0904D19F0CA9C0043D458 /* evloop-debug */,
				10D0904E19F0CA9C0043D458 /* libuv-debug */,
				10D0904F19F0CA9C0043D458 /* evloop-release */,
				10D0905019F0CA9C0043D458 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		10D0906419F38B2E0043D458 /* Build configuration list for PBXNativeTarget "examples-http1client" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				10D0906519F38B2E0043D458 /* evloop-debug */,
				10D0906619F38B2E0043D458 /* libuv-debug */,
				10D0906719F38B2E0043D458 /* evloop-release */,
				10D0906819F38B2E0043D458 /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		10EA45DA1D0949BF00769A2B /* Build configuration list for PBXNativeTarget "examples-latency-optimization" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				10EA45DB1D0949BF00769A2B /* evloop-debug */,
				10EA45DC1D0949BF00769A2B /* libuv-debug */,
				10EA45DD1D0949BF00769A2B /* evloop-release */,
				10EA45DE1D0949BF00769A2B /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
		10F417CE19C1907B00B6E31A /* Build configuration list for PBXNativeTarget "server" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				10F417CF19C1907B00B6E31A /* evloop-debug */,
				10F417D019C1907B00B6E31A /* libuv-debug */,
				10F417D119C1907B00B6E31A /* evloop-release */,
				10F417D219C1907B00B6E31A /* libuv-release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "evloop-release";
		};
/* End XCConfigurationList section */
	};
	rootObject = 1079230D19A320A700C52AD6 /* Project object */;
}