summaryrefslogtreecommitdiff
path: root/rAthena/rAthena.xcodeproj/project.pbxproj
blob: 84f6f6ee6e51ba3a68a9edae0ea52616a1bcb3a9 (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		538CB46A15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; };
		538CB46B15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; };
		538CB46C15AD9B1700DF3F0D /* evdp_epoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */; };
		538CB46D15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; };
		538CB46E15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; };
		538CB46F15AD9B1700DF3F0D /* mempool.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46015AD9B1700DF3F0D /* mempool.c */; };
		538CB47015AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; };
		538CB47115AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; };
		538CB47215AD9B1700DF3F0D /* mutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46215AD9B1700DF3F0D /* mutex.c */; };
		538CB47315AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; };
		538CB47415AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; };
		538CB47515AD9B1700DF3F0D /* netbuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46415AD9B1700DF3F0D /* netbuffer.c */; };
		538CB47615AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; };
		538CB47715AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; };
		538CB47815AD9B1700DF3F0D /* network.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46615AD9B1700DF3F0D /* network.c */; };
		538CB47915AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; };
		538CB47A15AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; };
		538CB47B15AD9B1700DF3F0D /* raconf.c in Sources */ = {isa = PBXBuildFile; fileRef = 538CB46815AD9B1700DF3F0D /* raconf.c */; };
		53C193E1157BFAF00012D90B /* account_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193D9157BFAF00012D90B /* account_sql.c */; };
		53C193E2157BFAF00012D90B /* ipban_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DB157BFAF00012D90B /* ipban_sql.c */; };
		53C193E3157BFAF00012D90B /* login.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DD157BFAF00012D90B /* login.c */; };
		53C193E4157BFAF00012D90B /* loginlog_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193DF157BFAF00012D90B /* loginlog_sql.c */; };
		53C1942E157BFE790012D90B /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193E9157BFE790012D90B /* conf.c */; };
		53C1942F157BFE790012D90B /* core.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193EB157BFE790012D90B /* core.c */; };
		53C19430157BFE790012D90B /* db.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193ED157BFE790012D90B /* db.c */; };
		53C19431157BFE790012D90B /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193EF157BFE790012D90B /* des.c */; };
		53C19432157BFE790012D90B /* ers.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F1157BFE790012D90B /* ers.c */; };
		53C19433157BFE790012D90B /* grfio.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F3157BFE790012D90B /* grfio.c */; };
		53C19436157BFE790012D90B /* malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193F9157BFE790012D90B /* malloc.c */; };
		53C19437157BFE790012D90B /* mapindex.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193FB157BFE790012D90B /* mapindex.c */; };
		53C19438157BFE790012D90B /* md5calc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C193FD157BFE790012D90B /* md5calc.c */; };
		53C19439157BFE790012D90B /* nullpo.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19400157BFE790012D90B /* nullpo.c */; };
		53C19452157BFE790012D90B /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1941C157BFE790012D90B /* random.c */; };
		53C19453157BFE790012D90B /* showmsg.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1941E157BFE790012D90B /* showmsg.c */; };
		53C19454157BFE790012D90B /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19420157BFE790012D90B /* socket.c */; };
		53C19455157BFE790012D90B /* sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19423157BFE790012D90B /* sql.c */; };
		53C19456157BFE790012D90B /* strlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19425157BFE790012D90B /* strlib.c */; };
		53C19457157BFE790012D90B /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19427157BFE790012D90B /* thread.c */; };
		53C19458157BFE790012D90B /* timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19429157BFE790012D90B /* timer.c */; };
		53C19459157BFE790012D90B /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1942B157BFE790012D90B /* utils.c */; };
		53C19501157C039A0012D90B /* atcommand.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194AE157C039A0012D90B /* atcommand.c */; };
		53C19502157C039A0012D90B /* battle.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B0157C039A0012D90B /* battle.c */; };
		53C19503157C039A0012D90B /* battleground.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B2157C039A0012D90B /* battleground.c */; };
		53C19504157C039A0012D90B /* buyingstore.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B4157C039A0012D90B /* buyingstore.c */; };
		53C19505157C039A0012D90B /* chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B6157C039A0012D90B /* chat.c */; };
		53C19506157C039A0012D90B /* chrif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194B8157C039A0012D90B /* chrif.c */; };
		53C19507157C039A0012D90B /* clif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194BA157C039A0012D90B /* clif.c */; };
		53C19508157C039A0012D90B /* date.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C5157C039A0012D90B /* date.c */; };
		53C19509157C039A0012D90B /* duel.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C7157C039A0012D90B /* duel.c */; };
		53C1950A157C039A0012D90B /* elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194C9157C039A0012D90B /* elemental.c */; };
		53C1950B157C039A0012D90B /* guild.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CB157C039A0012D90B /* guild.c */; };
		53C1950C157C039A0012D90B /* homunculus.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CD157C039A0012D90B /* homunculus.c */; };
		53C1950D157C039A0012D90B /* instance.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194CF157C039A0012D90B /* instance.c */; };
		53C1950E157C039A0012D90B /* intif.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D1157C039A0012D90B /* intif.c */; };
		53C1950F157C039A0012D90B /* itemdb.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D3157C039A0012D90B /* itemdb.c */; };
		53C19510157C039A0012D90B /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D5157C039A0012D90B /* log.c */; };
		53C19511157C039A0012D90B /* mail.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D7157C039A0012D90B /* mail.c */; };
		53C19512157C039A0012D90B /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194D9157C039A0012D90B /* map.c */; };
		53C19513157C039A0012D90B /* mapreg_sql.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DB157C039A0012D90B /* mapreg_sql.c */; };
		53C19514157C039A0012D90B /* mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DD157C039A0012D90B /* mercenary.c */; };
		53C19515157C039A0012D90B /* mob.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194DF157C039A0012D90B /* mob.c */; };
		53C19516157C039A0012D90B /* npc_chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E1157C039A0012D90B /* npc_chat.c */; };
		53C19517157C039A0012D90B /* npc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E2157C039A0012D90B /* npc.c */; };
		53C19518157C039A0012D90B /* party.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E4157C039A0012D90B /* party.c */; };
		53C19519157C039A0012D90B /* path.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E6157C039A0012D90B /* path.c */; };
		53C1951A157C039A0012D90B /* pc_groups.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194E8157C039A0012D90B /* pc_groups.c */; };
		53C1951B157C039A0012D90B /* pc.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194EA157C039A0012D90B /* pc.c */; };
		53C1951C157C039A0012D90B /* pet.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194ED157C039A0012D90B /* pet.c */; };
		53C1951D157C039A0012D90B /* quest.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194EF157C039A0012D90B /* quest.c */; };
		53C1951E157C039A0012D90B /* script.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F1157C039A0012D90B /* script.c */; };
		53C1951F157C039A0012D90B /* searchstore.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F3157C039A0012D90B /* searchstore.c */; };
		53C19520157C039A0012D90B /* skill.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F5157C039A0012D90B /* skill.c */; };
		53C19521157C039A0012D90B /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F7157C039A0012D90B /* status.c */; };
		53C19522157C039A0012D90B /* storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194F9157C039A0012D90B /* storage.c */; };
		53C19523157C039A0012D90B /* trade.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FB157C039A0012D90B /* trade.c */; };
		53C19524157C039A0012D90B /* unit.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FD157C039A0012D90B /* unit.c */; };
		53C19525157C039A0012D90B /* vending.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C194FF157C039A0012D90B /* vending.c */; };
		53C1954C157C045D0012D90B /* char.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19534157C045D0012D90B /* char.c */; };
		53C1954D157C045D0012D90B /* int_auction.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19536157C045D0012D90B /* int_auction.c */; };
		53C1954E157C045D0012D90B /* int_elemental.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19538157C045D0012D90B /* int_elemental.c */; };
		53C1954F157C045D0012D90B /* int_guild.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953A157C045D0012D90B /* int_guild.c */; };
		53C19550157C045D0012D90B /* int_homun.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953C157C045D0012D90B /* int_homun.c */; };
		53C19551157C045D0012D90B /* int_mail.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1953E157C045D0012D90B /* int_mail.c */; };
		53C19552157C045D0012D90B /* int_mercenary.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19540157C045D0012D90B /* int_mercenary.c */; };
		53C19553157C045D0012D90B /* int_party.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19542157C045D0012D90B /* int_party.c */; };
		53C19554157C045D0012D90B /* int_pet.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19544157C045D0012D90B /* int_pet.c */; };
		53C19555157C045D0012D90B /* int_quest.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19546157C045D0012D90B /* int_quest.c */; };
		53C19556157C045D0012D90B /* int_storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C19548157C045D0012D90B /* int_storage.c */; };
		53C19557157C045D0012D90B /* inter.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C1954A157C045D0012D90B /* inter.c */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
		53C193CC157BFA830012D90B /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		53C194A2157C03260012D90B /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		53C19528157C044D0012D90B /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		53006E8715AA145F00EA0266 /* general.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = general.h; sourceTree = "<group>"; };
		53006E8815AA145F00EA0266 /* swordsman.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = swordsman.h; sourceTree = "<group>"; };
		53006E8915AA145F00EA0266 /* const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = "<group>"; };
		53006E8A15AA145F00EA0266 /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = "<group>"; };
		53006E8B15AA145F00EA0266 /* renewal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renewal.h; sourceTree = "<group>"; };
		53006E8C15AA145F00EA0266 /* secure.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = secure.h; sourceTree = "<group>"; };
		538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = evdp_epoll.c; sourceTree = "<group>"; };
		538CB45F15AD9B1700DF3F0D /* evdp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evdp.h; sourceTree = "<group>"; };
		538CB46015AD9B1700DF3F0D /* mempool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mempool.c; sourceTree = "<group>"; };
		538CB46115AD9B1700DF3F0D /* mempool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mempool.h; sourceTree = "<group>"; };
		538CB46215AD9B1700DF3F0D /* mutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mutex.c; sourceTree = "<group>"; };
		538CB46315AD9B1700DF3F0D /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = "<group>"; };
		538CB46415AD9B1700DF3F0D /* netbuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = netbuffer.c; sourceTree = "<group>"; };
		538CB46515AD9B1700DF3F0D /* netbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = netbuffer.h; sourceTree = "<group>"; };
		538CB46615AD9B1700DF3F0D /* network.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = network.c; sourceTree = "<group>"; };
		538CB46715AD9B1700DF3F0D /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
		538CB46815AD9B1700DF3F0D /* raconf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raconf.c; sourceTree = "<group>"; };
		538CB46915AD9B1700DF3F0D /* raconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = raconf.h; sourceTree = "<group>"; };
		53C193CE157BFA830012D90B /* login-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "login-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; };
		53C193D9157BFAF00012D90B /* account_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = account_sql.c; path = ../../src/login/account_sql.c; sourceTree = "<group>"; };
		53C193DA157BFAF00012D90B /* account.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = account.h; path = ../../src/login/account.h; sourceTree = "<group>"; };
		53C193DB157BFAF00012D90B /* ipban_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ipban_sql.c; path = ../../src/login/ipban_sql.c; sourceTree = "<group>"; };
		53C193DC157BFAF00012D90B /* ipban.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipban.h; path = ../../src/login/ipban.h; sourceTree = "<group>"; };
		53C193DD157BFAF00012D90B /* login.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = login.c; path = ../../src/login/login.c; sourceTree = "<group>"; };
		53C193DE157BFAF00012D90B /* login.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = login.h; path = ../../src/login/login.h; sourceTree = "<group>"; };
		53C193DF157BFAF00012D90B /* loginlog_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loginlog_sql.c; path = ../../src/login/loginlog_sql.c; sourceTree = "<group>"; };
		53C193E0157BFAF00012D90B /* loginlog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loginlog.h; path = ../../src/login/loginlog.h; sourceTree = "<group>"; };
		53C193E6157BFE790012D90B /* atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atomic.h; sourceTree = "<group>"; };
		53C193E7157BFE790012D90B /* cbasetypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cbasetypes.h; sourceTree = "<group>"; };
		53C193E9157BFE790012D90B /* conf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = conf.c; sourceTree = "<group>"; };
		53C193EA157BFE790012D90B /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
		53C193EB157BFE790012D90B /* core.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = core.c; sourceTree = "<group>"; };
		53C193EC157BFE790012D90B /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = "<group>"; };
		53C193ED157BFE790012D90B /* db.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = db.c; sourceTree = "<group>"; };
		53C193EE157BFE790012D90B /* db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = db.h; sourceTree = "<group>"; };
		53C193EF157BFE790012D90B /* des.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = des.c; sourceTree = "<group>"; };
		53C193F0157BFE790012D90B /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
		53C193F1157BFE790012D90B /* ers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ers.c; sourceTree = "<group>"; };
		53C193F2157BFE790012D90B /* ers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ers.h; sourceTree = "<group>"; };
		53C193F3157BFE790012D90B /* grfio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grfio.c; sourceTree = "<group>"; };
		53C193F4157BFE790012D90B /* grfio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = grfio.h; sourceTree = "<group>"; };
		53C193F9157BFE790012D90B /* malloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = malloc.c; sourceTree = "<group>"; };
		53C193FA157BFE790012D90B /* malloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = malloc.h; sourceTree = "<group>"; };
		53C193FB157BFE790012D90B /* mapindex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mapindex.c; sourceTree = "<group>"; };
		53C193FC157BFE790012D90B /* mapindex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapindex.h; sourceTree = "<group>"; };
		53C193FD157BFE790012D90B /* md5calc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = md5calc.c; sourceTree = "<group>"; };
		53C193FE157BFE790012D90B /* md5calc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5calc.h; sourceTree = "<group>"; };
		53C193FF157BFE790012D90B /* mmo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmo.h; sourceTree = "<group>"; };
		53C19400157BFE790012D90B /* nullpo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nullpo.c; sourceTree = "<group>"; };
		53C19401157BFE790012D90B /* nullpo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nullpo.h; sourceTree = "<group>"; };
		53C1941C157BFE790012D90B /* random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = random.c; sourceTree = "<group>"; };
		53C1941D157BFE790012D90B /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random.h; sourceTree = "<group>"; };
		53C1941E157BFE790012D90B /* showmsg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = showmsg.c; sourceTree = "<group>"; };
		53C1941F157BFE790012D90B /* showmsg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = showmsg.h; sourceTree = "<group>"; };
		53C19420157BFE790012D90B /* socket.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = socket.c; sourceTree = "<group>"; };
		53C19421157BFE790012D90B /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socket.h; sourceTree = "<group>"; };
		53C19422157BFE790012D90B /* spinlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spinlock.h; sourceTree = "<group>"; };
		53C19423157BFE790012D90B /* sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sql.c; sourceTree = "<group>"; };
		53C19424157BFE790012D90B /* sql.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sql.h; sourceTree = "<group>"; };
		53C19425157BFE790012D90B /* strlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = strlib.c; sourceTree = "<group>"; };
		53C19426157BFE790012D90B /* strlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = strlib.h; sourceTree = "<group>"; };
		53C19427157BFE790012D90B /* thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = thread.c; sourceTree = "<group>"; };
		53C19428157BFE790012D90B /* thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thread.h; sourceTree = "<group>"; };
		53C19429157BFE790012D90B /* timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = timer.c; sourceTree = "<group>"; };
		53C1942A157BFE790012D90B /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = "<group>"; };
		53C1942B157BFE790012D90B /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = "<group>"; };
		53C1942C157BFE790012D90B /* utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils.h; sourceTree = "<group>"; };
		53C1942D157BFE790012D90B /* winapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = winapi.h; sourceTree = "<group>"; };
		53C194A4157C03260012D90B /* map-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "map-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; };
		53C194AE157C039A0012D90B /* atcommand.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = atcommand.c; path = ../../src/map/atcommand.c; sourceTree = "<group>"; };
		53C194AF157C039A0012D90B /* atcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = atcommand.h; path = ../../src/map/atcommand.h; sourceTree = "<group>"; };
		53C194B0157C039A0012D90B /* battle.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battle.c; path = ../../src/map/battle.c; sourceTree = "<group>"; usesTabs = 1; };
		53C194B1157C039A0012D90B /* battle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battle.h; path = ../../src/map/battle.h; sourceTree = "<group>"; };
		53C194B2157C039A0012D90B /* battleground.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = battleground.c; path = ../../src/map/battleground.c; sourceTree = "<group>"; };
		53C194B3157C039A0012D90B /* battleground.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = battleground.h; path = ../../src/map/battleground.h; sourceTree = "<group>"; };
		53C194B4157C039A0012D90B /* buyingstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = buyingstore.c; path = ../../src/map/buyingstore.c; sourceTree = "<group>"; };
		53C194B5157C039A0012D90B /* buyingstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buyingstore.h; path = ../../src/map/buyingstore.h; sourceTree = "<group>"; };
		53C194B6157C039A0012D90B /* chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chat.c; path = ../../src/map/chat.c; sourceTree = "<group>"; };
		53C194B7157C039A0012D90B /* chat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chat.h; path = ../../src/map/chat.h; sourceTree = "<group>"; };
		53C194B8157C039A0012D90B /* chrif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chrif.c; path = ../../src/map/chrif.c; sourceTree = "<group>"; };
		53C194B9157C039A0012D90B /* chrif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chrif.h; path = ../../src/map/chrif.h; sourceTree = "<group>"; };
		53C194BA157C039A0012D90B /* clif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = clif.c; path = ../../src/map/clif.c; sourceTree = "<group>"; usesTabs = 1; };
		53C194BB157C039A0012D90B /* clif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clif.h; path = ../../src/map/clif.h; sourceTree = "<group>"; };
		53C194C5157C039A0012D90B /* date.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = date.c; path = ../../src/map/date.c; sourceTree = "<group>"; };
		53C194C6157C039A0012D90B /* date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = date.h; path = ../../src/map/date.h; sourceTree = "<group>"; };
		53C194C7157C039A0012D90B /* duel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = duel.c; path = ../../src/map/duel.c; sourceTree = "<group>"; };
		53C194C8157C039A0012D90B /* duel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = duel.h; path = ../../src/map/duel.h; sourceTree = "<group>"; };
		53C194C9157C039A0012D90B /* elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elemental.c; path = ../../src/map/elemental.c; sourceTree = "<group>"; };
		53C194CA157C039A0012D90B /* elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elemental.h; path = ../../src/map/elemental.h; sourceTree = "<group>"; };
		53C194CB157C039A0012D90B /* guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = guild.c; path = ../../src/map/guild.c; sourceTree = "<group>"; };
		53C194CC157C039A0012D90B /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = ../../src/map/guild.h; sourceTree = "<group>"; };
		53C194CD157C039A0012D90B /* homunculus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = homunculus.c; path = ../../src/map/homunculus.c; sourceTree = "<group>"; };
		53C194CE157C039A0012D90B /* homunculus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = homunculus.h; path = ../../src/map/homunculus.h; sourceTree = "<group>"; };
		53C194CF157C039A0012D90B /* instance.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = instance.c; path = ../../src/map/instance.c; sourceTree = "<group>"; };
		53C194D0157C039A0012D90B /* instance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = instance.h; path = ../../src/map/instance.h; sourceTree = "<group>"; };
		53C194D1157C039A0012D90B /* intif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = intif.c; path = ../../src/map/intif.c; sourceTree = "<group>"; };
		53C194D2157C039A0012D90B /* intif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = intif.h; path = ../../src/map/intif.h; sourceTree = "<group>"; };
		53C194D3157C039A0012D90B /* itemdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = itemdb.c; path = ../../src/map/itemdb.c; sourceTree = "<group>"; };
		53C194D4157C039A0012D90B /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemdb.h; path = ../../src/map/itemdb.h; sourceTree = "<group>"; };
		53C194D5157C039A0012D90B /* log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = log.c; path = ../../src/map/log.c; sourceTree = "<group>"; };
		53C194D6157C039A0012D90B /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = log.h; path = ../../src/map/log.h; sourceTree = "<group>"; };
		53C194D7157C039A0012D90B /* mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mail.c; path = ../../src/map/mail.c; sourceTree = "<group>"; };
		53C194D8157C039A0012D90B /* mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mail.h; path = ../../src/map/mail.h; sourceTree = "<group>"; };
		53C194D9157C039A0012D90B /* map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = map.c; path = ../../src/map/map.c; sourceTree = "<group>"; };
		53C194DA157C039A0012D90B /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = map.h; path = ../../src/map/map.h; sourceTree = "<group>"; };
		53C194DB157C039A0012D90B /* mapreg_sql.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapreg_sql.c; path = ../../src/map/mapreg_sql.c; sourceTree = "<group>"; };
		53C194DC157C039A0012D90B /* mapreg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapreg.h; path = ../../src/map/mapreg.h; sourceTree = "<group>"; };
		53C194DD157C039A0012D90B /* mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mercenary.c; path = ../../src/map/mercenary.c; sourceTree = "<group>"; };
		53C194DE157C039A0012D90B /* mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mercenary.h; path = ../../src/map/mercenary.h; sourceTree = "<group>"; };
		53C194DF157C039A0012D90B /* mob.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mob.c; path = ../../src/map/mob.c; sourceTree = "<group>"; };
		53C194E0157C039A0012D90B /* mob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mob.h; path = ../../src/map/mob.h; sourceTree = "<group>"; };
		53C194E1157C039A0012D90B /* npc_chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc_chat.c; path = ../../src/map/npc_chat.c; sourceTree = "<group>"; };
		53C194E2157C039A0012D90B /* npc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = npc.c; path = ../../src/map/npc.c; sourceTree = "<group>"; };
		53C194E3157C039A0012D90B /* npc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = npc.h; path = ../../src/map/npc.h; sourceTree = "<group>"; };
		53C194E4157C039A0012D90B /* party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = party.c; path = ../../src/map/party.c; sourceTree = "<group>"; };
		53C194E5157C039A0012D90B /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = ../../src/map/party.h; sourceTree = "<group>"; };
		53C194E6157C039A0012D90B /* path.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = path.c; path = ../../src/map/path.c; sourceTree = "<group>"; };
		53C194E7157C039A0012D90B /* path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = path.h; path = ../../src/map/path.h; sourceTree = "<group>"; };
		53C194E8157C039A0012D90B /* pc_groups.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc_groups.c; path = ../../src/map/pc_groups.c; sourceTree = "<group>"; };
		53C194E9157C039A0012D90B /* pc_groups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc_groups.h; path = ../../src/map/pc_groups.h; sourceTree = "<group>"; };
		53C194EA157C039A0012D90B /* pc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pc.c; path = ../../src/map/pc.c; sourceTree = "<group>"; };
		53C194EB157C039A0012D90B /* pc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pc.h; path = ../../src/map/pc.h; sourceTree = "<group>"; };
		53C194ED157C039A0012D90B /* pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pet.c; path = ../../src/map/pet.c; sourceTree = "<group>"; };
		53C194EE157C039A0012D90B /* pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pet.h; path = ../../src/map/pet.h; sourceTree = "<group>"; };
		53C194EF157C039A0012D90B /* quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quest.c; path = ../../src/map/quest.c; sourceTree = "<group>"; };
		53C194F0157C039A0012D90B /* quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = quest.h; path = ../../src/map/quest.h; sourceTree = "<group>"; };
		53C194F1157C039A0012D90B /* script.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = script.c; path = ../../src/map/script.c; sourceTree = "<group>"; };
		53C194F2157C039A0012D90B /* script.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = script.h; path = ../../src/map/script.h; sourceTree = "<group>"; };
		53C194F3157C039A0012D90B /* searchstore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = searchstore.c; path = ../../src/map/searchstore.c; sourceTree = "<group>"; };
		53C194F4157C039A0012D90B /* searchstore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = searchstore.h; path = ../../src/map/searchstore.h; sourceTree = "<group>"; };
		53C194F5157C039A0012D90B /* skill.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = skill.c; path = ../../src/map/skill.c; sourceTree = "<group>"; };
		53C194F6157C039A0012D90B /* skill.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = skill.h; path = ../../src/map/skill.h; sourceTree = "<group>"; };
		53C194F7157C039A0012D90B /* status.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = status.c; path = ../../src/map/status.c; sourceTree = "<group>"; };
		53C194F8157C039A0012D90B /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status.h; path = ../../src/map/status.h; sourceTree = "<group>"; };
		53C194F9157C039A0012D90B /* storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = storage.c; path = ../../src/map/storage.c; sourceTree = "<group>"; };
		53C194FA157C039A0012D90B /* storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = storage.h; path = ../../src/map/storage.h; sourceTree = "<group>"; };
		53C194FB157C039A0012D90B /* trade.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trade.c; path = ../../src/map/trade.c; sourceTree = "<group>"; };
		53C194FC157C039A0012D90B /* trade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trade.h; path = ../../src/map/trade.h; sourceTree = "<group>"; };
		53C194FD157C039A0012D90B /* unit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unit.c; path = ../../src/map/unit.c; sourceTree = "<group>"; };
		53C194FE157C039A0012D90B /* unit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unit.h; path = ../../src/map/unit.h; sourceTree = "<group>"; };
		53C194FF157C039A0012D90B /* vending.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = vending.c; path = ../../src/map/vending.c; sourceTree = "<group>"; };
		53C19500157C039A0012D90B /* vending.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vending.h; path = ../../src/map/vending.h; sourceTree = "<group>"; };
		53C1952A157C044D0012D90B /* char-server_sql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "char-server_sql"; sourceTree = BUILT_PRODUCTS_DIR; };
		53C19534157C045D0012D90B /* char.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = char.c; path = ../../src/char/char.c; sourceTree = "<group>"; };
		53C19535157C045D0012D90B /* char.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = char.h; path = ../../src/char/char.h; sourceTree = "<group>"; };
		53C19536157C045D0012D90B /* int_auction.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_auction.c; path = ../../src/char/int_auction.c; sourceTree = "<group>"; };
		53C19537157C045D0012D90B /* int_auction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_auction.h; path = ../../src/char/int_auction.h; sourceTree = "<group>"; };
		53C19538157C045D0012D90B /* int_elemental.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_elemental.c; path = ../../src/char/int_elemental.c; sourceTree = "<group>"; };
		53C19539157C045D0012D90B /* int_elemental.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_elemental.h; path = ../../src/char/int_elemental.h; sourceTree = "<group>"; };
		53C1953A157C045D0012D90B /* int_guild.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_guild.c; path = ../../src/char/int_guild.c; sourceTree = "<group>"; };
		53C1953B157C045D0012D90B /* int_guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_guild.h; path = ../../src/char/int_guild.h; sourceTree = "<group>"; };
		53C1953C157C045D0012D90B /* int_homun.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_homun.c; path = ../../src/char/int_homun.c; sourceTree = "<group>"; };
		53C1953D157C045D0012D90B /* int_homun.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_homun.h; path = ../../src/char/int_homun.h; sourceTree = "<group>"; };
		53C1953E157C045D0012D90B /* int_mail.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mail.c; path = ../../src/char/int_mail.c; sourceTree = "<group>"; };
		53C1953F157C045D0012D90B /* int_mail.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mail.h; path = ../../src/char/int_mail.h; sourceTree = "<group>"; };
		53C19540157C045D0012D90B /* int_mercenary.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_mercenary.c; path = ../../src/char/int_mercenary.c; sourceTree = "<group>"; };
		53C19541157C045D0012D90B /* int_mercenary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_mercenary.h; path = ../../src/char/int_mercenary.h; sourceTree = "<group>"; };
		53C19542157C045D0012D90B /* int_party.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_party.c; path = ../../src/char/int_party.c; sourceTree = "<group>"; };
		53C19543157C045D0012D90B /* int_party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_party.h; path = ../../src/char/int_party.h; sourceTree = "<group>"; };
		53C19544157C045D0012D90B /* int_pet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_pet.c; path = ../../src/char/int_pet.c; sourceTree = "<group>"; };
		53C19545157C045D0012D90B /* int_pet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_pet.h; path = ../../src/char/int_pet.h; sourceTree = "<group>"; };
		53C19546157C045D0012D90B /* int_quest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_quest.c; path = ../../src/char/int_quest.c; sourceTree = "<group>"; };
		53C19547157C045D0012D90B /* int_quest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_quest.h; path = ../../src/char/int_quest.h; sourceTree = "<group>"; };
		53C19548157C045D0012D90B /* int_storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = int_storage.c; path = ../../src/char/int_storage.c; sourceTree = "<group>"; };
		53C19549157C045D0012D90B /* int_storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = int_storage.h; path = ../../src/char/int_storage.h; sourceTree = "<group>"; };
		53C1954A157C045D0012D90B /* inter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inter.c; path = ../../src/char/inter.c; sourceTree = "<group>"; };
		53C1954B157C045D0012D90B /* inter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inter.h; path = ../../src/char/inter.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		53C193CB157BFA830012D90B /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		53C194A1157C03260012D90B /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		53C19527157C044D0012D90B /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		53006E8515AA145F00EA0266 /* config */ = {
			isa = PBXGroup;
			children = (
				53006E8615AA145F00EA0266 /* classes */,
				53006E8915AA145F00EA0266 /* const.h */,
				53006E8A15AA145F00EA0266 /* core.h */,
				53006E8B15AA145F00EA0266 /* renewal.h */,
				53006E8C15AA145F00EA0266 /* secure.h */,
			);
			name = config;
			path = ../src/config;
			sourceTree = "<group>";
		};
		53006E8615AA145F00EA0266 /* classes */ = {
			isa = PBXGroup;
			children = (
				53006E8715AA145F00EA0266 /* general.h */,
				53006E8815AA145F00EA0266 /* swordsman.h */,
			);
			path = classes;
			sourceTree = "<group>";
		};
		53C193C1157BF8E40012D90B = {
			isa = PBXGroup;
			children = (
				53006E8515AA145F00EA0266 /* config */,
				53C193E5157BFE790012D90B /* common */,
				53C193D1157BFA830012D90B /* login-server_sql */,
				53C194A6157C03260012D90B /* map-server_sql */,
				53C1952C157C044D0012D90B /* char-server_sql */,
				53C193CF157BFA830012D90B /* Products */,
			);
			sourceTree = "<group>";
		};
		53C193CF157BFA830012D90B /* Products */ = {
			isa = PBXGroup;
			children = (
				53C193CE157BFA830012D90B /* login-server_sql */,
				53C194A4157C03260012D90B /* map-server_sql */,
				53C1952A157C044D0012D90B /* char-server_sql */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		53C193D1157BFA830012D90B /* login-server_sql */ = {
			isa = PBXGroup;
			children = (
				53C193D9157BFAF00012D90B /* account_sql.c */,
				53C193DA157BFAF00012D90B /* account.h */,
				53C193DB157BFAF00012D90B /* ipban_sql.c */,
				53C193DC157BFAF00012D90B /* ipban.h */,
				53C193DD157BFAF00012D90B /* login.c */,
				53C193DE157BFAF00012D90B /* login.h */,
				53C193DF157BFAF00012D90B /* loginlog_sql.c */,
				53C193E0157BFAF00012D90B /* loginlog.h */,
			);
			path = "login-server_sql";
			sourceTree = "<group>";
		};
		53C193E5157BFE790012D90B /* common */ = {
			isa = PBXGroup;
			children = (
				53C193E6157BFE790012D90B /* atomic.h */,
				53C193E7157BFE790012D90B /* cbasetypes.h */,
				53C193E9157BFE790012D90B /* conf.c */,
				53C193EA157BFE790012D90B /* conf.h */,
				53C193EB157BFE790012D90B /* core.c */,
				53C193EC157BFE790012D90B /* core.h */,
				53C193ED157BFE790012D90B /* db.c */,
				53C193EE157BFE790012D90B /* db.h */,
				53C193EF157BFE790012D90B /* des.c */,
				53C193F0157BFE790012D90B /* des.h */,
				53C193F1157BFE790012D90B /* ers.c */,
				53C193F2157BFE790012D90B /* ers.h */,
				538CB45F15AD9B1700DF3F0D /* evdp.h */,
				538CB45E15AD9B1700DF3F0D /* evdp_epoll.c */,
				53C193F3157BFE790012D90B /* grfio.c */,
				53C193F4157BFE790012D90B /* grfio.h */,
				53C193F9157BFE790012D90B /* malloc.c */,
				53C193FA157BFE790012D90B /* malloc.h */,
				53C193FB157BFE790012D90B /* mapindex.c */,
				53C193FC157BFE790012D90B /* mapindex.h */,
				53C193FD157BFE790012D90B /* md5calc.c */,
				53C193FE157BFE790012D90B /* md5calc.h */,
				538CB46015AD9B1700DF3F0D /* mempool.c */,
				538CB46115AD9B1700DF3F0D /* mempool.h */,
				53C193FF157BFE790012D90B /* mmo.h */,
				538CB46215AD9B1700DF3F0D /* mutex.c */,
				538CB46315AD9B1700DF3F0D /* mutex.h */,
				538CB46415AD9B1700DF3F0D /* netbuffer.c */,
				538CB46515AD9B1700DF3F0D /* netbuffer.h */,
				538CB46615AD9B1700DF3F0D /* network.c */,
				538CB46715AD9B1700DF3F0D /* network.h */,
				53C19400157BFE790012D90B /* nullpo.c */,
				53C19401157BFE790012D90B /* nullpo.h */,
				538CB46815AD9B1700DF3F0D /* raconf.c */,
				538CB46915AD9B1700DF3F0D /* raconf.h */,
				53C1941C157BFE790012D90B /* random.c */,
				53C1941D157BFE790012D90B /* random.h */,
				53C1941E157BFE790012D90B /* showmsg.c */,
				53C1941F157BFE790012D90B /* showmsg.h */,
				53C19420157BFE790012D90B /* socket.c */,
				53C19421157BFE790012D90B /* socket.h */,
				53C19422157BFE790012D90B /* spinlock.h */,
				53C19423157BFE790012D90B /* sql.c */,
				53C19424157BFE790012D90B /* sql.h */,
				53C19425157BFE790012D90B /* strlib.c */,
				53C19426157BFE790012D90B /* strlib.h */,
				53C19427157BFE790012D90B /* thread.c */,
				53C19428157BFE790012D90B /* thread.h */,
				53C19429157BFE790012D90B /* timer.c */,
				53C1942A157BFE790012D90B /* timer.h */,
				53C1942B157BFE790012D90B /* utils.c */,
				53C1942C157BFE790012D90B /* utils.h */,
				53C1942D157BFE790012D90B /* winapi.h */,
			);
			name = common;
			path = ../src/common;
			sourceTree = "<group>";
		};
		53C194A6157C03260012D90B /* map-server_sql */ = {
			isa = PBXGroup;
			children = (
				53C194AE157C039A0012D90B /* atcommand.c */,
				53C194AF157C039A0012D90B /* atcommand.h */,
				53C194B0157C039A0012D90B /* battle.c */,
				53C194B1157C039A0012D90B /* battle.h */,
				53C194B2157C039A0012D90B /* battleground.c */,
				53C194B3157C039A0012D90B /* battleground.h */,
				53C194B4157C039A0012D90B /* buyingstore.c */,
				53C194B5157C039A0012D90B /* buyingstore.h */,
				53C194B6157C039A0012D90B /* chat.c */,
				53C194B7157C039A0012D90B /* chat.h */,
				53C194B8157C039A0012D90B /* chrif.c */,
				53C194B9157C039A0012D90B /* chrif.h */,
				53C194BA157C039A0012D90B /* clif.c */,
				53C194BB157C039A0012D90B /* clif.h */,
				53C194C5157C039A0012D90B /* date.c */,
				53C194C6157C039A0012D90B /* date.h */,
				53C194C7157C039A0012D90B /* duel.c */,
				53C194C8157C039A0012D90B /* duel.h */,
				53C194C9157C039A0012D90B /* elemental.c */,
				53C194CA157C039A0012D90B /* elemental.h */,
				53C194CB157C039A0012D90B /* guild.c */,
				53C194CC157C039A0012D90B /* guild.h */,
				53C194CD157C039A0012D90B /* homunculus.c */,
				53C194CE157C039A0012D90B /* homunculus.h */,
				53C194CF157C039A0012D90B /* instance.c */,
				53C194D0157C039A0012D90B /* instance.h */,
				53C194D1157C039A0012D90B /* intif.c */,
				53C194D2157C039A0012D90B /* intif.h */,
				53C194D3157C039A0012D90B /* itemdb.c */,
				53C194D4157C039A0012D90B /* itemdb.h */,
				53C194D5157C039A0012D90B /* log.c */,
				53C194D6157C039A0012D90B /* log.h */,
				53C194D7157C039A0012D90B /* mail.c */,
				53C194D8157C039A0012D90B /* mail.h */,
				53C194D9157C039A0012D90B /* map.c */,
				53C194DA157C039A0012D90B /* map.h */,
				53C194DB157C039A0012D90B /* mapreg_sql.c */,
				53C194DC157C039A0012D90B /* mapreg.h */,
				53C194DD157C039A0012D90B /* mercenary.c */,
				53C194DE157C039A0012D90B /* mercenary.h */,
				53C194DF157C039A0012D90B /* mob.c */,
				53C194E0157C039A0012D90B /* mob.h */,
				53C194E1157C039A0012D90B /* npc_chat.c */,
				53C194E2157C039A0012D90B /* npc.c */,
				53C194E3157C039A0012D90B /* npc.h */,
				53C194E4157C039A0012D90B /* party.c */,
				53C194E5157C039A0012D90B /* party.h */,
				53C194E6157C039A0012D90B /* path.c */,
				53C194E7157C039A0012D90B /* path.h */,
				53C194E8157C039A0012D90B /* pc_groups.c */,
				53C194E9157C039A0012D90B /* pc_groups.h */,
				53C194EA157C039A0012D90B /* pc.c */,
				53C194EB157C039A0012D90B /* pc.h */,
				53C194ED157C039A0012D90B /* pet.c */,
				53C194EE157C039A0012D90B /* pet.h */,
				53C194EF157C039A0012D90B /* quest.c */,
				53C194F0157C039A0012D90B /* quest.h */,
				53C194F1157C039A0012D90B /* script.c */,
				53C194F2157C039A0012D90B /* script.h */,
				53C194F3157C039A0012D90B /* searchstore.c */,
				53C194F4157C039A0012D90B /* searchstore.h */,
				53C194F5157C039A0012D90B /* skill.c */,
				53C194F6157C039A0012D90B /* skill.h */,
				53C194F7157C039A0012D90B /* status.c */,
				53C194F8157C039A0012D90B /* status.h */,
				53C194F9157C039A0012D90B /* storage.c */,
				53C194FA157C039A0012D90B /* storage.h */,
				53C194FB157C039A0012D90B /* trade.c */,
				53C194FC157C039A0012D90B /* trade.h */,
				53C194FD157C039A0012D90B /* unit.c */,
				53C194FE157C039A0012D90B /* unit.h */,
				53C194FF157C039A0012D90B /* vending.c */,
				53C19500157C039A0012D90B /* vending.h */,
			);
			path = "map-server_sql";
			sourceTree = "<group>";
		};
		53C1952C157C044D0012D90B /* char-server_sql */ = {
			isa = PBXGroup;
			children = (
				53C19534157C045D0012D90B /* char.c */,
				53C19535157C045D0012D90B /* char.h */,
				53C19536157C045D0012D90B /* int_auction.c */,
				53C19537157C045D0012D90B /* int_auction.h */,
				53C19538157C045D0012D90B /* int_elemental.c */,
				53C19539157C045D0012D90B /* int_elemental.h */,
				53C1953A157C045D0012D90B /* int_guild.c */,
				53C1953B157C045D0012D90B /* int_guild.h */,
				53C1953C157C045D0012D90B /* int_homun.c */,
				53C1953D157C045D0012D90B /* int_homun.h */,
				53C1953E157C045D0012D90B /* int_mail.c */,
				53C1953F157C045D0012D90B /* int_mail.h */,
				53C19540157C045D0012D90B /* int_mercenary.c */,
				53C19541157C045D0012D90B /* int_mercenary.h */,
				53C19542157C045D0012D90B /* int_party.c */,
				53C19543157C045D0012D90B /* int_party.h */,
				53C19544157C045D0012D90B /* int_pet.c */,
				53C19545157C045D0012D90B /* int_pet.h */,
				53C19546157C045D0012D90B /* int_quest.c */,
				53C19547157C045D0012D90B /* int_quest.h */,
				53C19548157C045D0012D90B /* int_storage.c */,
				53C19549157C045D0012D90B /* int_storage.h */,
				53C1954A157C045D0012D90B /* inter.c */,
				53C1954B157C045D0012D90B /* inter.h */,
			);
			path = "char-server_sql";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		53C193CD157BFA830012D90B /* login-server_sql */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 53C193D6157BFA830012D90B /* Build configuration list for PBXNativeTarget "login-server_sql" */;
			buildPhases = (
				53C193CA157BFA830012D90B /* Sources */,
				53C193CB157BFA830012D90B /* Frameworks */,
				53C193CC157BFA830012D90B /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "login-server_sql";
			productName = "login-server_sql";
			productReference = 53C193CE157BFA830012D90B /* login-server_sql */;
			productType = "com.apple.product-type.tool";
		};
		53C194A3157C03260012D90B /* map-server_sql */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 53C194AB157C03260012D90B /* Build configuration list for PBXNativeTarget "map-server_sql" */;
			buildPhases = (
				53C194A0157C03260012D90B /* Sources */,
				53C194A1157C03260012D90B /* Frameworks */,
				53C194A2157C03260012D90B /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "map-server_sql";
			productName = "map-server_sql";
			productReference = 53C194A4157C03260012D90B /* map-server_sql */;
			productType = "com.apple.product-type.tool";
		};
		53C19529157C044D0012D90B /* char-server_sql */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 53C19531157C044D0012D90B /* Build configuration list for PBXNativeTarget "char-server_sql" */;
			buildPhases = (
				53C19526157C044D0012D90B /* Sources */,
				53C19527157C044D0012D90B /* Frameworks */,
				53C19528157C044D0012D90B /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "char-server_sql";
			productName = "char-server_sql";
			productReference = 53C1952A157C044D0012D90B /* char-server_sql */;
			productType = "com.apple.product-type.tool";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		53C193C3157BF8E40012D90B /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0430;
			};
			buildConfigurationList = 53C193C6157BF8E40012D90B /* Build configuration list for PBXProject "rAthena" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 53C193C1157BF8E40012D90B;
			productRefGroup = 53C193CF157BFA830012D90B /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				53C193CD157BFA830012D90B /* login-server_sql */,
				53C194A3157C03260012D90B /* map-server_sql */,
				53C19529157C044D0012D90B /* char-server_sql */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		53C193CA157BFA830012D90B /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				53C193E1157BFAF00012D90B /* account_sql.c in Sources */,
				53C193E2157BFAF00012D90B /* ipban_sql.c in Sources */,
				53C193E3157BFAF00012D90B /* login.c in Sources */,
				53C193E4157BFAF00012D90B /* loginlog_sql.c in Sources */,
				53C1942E157BFE790012D90B /* conf.c in Sources */,
				53C1942F157BFE790012D90B /* core.c in Sources */,
				53C19430157BFE790012D90B /* db.c in Sources */,
				53C19431157BFE790012D90B /* des.c in Sources */,
				53C19432157BFE790012D90B /* ers.c in Sources */,
				53C19433157BFE790012D90B /* grfio.c in Sources */,
				53C19436157BFE790012D90B /* malloc.c in Sources */,
				53C19437157BFE790012D90B /* mapindex.c in Sources */,
				53C19438157BFE790012D90B /* md5calc.c in Sources */,
				53C19439157BFE790012D90B /* nullpo.c in Sources */,
				53C19452157BFE790012D90B /* random.c in Sources */,
				53C19453157BFE790012D90B /* showmsg.c in Sources */,
				53C19454157BFE790012D90B /* socket.c in Sources */,
				53C19455157BFE790012D90B /* sql.c in Sources */,
				53C19456157BFE790012D90B /* strlib.c in Sources */,
				53C19457157BFE790012D90B /* thread.c in Sources */,
				53C19458157BFE790012D90B /* timer.c in Sources */,
				53C19459157BFE790012D90B /* utils.c in Sources */,
				538CB46A15AD9B1700DF3F0D /* evdp_epoll.c in Sources */,
				538CB46D15AD9B1700DF3F0D /* mempool.c in Sources */,
				538CB47015AD9B1700DF3F0D /* mutex.c in Sources */,
				538CB47315AD9B1700DF3F0D /* netbuffer.c in Sources */,
				538CB47615AD9B1700DF3F0D /* network.c in Sources */,
				538CB47915AD9B1700DF3F0D /* raconf.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		53C194A0157C03260012D90B /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				53C19501157C039A0012D90B /* atcommand.c in Sources */,
				53C19502157C039A0012D90B /* battle.c in Sources */,
				53C19503157C039A0012D90B /* battleground.c in Sources */,
				53C19504157C039A0012D90B /* buyingstore.c in Sources */,
				53C19505157C039A0012D90B /* chat.c in Sources */,
				53C19506157C039A0012D90B /* chrif.c in Sources */,
				53C19507157C039A0012D90B /* clif.c in Sources */,
				53C19508157C039A0012D90B /* date.c in Sources */,
				53C19509157C039A0012D90B /* duel.c in Sources */,
				53C1950A157C039A0012D90B /* elemental.c in Sources */,
				53C1950B157C039A0012D90B /* guild.c in Sources */,
				53C1950C157C039A0012D90B /* homunculus.c in Sources */,
				53C1950D157C039A0012D90B /* instance.c in Sources */,
				53C1950E157C039A0012D90B /* intif.c in Sources */,
				53C1950F157C039A0012D90B /* itemdb.c in Sources */,
				53C19510157C039A0012D90B /* log.c in Sources */,
				53C19511157C039A0012D90B /* mail.c in Sources */,
				53C19512157C039A0012D90B /* map.c in Sources */,
				53C19513157C039A0012D90B /* mapreg_sql.c in Sources */,
				53C19514157C039A0012D90B /* mercenary.c in Sources */,
				53C19515157C039A0012D90B /* mob.c in Sources */,
				53C19516157C039A0012D90B /* npc_chat.c in Sources */,
				53C19517157C039A0012D90B /* npc.c in Sources */,
				53C19518157C039A0012D90B /* party.c in Sources */,
				53C19519157C039A0012D90B /* path.c in Sources */,
				53C1951A157C039A0012D90B /* pc_groups.c in Sources */,
				53C1951B157C039A0012D90B /* pc.c in Sources */,
				53C1951C157C039A0012D90B /* pet.c in Sources */,
				53C1951D157C039A0012D90B /* quest.c in Sources */,
				53C1951E157C039A0012D90B /* script.c in Sources */,
				53C1951F157C039A0012D90B /* searchstore.c in Sources */,
				53C19520157C039A0012D90B /* skill.c in Sources */,
				53C19521157C039A0012D90B /* status.c in Sources */,
				53C19522157C039A0012D90B /* storage.c in Sources */,
				53C19523157C039A0012D90B /* trade.c in Sources */,
				53C19524157C039A0012D90B /* unit.c in Sources */,
				53C19525157C039A0012D90B /* vending.c in Sources */,
				538CB46B15AD9B1700DF3F0D /* evdp_epoll.c in Sources */,
				538CB46E15AD9B1700DF3F0D /* mempool.c in Sources */,
				538CB47115AD9B1700DF3F0D /* mutex.c in Sources */,
				538CB47415AD9B1700DF3F0D /* netbuffer.c in Sources */,
				538CB47715AD9B1700DF3F0D /* network.c in Sources */,
				538CB47A15AD9B1700DF3F0D /* raconf.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		53C19526157C044D0012D90B /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				53C1954C157C045D0012D90B /* char.c in Sources */,
				53C1954D157C045D0012D90B /* int_auction.c in Sources */,
				53C1954E157C045D0012D90B /* int_elemental.c in Sources */,
				53C1954F157C045D0012D90B /* int_guild.c in Sources */,
				53C19550157C045D0012D90B /* int_homun.c in Sources */,
				53C19551157C045D0012D90B /* int_mail.c in Sources */,
				53C19552157C045D0012D90B /* int_mercenary.c in Sources */,
				53C19553157C045D0012D90B /* int_party.c in Sources */,
				53C19554157C045D0012D90B /* int_pet.c in Sources */,
				53C19555157C045D0012D90B /* int_quest.c in Sources */,
				53C19556157C045D0012D90B /* int_storage.c in Sources */,
				53C19557157C045D0012D90B /* inter.c in Sources */,
				538CB46C15AD9B1700DF3F0D /* evdp_epoll.c in Sources */,
				538CB46F15AD9B1700DF3F0D /* mempool.c in Sources */,
				538CB47215AD9B1700DF3F0D /* mutex.c in Sources */,
				538CB47515AD9B1700DF3F0D /* netbuffer.c in Sources */,
				538CB47815AD9B1700DF3F0D /* network.c in Sources */,
				538CB47B15AD9B1700DF3F0D /* raconf.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		53C193C8157BF8E40012D90B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Debug;
		};
		53C193C9157BF8E40012D90B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Release;
		};
		53C193D7157BFA830012D90B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_ENABLE_OBJC_ARC = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src/common/obj_all\"",
					"\"$(SRCROOT)/../src/common/obj_sql\"",
					"\"$(SRCROOT)/../3rdparty/\"",
					"\"$(SRCROOT)/../3rdparty/mysql/lib\"",
					"\"$(SRCROOT)/../3rdparty/pcre/lib\"",
					"\"$(SRCROOT)/../3rdparty/zlib/lib\"",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				ONLY_ACTIVE_ARCH = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Debug;
		};
		53C193D8157BFA830012D90B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_ENABLE_OBJC_ARC = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src/common/obj_all\"",
					"\"$(SRCROOT)/../src/common/obj_sql\"",
					"\"$(SRCROOT)/../3rdparty/\"",
					"\"$(SRCROOT)/../3rdparty/mysql/lib\"",
					"\"$(SRCROOT)/../3rdparty/pcre/lib\"",
					"\"$(SRCROOT)/../3rdparty/zlib/lib\"",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Release;
		};
		53C194AC157C03260012D90B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_ENABLE_OBJC_ARC = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				ONLY_ACTIVE_ARCH = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Debug;
		};
		53C194AD157C03260012D90B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_ENABLE_OBJC_ARC = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Release;
		};
		53C19532157C044D0012D90B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_ENABLE_OBJC_ARC = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				ONLY_ACTIVE_ARCH = YES;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Debug;
		};
		53C19533157C044D0012D90B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_ENABLE_OBJC_ARC = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		53C193C6157BF8E40012D90B /* Build configuration list for PBXProject "rAthena" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				53C193C8157BF8E40012D90B /* Debug */,
				53C193C9157BF8E40012D90B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		53C193D6157BFA830012D90B /* Build configuration list for PBXNativeTarget "login-server_sql" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				53C193D7157BFA830012D90B /* Debug */,
				53C193D8157BFA830012D90B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		53C194AB157C03260012D90B /* Build configuration list for PBXNativeTarget "map-server_sql" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				53C194AC157C03260012D90B /* Debug */,
				53C194AD157C03260012D90B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		53C19531157C044D0012D90B /* Build configuration list for PBXNativeTarget "char-server_sql" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				53C19532157C044D0012D90B /* Debug */,
				53C19533157C044D0012D90B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 53C193C3157BF8E40012D90B /* Project object */;
}