summaryrefslogtreecommitdiff
path: root/Hercules.xcodeproj/project.pbxproj
blob: 1126c3780484cce54aa8f87a8fd7fec5eb87103a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		755495841FEE5A0000CE4B7D /* int_rodex.c in Sources */ = {isa = PBXBuildFile; fileRef = 755495831FEE5A0000CE4B7D /* int_rodex.c */; };
		755495871FEE5A1F00CE4B7D /* rodex.c in Sources */ = {isa = PBXBuildFile; fileRef = 755495851FEE5A1F00CE4B7D /* rodex.c */; };
		A5296FCD1CAC40CF001ABCAC /* lclif.c in Sources */ = {isa = PBXBuildFile; fileRef = A5296FCA1CAC40CF001ABCAC /* lclif.c */; };
		A530267B202D78CE0060E394 /* clan.c in Sources */ = {isa = PBXBuildFile; fileRef = A5302673202D78B00060E394 /* clan.c */; };
		A530267F202D793C0060E394 /* int_clan.c in Sources */ = {isa = PBXBuildFile; fileRef = A530267D202D792F0060E394 /* int_clan.c */; };
		A5302683202D7A1F0060E394 /* HPMHooking.Defs.inc in Sources */ = {isa = PBXBuildFile; fileRef = A5302682202D7A1F0060E394 /* HPMHooking.Defs.inc */; };
		A5467AD31A16FCB4008AFAA6 /* loginif.c in Sources */ = {isa = PBXBuildFile; fileRef = A5467AD11A16FCB4008AFAA6 /* loginif.c */; };
		A5467AD61A16FCDC008AFAA6 /* mapif.c in Sources */ = {isa = PBXBuildFile; fileRef = A5467AD41A16FCDC008AFAA6 /* mapif.c */; };
		A5467AD91A16FD08008AFAA6 /* geoip.c in Sources */ = {isa = PBXBuildFile; fileRef = A5467AD71A16FD08008AFAA6 /* geoip.c */; };
		A56CC68918564387009EB79C /* account.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC68118564387009EB79C /* account.c */; };
		A56CC68A18564387009EB79C /* ipban.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC68318564387009EB79C /* ipban.c */; };
		A56CC68B18564387009EB79C /* login.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC68518564387009EB79C /* login.c */; };
		A56CC68C18564387009EB79C /* loginlog.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC68718564387009EB79C /* loginlog.c */; };
		A56CC6C9185643BB009EB79C /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC690185643BB009EB79C /* conf.c */; };
		A56CC6CA185643BB009EB79C /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC690185643BB009EB79C /* conf.c */; };
		A56CC6CB185643BB009EB79C /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC690185643BB009EB79C /* conf.c */; };
		A56CC6CC185643BB009EB79C /* console.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC692185643BB009EB79C /* console.c */; };
		A56CC6CD185643BB009EB79C /* console.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC692185643BB009EB79C /* console.c */; };
		A56CC6CE185643BB009EB79C /* console.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC692185643BB009EB79C /* console.c */; };
		A56CC6CF185643BB009EB79C /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC694185643BB009EB79C /* core.c */; };
		A56CC6D0185643BB009EB79C /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC694185643BB009EB79C /* core.c */; };
		A56CC6D1185643BB009EB79C /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC694185643BB009EB79C /* core.c */; };
		A56CC6D2185643BB009EB79C /* db.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC696185643BB009EB79C /* db.c */; };
		A56CC6D3185643BB009EB79C /* db.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC696185643BB009EB79C /* db.c */; };
		A56CC6D4185643BB009EB79C /* db.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC696185643BB009EB79C /* db.c */; };
		A56CC6D5185643BB009EB79C /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC698185643BB009EB79C /* des.c */; };
		A56CC6D6185643BB009EB79C /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC698185643BB009EB79C /* des.c */; };
		A56CC6D7185643BB009EB79C /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC698185643BB009EB79C /* des.c */; };
		A56CC6D8185643BB009EB79C /* ers.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC69A185643BB009EB79C /* ers.c */; };
		A56CC6D9185643BB009EB79C /* ers.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC69A185643BB009EB79C /* ers.c */; };
		A56CC6DA185643BB009EB79C /* ers.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC69A185643BB009EB79C /* ers.c */; };
		A56CC6DE185643BB009EB79C /* grfio.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC69E185643BB009EB79C /* grfio.c */; };
		A56CC6DF185643BB009EB79C /* grfio.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC69E185643BB009EB79C /* grfio.c */; };
		A56CC6E0185643BB009EB79C /* grfio.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC69E185643BB009EB79C /* grfio.c */; };
		A56CC6E1185643BB009EB79C /* HPM.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A0185643BB009EB79C /* HPM.c */; };
		A56CC6E2185643BB009EB79C /* HPM.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A0185643BB009EB79C /* HPM.c */; };
		A56CC6E3185643BB009EB79C /* HPM.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A0185643BB009EB79C /* HPM.c */; };
		A56CC6E4185643BB009EB79C /* memmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A3185643BB009EB79C /* memmgr.c */; };
		A56CC6E5185643BB009EB79C /* memmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A3185643BB009EB79C /* memmgr.c */; };
		A56CC6E6185643BB009EB79C /* memmgr.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A3185643BB009EB79C /* memmgr.c */; };
		A56CC6E7185643BB009EB79C /* mapindex.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A5185643BB009EB79C /* mapindex.c */; };
		A56CC6E8185643BB009EB79C /* mapindex.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A5185643BB009EB79C /* mapindex.c */; };
		A56CC6E9185643BB009EB79C /* mapindex.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A5185643BB009EB79C /* mapindex.c */; };
		A56CC6EA185643BB009EB79C /* md5calc.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A7185643BB009EB79C /* md5calc.c */; };
		A56CC6EB185643BB009EB79C /* md5calc.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A7185643BB009EB79C /* md5calc.c */; };
		A56CC6EC185643BB009EB79C /* md5calc.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6A7185643BB009EB79C /* md5calc.c */; };
		A56CC6F0185643BB009EB79C /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6AC185643BB009EB79C /* mutex.c */; };
		A56CC6F1185643BB009EB79C /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6AC185643BB009EB79C /* mutex.c */; };
		A56CC6F2185643BB009EB79C /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6AC185643BB009EB79C /* mutex.c */; };
		A56CC6F9185643BB009EB79C /* nullpo.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B2185643BB009EB79C /* nullpo.c */; };
		A56CC6FA185643BB009EB79C /* nullpo.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B2185643BB009EB79C /* nullpo.c */; };
		A56CC6FB185643BB009EB79C /* nullpo.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B2185643BB009EB79C /* nullpo.c */; };
		A56CC6FF185643BB009EB79C /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B6185643BB009EB79C /* random.c */; };
		A56CC700185643BB009EB79C /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B6185643BB009EB79C /* random.c */; };
		A56CC701185643BB009EB79C /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B6185643BB009EB79C /* random.c */; };
		A56CC702185643BB009EB79C /* showmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B8185643BB009EB79C /* showmsg.c */; };
		A56CC703185643BB009EB79C /* showmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B8185643BB009EB79C /* showmsg.c */; };
		A56CC704185643BB009EB79C /* showmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6B8185643BB009EB79C /* showmsg.c */; };
		A56CC705185643BB009EB79C /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BA185643BB009EB79C /* socket.c */; };
		A56CC706185643BB009EB79C /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BA185643BB009EB79C /* socket.c */; };
		A56CC707185643BB009EB79C /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BA185643BB009EB79C /* socket.c */; };
		A56CC708185643BB009EB79C /* sql.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BD185643BB009EB79C /* sql.c */; };
		A56CC709185643BB009EB79C /* sql.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BD185643BB009EB79C /* sql.c */; };
		A56CC70A185643BB009EB79C /* sql.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BD185643BB009EB79C /* sql.c */; };
		A56CC70B185643BB009EB79C /* strlib.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BF185643BB009EB79C /* strlib.c */; };
		A56CC70C185643BB009EB79C /* strlib.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BF185643BB009EB79C /* strlib.c */; };
		A56CC70D185643BB009EB79C /* strlib.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6BF185643BB009EB79C /* strlib.c */; };
		A56CC711185643BB009EB79C /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C2185643BB009EB79C /* thread.c */; };
		A56CC712185643BB009EB79C /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C2185643BB009EB79C /* thread.c */; };
		A56CC713185643BB009EB79C /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C2185643BB009EB79C /* thread.c */; };
		A56CC714185643BB009EB79C /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C4185643BB009EB79C /* timer.c */; };
		A56CC715185643BB009EB79C /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C4185643BB009EB79C /* timer.c */; };
		A56CC716185643BB009EB79C /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C4185643BB009EB79C /* timer.c */; };
		A56CC717185643BB009EB79C /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C6185643BB009EB79C /* utils.c */; };
		A56CC718185643BB009EB79C /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C6185643BB009EB79C /* utils.c */; };
		A56CC719185643BB009EB79C /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC6C6185643BB009EB79C /* utils.c */; };
		A56CC72E18564C05009EB79C /* grammar.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72218564C05009EB79C /* grammar.c */; };
		A56CC72F18564C05009EB79C /* grammar.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72218564C05009EB79C /* grammar.c */; };
		A56CC73018564C05009EB79C /* grammar.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72218564C05009EB79C /* grammar.c */; };
		A56CC73118564C05009EB79C /* libconfig.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72418564C05009EB79C /* libconfig.c */; };
		A56CC73218564C05009EB79C /* libconfig.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72418564C05009EB79C /* libconfig.c */; };
		A56CC73318564C05009EB79C /* libconfig.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72418564C05009EB79C /* libconfig.c */; };
		A56CC73418564C05009EB79C /* scanctx.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72718564C05009EB79C /* scanctx.c */; };
		A56CC73518564C05009EB79C /* scanctx.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72718564C05009EB79C /* scanctx.c */; };
		A56CC73618564C05009EB79C /* scanctx.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72718564C05009EB79C /* scanctx.c */; };
		A56CC73718564C05009EB79C /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72918564C05009EB79C /* scanner.c */; };
		A56CC73818564C05009EB79C /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72918564C05009EB79C /* scanner.c */; };
		A56CC73918564C05009EB79C /* scanner.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72918564C05009EB79C /* scanner.c */; };
		A56CC73A18564C05009EB79C /* strbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72B18564C05009EB79C /* strbuf.c */; };
		A56CC73B18564C05009EB79C /* strbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72B18564C05009EB79C /* strbuf.c */; };
		A56CC73C18564C05009EB79C /* strbuf.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC72B18564C05009EB79C /* strbuf.c */; };
		A56CC74018564C23009EB79C /* mt19937ar.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC73E18564C23009EB79C /* mt19937ar.c */; };
		A56CC74118564C23009EB79C /* mt19937ar.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC73E18564C23009EB79C /* mt19937ar.c */; };
		A56CC74218564C23009EB79C /* mt19937ar.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC73E18564C23009EB79C /* mt19937ar.c */; };
		A56CC75D185657D9009EB79C /* char.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC743185657D9009EB79C /* char.c */; };
		A56CC75E185657D9009EB79C /* int_auction.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC745185657D9009EB79C /* int_auction.c */; };
		A56CC75F185657D9009EB79C /* int_elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC747185657D9009EB79C /* int_elemental.c */; };
		A56CC760185657D9009EB79C /* int_guild.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC749185657D9009EB79C /* int_guild.c */; };
		A56CC761185657D9009EB79C /* int_homun.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC74B185657D9009EB79C /* int_homun.c */; };
		A56CC762185657D9009EB79C /* int_mail.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC74D185657D9009EB79C /* int_mail.c */; };
		A56CC763185657D9009EB79C /* int_mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC74F185657D9009EB79C /* int_mercenary.c */; };
		A56CC764185657D9009EB79C /* int_party.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC751185657D9009EB79C /* int_party.c */; };
		A56CC765185657D9009EB79C /* int_pet.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC753185657D9009EB79C /* int_pet.c */; };
		A56CC766185657D9009EB79C /* int_quest.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC755185657D9009EB79C /* int_quest.c */; };
		A56CC767185657D9009EB79C /* int_storage.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC757185657D9009EB79C /* int_storage.c */; };
		A56CC768185657D9009EB79C /* inter.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC759185657D9009EB79C /* inter.c */; };
		A56CC769185657D9009EB79C /* pincode.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC75B185657D9009EB79C /* pincode.c */; };
		A56CC7B918565812009EB79C /* atcommand.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC76A18565812009EB79C /* atcommand.c */; };
		A56CC7BA18565812009EB79C /* battle.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC76C18565812009EB79C /* battle.c */; };
		A56CC7BB18565812009EB79C /* battleground.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC76E18565812009EB79C /* battleground.c */; };
		A56CC7BC18565812009EB79C /* buyingstore.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77018565812009EB79C /* buyingstore.c */; };
		A56CC7BD18565812009EB79C /* chat.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77218565812009EB79C /* chat.c */; };
		A56CC7BE18565812009EB79C /* chrif.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77418565812009EB79C /* chrif.c */; };
		A56CC7BF18565812009EB79C /* clif.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77618565812009EB79C /* clif.c */; };
		A56CC7C018565812009EB79C /* date.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77818565812009EB79C /* date.c */; };
		A56CC7C118565812009EB79C /* duel.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77A18565812009EB79C /* duel.c */; };
		A56CC7C218565812009EB79C /* elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77C18565812009EB79C /* elemental.c */; };
		A56CC7C318565812009EB79C /* guild.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC77E18565812009EB79C /* guild.c */; };
		A56CC7C418565812009EB79C /* homunculus.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78018565812009EB79C /* homunculus.c */; };
		A56CC7C518565812009EB79C /* HPMmap.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78218565812009EB79C /* HPMmap.c */; };
		A56CC7C618565812009EB79C /* instance.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78418565812009EB79C /* instance.c */; };
		A56CC7C718565812009EB79C /* intif.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78618565812009EB79C /* intif.c */; };
		A56CC7C818565812009EB79C /* irc-bot.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78818565812009EB79C /* irc-bot.c */; };
		A56CC7C918565812009EB79C /* itemdb.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78A18565812009EB79C /* itemdb.c */; };
		A56CC7CA18565812009EB79C /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78C18565812009EB79C /* log.c */; };
		A56CC7CB18565812009EB79C /* mail.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC78E18565812009EB79C /* mail.c */; };
		A56CC7CC18565812009EB79C /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79018565812009EB79C /* map.c */; };
		A56CC7CD18565812009EB79C /* mapreg_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79218565812009EB79C /* mapreg_sql.c */; };
		A56CC7CE18565812009EB79C /* mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79418565812009EB79C /* mercenary.c */; };
		A56CC7CF18565812009EB79C /* mob.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79618565812009EB79C /* mob.c */; };
		A56CC7D018565812009EB79C /* npc_chat.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79818565812009EB79C /* npc_chat.c */; };
		A56CC7D118565812009EB79C /* npc.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79918565812009EB79C /* npc.c */; };
		A56CC7D218565812009EB79C /* party.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79D18565812009EB79C /* party.c */; };
		A56CC7D318565812009EB79C /* path.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC79F18565812009EB79C /* path.c */; };
		A56CC7D418565812009EB79C /* pc_groups.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7A118565812009EB79C /* pc_groups.c */; };
		A56CC7D518565812009EB79C /* pc.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7A318565812009EB79C /* pc.c */; };
		A56CC7D618565812009EB79C /* pet.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7A518565812009EB79C /* pet.c */; };
		A56CC7D718565812009EB79C /* quest.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7A718565812009EB79C /* quest.c */; };
		A56CC7D818565812009EB79C /* script.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7A918565812009EB79C /* script.c */; };
		A56CC7D918565812009EB79C /* searchstore.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7AB18565812009EB79C /* searchstore.c */; };
		A56CC7DA18565812009EB79C /* skill.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7AD18565812009EB79C /* skill.c */; };
		A56CC7DB18565812009EB79C /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7AF18565812009EB79C /* status.c */; };
		A56CC7DC18565812009EB79C /* storage.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7B118565812009EB79C /* storage.c */; };
		A56CC7DD18565812009EB79C /* trade.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7B318565812009EB79C /* trade.c */; };
		A56CC7DE18565812009EB79C /* unit.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7B518565812009EB79C /* unit.c */; };
		A56CC7DF18565812009EB79C /* vending.c in Sources */ = {isa = PBXBuildFile; fileRef = A56CC7B718565812009EB79C /* vending.c */; };
		A58A5A281858025D0099683E /* HPMHooking.c in Sources */ = {isa = PBXBuildFile; fileRef = A58A5A271858025D0099683E /* HPMHooking.c */; };
		A59EA4511A727D36005F2B6D /* channel.c in Sources */ = {isa = PBXBuildFile; fileRef = A59EA44F1A727D36005F2B6D /* channel.c */; };
		A5AA94EE185796CB00C940C8 /* sample.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA94ED185796CB00C940C8 /* sample.c */; };
		A5AA94FA185799E400C940C8 /* db2sql.c in Sources */ = {isa = PBXBuildFile; fileRef = A5AA94F8185799DF00C940C8 /* db2sql.c */; };
		A5B894AA1A03CDD4005AD22E /* HPMlogin.c in Sources */ = {isa = PBXBuildFile; fileRef = A5B894A81A03CDD4005AD22E /* HPMlogin.c */; };
		A5B894AD1A03CDFA005AD22E /* HPMchar.c in Sources */ = {isa = PBXBuildFile; fileRef = A5B894AB1A03CDFA005AD22E /* HPMchar.c */; };
		A5B894B01A03CE25005AD22E /* HPMHooking.c in Sources */ = {isa = PBXBuildFile; fileRef = A58A5A271858025D0099683E /* HPMHooking.c */; };
		A5B894B91A03CE5D005AD22E /* HPMHooking.c in Sources */ = {isa = PBXBuildFile; fileRef = A58A5A271858025D0099683E /* HPMHooking.c */; };
		A5BBC249219D076900E26B8D /* packets.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC218219D076900E26B8D /* packets.c */; };
		A5BBC251219D081800E26B8D /* packets.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC218219D076900E26B8D /* packets.c */; };
		A5BBC252219D081900E26B8D /* packets.c in Sources */ = {isa = PBXBuildFile; fileRef = A5BBC218219D076900E26B8D /* packets.c */; };
		A5F7946C191CA34E002293AB /* sysinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5F79469191CA34E002293AB /* sysinfo.c */; };
		A5F7946D191CA34E002293AB /* sysinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5F79469191CA34E002293AB /* sysinfo.c */; };
		A5F7946E191CA34E002293AB /* sysinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = A5F79469191CA34E002293AB /* sysinfo.c */; };
		D0647BA51E793E7300D0843D /* int_achievement.c in Sources */ = {isa = PBXBuildFile; fileRef = D0647BA31E793E7300D0843D /* int_achievement.c */; };
		D0647BA81E793E8200D0843D /* achievement.c in Sources */ = {isa = PBXBuildFile; fileRef = D0647BA61E793E8200D0843D /* achievement.c */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
		A56CC66818564315009EB79C /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		A56CC6711856434D009EB79C /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		A56CC67A18564356009EB79C /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		755495821FEE5A0000CE4B7D /* int_rodex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_rodex.h; path = src/char/int_rodex.h; sourceTree = SOURCE_ROOT; };
		755495831FEE5A0000CE4B7D /* int_rodex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_rodex.c; path = src/char/int_rodex.c; sourceTree = SOURCE_ROOT; };
		755495851FEE5A1F00CE4B7D /* rodex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rodex.c; path = src/map/rodex.c; sourceTree = SOURCE_ROOT; };
		755495861FEE5A1F00CE4B7D /* rodex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rodex.h; path = src/map/rodex.h; sourceTree = SOURCE_ROOT; };
		A5296FCA1CAC40CF001ABCAC /* lclif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lclif.c; path = src/login/lclif.c; sourceTree = SOURCE_ROOT; };
		A5296FCB1CAC40CF001ABCAC /* lclif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lclif.h; path = src/login/lclif.h; sourceTree = SOURCE_ROOT; };
		A5296FCC1CAC40CF001ABCAC /* lclif.p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lclif.p.h; path = src/login/lclif.p.h; sourceTree = SOURCE_ROOT; };
		A5302672202D78B00060E394 /* packets_keys_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_keys_main.h; path = src/map/packets_keys_main.h; sourceTree = SOURCE_ROOT; };
		A5302673202D78B00060E394 /* clan.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = clan.c; path = src/map/clan.c; sourceTree = SOURCE_ROOT; };
		A5302674202D78B00060E394 /* constants.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 4; name = constants.inc; path = src/map/constants.inc; sourceTree = SOURCE_ROOT; };
		A5302675202D78B10060E394 /* packets_shuffle_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_shuffle_main.h; path = src/map/packets_shuffle_main.h; sourceTree = SOURCE_ROOT; };
		A5302676202D78B10060E394 /* clan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clan.h; path = src/map/clan.h; sourceTree = SOURCE_ROOT; };
		A5302677202D78B10060E394 /* packets_keys_zero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_keys_zero.h; path = src/map/packets_keys_zero.h; sourceTree = SOURCE_ROOT; };
		A5302678202D78B10060E394 /* packets_shuffle_zero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_shuffle_zero.h; path = src/map/packets_shuffle_zero.h; sourceTree = SOURCE_ROOT; };
		A530267C202D792F0060E394 /* int_clan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_clan.h; path = src/char/int_clan.h; sourceTree = SOURCE_ROOT; };
		A530267D202D792F0060E394 /* int_clan.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_clan.c; path = src/char/int_clan.c; sourceTree = SOURCE_ROOT; };
		A5302680202D79940060E394 /* HPMSymbols.inc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMSymbols.inc.h; path = src/common/HPMSymbols.inc.h; sourceTree = "<group>"; };
		A5302681202D79940060E394 /* hercules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hercules.h; path = src/common/hercules.h; sourceTree = "<group>"; };
		A5302682202D7A1F0060E394 /* HPMHooking.Defs.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 4; name = HPMHooking.Defs.inc; path = src/plugins/HPMHooking/HPMHooking.Defs.inc; sourceTree = "<group>"; };
		A5302684202D7A2F0060E394 /* HPMHooking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMHooking.h; path = src/plugins/HPMHooking.h; sourceTree = "<group>"; };
		A5467AD11A16FCB4008AFAA6 /* loginif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loginif.c; path = src/char/loginif.c; sourceTree = SOURCE_ROOT; };
		A5467AD21A16FCB4008AFAA6 /* loginif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loginif.h; path = src/char/loginif.h; sourceTree = SOURCE_ROOT; };
		A5467AD41A16FCDC008AFAA6 /* mapif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapif.c; path = src/char/mapif.c; sourceTree = SOURCE_ROOT; };
		A5467AD51A16FCDC008AFAA6 /* mapif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapif.h; path = src/char/mapif.h; sourceTree = SOURCE_ROOT; };
		A5467AD71A16FD08008AFAA6 /* geoip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = geoip.c; path = src/char/geoip.c; sourceTree = SOURCE_ROOT; };
		A5467AD81A16FD08008AFAA6 /* geoip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = geoip.h; path = src/char/geoip.h; sourceTree = SOURCE_ROOT; };
		A56CC66A18564315009EB79C /* login-server */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "login-server"; sourceTree = BUILT_PRODUCTS_DIR; };
		A56CC6731856434D009EB79C /* char-server */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "char-server"; sourceTree = BUILT_PRODUCTS_DIR; };
		A56CC67C18564356009EB79C /* map-server */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "map-server"; sourceTree = BUILT_PRODUCTS_DIR; };
		A56CC68118564387009EB79C /* account.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = account.c; path = src/login/account.c; sourceTree = SOURCE_ROOT; };
		A56CC68218564387009EB79C /* account.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = account.h; path = src/login/account.h; sourceTree = SOURCE_ROOT; };
		A56CC68318564387009EB79C /* ipban.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipban.c; path = src/login/ipban.c; sourceTree = SOURCE_ROOT; };
		A56CC68418564387009EB79C /* ipban.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipban.h; path = src/login/ipban.h; sourceTree = SOURCE_ROOT; };
		A56CC68518564387009EB79C /* login.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = login.c; path = src/login/login.c; sourceTree = SOURCE_ROOT; };
		A56CC68618564387009EB79C /* login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = login.h; path = src/login/login.h; sourceTree = SOURCE_ROOT; };
		A56CC68718564387009EB79C /* loginlog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loginlog.c; path = src/login/loginlog.c; sourceTree = SOURCE_ROOT; };
		A56CC68818564387009EB79C /* loginlog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loginlog.h; path = src/login/loginlog.h; sourceTree = SOURCE_ROOT; };
		A56CC68E185643BB009EB79C /* atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atomic.h; path = src/common/atomic.h; sourceTree = "<group>"; };
		A56CC68F185643BB009EB79C /* cbasetypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cbasetypes.h; path = src/common/cbasetypes.h; sourceTree = "<group>"; };
		A56CC690185643BB009EB79C /* conf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = conf.c; path = src/common/conf.c; sourceTree = "<group>"; };
		A56CC691185643BB009EB79C /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/common/conf.h; sourceTree = "<group>"; };
		A56CC692185643BB009EB79C /* console.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = console.c; path = src/common/console.c; sourceTree = "<group>"; };
		A56CC693185643BB009EB79C /* console.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = console.h; path = src/common/console.h; sourceTree = "<group>"; };
		A56CC694185643BB009EB79C /* core.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = core.c; path = src/common/core.c; sourceTree = "<group>"; };
		A56CC695185643BB009EB79C /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = core.h; path = src/common/core.h; sourceTree = "<group>"; };
		A56CC696185643BB009EB79C /* db.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = db.c; path = src/common/db.c; sourceTree = "<group>"; };
		A56CC697185643BB009EB79C /* db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = db.h; path = src/common/db.h; sourceTree = "<group>"; };
		A56CC698185643BB009EB79C /* des.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = des.c; path = src/common/des.c; sourceTree = "<group>"; };
		A56CC699185643BB009EB79C /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/common/des.h; sourceTree = "<group>"; };
		A56CC69A185643BB009EB79C /* ers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ers.c; path = src/common/ers.c; sourceTree = "<group>"; };
		A56CC69B185643BB009EB79C /* ers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ers.h; path = src/common/ers.h; sourceTree = "<group>"; };
		A56CC69E185643BB009EB79C /* grfio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = grfio.c; path = src/common/grfio.c; sourceTree = "<group>"; };
		A56CC69F185643BB009EB79C /* grfio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = grfio.h; path = src/common/grfio.h; sourceTree = "<group>"; };
		A56CC6A0185643BB009EB79C /* HPM.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = HPM.c; path = src/common/HPM.c; sourceTree = "<group>"; };
		A56CC6A1185643BB009EB79C /* HPM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPM.h; path = src/common/HPM.h; sourceTree = "<group>"; };
		A56CC6A2185643BB009EB79C /* HPMi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMi.h; path = src/common/HPMi.h; sourceTree = "<group>"; };
		A56CC6A3185643BB009EB79C /* memmgr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = memmgr.c; path = src/common/memmgr.c; sourceTree = "<group>"; };
		A56CC6A4185643BB009EB79C /* memmgr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = memmgr.h; path = src/common/memmgr.h; sourceTree = "<group>"; };
		A56CC6A5185643BB009EB79C /* mapindex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapindex.c; path = src/common/mapindex.c; sourceTree = "<group>"; };
		A56CC6A6185643BB009EB79C /* mapindex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapindex.h; path = src/common/mapindex.h; sourceTree = "<group>"; };
		A56CC6A7185643BB009EB79C /* md5calc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5calc.c; path = src/common/md5calc.c; sourceTree = "<group>"; };
		A56CC6A8185643BB009EB79C /* md5calc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md5calc.h; path = src/common/md5calc.h; sourceTree = "<group>"; };
		A56CC6AB185643BB009EB79C /* mmo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mmo.h; path = src/common/mmo.h; sourceTree = "<group>"; };
		A56CC6AC185643BB009EB79C /* mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mutex.c; path = src/common/mutex.c; sourceTree = "<group>"; };
		A56CC6AD185643BB009EB79C /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = src/common/mutex.h; sourceTree = "<group>"; };
		A56CC6B2185643BB009EB79C /* nullpo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = nullpo.c; path = src/common/nullpo.c; sourceTree = "<group>"; };
		A56CC6B3185643BB009EB79C /* nullpo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = nullpo.h; path = src/common/nullpo.h; sourceTree = "<group>"; };
		A56CC6B6185643BB009EB79C /* random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = random.c; path = src/common/random.c; sourceTree = "<group>"; };
		A56CC6B7185643BB009EB79C /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = random.h; path = src/common/random.h; sourceTree = "<group>"; };
		A56CC6B8185643BB009EB79C /* showmsg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = showmsg.c; path = src/common/showmsg.c; sourceTree = "<group>"; };
		A56CC6B9185643BB009EB79C /* showmsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = showmsg.h; path = src/common/showmsg.h; sourceTree = "<group>"; };
		A56CC6BA185643BB009EB79C /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = socket.c; path = src/common/socket.c; sourceTree = "<group>"; };
		A56CC6BB185643BB009EB79C /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = socket.h; path = src/common/socket.h; sourceTree = "<group>"; };
		A56CC6BC185643BB009EB79C /* spinlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/common/spinlock.h; sourceTree = "<group>"; };
		A56CC6BD185643BB009EB79C /* sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sql.c; path = src/common/sql.c; sourceTree = "<group>"; };
		A56CC6BE185643BB009EB79C /* sql.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sql.h; path = src/common/sql.h; sourceTree = "<group>"; };
		A56CC6BF185643BB009EB79C /* strlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strlib.c; path = src/common/strlib.c; sourceTree = "<group>"; };
		A56CC6C0185643BB009EB79C /* strlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strlib.h; path = src/common/strlib.h; sourceTree = "<group>"; };
		A56CC6C2185643BB009EB79C /* thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thread.c; path = src/common/thread.c; sourceTree = "<group>"; };
		A56CC6C3185643BB009EB79C /* thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/common/thread.h; sourceTree = "<group>"; };
		A56CC6C4185643BB009EB79C /* timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = timer.c; path = src/common/timer.c; sourceTree = "<group>"; };
		A56CC6C5185643BB009EB79C /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/common/timer.h; sourceTree = "<group>"; };
		A56CC6C6185643BB009EB79C /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = utils.c; path = src/common/utils.c; sourceTree = "<group>"; };
		A56CC6C7185643BB009EB79C /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/common/utils.h; sourceTree = "<group>"; };
		A56CC6C8185643BB009EB79C /* winapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = winapi.h; path = src/common/winapi.h; sourceTree = "<group>"; };
		A56CC71B18564AF7009EB79C /* const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = const.h; path = src/config/const.h; sourceTree = "<group>"; };
		A56CC71C18564AF7009EB79C /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = core.h; path = src/config/core.h; sourceTree = "<group>"; };
		A56CC71D18564AF7009EB79C /* renewal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = renewal.h; path = src/config/renewal.h; sourceTree = "<group>"; };
		A56CC71E18564AF7009EB79C /* secure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = secure.h; path = src/config/secure.h; sourceTree = "<group>"; };
		A56CC71F18564B00009EB79C /* general.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = general.h; path = src/config/classes/general.h; sourceTree = "<group>"; };
		A56CC72218564C05009EB79C /* grammar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = grammar.c; path = 3rdparty/libconfig/grammar.c; sourceTree = "<group>"; };
		A56CC72318564C05009EB79C /* grammar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = grammar.h; path = 3rdparty/libconfig/grammar.h; sourceTree = "<group>"; };
		A56CC72418564C05009EB79C /* libconfig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = libconfig.c; path = 3rdparty/libconfig/libconfig.c; sourceTree = "<group>"; };
		A56CC72518564C05009EB79C /* libconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = libconfig.h; path = 3rdparty/libconfig/libconfig.h; sourceTree = "<group>"; };
		A56CC72618564C05009EB79C /* parsectx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = parsectx.h; path = 3rdparty/libconfig/parsectx.h; sourceTree = "<group>"; };
		A56CC72718564C05009EB79C /* scanctx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = scanctx.c; path = 3rdparty/libconfig/scanctx.c; sourceTree = "<group>"; };
		A56CC72818564C05009EB79C /* scanctx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = scanctx.h; path = 3rdparty/libconfig/scanctx.h; sourceTree = "<group>"; };
		A56CC72918564C05009EB79C /* scanner.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = scanner.c; path = 3rdparty/libconfig/scanner.c; sourceTree = "<group>"; };
		A56CC72A18564C05009EB79C /* scanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = scanner.h; path = 3rdparty/libconfig/scanner.h; sourceTree = "<group>"; };
		A56CC72B18564C05009EB79C /* strbuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strbuf.c; path = 3rdparty/libconfig/strbuf.c; sourceTree = "<group>"; };
		A56CC72C18564C05009EB79C /* strbuf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strbuf.h; path = 3rdparty/libconfig/strbuf.h; sourceTree = "<group>"; };
		A56CC72D18564C05009EB79C /* wincompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wincompat.h; path = 3rdparty/libconfig/wincompat.h; sourceTree = "<group>"; };
		A56CC73E18564C23009EB79C /* mt19937ar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mt19937ar.c; path = 3rdparty/mt19937ar/mt19937ar.c; sourceTree = "<group>"; };
		A56CC73F18564C23009EB79C /* mt19937ar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mt19937ar.h; path = 3rdparty/mt19937ar/mt19937ar.h; sourceTree = "<group>"; };
		A56CC743185657D9009EB79C /* char.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = char.c; path = src/char/char.c; sourceTree = SOURCE_ROOT; };
		A56CC744185657D9009EB79C /* char.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = char.h; path = src/char/char.h; sourceTree = SOURCE_ROOT; };
		A56CC745185657D9009EB79C /* int_auction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_auction.c; path = src/char/int_auction.c; sourceTree = SOURCE_ROOT; };
		A56CC746185657D9009EB79C /* int_auction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_auction.h; path = src/char/int_auction.h; sourceTree = SOURCE_ROOT; };
		A56CC747185657D9009EB79C /* int_elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_elemental.c; path = src/char/int_elemental.c; sourceTree = SOURCE_ROOT; };
		A56CC748185657D9009EB79C /* int_elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_elemental.h; path = src/char/int_elemental.h; sourceTree = SOURCE_ROOT; };
		A56CC749185657D9009EB79C /* int_guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_guild.c; path = src/char/int_guild.c; sourceTree = SOURCE_ROOT; };
		A56CC74A185657D9009EB79C /* int_guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_guild.h; path = src/char/int_guild.h; sourceTree = SOURCE_ROOT; };
		A56CC74B185657D9009EB79C /* int_homun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_homun.c; path = src/char/int_homun.c; sourceTree = SOURCE_ROOT; };
		A56CC74C185657D9009EB79C /* int_homun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_homun.h; path = src/char/int_homun.h; sourceTree = SOURCE_ROOT; };
		A56CC74D185657D9009EB79C /* int_mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mail.c; path = src/char/int_mail.c; sourceTree = SOURCE_ROOT; };
		A56CC74E185657D9009EB79C /* int_mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mail.h; path = src/char/int_mail.h; sourceTree = SOURCE_ROOT; };
		A56CC74F185657D9009EB79C /* int_mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mercenary.c; path = src/char/int_mercenary.c; sourceTree = SOURCE_ROOT; };
		A56CC750185657D9009EB79C /* int_mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mercenary.h; path = src/char/int_mercenary.h; sourceTree = SOURCE_ROOT; };
		A56CC751185657D9009EB79C /* int_party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_party.c; path = src/char/int_party.c; sourceTree = SOURCE_ROOT; };
		A56CC752185657D9009EB79C /* int_party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_party.h; path = src/char/int_party.h; sourceTree = SOURCE_ROOT; };
		A56CC753185657D9009EB79C /* int_pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_pet.c; path = src/char/int_pet.c; sourceTree = SOURCE_ROOT; };
		A56CC754185657D9009EB79C /* int_pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_pet.h; path = src/char/int_pet.h; sourceTree = SOURCE_ROOT; };
		A56CC755185657D9009EB79C /* int_quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_quest.c; path = src/char/int_quest.c; sourceTree = SOURCE_ROOT; };
		A56CC756185657D9009EB79C /* int_quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_quest.h; path = src/char/int_quest.h; sourceTree = SOURCE_ROOT; };
		A56CC757185657D9009EB79C /* int_storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_storage.c; path = src/char/int_storage.c; sourceTree = SOURCE_ROOT; };
		A56CC758185657D9009EB79C /* int_storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_storage.h; path = src/char/int_storage.h; sourceTree = SOURCE_ROOT; };
		A56CC759185657D9009EB79C /* inter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inter.c; path = src/char/inter.c; sourceTree = SOURCE_ROOT; };
		A56CC75A185657D9009EB79C /* inter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inter.h; path = src/char/inter.h; sourceTree = SOURCE_ROOT; };
		A56CC75B185657D9009EB79C /* pincode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pincode.c; path = src/char/pincode.c; sourceTree = SOURCE_ROOT; };
		A56CC75C185657D9009EB79C /* pincode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pincode.h; path = src/char/pincode.h; sourceTree = SOURCE_ROOT; };
		A56CC76A18565812009EB79C /* atcommand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = atcommand.c; path = src/map/atcommand.c; sourceTree = SOURCE_ROOT; };
		A56CC76B18565812009EB79C /* atcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atcommand.h; path = src/map/atcommand.h; sourceTree = SOURCE_ROOT; };
		A56CC76C18565812009EB79C /* battle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battle.c; path = src/map/battle.c; sourceTree = SOURCE_ROOT; };
		A56CC76D18565812009EB79C /* battle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battle.h; path = src/map/battle.h; sourceTree = SOURCE_ROOT; };
		A56CC76E18565812009EB79C /* battleground.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battleground.c; path = src/map/battleground.c; sourceTree = SOURCE_ROOT; };
		A56CC76F18565812009EB79C /* battleground.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battleground.h; path = src/map/battleground.h; sourceTree = SOURCE_ROOT; };
		A56CC77018565812009EB79C /* buyingstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = buyingstore.c; path = src/map/buyingstore.c; sourceTree = SOURCE_ROOT; };
		A56CC77118565812009EB79C /* buyingstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buyingstore.h; path = src/map/buyingstore.h; sourceTree = SOURCE_ROOT; };
		A56CC77218565812009EB79C /* chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chat.c; path = src/map/chat.c; sourceTree = SOURCE_ROOT; };
		A56CC77318565812009EB79C /* chat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chat.h; path = src/map/chat.h; sourceTree = SOURCE_ROOT; };
		A56CC77418565812009EB79C /* chrif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chrif.c; path = src/map/chrif.c; sourceTree = SOURCE_ROOT; };
		A56CC77518565812009EB79C /* chrif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chrif.h; path = src/map/chrif.h; sourceTree = SOURCE_ROOT; };
		A56CC77618565812009EB79C /* clif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = clif.c; path = src/map/clif.c; sourceTree = SOURCE_ROOT; };
		A56CC77718565812009EB79C /* clif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clif.h; path = src/map/clif.h; sourceTree = SOURCE_ROOT; };
		A56CC77818565812009EB79C /* date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = date.c; path = src/map/date.c; sourceTree = SOURCE_ROOT; };
		A56CC77918565812009EB79C /* date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = date.h; path = src/map/date.h; sourceTree = SOURCE_ROOT; };
		A56CC77A18565812009EB79C /* duel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = duel.c; path = src/map/duel.c; sourceTree = SOURCE_ROOT; };
		A56CC77B18565812009EB79C /* duel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = duel.h; path = src/map/duel.h; sourceTree = SOURCE_ROOT; };
		A56CC77C18565812009EB79C /* elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elemental.c; path = src/map/elemental.c; sourceTree = SOURCE_ROOT; };
		A56CC77D18565812009EB79C /* elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elemental.h; path = src/map/elemental.h; sourceTree = SOURCE_ROOT; };
		A56CC77E18565812009EB79C /* guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = guild.c; path = src/map/guild.c; sourceTree = SOURCE_ROOT; };
		A56CC77F18565812009EB79C /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = src/map/guild.h; sourceTree = SOURCE_ROOT; };
		A56CC78018565812009EB79C /* homunculus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = homunculus.c; path = src/map/homunculus.c; sourceTree = SOURCE_ROOT; };
		A56CC78118565812009EB79C /* homunculus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = homunculus.h; path = src/map/homunculus.h; sourceTree = SOURCE_ROOT; };
		A56CC78218565812009EB79C /* HPMmap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = HPMmap.c; path = src/map/HPMmap.c; sourceTree = SOURCE_ROOT; };
		A56CC78318565812009EB79C /* HPMmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMmap.h; path = src/map/HPMmap.h; sourceTree = SOURCE_ROOT; };
		A56CC78418565812009EB79C /* instance.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = instance.c; path = src/map/instance.c; sourceTree = SOURCE_ROOT; };
		A56CC78518565812009EB79C /* instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = instance.h; path = src/map/instance.h; sourceTree = SOURCE_ROOT; };
		A56CC78618565812009EB79C /* intif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = intif.c; path = src/map/intif.c; sourceTree = SOURCE_ROOT; };
		A56CC78718565812009EB79C /* intif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = intif.h; path = src/map/intif.h; sourceTree = SOURCE_ROOT; };
		A56CC78818565812009EB79C /* irc-bot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "irc-bot.c"; path = "src/map/irc-bot.c"; sourceTree = SOURCE_ROOT; };
		A56CC78918565812009EB79C /* irc-bot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "irc-bot.h"; path = "src/map/irc-bot.h"; sourceTree = SOURCE_ROOT; };
		A56CC78A18565812009EB79C /* itemdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = itemdb.c; path = src/map/itemdb.c; sourceTree = SOURCE_ROOT; };
		A56CC78B18565812009EB79C /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemdb.h; path = src/map/itemdb.h; sourceTree = SOURCE_ROOT; };
		A56CC78C18565812009EB79C /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = log.c; path = src/map/log.c; sourceTree = SOURCE_ROOT; };
		A56CC78D18565812009EB79C /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = log.h; path = src/map/log.h; sourceTree = SOURCE_ROOT; };
		A56CC78E18565812009EB79C /* mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mail.c; path = src/map/mail.c; sourceTree = SOURCE_ROOT; };
		A56CC78F18565812009EB79C /* mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mail.h; path = src/map/mail.h; sourceTree = SOURCE_ROOT; };
		A56CC79018565812009EB79C /* map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = map.c; path = src/map/map.c; sourceTree = SOURCE_ROOT; };
		A56CC79118565812009EB79C /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/map/map.h; sourceTree = SOURCE_ROOT; };
		A56CC79218565812009EB79C /* mapreg_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapreg_sql.c; path = src/map/mapreg_sql.c; sourceTree = SOURCE_ROOT; };
		A56CC79318565812009EB79C /* mapreg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapreg.h; path = src/map/mapreg.h; sourceTree = SOURCE_ROOT; };
		A56CC79418565812009EB79C /* mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mercenary.c; path = src/map/mercenary.c; sourceTree = SOURCE_ROOT; };
		A56CC79518565812009EB79C /* mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mercenary.h; path = src/map/mercenary.h; sourceTree = SOURCE_ROOT; };
		A56CC79618565812009EB79C /* mob.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mob.c; path = src/map/mob.c; sourceTree = SOURCE_ROOT; };
		A56CC79718565812009EB79C /* mob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mob.h; path = src/map/mob.h; sourceTree = SOURCE_ROOT; };
		A56CC79818565812009EB79C /* npc_chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc_chat.c; path = src/map/npc_chat.c; sourceTree = SOURCE_ROOT; };
		A56CC79918565812009EB79C /* npc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc.c; path = src/map/npc.c; sourceTree = SOURCE_ROOT; };
		A56CC79A18565812009EB79C /* npc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = npc.h; path = src/map/npc.h; sourceTree = SOURCE_ROOT; };
		A56CC79B18565812009EB79C /* packets_struct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_struct.h; path = src/map/packets_struct.h; sourceTree = SOURCE_ROOT; };
		A56CC79C18565812009EB79C /* packets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets.h; path = src/map/packets.h; sourceTree = SOURCE_ROOT; };
		A56CC79D18565812009EB79C /* party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = party.c; path = src/map/party.c; sourceTree = SOURCE_ROOT; };
		A56CC79E18565812009EB79C /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/map/party.h; sourceTree = SOURCE_ROOT; };
		A56CC79F18565812009EB79C /* path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = path.c; path = src/map/path.c; sourceTree = SOURCE_ROOT; };
		A56CC7A018565812009EB79C /* path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = path.h; path = src/map/path.h; sourceTree = SOURCE_ROOT; };
		A56CC7A118565812009EB79C /* pc_groups.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc_groups.c; path = src/map/pc_groups.c; sourceTree = SOURCE_ROOT; };
		A56CC7A218565812009EB79C /* pc_groups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc_groups.h; path = src/map/pc_groups.h; sourceTree = SOURCE_ROOT; };
		A56CC7A318565812009EB79C /* pc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc.c; path = src/map/pc.c; sourceTree = SOURCE_ROOT; };
		A56CC7A418565812009EB79C /* pc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc.h; path = src/map/pc.h; sourceTree = SOURCE_ROOT; };
		A56CC7A518565812009EB79C /* pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pet.c; path = src/map/pet.c; sourceTree = SOURCE_ROOT; };
		A56CC7A618565812009EB79C /* pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pet.h; path = src/map/pet.h; sourceTree = SOURCE_ROOT; };
		A56CC7A718565812009EB79C /* quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quest.c; path = src/map/quest.c; sourceTree = SOURCE_ROOT; };
		A56CC7A818565812009EB79C /* quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = quest.h; path = src/map/quest.h; sourceTree = SOURCE_ROOT; };
		A56CC7A918565812009EB79C /* script.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = script.c; path = src/map/script.c; sourceTree = SOURCE_ROOT; };
		A56CC7AA18565812009EB79C /* script.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = script.h; path = src/map/script.h; sourceTree = SOURCE_ROOT; };
		A56CC7AB18565812009EB79C /* searchstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = searchstore.c; path = src/map/searchstore.c; sourceTree = SOURCE_ROOT; };
		A56CC7AC18565812009EB79C /* searchstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = searchstore.h; path = src/map/searchstore.h; sourceTree = SOURCE_ROOT; };
		A56CC7AD18565812009EB79C /* skill.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = skill.c; path = src/map/skill.c; sourceTree = SOURCE_ROOT; };
		A56CC7AE18565812009EB79C /* skill.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = skill.h; path = src/map/skill.h; sourceTree = SOURCE_ROOT; };
		A56CC7AF18565812009EB79C /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = status.c; path = src/map/status.c; sourceTree = SOURCE_ROOT; };
		A56CC7B018565812009EB79C /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/map/status.h; sourceTree = SOURCE_ROOT; };
		A56CC7B118565812009EB79C /* storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = storage.c; path = src/map/storage.c; sourceTree = SOURCE_ROOT; };
		A56CC7B218565812009EB79C /* storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = storage.h; path = src/map/storage.h; sourceTree = SOURCE_ROOT; };
		A56CC7B318565812009EB79C /* trade.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trade.c; path = src/map/trade.c; sourceTree = SOURCE_ROOT; };
		A56CC7B418565812009EB79C /* trade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trade.h; path = src/map/trade.h; sourceTree = SOURCE_ROOT; };
		A56CC7B518565812009EB79C /* unit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unit.c; path = src/map/unit.c; sourceTree = SOURCE_ROOT; };
		A56CC7B618565812009EB79C /* unit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unit.h; path = src/map/unit.h; sourceTree = SOURCE_ROOT; };
		A56CC7B718565812009EB79C /* vending.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = vending.c; path = src/map/vending.c; sourceTree = SOURCE_ROOT; };
		A56CC7B818565812009EB79C /* vending.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vending.h; path = src/map/vending.h; sourceTree = SOURCE_ROOT; };
		A58A5A26185801FF0099683E /* HPMHooking_map.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = HPMHooking_map.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		A58A5A271858025D0099683E /* HPMHooking.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = HPMHooking.c; path = src/plugins/HPMHooking.c; sourceTree = "<group>"; };
		A59EA44F1A727D36005F2B6D /* channel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = channel.c; path = src/map/channel.c; sourceTree = SOURCE_ROOT; };
		A59EA4501A727D36005F2B6D /* channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/map/channel.h; sourceTree = SOURCE_ROOT; };
		A5AA94E71857956100C940C8 /* sample.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = sample.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		A5AA94ED185796CB00C940C8 /* sample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sample.c; path = src/plugins/sample.c; sourceTree = "<group>"; };
		A5AA94F3185799B700C940C8 /* db2sql.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = db2sql.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		A5AA94F8185799DF00C940C8 /* db2sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = db2sql.c; path = src/plugins/db2sql.c; sourceTree = "<group>"; };
		A5B894A81A03CDD4005AD22E /* HPMlogin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = HPMlogin.c; path = src/login/HPMlogin.c; sourceTree = SOURCE_ROOT; };
		A5B894A91A03CDD4005AD22E /* HPMlogin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMlogin.h; path = src/login/HPMlogin.h; sourceTree = SOURCE_ROOT; };
		A5B894AB1A03CDFA005AD22E /* HPMchar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = HPMchar.c; path = src/char/HPMchar.c; sourceTree = SOURCE_ROOT; };
		A5B894AC1A03CDFA005AD22E /* HPMchar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMchar.h; path = src/char/HPMchar.h; sourceTree = SOURCE_ROOT; };
		A5B894B61A03CE25005AD22E /* HPMHooking_char.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = HPMHooking_char.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		A5B894BF1A03CE5D005AD22E /* HPMHooking_login.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = HPMHooking_login.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
		A5B894C11A03CEE1005AD22E /* HPMHooking_char.HookingPoints.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_char.HookingPoints.inc; path = src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc; sourceTree = "<group>"; };
		A5B894C21A03CEE1005AD22E /* HPMHooking_char.Hooks.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_char.Hooks.inc; path = src/plugins/HPMHooking/HPMHooking_char.Hooks.inc; sourceTree = "<group>"; };
		A5B894C31A03CEE1005AD22E /* HPMHooking_char.HPMHooksCore.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_char.HPMHooksCore.inc; path = src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc; sourceTree = "<group>"; };
		A5B894C41A03CEE1005AD22E /* HPMHooking_char.sources.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_char.sources.inc; path = src/plugins/HPMHooking/HPMHooking_char.sources.inc; sourceTree = "<group>"; };
		A5B894C61A03CEE1005AD22E /* HPMHooking_login.HookingPoints.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_login.HookingPoints.inc; path = src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc; sourceTree = "<group>"; };
		A5B894C71A03CEE1005AD22E /* HPMHooking_login.Hooks.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_login.Hooks.inc; path = src/plugins/HPMHooking/HPMHooking_login.Hooks.inc; sourceTree = "<group>"; };
		A5B894C81A03CEE1005AD22E /* HPMHooking_login.HPMHooksCore.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_login.HPMHooksCore.inc; path = src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc; sourceTree = "<group>"; };
		A5B894C91A03CEE1005AD22E /* HPMHooking_login.sources.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_login.sources.inc; path = src/plugins/HPMHooking/HPMHooking_login.sources.inc; sourceTree = "<group>"; };
		A5B894CB1A03CEE1005AD22E /* HPMHooking_map.HookingPoints.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_map.HookingPoints.inc; path = src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc; sourceTree = "<group>"; };
		A5B894CC1A03CEE1005AD22E /* HPMHooking_map.Hooks.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_map.Hooks.inc; path = src/plugins/HPMHooking/HPMHooking_map.Hooks.inc; sourceTree = "<group>"; };
		A5B894CD1A03CEE1005AD22E /* HPMHooking_map.HPMHooksCore.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_map.HPMHooksCore.inc; path = src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc; sourceTree = "<group>"; };
		A5B894CE1A03CEE1005AD22E /* HPMHooking_map.sources.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; name = HPMHooking_map.sources.inc; path = src/plugins/HPMHooking/HPMHooking_map.sources.inc; sourceTree = "<group>"; };
		A5BBC216219D076800E26B8D /* packets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets.h; path = src/common/packets.h; sourceTree = "<group>"; };
		A5BBC217219D076900E26B8D /* packetsstatic_len.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packetsstatic_len.h; path = src/common/packetsstatic_len.h; sourceTree = "<group>"; };
		A5BBC218219D076900E26B8D /* packets.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = packets.c; path = src/common/packets.c; sourceTree = "<group>"; };
		A5BBC219219D076900E26B8D /* packets_len.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_len.h; path = src/common/packets_len.h; sourceTree = "<group>"; };
		A5BBC21B219D076900E26B8D /* packets2005_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2005_len_sak.h; sourceTree = "<group>"; };
		A5BBC21C219D076900E26B8D /* packets2018_len_zero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2018_len_zero.h; sourceTree = "<group>"; };
		A5BBC21D219D076900E26B8D /* packets2008_len_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2008_len_ad.h; sourceTree = "<group>"; };
		A5BBC21E219D076900E26B8D /* packets2008_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2008_len_sak.h; sourceTree = "<group>"; };
		A5BBC21F219D076900E26B8D /* packets2013_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2013_len_main.h; sourceTree = "<group>"; };
		A5BBC220219D076900E26B8D /* packets2016_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2016_len_main.h; sourceTree = "<group>"; };
		A5BBC221219D076900E26B8D /* packets2003_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2003_len_sak.h; sourceTree = "<group>"; };
		A5BBC222219D076900E26B8D /* packets_len_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets_len_ad.h; sourceTree = "<group>"; };
		A5BBC223219D076900E26B8D /* packets2016_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2016_len_re.h; sourceTree = "<group>"; };
		A5BBC224219D076900E26B8D /* packets2007_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2007_len_main.h; sourceTree = "<group>"; };
		A5BBC225219D076900E26B8D /* packets2017_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2017_len_re.h; sourceTree = "<group>"; };
		A5BBC226219D076900E26B8D /* packets2004_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2004_len_sak.h; sourceTree = "<group>"; };
		A5BBC227219D076900E26B8D /* packets2009_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2009_len_sak.h; sourceTree = "<group>"; };
		A5BBC228219D076900E26B8D /* packets2011_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2011_len_main.h; sourceTree = "<group>"; };
		A5BBC229219D076900E26B8D /* packets2011_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2011_len_re.h; sourceTree = "<group>"; };
		A5BBC22A219D076900E26B8D /* packets2010_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2010_len_re.h; sourceTree = "<group>"; };
		A5BBC22B219D076900E26B8D /* packets2017_len_zero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2017_len_zero.h; sourceTree = "<group>"; };
		A5BBC22C219D076900E26B8D /* packets2014_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2014_len_main.h; sourceTree = "<group>"; };
		A5BBC22D219D076900E26B8D /* packets2008_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2008_len_main.h; sourceTree = "<group>"; };
		A5BBC22E219D076900E26B8D /* packets_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets_len_main.h; sourceTree = "<group>"; };
		A5BBC22F219D076900E26B8D /* packets2005_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2005_len_main.h; sourceTree = "<group>"; };
		A5BBC230219D076900E26B8D /* packets2004_len_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2004_len_ad.h; sourceTree = "<group>"; };
		A5BBC231219D076900E26B8D /* packets2005_len_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2005_len_ad.h; sourceTree = "<group>"; };
		A5BBC232219D076900E26B8D /* packets2015_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2015_len_re.h; sourceTree = "<group>"; };
		A5BBC233219D076900E26B8D /* packets2014_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2014_len_re.h; sourceTree = "<group>"; };
		A5BBC234219D076900E26B8D /* packets2007_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2007_len_sak.h; sourceTree = "<group>"; };
		A5BBC235219D076900E26B8D /* packets2017_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2017_len_main.h; sourceTree = "<group>"; };
		A5BBC236219D076900E26B8D /* packets_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets_len_re.h; sourceTree = "<group>"; };
		A5BBC237219D076900E26B8D /* packets2006_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2006_len_main.h; sourceTree = "<group>"; };
		A5BBC238219D076900E26B8D /* packets_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets_len_sak.h; sourceTree = "<group>"; };
		A5BBC239219D076900E26B8D /* packets2003_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2003_len_main.h; sourceTree = "<group>"; };
		A5BBC23A219D076900E26B8D /* packets_len_zero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets_len_zero.h; sourceTree = "<group>"; };
		A5BBC23B219D076900E26B8D /* packets2008_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2008_len_re.h; sourceTree = "<group>"; };
		A5BBC23C219D076900E26B8D /* packets2009_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2009_len_re.h; sourceTree = "<group>"; };
		A5BBC23D219D076900E26B8D /* packets2012_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2012_len_main.h; sourceTree = "<group>"; };
		A5BBC23E219D076900E26B8D /* packets2015_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2015_len_main.h; sourceTree = "<group>"; };
		A5BBC23F219D076900E26B8D /* packets2006_len_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2006_len_sak.h; sourceTree = "<group>"; };
		A5BBC240219D076900E26B8D /* packets2007_len_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2007_len_ad.h; sourceTree = "<group>"; };
		A5BBC241219D076900E26B8D /* packets2009_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2009_len_main.h; sourceTree = "<group>"; };
		A5BBC242219D076900E26B8D /* packets2006_len_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2006_len_ad.h; sourceTree = "<group>"; };
		A5BBC243219D076900E26B8D /* packets2018_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2018_len_main.h; sourceTree = "<group>"; };
		A5BBC244219D076900E26B8D /* packets2004_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2004_len_main.h; sourceTree = "<group>"; };
		A5BBC245219D076900E26B8D /* packets2012_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2012_len_re.h; sourceTree = "<group>"; };
		A5BBC246219D076900E26B8D /* packets2013_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2013_len_re.h; sourceTree = "<group>"; };
		A5BBC247219D076900E26B8D /* packets2018_len_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2018_len_re.h; sourceTree = "<group>"; };
		A5BBC248219D076900E26B8D /* packets2010_len_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packets2010_len_main.h; sourceTree = "<group>"; };
		A5BBC24A219D07A800E26B8D /* packets_shuffle_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = packets_shuffle_re.h; path = src/map/packets_shuffle_re.h; sourceTree = SOURCE_ROOT; };
		A5BBC24B219D07A800E26B8D /* messages_re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = messages_re.h; path = src/map/messages_re.h; sourceTree = SOURCE_ROOT; };
		A5BBC24C219D07A800E26B8D /* messages_zero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = messages_zero.h; path = src/map/messages_zero.h; sourceTree = SOURCE_ROOT; };
		A5BBC24D219D07A800E26B8D /* messages_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = messages_main.h; path = src/map/messages_main.h; sourceTree = SOURCE_ROOT; };
		A5BBC24E219D07A800E26B8D /* messages_ad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = messages_ad.h; path = src/map/messages_ad.h; sourceTree = SOURCE_ROOT; };
		A5BBC24F219D07A800E26B8D /* messages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = messages.h; path = src/map/messages.h; sourceTree = SOURCE_ROOT; };
		A5BBC250219D07A800E26B8D /* messages_sak.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = messages_sak.h; path = src/map/messages_sak.h; sourceTree = SOURCE_ROOT; };
		A5F79468191CA34E002293AB /* HPMDataCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HPMDataCheck.h; path = src/common/HPMDataCheck.h; sourceTree = "<group>"; };
		A5F79469191CA34E002293AB /* sysinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sysinfo.c; path = src/common/sysinfo.c; sourceTree = "<group>"; };
		A5F7946A191CA34E002293AB /* sysinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = src/common/sysinfo.h; sourceTree = "<group>"; };
		A5F7946B191CA34E002293AB /* sysinfo.inc */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.h; fileEncoding = 4; name = sysinfo.inc; path = src/common/sysinfo.inc; sourceTree = "<group>"; };
		A5F79476191CA3F4002293AB /* sysinfogen.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = sysinfogen.sh; sourceTree = "<group>"; };
		D0647BA31E793E7300D0843D /* int_achievement.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_achievement.c; path = src/char/int_achievement.c; sourceTree = SOURCE_ROOT; };
		D0647BA41E793E7300D0843D /* int_achievement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_achievement.h; path = src/char/int_achievement.h; sourceTree = SOURCE_ROOT; };
		D0647BA61E793E8200D0843D /* achievement.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = achievement.c; path = src/map/achievement.c; sourceTree = SOURCE_ROOT; };
		D0647BA71E793E8200D0843D /* achievement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = achievement.h; path = src/map/achievement.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		A56CC66718564315009EB79C /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A56CC6701856434D009EB79C /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A56CC67918564356009EB79C /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A58A5A21185801FF0099683E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5AA94E41857956100C940C8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5AA94F0185799B700C940C8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5B894B11A03CE25005AD22E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5B894BA1A03CE5D005AD22E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		A56CC651185642B4009EB79C = {
			isa = PBXGroup;
			children = (
				A5AA94EB185796A400C940C8 /* plugins */,
				A56CC72018564BDF009EB79C /* 3rdparty */,
				A58A5A1C185801490099683E /* core */,
				A56CC65B185642B4009EB79C /* Products */,
			);
			sourceTree = "<group>";
			usesTabs = 1;
		};
		A56CC65B185642B4009EB79C /* Products */ = {
			isa = PBXGroup;
			children = (
				A56CC66A18564315009EB79C /* login-server */,
				A56CC6731856434D009EB79C /* char-server */,
				A56CC67C18564356009EB79C /* map-server */,
				A5AA94E71857956100C940C8 /* sample.dylib */,
				A5AA94F3185799B700C940C8 /* db2sql.dylib */,
				A58A5A26185801FF0099683E /* HPMHooking_map.dylib */,
				A5B894B61A03CE25005AD22E /* HPMHooking_char.dylib */,
				A5B894BF1A03CE5D005AD22E /* HPMHooking_login.dylib */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		A56CC66B18564315009EB79C /* login-server */ = {
			isa = PBXGroup;
			children = (
				A56CC68118564387009EB79C /* account.c */,
				A56CC68218564387009EB79C /* account.h */,
				A5B894A81A03CDD4005AD22E /* HPMlogin.c */,
				A5B894A91A03CDD4005AD22E /* HPMlogin.h */,
				A56CC68318564387009EB79C /* ipban.c */,
				A56CC68418564387009EB79C /* ipban.h */,
				A5296FCA1CAC40CF001ABCAC /* lclif.c */,
				A5296FCB1CAC40CF001ABCAC /* lclif.h */,
				A5296FCC1CAC40CF001ABCAC /* lclif.p.h */,
				A56CC68518564387009EB79C /* login.c */,
				A56CC68618564387009EB79C /* login.h */,
				A56CC68718564387009EB79C /* loginlog.c */,
				A56CC68818564387009EB79C /* loginlog.h */,
			);
			path = "login-server";
			sourceTree = "<group>";
		};
		A56CC6741856434D009EB79C /* char-server */ = {
			isa = PBXGroup;
			children = (
				A56CC743185657D9009EB79C /* char.c */,
				A56CC744185657D9009EB79C /* char.h */,
				A5467AD71A16FD08008AFAA6 /* geoip.c */,
				A5467AD81A16FD08008AFAA6 /* geoip.h */,
				A5B894AB1A03CDFA005AD22E /* HPMchar.c */,
				A5B894AC1A03CDFA005AD22E /* HPMchar.h */,
				D0647BA31E793E7300D0843D /* int_achievement.c */,
				D0647BA41E793E7300D0843D /* int_achievement.h */,
				A56CC745185657D9009EB79C /* int_auction.c */,
				A56CC746185657D9009EB79C /* int_auction.h */,
				A530267D202D792F0060E394 /* int_clan.c */,
				A530267C202D792F0060E394 /* int_clan.h */,
				A56CC747185657D9009EB79C /* int_elemental.c */,
				A56CC748185657D9009EB79C /* int_elemental.h */,
				A56CC749185657D9009EB79C /* int_guild.c */,
				A56CC74A185657D9009EB79C /* int_guild.h */,
				A56CC74B185657D9009EB79C /* int_homun.c */,
				A56CC74C185657D9009EB79C /* int_homun.h */,
				A56CC74D185657D9009EB79C /* int_mail.c */,
				A56CC74E185657D9009EB79C /* int_mail.h */,
				A56CC74F185657D9009EB79C /* int_mercenary.c */,
				A56CC750185657D9009EB79C /* int_mercenary.h */,
				A56CC751185657D9009EB79C /* int_party.c */,
				A56CC752185657D9009EB79C /* int_party.h */,
				A56CC753185657D9009EB79C /* int_pet.c */,
				A56CC754185657D9009EB79C /* int_pet.h */,
				A56CC755185657D9009EB79C /* int_quest.c */,
				A56CC756185657D9009EB79C /* int_quest.h */,
				755495831FEE5A0000CE4B7D /* int_rodex.c */,
				755495821FEE5A0000CE4B7D /* int_rodex.h */,
				A56CC757185657D9009EB79C /* int_storage.c */,
				A56CC758185657D9009EB79C /* int_storage.h */,
				A56CC759185657D9009EB79C /* inter.c */,
				A56CC75A185657D9009EB79C /* inter.h */,
				A5467AD11A16FCB4008AFAA6 /* loginif.c */,
				A5467AD21A16FCB4008AFAA6 /* loginif.h */,
				A5467AD41A16FCDC008AFAA6 /* mapif.c */,
				A5467AD51A16FCDC008AFAA6 /* mapif.h */,
				A56CC75B185657D9009EB79C /* pincode.c */,
				A56CC75C185657D9009EB79C /* pincode.h */,
			);
			path = "char-server";
			sourceTree = "<group>";
		};
		A56CC67D18564357009EB79C /* map-server */ = {
			isa = PBXGroup;
			children = (
				D0647BA61E793E8200D0843D /* achievement.c */,
				D0647BA71E793E8200D0843D /* achievement.h */,
				A56CC76A18565812009EB79C /* atcommand.c */,
				A56CC76B18565812009EB79C /* atcommand.h */,
				A56CC76C18565812009EB79C /* battle.c */,
				A56CC76D18565812009EB79C /* battle.h */,
				A56CC76E18565812009EB79C /* battleground.c */,
				A56CC76F18565812009EB79C /* battleground.h */,
				A56CC77018565812009EB79C /* buyingstore.c */,
				A56CC77118565812009EB79C /* buyingstore.h */,
				A59EA44F1A727D36005F2B6D /* channel.c */,
				A59EA4501A727D36005F2B6D /* channel.h */,
				A56CC77218565812009EB79C /* chat.c */,
				A56CC77318565812009EB79C /* chat.h */,
				A56CC77418565812009EB79C /* chrif.c */,
				A56CC77518565812009EB79C /* chrif.h */,
				A5302673202D78B00060E394 /* clan.c */,
				A5302676202D78B10060E394 /* clan.h */,
				A56CC77618565812009EB79C /* clif.c */,
				A56CC77718565812009EB79C /* clif.h */,
				A5302674202D78B00060E394 /* constants.inc */,
				A56CC77818565812009EB79C /* date.c */,
				A56CC77918565812009EB79C /* date.h */,
				A56CC77A18565812009EB79C /* duel.c */,
				A56CC77B18565812009EB79C /* duel.h */,
				A56CC77C18565812009EB79C /* elemental.c */,
				A56CC77D18565812009EB79C /* elemental.h */,
				A56CC77E18565812009EB79C /* guild.c */,
				A56CC77F18565812009EB79C /* guild.h */,
				A56CC78018565812009EB79C /* homunculus.c */,
				A56CC78118565812009EB79C /* homunculus.h */,
				A56CC78218565812009EB79C /* HPMmap.c */,
				A56CC78318565812009EB79C /* HPMmap.h */,
				A56CC78418565812009EB79C /* instance.c */,
				A56CC78518565812009EB79C /* instance.h */,
				A56CC78618565812009EB79C /* intif.c */,
				A56CC78718565812009EB79C /* intif.h */,
				A56CC78818565812009EB79C /* irc-bot.c */,
				A56CC78918565812009EB79C /* irc-bot.h */,
				A56CC78A18565812009EB79C /* itemdb.c */,
				A56CC78B18565812009EB79C /* itemdb.h */,
				A56CC78C18565812009EB79C /* log.c */,
				A56CC78D18565812009EB79C /* log.h */,
				A56CC78E18565812009EB79C /* mail.c */,
				A56CC78F18565812009EB79C /* mail.h */,
				A56CC79018565812009EB79C /* map.c */,
				A56CC79118565812009EB79C /* map.h */,
				A56CC79218565812009EB79C /* mapreg_sql.c */,
				A56CC79318565812009EB79C /* mapreg.h */,
				A56CC79418565812009EB79C /* mercenary.c */,
				A56CC79518565812009EB79C /* mercenary.h */,
				A5BBC24E219D07A800E26B8D /* messages_ad.h */,
				A5BBC24D219D07A800E26B8D /* messages_main.h */,
				A5BBC24B219D07A800E26B8D /* messages_re.h */,
				A5BBC250219D07A800E26B8D /* messages_sak.h */,
				A5BBC24C219D07A800E26B8D /* messages_zero.h */,
				A5BBC24F219D07A800E26B8D /* messages.h */,
				A56CC79618565812009EB79C /* mob.c */,
				A56CC79718565812009EB79C /* mob.h */,
				A56CC79818565812009EB79C /* npc_chat.c */,
				A56CC79918565812009EB79C /* npc.c */,
				A56CC79A18565812009EB79C /* npc.h */,
				A5302672202D78B00060E394 /* packets_keys_main.h */,
				A5302677202D78B10060E394 /* packets_keys_zero.h */,
				A5302675202D78B10060E394 /* packets_shuffle_main.h */,
				A5BBC24A219D07A800E26B8D /* packets_shuffle_re.h */,
				A5302678202D78B10060E394 /* packets_shuffle_zero.h */,
				A56CC79B18565812009EB79C /* packets_struct.h */,
				A56CC79C18565812009EB79C /* packets.h */,
				A56CC79D18565812009EB79C /* party.c */,
				A56CC79E18565812009EB79C /* party.h */,
				A56CC79F18565812009EB79C /* path.c */,
				A56CC7A018565812009EB79C /* path.h */,
				A56CC7A118565812009EB79C /* pc_groups.c */,
				A56CC7A218565812009EB79C /* pc_groups.h */,
				A56CC7A318565812009EB79C /* pc.c */,
				A56CC7A418565812009EB79C /* pc.h */,
				A56CC7A518565812009EB79C /* pet.c */,
				A56CC7A618565812009EB79C /* pet.h */,
				A56CC7A718565812009EB79C /* quest.c */,
				A56CC7A818565812009EB79C /* quest.h */,
				755495851FEE5A1F00CE4B7D /* rodex.c */,
				755495861FEE5A1F00CE4B7D /* rodex.h */,
				A56CC7A918565812009EB79C /* script.c */,
				A56CC7AA18565812009EB79C /* script.h */,
				A56CC7AB18565812009EB79C /* searchstore.c */,
				A56CC7AC18565812009EB79C /* searchstore.h */,
				A56CC7AD18565812009EB79C /* skill.c */,
				A56CC7AE18565812009EB79C /* skill.h */,
				A56CC7AF18565812009EB79C /* status.c */,
				A56CC7B018565812009EB79C /* status.h */,
				A56CC7B118565812009EB79C /* storage.c */,
				A56CC7B218565812009EB79C /* storage.h */,
				A56CC7B318565812009EB79C /* trade.c */,
				A56CC7B418565812009EB79C /* trade.h */,
				A56CC7B518565812009EB79C /* unit.c */,
				A56CC7B618565812009EB79C /* unit.h */,
				A56CC7B718565812009EB79C /* vending.c */,
				A56CC7B818565812009EB79C /* vending.h */,
			);
			path = "map-server";
			sourceTree = "<group>";
		};
		A56CC68D1856439A009EB79C /* common */ = {
			isa = PBXGroup;
			children = (
				A56CC68E185643BB009EB79C /* atomic.h */,
				A56CC68F185643BB009EB79C /* cbasetypes.h */,
				A56CC690185643BB009EB79C /* conf.c */,
				A56CC691185643BB009EB79C /* conf.h */,
				A56CC692185643BB009EB79C /* console.c */,
				A56CC693185643BB009EB79C /* console.h */,
				A56CC694185643BB009EB79C /* core.c */,
				A56CC695185643BB009EB79C /* core.h */,
				A56CC696185643BB009EB79C /* db.c */,
				A56CC697185643BB009EB79C /* db.h */,
				A56CC698185643BB009EB79C /* des.c */,
				A56CC699185643BB009EB79C /* des.h */,
				A56CC69A185643BB009EB79C /* ers.c */,
				A56CC69B185643BB009EB79C /* ers.h */,
				A56CC69E185643BB009EB79C /* grfio.c */,
				A56CC69F185643BB009EB79C /* grfio.h */,
				A5302681202D79940060E394 /* hercules.h */,
				A56CC6A0185643BB009EB79C /* HPM.c */,
				A56CC6A1185643BB009EB79C /* HPM.h */,
				A5F79468191CA34E002293AB /* HPMDataCheck.h */,
				A56CC6A2185643BB009EB79C /* HPMi.h */,
				A5302680202D79940060E394 /* HPMSymbols.inc.h */,
				A56CC6A5185643BB009EB79C /* mapindex.c */,
				A56CC6A6185643BB009EB79C /* mapindex.h */,
				A56CC6A7185643BB009EB79C /* md5calc.c */,
				A56CC6A8185643BB009EB79C /* md5calc.h */,
				A56CC6A3185643BB009EB79C /* memmgr.c */,
				A56CC6A4185643BB009EB79C /* memmgr.h */,
				A56CC6AB185643BB009EB79C /* mmo.h */,
				A56CC6AC185643BB009EB79C /* mutex.c */,
				A56CC6AD185643BB009EB79C /* mutex.h */,
				A56CC6B2185643BB009EB79C /* nullpo.c */,
				A56CC6B3185643BB009EB79C /* nullpo.h */,
				A5BBC21A219D076900E26B8D /* packets */,
				A5BBC219219D076900E26B8D /* packets_len.h */,
				A5BBC218219D076900E26B8D /* packets.c */,
				A5BBC216219D076800E26B8D /* packets.h */,
				A5BBC217219D076900E26B8D /* packetsstatic_len.h */,
				A56CC6B6185643BB009EB79C /* random.c */,
				A56CC6B7185643BB009EB79C /* random.h */,
				A56CC6B8185643BB009EB79C /* showmsg.c */,
				A56CC6B9185643BB009EB79C /* showmsg.h */,
				A56CC6BA185643BB009EB79C /* socket.c */,
				A56CC6BB185643BB009EB79C /* socket.h */,
				A56CC6BC185643BB009EB79C /* spinlock.h */,
				A56CC6BD185643BB009EB79C /* sql.c */,
				A56CC6BE185643BB009EB79C /* sql.h */,
				A56CC6BF185643BB009EB79C /* strlib.c */,
				A56CC6C0185643BB009EB79C /* strlib.h */,
				A5F79469191CA34E002293AB /* sysinfo.c */,
				A5F7946A191CA34E002293AB /* sysinfo.h */,
				A5F7946B191CA34E002293AB /* sysinfo.inc */,
				A56CC6C2185643BB009EB79C /* thread.c */,
				A56CC6C3185643BB009EB79C /* thread.h */,
				A56CC6C4185643BB009EB79C /* timer.c */,
				A56CC6C5185643BB009EB79C /* timer.h */,
				A56CC6C6185643BB009EB79C /* utils.c */,
				A56CC6C7185643BB009EB79C /* utils.h */,
				A56CC6C8185643BB009EB79C /* winapi.h */,
			);
			name = common;
			sourceTree = "<group>";
		};
		A56CC71A18564AC7009EB79C /* config */ = {
			isa = PBXGroup;
			children = (
				A56CC71B18564AF7009EB79C /* const.h */,
				A56CC71C18564AF7009EB79C /* core.h */,
				A56CC71F18564B00009EB79C /* general.h */,
				A56CC71D18564AF7009EB79C /* renewal.h */,
				A56CC71E18564AF7009EB79C /* secure.h */,
			);
			name = config;
			sourceTree = "<group>";
		};
		A56CC72018564BDF009EB79C /* 3rdparty */ = {
			isa = PBXGroup;
			children = (
				A56CC73D18564C10009EB79C /* mt19937ar */,
				A56CC72118564BE5009EB79C /* libconfig */,
			);
			name = 3rdparty;
			sourceTree = "<group>";
		};
		A56CC72118564BE5009EB79C /* libconfig */ = {
			isa = PBXGroup;
			children = (
				A56CC72218564C05009EB79C /* grammar.c */,
				A56CC72318564C05009EB79C /* grammar.h */,
				A56CC72418564C05009EB79C /* libconfig.c */,
				A56CC72518564C05009EB79C /* libconfig.h */,
				A56CC72618564C05009EB79C /* parsectx.h */,
				A56CC72718564C05009EB79C /* scanctx.c */,
				A56CC72818564C05009EB79C /* scanctx.h */,
				A56CC72918564C05009EB79C /* scanner.c */,
				A56CC72A18564C05009EB79C /* scanner.h */,
				A56CC72B18564C05009EB79C /* strbuf.c */,
				A56CC72C18564C05009EB79C /* strbuf.h */,
				A56CC72D18564C05009EB79C /* wincompat.h */,
			);
			name = libconfig;
			sourceTree = "<group>";
		};
		A56CC73D18564C10009EB79C /* mt19937ar */ = {
			isa = PBXGroup;
			children = (
				A56CC73E18564C23009EB79C /* mt19937ar.c */,
				A56CC73F18564C23009EB79C /* mt19937ar.h */,
			);
			name = mt19937ar;
			sourceTree = "<group>";
		};
		A58A5A1C185801490099683E /* core */ = {
			isa = PBXGroup;
			children = (
				A5F79476191CA3F4002293AB /* sysinfogen.sh */,
				A56CC71A18564AC7009EB79C /* config */,
				A56CC68D1856439A009EB79C /* common */,
				A56CC66B18564315009EB79C /* login-server */,
				A56CC6741856434D009EB79C /* char-server */,
				A56CC67D18564357009EB79C /* map-server */,
			);
			name = core;
			sourceTree = "<group>";
		};
		A58A5A291858026F0099683E /* HPMHooking */ = {
			isa = PBXGroup;
			children = (
				A5B894C11A03CEE1005AD22E /* HPMHooking_char.HookingPoints.inc */,
				A5B894C21A03CEE1005AD22E /* HPMHooking_char.Hooks.inc */,
				A5B894C31A03CEE1005AD22E /* HPMHooking_char.HPMHooksCore.inc */,
				A5B894C41A03CEE1005AD22E /* HPMHooking_char.sources.inc */,
				A5B894C61A03CEE1005AD22E /* HPMHooking_login.HookingPoints.inc */,
				A5B894C71A03CEE1005AD22E /* HPMHooking_login.Hooks.inc */,
				A5B894C81A03CEE1005AD22E /* HPMHooking_login.HPMHooksCore.inc */,
				A5B894C91A03CEE1005AD22E /* HPMHooking_login.sources.inc */,
				A5B894CB1A03CEE1005AD22E /* HPMHooking_map.HookingPoints.inc */,
				A5B894CC1A03CEE1005AD22E /* HPMHooking_map.Hooks.inc */,
				A5B894CD1A03CEE1005AD22E /* HPMHooking_map.HPMHooksCore.inc */,
				A5B894CE1A03CEE1005AD22E /* HPMHooking_map.sources.inc */,
				A58A5A271858025D0099683E /* HPMHooking.c */,
				A5302682202D7A1F0060E394 /* HPMHooking.Defs.inc */,
				A5302684202D7A2F0060E394 /* HPMHooking.h */,
			);
			name = HPMHooking;
			sourceTree = "<group>";
		};
		A5AA94EB185796A400C940C8 /* plugins */ = {
			isa = PBXGroup;
			children = (
				A58A5A291858026F0099683E /* HPMHooking */,
				A5AA94F7185799CF00C940C8 /* db2sql */,
				A5AA94EC185796AB00C940C8 /* sample */,
			);
			name = plugins;
			sourceTree = "<group>";
		};
		A5AA94EC185796AB00C940C8 /* sample */ = {
			isa = PBXGroup;
			children = (
				A5AA94ED185796CB00C940C8 /* sample.c */,
			);
			name = sample;
			sourceTree = "<group>";
		};
		A5AA94F7185799CF00C940C8 /* db2sql */ = {
			isa = PBXGroup;
			children = (
				A5AA94F8185799DF00C940C8 /* db2sql.c */,
			);
			name = db2sql;
			sourceTree = "<group>";
		};
		A5BBC21A219D076900E26B8D /* packets */ = {
			isa = PBXGroup;
			children = (
				A5BBC222219D076900E26B8D /* packets_len_ad.h */,
				A5BBC22E219D076900E26B8D /* packets_len_main.h */,
				A5BBC236219D076900E26B8D /* packets_len_re.h */,
				A5BBC238219D076900E26B8D /* packets_len_sak.h */,
				A5BBC23A219D076900E26B8D /* packets_len_zero.h */,
				A5BBC239219D076900E26B8D /* packets2003_len_main.h */,
				A5BBC221219D076900E26B8D /* packets2003_len_sak.h */,
				A5BBC230219D076900E26B8D /* packets2004_len_ad.h */,
				A5BBC244219D076900E26B8D /* packets2004_len_main.h */,
				A5BBC226219D076900E26B8D /* packets2004_len_sak.h */,
				A5BBC231219D076900E26B8D /* packets2005_len_ad.h */,
				A5BBC22F219D076900E26B8D /* packets2005_len_main.h */,
				A5BBC21B219D076900E26B8D /* packets2005_len_sak.h */,
				A5BBC242219D076900E26B8D /* packets2006_len_ad.h */,
				A5BBC237219D076900E26B8D /* packets2006_len_main.h */,
				A5BBC23F219D076900E26B8D /* packets2006_len_sak.h */,
				A5BBC240219D076900E26B8D /* packets2007_len_ad.h */,
				A5BBC224219D076900E26B8D /* packets2007_len_main.h */,
				A5BBC234219D076900E26B8D /* packets2007_len_sak.h */,
				A5BBC21D219D076900E26B8D /* packets2008_len_ad.h */,
				A5BBC22D219D076900E26B8D /* packets2008_len_main.h */,
				A5BBC23B219D076900E26B8D /* packets2008_len_re.h */,
				A5BBC21E219D076900E26B8D /* packets2008_len_sak.h */,
				A5BBC241219D076900E26B8D /* packets2009_len_main.h */,
				A5BBC23C219D076900E26B8D /* packets2009_len_re.h */,
				A5BBC227219D076900E26B8D /* packets2009_len_sak.h */,
				A5BBC248219D076900E26B8D /* packets2010_len_main.h */,
				A5BBC22A219D076900E26B8D /* packets2010_len_re.h */,
				A5BBC228219D076900E26B8D /* packets2011_len_main.h */,
				A5BBC229219D076900E26B8D /* packets2011_len_re.h */,
				A5BBC23D219D076900E26B8D /* packets2012_len_main.h */,
				A5BBC245219D076900E26B8D /* packets2012_len_re.h */,
				A5BBC21F219D076900E26B8D /* packets2013_len_main.h */,
				A5BBC246219D076900E26B8D /* packets2013_len_re.h */,
				A5BBC22C219D076900E26B8D /* packets2014_len_main.h */,
				A5BBC233219D076900E26B8D /* packets2014_len_re.h */,
				A5BBC23E219D076900E26B8D /* packets2015_len_main.h */,
				A5BBC232219D076900E26B8D /* packets2015_len_re.h */,
				A5BBC220219D076900E26B8D /* packets2016_len_main.h */,
				A5BBC223219D076900E26B8D /* packets2016_len_re.h */,
				A5BBC235219D076900E26B8D /* packets2017_len_main.h */,
				A5BBC225219D076900E26B8D /* packets2017_len_re.h */,
				A5BBC22B219D076900E26B8D /* packets2017_len_zero.h */,
				A5BBC243219D076900E26B8D /* packets2018_len_main.h */,
				A5BBC247219D076900E26B8D /* packets2018_len_re.h */,
				A5BBC21C219D076900E26B8D /* packets2018_len_zero.h */,
			);
			name = packets;
			path = src/common/packets;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		A58A5A22185801FF0099683E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5AA94E51857956100C940C8 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5AA94F1185799B700C940C8 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5B894B21A03CE25005AD22E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5B894BB1A03CE5D005AD22E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		A56CC66918564315009EB79C /* login-server */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A56CC66C18564315009EB79C /* Build configuration list for PBXNativeTarget "login-server" */;
			buildPhases = (
				A5F79475191CA3DE002293AB /* ShellScript */,
				A56CC66618564315009EB79C /* Sources */,
				A56CC66718564315009EB79C /* Frameworks */,
				A56CC66818564315009EB79C /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "login-server";
			productName = "login-server";
			productReference = A56CC66A18564315009EB79C /* login-server */;
			productType = "com.apple.product-type.tool";
		};
		A56CC6721856434D009EB79C /* char-server */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A56CC6751856434D009EB79C /* Build configuration list for PBXNativeTarget "char-server" */;
			buildPhases = (
				A5F79477191CA5A0002293AB /* ShellScript */,
				A56CC66F1856434D009EB79C /* Sources */,
				A56CC6701856434D009EB79C /* Frameworks */,
				A56CC6711856434D009EB79C /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "char-server";
			productName = "char-server";
			productReference = A56CC6731856434D009EB79C /* char-server */;
			productType = "com.apple.product-type.tool";
		};
		A56CC67B18564356009EB79C /* map-server */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A56CC67E18564357009EB79C /* Build configuration list for PBXNativeTarget "map-server" */;
			buildPhases = (
				A5F79478191CA5AF002293AB /* ShellScript */,
				A56CC67818564356009EB79C /* Sources */,
				A56CC67918564356009EB79C /* Frameworks */,
				A56CC67A18564356009EB79C /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "map-server";
			productName = "map-server";
			productReference = A56CC67C18564356009EB79C /* map-server */;
			productType = "com.apple.product-type.tool";
		};
		A58A5A1E185801FF0099683E /* HPMHooking_map */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A58A5A23185801FF0099683E /* Build configuration list for PBXNativeTarget "HPMHooking_map" */;
			buildPhases = (
				A58A5A1F185801FF0099683E /* Sources */,
				A58A5A21185801FF0099683E /* Frameworks */,
				A58A5A22185801FF0099683E /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = HPMHooking_map;
			productName = sample;
			productReference = A58A5A26185801FF0099683E /* HPMHooking_map.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
		A5AA94E61857956100C940C8 /* sample */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A5AA94EA1857956100C940C8 /* Build configuration list for PBXNativeTarget "sample" */;
			buildPhases = (
				A5AA94E31857956100C940C8 /* Sources */,
				A5AA94E41857956100C940C8 /* Frameworks */,
				A5AA94E51857956100C940C8 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = sample;
			productName = sample;
			productReference = A5AA94E71857956100C940C8 /* sample.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
		A5AA94F2185799B700C940C8 /* db2sql */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A5AA94F4185799B700C940C8 /* Build configuration list for PBXNativeTarget "db2sql" */;
			buildPhases = (
				A5AA94EF185799B700C940C8 /* Sources */,
				A5AA94F0185799B700C940C8 /* Frameworks */,
				A5AA94F1185799B700C940C8 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = db2sql;
			productName = db2sql;
			productReference = A5AA94F3185799B700C940C8 /* db2sql.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
		A5B894AE1A03CE25005AD22E /* HPMHooking_char */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A5B894B31A03CE25005AD22E /* Build configuration list for PBXNativeTarget "HPMHooking_char" */;
			buildPhases = (
				A5B894AF1A03CE25005AD22E /* Sources */,
				A5B894B11A03CE25005AD22E /* Frameworks */,
				A5B894B21A03CE25005AD22E /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = HPMHooking_char;
			productName = sample;
			productReference = A5B894B61A03CE25005AD22E /* HPMHooking_char.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
		A5B894B71A03CE5D005AD22E /* HPMHooking_login */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A5B894BC1A03CE5D005AD22E /* Build configuration list for PBXNativeTarget "HPMHooking_login" */;
			buildPhases = (
				A5B894B81A03CE5D005AD22E /* Sources */,
				A5B894BA1A03CE5D005AD22E /* Frameworks */,
				A5B894BB1A03CE5D005AD22E /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = HPMHooking_login;
			productName = sample;
			productReference = A5B894BF1A03CE5D005AD22E /* HPMHooking_login.dylib */;
			productType = "com.apple.product-type.library.dynamic";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		A56CC652185642B4009EB79C /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0800;
				ORGANIZATIONNAME = herc.ws;
			};
			buildConfigurationList = A56CC655185642B4009EB79C /* Build configuration list for PBXProject "Hercules" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = A56CC651185642B4009EB79C;
			productRefGroup = A56CC65B185642B4009EB79C /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				A56CC66918564315009EB79C /* login-server */,
				A56CC6721856434D009EB79C /* char-server */,
				A56CC67B18564356009EB79C /* map-server */,
				A5B894B71A03CE5D005AD22E /* HPMHooking_login */,
				A5B894AE1A03CE25005AD22E /* HPMHooking_char */,
				A58A5A1E185801FF0099683E /* HPMHooking_map */,
				A5AA94F2185799B700C940C8 /* db2sql */,
				A5AA94E61857956100C940C8 /* sample */,
			);
		};
/* End PBXProject section */

/* Begin PBXShellScriptBuildPhase section */
		A5F79475191CA3DE002293AB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "./sysinfogen.sh src/common/sysinfo_new.inc ${WARNING_CFLAGS} ${OTHER_CFLAGS} ${OTHER_LDFLAGS}\nif cmp -s src/common/sysinfo.inc src/common/sysinfo_new.inc; then\n    rm src/common/sysinfo_new.inc ;\nelse\n    mv src/common/sysinfo_new.inc src/common/sysinfo.inc ;\nfi\n";
		};
		A5F79477191CA5A0002293AB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "./sysinfogen.sh src/common/sysinfo_new.inc ${WARNING_CFLAGS} ${OTHER_CFLAGS} ${OTHER_LDFLAGS}\nif cmp -s src/common/sysinfo.inc src/common/sysinfo_new.inc; then\nrm src/common/sysinfo_new.inc ;\nelse\nmv src/common/sysinfo_new.inc src/common/sysinfo.inc ;\nfi\n";
		};
		A5F79478191CA5AF002293AB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "./sysinfogen.sh src/common/sysinfo_new.inc ${WARNING_CFLAGS} ${OTHER_CFLAGS} ${OTHER_LDFLAGS}\nif cmp -s src/common/sysinfo.inc src/common/sysinfo_new.inc; then\nrm src/common/sysinfo_new.inc ;\nelse\nmv src/common/sysinfo_new.inc src/common/sysinfo.inc ;\nfi\n";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		A56CC66618564315009EB79C /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A56CC6C9185643BB009EB79C /* conf.c in Sources */,
				A56CC68B18564387009EB79C /* login.c in Sources */,
				A56CC6D8185643BB009EB79C /* ers.c in Sources */,
				A56CC73718564C05009EB79C /* scanner.c in Sources */,
				A56CC6EA185643BB009EB79C /* md5calc.c in Sources */,
				A5BBC249219D076900E26B8D /* packets.c in Sources */,
				A5F7946C191CA34E002293AB /* sysinfo.c in Sources */,
				A56CC74018564C23009EB79C /* mt19937ar.c in Sources */,
				A5B894AA1A03CDD4005AD22E /* HPMlogin.c in Sources */,
				A5296FCD1CAC40CF001ABCAC /* lclif.c in Sources */,
				A56CC6DE185643BB009EB79C /* grfio.c in Sources */,
				A56CC68C18564387009EB79C /* loginlog.c in Sources */,
				A56CC73118564C05009EB79C /* libconfig.c in Sources */,
				A56CC717185643BB009EB79C /* utils.c in Sources */,
				A56CC708185643BB009EB79C /* sql.c in Sources */,
				A56CC702185643BB009EB79C /* showmsg.c in Sources */,
				A56CC6F9185643BB009EB79C /* nullpo.c in Sources */,
				A56CC6D5185643BB009EB79C /* des.c in Sources */,
				A56CC6E7185643BB009EB79C /* mapindex.c in Sources */,
				A56CC73A18564C05009EB79C /* strbuf.c in Sources */,
				A5302683202D7A1F0060E394 /* HPMHooking.Defs.inc in Sources */,
				A56CC6F0185643BB009EB79C /* mutex.c in Sources */,
				A56CC6D2185643BB009EB79C /* db.c in Sources */,
				A56CC711185643BB009EB79C /* thread.c in Sources */,
				A56CC70B185643BB009EB79C /* strlib.c in Sources */,
				A56CC6CF185643BB009EB79C /* core.c in Sources */,
				A56CC6CC185643BB009EB79C /* console.c in Sources */,
				A56CC72E18564C05009EB79C /* grammar.c in Sources */,
				A56CC705185643BB009EB79C /* socket.c in Sources */,
				A56CC68918564387009EB79C /* account.c in Sources */,
				A56CC6E4185643BB009EB79C /* memmgr.c in Sources */,
				A56CC6E1185643BB009EB79C /* HPM.c in Sources */,
				A56CC6FF185643BB009EB79C /* random.c in Sources */,
				A56CC73418564C05009EB79C /* scanctx.c in Sources */,
				A56CC714185643BB009EB79C /* timer.c in Sources */,
				A56CC68A18564387009EB79C /* ipban.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A56CC66F1856434D009EB79C /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				755495841FEE5A0000CE4B7D /* int_rodex.c in Sources */,
				A56CC766185657D9009EB79C /* int_quest.c in Sources */,
				A56CC709185643BB009EB79C /* sql.c in Sources */,
				A56CC75E185657D9009EB79C /* int_auction.c in Sources */,
				A56CC75D185657D9009EB79C /* char.c in Sources */,
				A56CC6D9185643BB009EB79C /* ers.c in Sources */,
				A56CC6CA185643BB009EB79C /* conf.c in Sources */,
				A5467AD91A16FD08008AFAA6 /* geoip.c in Sources */,
				A56CC718185643BB009EB79C /* utils.c in Sources */,
				A56CC715185643BB009EB79C /* timer.c in Sources */,
				A56CC6CD185643BB009EB79C /* console.c in Sources */,
				A56CC72F18564C05009EB79C /* grammar.c in Sources */,
				A56CC6EB185643BB009EB79C /* md5calc.c in Sources */,
				A56CC760185657D9009EB79C /* int_guild.c in Sources */,
				A56CC768185657D9009EB79C /* inter.c in Sources */,
				A5467AD61A16FCDC008AFAA6 /* mapif.c in Sources */,
				A5BBC251219D081800E26B8D /* packets.c in Sources */,
				A56CC73818564C05009EB79C /* scanner.c in Sources */,
				A56CC700185643BB009EB79C /* random.c in Sources */,
				A5B894AD1A03CDFA005AD22E /* HPMchar.c in Sources */,
				A56CC761185657D9009EB79C /* int_homun.c in Sources */,
				A56CC6FA185643BB009EB79C /* nullpo.c in Sources */,
				A56CC6E5185643BB009EB79C /* memmgr.c in Sources */,
				A56CC6E2185643BB009EB79C /* HPM.c in Sources */,
				A56CC765185657D9009EB79C /* int_pet.c in Sources */,
				D0647BA51E793E7300D0843D /* int_achievement.c in Sources */,
				A56CC769185657D9009EB79C /* pincode.c in Sources */,
				A56CC6F1185643BB009EB79C /* mutex.c in Sources */,
				A56CC762185657D9009EB79C /* int_mail.c in Sources */,
				A530267F202D793C0060E394 /* int_clan.c in Sources */,
				A56CC706185643BB009EB79C /* socket.c in Sources */,
				A56CC6D6185643BB009EB79C /* des.c in Sources */,
				A56CC764185657D9009EB79C /* int_party.c in Sources */,
				A56CC73B18564C05009EB79C /* strbuf.c in Sources */,
				A56CC6E8185643BB009EB79C /* mapindex.c in Sources */,
				A56CC73218564C05009EB79C /* libconfig.c in Sources */,
				A56CC74118564C23009EB79C /* mt19937ar.c in Sources */,
				A5F7946D191CA34E002293AB /* sysinfo.c in Sources */,
				A56CC73518564C05009EB79C /* scanctx.c in Sources */,
				A56CC712185643BB009EB79C /* thread.c in Sources */,
				A56CC6D0185643BB009EB79C /* core.c in Sources */,
				A5467AD31A16FCB4008AFAA6 /* loginif.c in Sources */,
				A56CC767185657D9009EB79C /* int_storage.c in Sources */,
				A56CC763185657D9009EB79C /* int_mercenary.c in Sources */,
				A56CC6D3185643BB009EB79C /* db.c in Sources */,
				A56CC703185643BB009EB79C /* showmsg.c in Sources */,
				A56CC6DF185643BB009EB79C /* grfio.c in Sources */,
				A56CC70C185643BB009EB79C /* strlib.c in Sources */,
				A56CC75F185657D9009EB79C /* int_elemental.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A56CC67818564356009EB79C /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A56CC7DE18565812009EB79C /* unit.c in Sources */,
				A56CC7B918565812009EB79C /* atcommand.c in Sources */,
				A56CC7D218565812009EB79C /* party.c in Sources */,
				A56CC7C118565812009EB79C /* duel.c in Sources */,
				A56CC70A185643BB009EB79C /* sql.c in Sources */,
				A5BBC252219D081900E26B8D /* packets.c in Sources */,
				A56CC7D718565812009EB79C /* quest.c in Sources */,
				A56CC7CC18565812009EB79C /* map.c in Sources */,
				A59EA4511A727D36005F2B6D /* channel.c in Sources */,
				A56CC7C318565812009EB79C /* guild.c in Sources */,
				A56CC7C518565812009EB79C /* HPMmap.c in Sources */,
				A56CC6DA185643BB009EB79C /* ers.c in Sources */,
				A56CC7C418565812009EB79C /* homunculus.c in Sources */,
				A56CC7D618565812009EB79C /* pet.c in Sources */,
				A56CC7BC18565812009EB79C /* buyingstore.c in Sources */,
				A56CC6CB185643BB009EB79C /* conf.c in Sources */,
				A56CC7DB18565812009EB79C /* status.c in Sources */,
				A56CC7C018565812009EB79C /* date.c in Sources */,
				A56CC719185643BB009EB79C /* utils.c in Sources */,
				A56CC7D818565812009EB79C /* script.c in Sources */,
				A56CC7C818565812009EB79C /* irc-bot.c in Sources */,
				A56CC7BE18565812009EB79C /* chrif.c in Sources */,
				A56CC7CE18565812009EB79C /* mercenary.c in Sources */,
				A56CC7D518565812009EB79C /* pc.c in Sources */,
				A56CC7C718565812009EB79C /* intif.c in Sources */,
				A56CC7C918565812009EB79C /* itemdb.c in Sources */,
				A56CC716185643BB009EB79C /* timer.c in Sources */,
				A56CC7DF18565812009EB79C /* vending.c in Sources */,
				A56CC7BA18565812009EB79C /* battle.c in Sources */,
				A56CC7BF18565812009EB79C /* clif.c in Sources */,
				A5F7946E191CA34E002293AB /* sysinfo.c in Sources */,
				A56CC7D018565812009EB79C /* npc_chat.c in Sources */,
				A56CC6CE185643BB009EB79C /* console.c in Sources */,
				A56CC73018564C05009EB79C /* grammar.c in Sources */,
				A56CC7DA18565812009EB79C /* skill.c in Sources */,
				A56CC6EC185643BB009EB79C /* md5calc.c in Sources */,
				A56CC73918564C05009EB79C /* scanner.c in Sources */,
				A56CC701185643BB009EB79C /* random.c in Sources */,
				A56CC7CD18565812009EB79C /* mapreg_sql.c in Sources */,
				A56CC7D318565812009EB79C /* path.c in Sources */,
				A56CC7C218565812009EB79C /* elemental.c in Sources */,
				A56CC6FB185643BB009EB79C /* nullpo.c in Sources */,
				A56CC6E6185643BB009EB79C /* memmgr.c in Sources */,
				A56CC7D418565812009EB79C /* pc_groups.c in Sources */,
				A56CC6E3185643BB009EB79C /* HPM.c in Sources */,
				A56CC7DD18565812009EB79C /* trade.c in Sources */,
				A56CC7CA18565812009EB79C /* log.c in Sources */,
				A56CC7C618565812009EB79C /* instance.c in Sources */,
				A56CC6F2185643BB009EB79C /* mutex.c in Sources */,
				A56CC707185643BB009EB79C /* socket.c in Sources */,
				A56CC6D7185643BB009EB79C /* des.c in Sources */,
				A56CC73C18564C05009EB79C /* strbuf.c in Sources */,
				A56CC7DC18565812009EB79C /* storage.c in Sources */,
				A56CC6E9185643BB009EB79C /* mapindex.c in Sources */,
				A56CC7D918565812009EB79C /* searchstore.c in Sources */,
				A56CC73318564C05009EB79C /* libconfig.c in Sources */,
				A530267B202D78CE0060E394 /* clan.c in Sources */,
				A56CC74218564C23009EB79C /* mt19937ar.c in Sources */,
				A56CC7BD18565812009EB79C /* chat.c in Sources */,
				755495871FEE5A1F00CE4B7D /* rodex.c in Sources */,
				A56CC7CF18565812009EB79C /* mob.c in Sources */,
				A56CC7BB18565812009EB79C /* battleground.c in Sources */,
				A56CC73618564C05009EB79C /* scanctx.c in Sources */,
				A56CC713185643BB009EB79C /* thread.c in Sources */,
				A56CC7CB18565812009EB79C /* mail.c in Sources */,
				A56CC6D1185643BB009EB79C /* core.c in Sources */,
				A56CC7D118565812009EB79C /* npc.c in Sources */,
				A56CC6D4185643BB009EB79C /* db.c in Sources */,
				D0647BA81E793E8200D0843D /* achievement.c in Sources */,
				A56CC704185643BB009EB79C /* showmsg.c in Sources */,
				A56CC6E0185643BB009EB79C /* grfio.c in Sources */,
				A56CC70D185643BB009EB79C /* strlib.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A58A5A1F185801FF0099683E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A58A5A281858025D0099683E /* HPMHooking.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5AA94E31857956100C940C8 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A5AA94EE185796CB00C940C8 /* sample.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5AA94EF185799B700C940C8 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A5AA94FA185799E400C940C8 /* db2sql.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5B894AF1A03CE25005AD22E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A5B894B01A03CE25005AD22E /* HPMHooking.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A5B894B81A03CE5D005AD22E /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A5B894B91A03CE5D005AD22E /* HPMHooking.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		A56CC661185642B4009EB79C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)";
				COPY_PHASE_STRIP = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_FAST_MATH = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_STRICT_ALIASING = NO;
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_CHECK_SWITCH_STATEMENTS = NO;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/usr/include,
					/usr/local/include,
					/usr/local/include/mysql,
					3rdparty,
					src,
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
				);
				LIBRARY_SEARCH_PATHS = /usr/local/lib;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
				);
				OTHER_LDFLAGS = (
					"-lpthread",
					"-lz",
					"-lmysqlclient",
					"-lpcre",
				);
				SDKROOT = macosx;
			};
			name = Debug;
		};
		A56CC662185642B4009EB79C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_FAST_MATH = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_STRICT_ALIASING = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_CHECK_SWITCH_STATEMENTS = NO;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/usr/include,
					/usr/local/include,
					/usr/local/include/mysql,
					3rdparty,
					src,
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
				);
				LIBRARY_SEARCH_PATHS = /usr/local/lib;
				LLVM_LTO = YES;
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
				);
				OTHER_LDFLAGS = (
					"-lpthread",
					"-lz",
					"-lmysqlclient",
					"-lpcre",
				);
				SDKROOT = macosx;
			};
			name = Release;
		};
		A56CC66D18564315009EB79C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		A56CC66E18564315009EB79C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		A56CC6761856434D009EB79C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		A56CC6771856434D009EB79C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		A56CC67F18564357009EB79C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		A56CC68018564357009EB79C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		A58A5A24185801FF0099683E /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DPACKAGE_NAME=\\\"\\\"",
					"-DPACKAGE_TARNAME=\\\"\\\"",
					"-DPACKAGE_VERSION=\\\"\\\"",
					"-DPACKAGE_STRING=\\\"\\\"",
					"-DPACKAGE_BUGREPORT=\\\"\\\"",
					"-DPACKAGE_URL=\\\"\\\"",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
					"-DHPMHOOKING_MAP",
				);
				PRODUCT_NAME = HPMHooking_map;
			};
			name = Debug;
		};
		A58A5A25185801FF0099683E /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DPACKAGE_NAME=\\\"\\\"",
					"-DPACKAGE_TARNAME=\\\"\\\"",
					"-DPACKAGE_VERSION=\\\"\\\"",
					"-DPACKAGE_STRING=\\\"\\\"",
					"-DPACKAGE_BUGREPORT=\\\"\\\"",
					"-DPACKAGE_URL=\\\"\\\"",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
					"-DHPMHOOKING_MAP",
				);
				PRODUCT_NAME = HPMHooking_map;
			};
			name = Release;
		};
		A5AA94E81857956100C940C8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		A5AA94E91857956100C940C8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		A5AA94F5185799B700C940C8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		A5AA94F6185799B700C940C8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		A5B894B41A03CE25005AD22E /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DPACKAGE_NAME=\\\"\\\"",
					"-DPACKAGE_TARNAME=\\\"\\\"",
					"-DPACKAGE_VERSION=\\\"\\\"",
					"-DPACKAGE_STRING=\\\"\\\"",
					"-DPACKAGE_BUGREPORT=\\\"\\\"",
					"-DPACKAGE_URL=\\\"\\\"",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
					"-DHPMHOOKING_CHAR",
				);
				PRODUCT_NAME = HPMHooking_char;
			};
			name = Debug;
		};
		A5B894B51A03CE25005AD22E /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DPACKAGE_NAME=\\\"\\\"",
					"-DPACKAGE_TARNAME=\\\"\\\"",
					"-DPACKAGE_VERSION=\\\"\\\"",
					"-DPACKAGE_STRING=\\\"\\\"",
					"-DPACKAGE_BUGREPORT=\\\"\\\"",
					"-DPACKAGE_URL=\\\"\\\"",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
					"-DHPMHOOKING_CHAR",
				);
				PRODUCT_NAME = HPMHooking_char;
			};
			name = Release;
		};
		A5B894BD1A03CE5D005AD22E /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DPACKAGE_NAME=\\\"\\\"",
					"-DPACKAGE_TARNAME=\\\"\\\"",
					"-DPACKAGE_VERSION=\\\"\\\"",
					"-DPACKAGE_STRING=\\\"\\\"",
					"-DPACKAGE_BUGREPORT=\\\"\\\"",
					"-DPACKAGE_URL=\\\"\\\"",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
					"-DHPMHOOKING_LOGIN",
				);
				PRODUCT_NAME = HPMHooking_login;
			};
			name = Debug;
		};
		A5B894BE1A03CE5D005AD22E /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COMBINE_HIDPI_IMAGES = YES;
				CONFIGURATION_BUILD_DIR = "$(PROJECT_DIR)/plugins";
				EXECUTABLE_PREFIX = "";
				OTHER_CFLAGS = (
					"-DHAVE_EXECINFO",
					"-DMAXCONN=16384",
					"-DHAS_TLS",
					"-DHAVE_SETRLIMIT",
					"-DHAVE_STRNLEN",
					"-DPACKAGE_NAME=\\\"\\\"",
					"-DPACKAGE_TARNAME=\\\"\\\"",
					"-DPACKAGE_VERSION=\\\"\\\"",
					"-DPACKAGE_STRING=\\\"\\\"",
					"-DPACKAGE_BUGREPORT=\\\"\\\"",
					"-DPACKAGE_URL=\\\"\\\"",
					"-DSTDC_HEADERS=1",
					"-DHAVE_SYS_TYPES_H=1",
					"-DHAVE_SYS_STAT_H=1",
					"-DHAVE_STDLIB_H=1",
					"-DHAVE_STRING_H=1",
					"-DHAVE_MEMORY_H=1",
					"-DHAVE_STRINGS_H=1",
					"-DHAVE_INTTYPES_H=1",
					"-DHAVE_STDINT_H=1",
					"-DHAVE_UNISTD_H=1",
					"-D__EXTENSIONS__=1",
					"-D_ALL_SOURCE=1",
					"-D_GNU_SOURCE=1",
					"-D_POSIX_PTHREAD_SEMANTICS=1",
					"-D_TANDEM_SOURCE=1",
					"-DHAVE_USELOCALE=1",
					"-DHAVE_NEWLOCALE=1",
					"-DHAVE_FREELOCALE=1",
					"-DHAVE_XLOCALE_H=1",
					"-DHAVE_LIBZ=1",
					"-DHAVE_LIBPTHREAD=1",
					"-DHPMHOOKING_LOGIN",
				);
				PRODUCT_NAME = HPMHooking_login;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		A56CC655185642B4009EB79C /* Build configuration list for PBXProject "Hercules" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A56CC661185642B4009EB79C /* Debug */,
				A56CC662185642B4009EB79C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A56CC66C18564315009EB79C /* Build configuration list for PBXNativeTarget "login-server" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A56CC66D18564315009EB79C /* Debug */,
				A56CC66E18564315009EB79C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A56CC6751856434D009EB79C /* Build configuration list for PBXNativeTarget "char-server" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A56CC6761856434D009EB79C /* Debug */,
				A56CC6771856434D009EB79C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A56CC67E18564357009EB79C /* Build configuration list for PBXNativeTarget "map-server" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A56CC67F18564357009EB79C /* Debug */,
				A56CC68018564357009EB79C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A58A5A23185801FF0099683E /* Build configuration list for PBXNativeTarget "HPMHooking_map" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A58A5A24185801FF0099683E /* Debug */,
				A58A5A25185801FF0099683E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A5AA94EA1857956100C940C8 /* Build configuration list for PBXNativeTarget "sample" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A5AA94E81857956100C940C8 /* Debug */,
				A5AA94E91857956100C940C8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A5AA94F4185799B700C940C8 /* Build configuration list for PBXNativeTarget "db2sql" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A5AA94F5185799B700C940C8 /* Debug */,
				A5AA94F6185799B700C940C8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A5B894B31A03CE25005AD22E /* Build configuration list for PBXNativeTarget "HPMHooking_char" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A5B894B41A03CE25005AD22E /* Debug */,
				A5B894B51A03CE25005AD22E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A5B894BC1A03CE5D005AD22E /* Build configuration list for PBXNativeTarget "HPMHooking_login" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A5B894BD1A03CE5D005AD22E /* Debug */,
				A5B894BE1A03CE5D005AD22E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = A56CC652185642B4009EB79C /* Project object */;
}