This repository has been archived by the owner on Aug 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathproject.pbxproj
2756 lines (2740 loc) · 136 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
4329A1A1168EAFC1003128C5 /* NSString+YBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 4329A19F168EAFC1003128C5 /* NSString+YBase64.h */; settings = {ATTRIBUTES = (Public, ); }; };
4329A1A2168EAFC1003128C5 /* NSString+YBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 4329A19F168EAFC1003128C5 /* NSString+YBase64.h */; settings = {ATTRIBUTES = (Public, ); }; };
4329A1A3168EAFC1003128C5 /* NSString+YBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 4329A1A0168EAFC1003128C5 /* NSString+YBase64.m */; };
4329A1A4168EAFC1003128C5 /* NSString+YBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 4329A1A0168EAFC1003128C5 /* NSString+YBase64.m */; };
439E139C171FF1FE006CA769 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
439E13A9171FF232006CA769 /* YUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 439E13A7171FF232006CA769 /* YUtilities.h */; };
439E13AA171FF232006CA769 /* YUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 439E13A8171FF232006CA769 /* YUtilities.m */; };
439E13AB171FF232006CA769 /* YUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 439E13A8171FF232006CA769 /* YUtilities.m */; };
439E13AE171FF24C006CA769 /* YHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 439E13AC171FF24C006CA769 /* YHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
439E13AF171FF24C006CA769 /* YHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 439E13AD171FF24C006CA769 /* YHelper.m */; };
439E13B0171FF24C006CA769 /* YHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 439E13AD171FF24C006CA769 /* YHelper.m */; };
9A09913F147B9D6C005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A09914D147B9D6C005FBF4B /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */; };
9A09914F147B9D6C005FBF4B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914E147B9D6C005FBF4B /* UIKit.framework */; };
9A099150147B9D6C005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A099153147B9D6C005FBF4B /* libybase64.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913B147B9D6C005FBF4B /* libybase64.a */; };
9A09916F147B9E69005FBF4B /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A099170147B9E69005FBF4B /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0991A5147BA059005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A0991B2147BA059005FBF4B /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */; };
9A0991B3147BA059005FBF4B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914E147B9D6C005FBF4B /* UIKit.framework */; };
9A0991B4147BA059005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A0991B7147BA059005FBF4B /* libycocoaadditions.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0991A4147BA059005FBF4B /* libycocoaadditions.a */; };
9A0991DC147BA274005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A0991E9147BA274005FBF4B /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */; };
9A0991EA147BA274005FBF4B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914E147B9D6C005FBF4B /* UIKit.framework */; };
9A0991EB147BA274005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A0991EE147BA274005FBF4B /* libybase64additions.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0991DB147BA274005FBF4B /* libybase64additions.a */; };
9A099232147BA3F6005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A09923F147BA3F6005FBF4B /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */; };
9A099240147BA3F6005FBF4B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914E147B9D6C005FBF4B /* UIKit.framework */; };
9A099241147BA3F7005FBF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9A099244147BA3F7005FBF4B /* libyoauth.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A099231147BA3F6005FBF4B /* libyoauth.a */; };
9A099282147BA57C005FBF4B /* ybase64-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 9A09927F147BA57C005FBF4B /* ybase64-Prefix.pch */; };
9A099283147BA57C005FBF4B /* ybase64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A099280147BA57C005FBF4B /* ybase64.c */; };
9A099284147BA57C005FBF4B /* ybase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099281147BA57C005FBF4B /* ybase64.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A09928D147BA587005FBF4B /* base64Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A099287147BA587005FBF4B /* base64Tests.m */; };
9A09928E147BA587005FBF4B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9A099288147BA587005FBF4B /* InfoPlist.strings */; };
9A099290147BA587005FBF4B /* ybase64Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A09928C147BA587005FBF4B /* ybase64Tests.m */; };
9A099299147BA59A005FBF4B /* NSData+YBase64String.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099292147BA59A005FBF4B /* NSData+YBase64String.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A09929A147BA59A005FBF4B /* NSData+YBase64String.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A099293147BA59A005FBF4B /* NSData+YBase64String.m */; };
9A09929B147BA59A005FBF4B /* NSString+YBase64toData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099294147BA59A005FBF4B /* NSString+YBase64toData.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A09929C147BA59A005FBF4B /* NSString+YBase64toData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A099295147BA59A005FBF4B /* NSString+YBase64toData.m */; };
9A09929D147BA59A005FBF4B /* ybase64additions-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 9A099296147BA59A005FBF4B /* ybase64additions-Prefix.pch */; };
9A09929E147BA59A005FBF4B /* ybase64additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099297147BA59A005FBF4B /* ybase64additions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992A6147BA5A6005FBF4B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9A0992A1147BA5A6005FBF4B /* InfoPlist.strings */; };
9A0992A8147BA5A6005FBF4B /* ybase64additionsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992A5147BA5A6005FBF4B /* ybase64additionsTests.m */; };
9A0992B2147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AA147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992B3147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AB147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.m */; };
9A0992B4147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AC147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992B5147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AD147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.m */; };
9A0992B6147BA5B6005FBF4B /* NSString+YHTTPURLString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AE147BA5B6005FBF4B /* NSString+YHTTPURLString.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992B7147BA5B6005FBF4B /* NSString+YHTTPURLString.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AF147BA5B6005FBF4B /* NSString+YHTTPURLString.m */; };
9A0992B8147BA5B6005FBF4B /* ycocoaadditions-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992B0147BA5B6005FBF4B /* ycocoaadditions-Prefix.pch */; };
9A0992B9147BA5B6005FBF4B /* ycocoaadditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992B1147BA5B6005FBF4B /* ycocoaadditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992C0147BA5C2005FBF4B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9A0992BB147BA5C2005FBF4B /* InfoPlist.strings */; };
9A0992D1147BA5D0005FBF4B /* yoauthv1.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992C5147BA5D0005FBF4B /* yoauthv1.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992D2147BA5D0005FBF4B /* yoauthv1.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992C6147BA5D0005FBF4B /* yoauthv1.m */; };
9A0992D3147BA5D0005FBF4B /* yoauthv1_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992C7147BA5D0005FBF4B /* yoauthv1_internal.h */; settings = {ATTRIBUTES = (); }; };
9A0992D4147BA5D0005FBF4B /* yoauthv1_internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992C8147BA5D0005FBF4B /* yoauthv1_internal.m */; };
9A0992D5147BA5D0005FBF4B /* yoauthv2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CA147BA5D0005FBF4B /* yoauthv2.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992D6147BA5D0005FBF4B /* yoauthv2.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992CB147BA5D0005FBF4B /* yoauthv2.m */; };
9A0992D7147BA5D0005FBF4B /* yoauth-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CC147BA5D0005FBF4B /* yoauth-Prefix.pch */; };
9A0992D8147BA5D0005FBF4B /* yoauth.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CD147BA5D0005FBF4B /* yoauth.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992DA147BA5D0005FBF4B /* yoauth_utilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CF147BA5D0005FBF4B /* yoauth_utilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
9A0992DB147BA5D0005FBF4B /* yoauth_utilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992D0147BA5D0005FBF4B /* yoauth_utilities.m */; };
9A0992E2147BA5DC005FBF4B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9A0992DD147BA5DC005FBF4B /* InfoPlist.strings */; };
9A0992E4147BA5DC005FBF4B /* yoauthTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992E1147BA5DC005FBF4B /* yoauthTests.m */; };
9A57F756147BAB3200B16AE9 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A57F755147BAB3200B16AE9 /* Security.framework */; };
9A57F75C147BAC9300B16AE9 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A57F755147BAB3200B16AE9 /* Security.framework */; };
9A57F75E147BACA300B16AE9 /* libybase64additions.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0991DB147BA274005FBF4B /* libybase64additions.a */; };
9A57F75F147BACA300B16AE9 /* libycocoaadditions.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0991A4147BA059005FBF4B /* libycocoaadditions.a */; };
9A57F76D147BAEF300B16AE9 /* YHTTPURLMutableDictionaryTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A57F764147BAE8A00B16AE9 /* YHTTPURLMutableDictionaryTest.m */; };
9A57F76E147BAEF300B16AE9 /* YHTTPURLStringTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A57F765147BAE8A00B16AE9 /* YHTTPURLStringTests.m */; };
9AABE9F0147F8E1200A678B3 /* ytiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE98E9B147E5FC000D4488F /* ytiming.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F1147F8E1400A678B3 /* ytiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE98E9B147E5FC000D4488F /* ytiming.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F2147F8E1400A678B3 /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F3147F8E1400A678B3 /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F4147F8E1500A678B3 /* ytiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE98E9B147E5FC000D4488F /* ytiming.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F5147F8E1500A678B3 /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F6147F8E1500A678B3 /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F7147F8E1600A678B3 /* ytiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE98E9B147E5FC000D4488F /* ytiming.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F8147F8E1600A678B3 /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9F9147F8E1600A678B3 /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9FA147F8E2C00A678B3 /* ytiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE98E9B147E5FC000D4488F /* ytiming.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9FB147F8E2C00A678B3 /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9FC147F8E2C00A678B3 /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABE9FD147F8EB400A678B3 /* NSMutableURLRequest+YOAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0C519147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AABEA05147F90F400A678B3 /* NSMutableURLRequest+YOAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC0C51A147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.m */; };
9AABEA0C147FA51000A678B3 /* libybase64.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913B147B9D6C005FBF4B /* libybase64.a */; };
9AC0C4E5147E9B1C008E5AD5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9AC0C4F2147E9B1C008E5AD5 /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */; };
9AC0C4F3147E9B1C008E5AD5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09914E147B9D6C005FBF4B /* UIKit.framework */; };
9AC0C4F4147E9B1C008E5AD5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A09913E147B9D6C005FBF4B /* Foundation.framework */; };
9AC0C4F7147E9B1C008E5AD5 /* libyoauthadditions.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AC0C4E4147E9B1C008E5AD5 /* libyoauthadditions.a */; };
9AC0C50C147E9BBE008E5AD5 /* yoauthadditions-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0C509147E9BBE008E5AD5 /* yoauthadditions-Prefix.pch */; };
9AC0C515147E9BCB008E5AD5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9AC0C510147E9BCB008E5AD5 /* InfoPlist.strings */; };
9AC0C516147E9BCB008E5AD5 /* yoauthadditionsTests-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 9AC0C512147E9BCB008E5AD5 /* yoauthadditionsTests-Info.plist */; };
9AC0C517147E9BCB008E5AD5 /* yoauthadditionsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC0C514147E9BCB008E5AD5 /* yoauthadditionsTests.m */; };
9AC0C51B147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0C519147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC0C51C147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC0C51A147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.m */; };
9AC0FC9F147FF39000E020AF /* yoauthadditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0FC9D147FF39000E020AF /* yoauthadditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC0FCA2147FF3C000E020AF /* yoauthadditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0FC9D147FF39000E020AF /* yoauthadditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC0FCC91481287400E020AF /* NSError+YOAuthv2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0FCC71481287300E020AF /* NSError+YOAuthv2.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC0FCCA1481287400E020AF /* NSError+YOAuthv2.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC0FCC81481287400E020AF /* NSError+YOAuthv2.m */; };
9AC0FCCB14812C7100E020AF /* NSError+YOAuthv2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC0FCC71481287300E020AF /* NSError+YOAuthv2.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC0FCCD14812C7A00E020AF /* NSError+YOAuthv2.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC0FCC81481287400E020AF /* NSError+YOAuthv2.m */; };
9AC0FCD41481318000E020AF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AC0FCD31481318000E020AF /* Cocoa.framework */; };
9AC0FCDE1481318000E020AF /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9AC0FCDC1481318000E020AF /* InfoPlist.strings */; };
9AC0FCE5148132C900E020AF /* ErrorLocalizedString.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9AC0FCE7148132C900E020AF /* ErrorLocalizedString.strings */; };
9AC17AF2147BB3FC00499A4F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 9AC17AF0147BB3FC00499A4F /* InfoPlist.strings */; };
9AC17AF9147BB45000499A4F /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17AFA147BB45C00499A4F /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17AFB147BB46500499A4F /* NSDictionary+YHTTPURLDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AA147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17AFC147BB47300499A4F /* NSDictionary+YHTTPURLDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AB147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.m */; };
9AC17AFD147BB47300499A4F /* NSMutableDictionary+YDuplicatableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AD147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.m */; };
9AC17AFE147BB47300499A4F /* NSString+YHTTPURLString.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AF147BA5B6005FBF4B /* NSString+YHTTPURLString.m */; };
9AC17AFF147BB4AA00499A4F /* ycocoaadditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992B1147BA5B6005FBF4B /* ycocoaadditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B00147BB4BA00499A4F /* NSMutableDictionary+YDuplicatableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AC147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B01147BB4BA00499A4F /* NSString+YHTTPURLString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AE147BA5B6005FBF4B /* NSString+YHTTPURLString.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B02147BB4DD00499A4F /* ybase64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A099280147BA57C005FBF4B /* ybase64.c */; };
9AC17B03147BB4E200499A4F /* ybase64.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099281147BA57C005FBF4B /* ybase64.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B04147BB50C00499A4F /* ybase64additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099297147BA59A005FBF4B /* ybase64additions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B05147BB51900499A4F /* NSData+YBase64String.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A099293147BA59A005FBF4B /* NSData+YBase64String.m */; };
9AC17B06147BB51900499A4F /* NSString+YBase64toData.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A099295147BA59A005FBF4B /* NSString+YBase64toData.m */; };
9AC17B07147BB51E00499A4F /* NSData+YBase64String.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099292147BA59A005FBF4B /* NSData+YBase64String.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B08147BB51E00499A4F /* NSString+YBase64toData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A099294147BA59A005FBF4B /* NSString+YBase64toData.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B09147BB56E00499A4F /* yoauthv1.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992C5147BA5D0005FBF4B /* yoauthv1.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B0A147BB56E00499A4F /* yoauthv2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CA147BA5D0005FBF4B /* yoauthv2.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B0B147BB56E00499A4F /* yoauth.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CD147BA5D0005FBF4B /* yoauth.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B0C147BB56E00499A4F /* yoauth_utilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992CF147BA5D0005FBF4B /* yoauth_utilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC17B0D147BB57C00499A4F /* yoauthv1.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992C6147BA5D0005FBF4B /* yoauthv1.m */; };
9AC17B0E147BB57C00499A4F /* yoauthv1_internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992C8147BA5D0005FBF4B /* yoauthv1_internal.m */; };
9AC17B0F147BB57C00499A4F /* yoauthv2.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992CB147BA5D0005FBF4B /* yoauthv2.m */; };
9AC17B10147BB57C00499A4F /* yoauth_utilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992D0147BA5D0005FBF4B /* yoauth_utilities.m */; };
9AC17B11147BB58700499A4F /* yoauthv1_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992C7147BA5D0005FBF4B /* yoauthv1_internal.h */; settings = {ATTRIBUTES = (Private, ); }; };
9AE98E9C147E5FC000D4488F /* ytiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE98E9B147E5FC000D4488F /* ytiming.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AED768E1498FECE001074E5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AC0FCD31481318000E020AF /* Cocoa.framework */; };
9AED76981498FEF5001074E5 /* NSDictionary+YHTTPURLDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AA147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AED76991498FEF5001074E5 /* NSDictionary+YHTTPURLDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AB147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.m */; };
9AED769A1498FEF5001074E5 /* NSMutableDictionary+YDuplicatableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AC147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AED769B1498FEF5001074E5 /* NSMutableDictionary+YDuplicatableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AD147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.m */; };
9AED769C1498FEF5001074E5 /* NSString+YHTTPURLString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992AE147BA5B6005FBF4B /* NSString+YHTTPURLString.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AED769D1498FEF5001074E5 /* NSString+YHTTPURLString.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0992AF147BA5B6005FBF4B /* NSString+YHTTPURLString.m */; };
9AED769E1498FEF5001074E5 /* ycocoaadditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0992B1147BA5B6005FBF4B /* ycocoaadditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AED76AE14990669001074E5 /* ydefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916C147B9E69005FBF4B /* ydefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AED76AF14990669001074E5 /* ymacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A09916D147B9E69005FBF4B /* ymacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
9A099151147B9D6C005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A09913A147B9D6C005FBF4B;
remoteInfo = ybase64;
};
9A0991B5147BA059005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A0991A3147BA059005FBF4B;
remoteInfo = ycocoaadditions;
};
9A0991EC147BA274005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A0991DA147BA274005FBF4B;
remoteInfo = ybase64additions;
};
9A099242147BA3F7005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A099230147BA3F6005FBF4B;
remoteInfo = yoauth;
};
9A0992E5147BA630005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A09913A147B9D6C005FBF4B;
remoteInfo = ybase64;
};
9A0992E7147BA640005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A09913A147B9D6C005FBF4B;
remoteInfo = ybase64;
};
9A0992E9147BA640005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A0991DA147BA274005FBF4B;
remoteInfo = ybase64additions;
};
9A0992EB147BA640005FBF4B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A0991A3147BA059005FBF4B;
remoteInfo = ycocoaadditions;
};
9AABEA03147F8FBD00A678B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A099230147BA3F6005FBF4B;
remoteInfo = yoauth;
};
9AABEA06147FA50000A678B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A09913A147B9D6C005FBF4B;
remoteInfo = ybase64;
};
9AABEA08147FA50000A678B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A0991DA147BA274005FBF4B;
remoteInfo = ybase64additions;
};
9AABEA0A147FA50000A678B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9A0991A3147BA059005FBF4B;
remoteInfo = ycocoaadditions;
};
9AC0C4F5147E9B1C008E5AD5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 9A099130147B9D23005FBF4B /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9AC0C4E3147E9B1C008E5AD5;
remoteInfo = yoauthadditions;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
439E1399171FF1FE006CA769 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/${PRODUCT_NAME}";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
4329A19F168EAFC1003128C5 /* NSString+YBase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+YBase64.h"; sourceTree = "<group>"; };
4329A1A0168EAFC1003128C5 /* NSString+YBase64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+YBase64.m"; sourceTree = "<group>"; };
439E139B171FF1FE006CA769 /* libyutilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libyutilities.a; sourceTree = BUILT_PRODUCTS_DIR; };
439E139F171FF1FE006CA769 /* yutilities-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "yutilities-Prefix.pch"; sourceTree = "<group>"; };
439E13A7171FF232006CA769 /* YUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YUtilities.h; sourceTree = "<group>"; };
439E13A8171FF232006CA769 /* YUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YUtilities.m; sourceTree = "<group>"; };
439E13AC171FF24C006CA769 /* YHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHelper.h; sourceTree = "<group>"; };
439E13AD171FF24C006CA769 /* YHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHelper.m; sourceTree = "<group>"; };
9A09913B147B9D6C005FBF4B /* libybase64.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libybase64.a; sourceTree = BUILT_PRODUCTS_DIR; };
9A09913E147B9D6C005FBF4B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
9A09914B147B9D6C005FBF4B /* ybase64Tests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ybase64Tests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
9A09914E147B9D6C005FBF4B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
9A09916C147B9E69005FBF4B /* ydefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ydefines.h; sourceTree = "<group>"; };
9A09916D147B9E69005FBF4B /* ymacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ymacros.h; sourceTree = "<group>"; };
9A0991A4147BA059005FBF4B /* libycocoaadditions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libycocoaadditions.a; sourceTree = BUILT_PRODUCTS_DIR; };
9A0991B1147BA059005FBF4B /* ycocoaadditionsTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ycocoaadditionsTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
9A0991DB147BA274005FBF4B /* libybase64additions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libybase64additions.a; sourceTree = BUILT_PRODUCTS_DIR; };
9A0991E8147BA274005FBF4B /* ybase64additionsTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ybase64additionsTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
9A099231147BA3F6005FBF4B /* libyoauth.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libyoauth.a; sourceTree = BUILT_PRODUCTS_DIR; };
9A09923E147BA3F6005FBF4B /* yoauthTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = yoauthTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
9A09927F147BA57C005FBF4B /* ybase64-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ybase64-Prefix.pch"; sourceTree = "<group>"; };
9A099280147BA57C005FBF4B /* ybase64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ybase64.c; sourceTree = "<group>"; };
9A099281147BA57C005FBF4B /* ybase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ybase64.h; sourceTree = "<group>"; };
9A099286147BA587005FBF4B /* base64Tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = base64Tests.h; sourceTree = "<group>"; };
9A099287147BA587005FBF4B /* base64Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = base64Tests.m; sourceTree = "<group>"; };
9A099289147BA587005FBF4B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9A09928A147BA587005FBF4B /* ybase64Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "ybase64Tests-Info.plist"; sourceTree = "<group>"; };
9A09928B147BA587005FBF4B /* ybase64Tests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ybase64Tests.h; sourceTree = "<group>"; };
9A09928C147BA587005FBF4B /* ybase64Tests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ybase64Tests.m; sourceTree = "<group>"; };
9A099292147BA59A005FBF4B /* NSData+YBase64String.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+YBase64String.h"; sourceTree = "<group>"; };
9A099293147BA59A005FBF4B /* NSData+YBase64String.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+YBase64String.m"; sourceTree = "<group>"; };
9A099294147BA59A005FBF4B /* NSString+YBase64toData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+YBase64toData.h"; sourceTree = "<group>"; };
9A099295147BA59A005FBF4B /* NSString+YBase64toData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+YBase64toData.m"; sourceTree = "<group>"; };
9A099296147BA59A005FBF4B /* ybase64additions-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ybase64additions-Prefix.pch"; sourceTree = "<group>"; };
9A099297147BA59A005FBF4B /* ybase64additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ybase64additions.h; sourceTree = "<group>"; };
9A0992A2147BA5A6005FBF4B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9A0992A3147BA5A6005FBF4B /* ybase64additionsTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "ybase64additionsTests-Info.plist"; sourceTree = "<group>"; };
9A0992A4147BA5A6005FBF4B /* ybase64additionsTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ybase64additionsTests.h; sourceTree = "<group>"; };
9A0992A5147BA5A6005FBF4B /* ybase64additionsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ybase64additionsTests.m; sourceTree = "<group>"; };
9A0992AA147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+YHTTPURLDictionary.h"; sourceTree = "<group>"; };
9A0992AB147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+YHTTPURLDictionary.m"; sourceTree = "<group>"; };
9A0992AC147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+YDuplicatableDictionary.h"; sourceTree = "<group>"; };
9A0992AD147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+YDuplicatableDictionary.m"; sourceTree = "<group>"; };
9A0992AE147BA5B6005FBF4B /* NSString+YHTTPURLString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+YHTTPURLString.h"; sourceTree = "<group>"; };
9A0992AF147BA5B6005FBF4B /* NSString+YHTTPURLString.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+YHTTPURLString.m"; sourceTree = "<group>"; };
9A0992B0147BA5B6005FBF4B /* ycocoaadditions-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ycocoaadditions-Prefix.pch"; sourceTree = "<group>"; };
9A0992B1147BA5B6005FBF4B /* ycocoaadditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ycocoaadditions.h; sourceTree = "<group>"; };
9A0992BC147BA5C2005FBF4B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9A0992BD147BA5C2005FBF4B /* ycocoaadditionsTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "ycocoaadditionsTests-Info.plist"; sourceTree = "<group>"; };
9A0992C5147BA5D0005FBF4B /* yoauthv1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauthv1.h; sourceTree = "<group>"; };
9A0992C6147BA5D0005FBF4B /* yoauthv1.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = yoauthv1.m; sourceTree = "<group>"; };
9A0992C7147BA5D0005FBF4B /* yoauthv1_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauthv1_internal.h; sourceTree = "<group>"; };
9A0992C8147BA5D0005FBF4B /* yoauthv1_internal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = yoauthv1_internal.m; sourceTree = "<group>"; };
9A0992CA147BA5D0005FBF4B /* yoauthv2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauthv2.h; sourceTree = "<group>"; };
9A0992CB147BA5D0005FBF4B /* yoauthv2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = yoauthv2.m; sourceTree = "<group>"; };
9A0992CC147BA5D0005FBF4B /* yoauth-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "yoauth-Prefix.pch"; sourceTree = "<group>"; };
9A0992CD147BA5D0005FBF4B /* yoauth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauth.h; sourceTree = "<group>"; };
9A0992CF147BA5D0005FBF4B /* yoauth_utilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauth_utilities.h; sourceTree = "<group>"; };
9A0992D0147BA5D0005FBF4B /* yoauth_utilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = yoauth_utilities.m; sourceTree = "<group>"; };
9A0992DE147BA5DC005FBF4B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9A0992DF147BA5DC005FBF4B /* yoauthTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "yoauthTests-Info.plist"; sourceTree = "<group>"; };
9A0992E0147BA5DC005FBF4B /* yoauthTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauthTests.h; sourceTree = "<group>"; };
9A0992E1147BA5DC005FBF4B /* yoauthTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = yoauthTests.m; sourceTree = "<group>"; };
9A57F755147BAB3200B16AE9 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
9A57F764147BAE8A00B16AE9 /* YHTTPURLMutableDictionaryTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHTTPURLMutableDictionaryTest.m; sourceTree = "<group>"; };
9A57F765147BAE8A00B16AE9 /* YHTTPURLStringTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YHTTPURLStringTests.m; sourceTree = "<group>"; };
9A57F766147BAE8A00B16AE9 /* YHTTPURLMutableDictionaryTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHTTPURLMutableDictionaryTest.h; sourceTree = "<group>"; };
9A57F767147BAE8A00B16AE9 /* YHTTPURLStringTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YHTTPURLStringTests.h; sourceTree = "<group>"; };
9AC0C4E4147E9B1C008E5AD5 /* libyoauthadditions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libyoauthadditions.a; sourceTree = BUILT_PRODUCTS_DIR; };
9AC0C4F1147E9B1C008E5AD5 /* yoauthadditionsTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = yoauthadditionsTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
9AC0C509147E9BBE008E5AD5 /* yoauthadditions-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "yoauthadditions-Prefix.pch"; sourceTree = "<group>"; };
9AC0C511147E9BCB008E5AD5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9AC0C512147E9BCB008E5AD5 /* yoauthadditionsTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "yoauthadditionsTests-Info.plist"; sourceTree = "<group>"; };
9AC0C513147E9BCB008E5AD5 /* yoauthadditionsTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauthadditionsTests.h; sourceTree = "<group>"; };
9AC0C514147E9BCB008E5AD5 /* yoauthadditionsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = yoauthadditionsTests.m; sourceTree = "<group>"; };
9AC0C519147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableURLRequest+YOAuth.h"; sourceTree = "<group>"; };
9AC0C51A147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableURLRequest+YOAuth.m"; sourceTree = "<group>"; };
9AC0FC9D147FF39000E020AF /* yoauthadditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = yoauthadditions.h; sourceTree = "<group>"; };
9AC0FCC71481287300E020AF /* NSError+YOAuthv2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSError+YOAuthv2.h"; sourceTree = "<group>"; };
9AC0FCC81481287400E020AF /* NSError+YOAuthv2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSError+YOAuthv2.m"; sourceTree = "<group>"; };
9AC0FCD21481318000E020AF /* ytoolkitbundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ytoolkitbundle.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
9AC0FCD31481318000E020AF /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
9AC0FCD61481318000E020AF /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
9AC0FCD71481318000E020AF /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
9AC0FCD81481318000E020AF /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
9AC0FCDB1481318000E020AF /* ytoolkitbundle-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ytoolkitbundle-Info.plist"; sourceTree = "<group>"; };
9AC0FCDD1481318000E020AF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9AC0FCDF1481318000E020AF /* ytoolkitbundle-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ytoolkitbundle-Prefix.pch"; sourceTree = "<group>"; };
9AC0FCE6148132C900E020AF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ErrorLocalizedString.strings; sourceTree = "<group>"; };
9AC17AEC147BB3FC00499A4F /* ytoolkit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ytoolkit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9AC17AEF147BB3FC00499A4F /* ytoolkit-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ytoolkit-Info.plist"; sourceTree = "<group>"; };
9AC17AF1147BB3FC00499A4F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
9AC17AF3147BB3FC00499A4F /* ytoolkit-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ytoolkit-Prefix.pch"; sourceTree = "<group>"; };
9AC17B13147BC0B600499A4F /* COPYING */ = {isa = PBXFileReference; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
9AE98DD1147D690200D4488F /* ASIHTTPRequest+YOAuthv1Request.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ASIHTTPRequest+YOAuthv1Request.h"; sourceTree = "<group>"; };
9AE98DD2147D690200D4488F /* ASIHTTPRequest+YOAuthv1Request.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ASIHTTPRequest+YOAuthv1Request.m"; sourceTree = "<group>"; };
9AE98E9B147E5FC000D4488F /* ytiming.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ytiming.h; sourceTree = "<group>"; };
9AED768D1498FECE001074E5 /* libycocoaadditions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libycocoaadditions.a; sourceTree = BUILT_PRODUCTS_DIR; };
9AED76911498FECE001074E5 /* ycocoaaditions-MacOSX-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ycocoaaditions-MacOSX-Prefix.pch"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
439E1398171FF1FE006CA769 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
439E139C171FF1FE006CA769 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A099138147B9D6C005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A09913F147B9D6C005FBF4B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A099147147B9D6C005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A09914D147B9D6C005FBF4B /* SenTestingKit.framework in Frameworks */,
9A09914F147B9D6C005FBF4B /* UIKit.framework in Frameworks */,
9A099150147B9D6C005FBF4B /* Foundation.framework in Frameworks */,
9A099153147B9D6C005FBF4B /* libybase64.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A0991A1147BA059005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A0991A5147BA059005FBF4B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A0991AD147BA059005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A0991B2147BA059005FBF4B /* SenTestingKit.framework in Frameworks */,
9A0991B3147BA059005FBF4B /* UIKit.framework in Frameworks */,
9A0991B4147BA059005FBF4B /* Foundation.framework in Frameworks */,
9A0991B7147BA059005FBF4B /* libycocoaadditions.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A0991D8147BA274005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A0991DC147BA274005FBF4B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A0991E4147BA274005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A0991E9147BA274005FBF4B /* SenTestingKit.framework in Frameworks */,
9A0991EA147BA274005FBF4B /* UIKit.framework in Frameworks */,
9A0991EB147BA274005FBF4B /* Foundation.framework in Frameworks */,
9A0991EE147BA274005FBF4B /* libybase64additions.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A09922E147BA3F6005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9A57F756147BAB3200B16AE9 /* Security.framework in Frameworks */,
9A099232147BA3F6005FBF4B /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A09923A147BA3F6005FBF4B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9AABEA0C147FA51000A678B3 /* libybase64.a in Frameworks */,
9A57F75E147BACA300B16AE9 /* libybase64additions.a in Frameworks */,
9A57F75F147BACA300B16AE9 /* libycocoaadditions.a in Frameworks */,
9A57F75C147BAC9300B16AE9 /* Security.framework in Frameworks */,
9A09923F147BA3F6005FBF4B /* SenTestingKit.framework in Frameworks */,
9A099240147BA3F6005FBF4B /* UIKit.framework in Frameworks */,
9A099241147BA3F7005FBF4B /* Foundation.framework in Frameworks */,
9A099244147BA3F7005FBF4B /* libyoauth.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AC0C4E1147E9B1C008E5AD5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9AC0C4E5147E9B1C008E5AD5 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AC0C4ED147E9B1C008E5AD5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9AC0C4F2147E9B1C008E5AD5 /* SenTestingKit.framework in Frameworks */,
9AC0C4F3147E9B1C008E5AD5 /* UIKit.framework in Frameworks */,
9AC0C4F4147E9B1C008E5AD5 /* Foundation.framework in Frameworks */,
9AC0C4F7147E9B1C008E5AD5 /* libyoauthadditions.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AC0FCCF1481318000E020AF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9AC0FCD41481318000E020AF /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AC17AE7147BB3FC00499A4F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
9AED768A1498FECE001074E5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9AED768E1498FECE001074E5 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
439E139D171FF1FE006CA769 /* yutilities */ = {
isa = PBXGroup;
children = (
439E139E171FF1FE006CA769 /* Supporting Files */,
439E13A7171FF232006CA769 /* YUtilities.h */,
439E13A8171FF232006CA769 /* YUtilities.m */,
439E13AC171FF24C006CA769 /* YHelper.h */,
439E13AD171FF24C006CA769 /* YHelper.m */,
);
path = yutilities;
sourceTree = "<group>";
};
439E139E171FF1FE006CA769 /* Supporting Files */ = {
isa = PBXGroup;
children = (
439E139F171FF1FE006CA769 /* yutilities-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
9A09912E147B9D23005FBF4B = {
isa = PBXGroup;
children = (
9AC17B13147BC0B600499A4F /* COPYING */,
9AC17B12147BC0A800499A4F /* docs */,
9A09916A147B9E69005FBF4B /* include */,
9A09927D147BA568005FBF4B /* ycocoaadditions */,
9A09927A147BA54A005FBF4B /* ybase64 */,
9A09927C147BA55E005FBF4B /* ybase64additions */,
9A09927B147BA553005FBF4B /* yoauth */,
9AC0C518147E9BD6008E5AD5 /* yoauthadditions */,
9AC17AED147BB3FC00499A4F /* ytoolkit */,
9AE98DCF147D690200D4488F /* externals */,
9AC0FCD91481318000E020AF /* ytoolkitbundle */,
9AED768F1498FECE001074E5 /* ycocoaaditions-MacOSX */,
439E139D171FF1FE006CA769 /* yutilities */,
9A09913D147B9D6C005FBF4B /* Frameworks */,
9A09913C147B9D6C005FBF4B /* Products */,
);
sourceTree = "<group>";
};
9A09913C147B9D6C005FBF4B /* Products */ = {
isa = PBXGroup;
children = (
9A09913B147B9D6C005FBF4B /* libybase64.a */,
9A09914B147B9D6C005FBF4B /* ybase64Tests.octest */,
9A0991A4147BA059005FBF4B /* libycocoaadditions.a */,
9A0991B1147BA059005FBF4B /* ycocoaadditionsTests.octest */,
9A0991DB147BA274005FBF4B /* libybase64additions.a */,
9A0991E8147BA274005FBF4B /* ybase64additionsTests.octest */,
9A099231147BA3F6005FBF4B /* libyoauth.a */,
9A09923E147BA3F6005FBF4B /* yoauthTests.octest */,
9AC17AEC147BB3FC00499A4F /* ytoolkit.framework */,
9AC0C4E4147E9B1C008E5AD5 /* libyoauthadditions.a */,
9AC0C4F1147E9B1C008E5AD5 /* yoauthadditionsTests.octest */,
9AC0FCD21481318000E020AF /* ytoolkitbundle.bundle */,
9AED768D1498FECE001074E5 /* libycocoaadditions.a */,
439E139B171FF1FE006CA769 /* libyutilities.a */,
);
name = Products;
sourceTree = "<group>";
};
9A09913D147B9D6C005FBF4B /* Frameworks */ = {
isa = PBXGroup;
children = (
9A57F755147BAB3200B16AE9 /* Security.framework */,
9A09913E147B9D6C005FBF4B /* Foundation.framework */,
9A09914C147B9D6C005FBF4B /* SenTestingKit.framework */,
9A09914E147B9D6C005FBF4B /* UIKit.framework */,
9AC0FCD31481318000E020AF /* Cocoa.framework */,
9AC0FCD51481318000E020AF /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
9A09916A147B9E69005FBF4B /* include */ = {
isa = PBXGroup;
children = (
9AE98E9B147E5FC000D4488F /* ytiming.h */,
9A09916C147B9E69005FBF4B /* ydefines.h */,
9A09916D147B9E69005FBF4B /* ymacros.h */,
);
path = include;
sourceTree = "<group>";
};
9A09927A147BA54A005FBF4B /* ybase64 */ = {
isa = PBXGroup;
children = (
9A099285147BA587005FBF4B /* tests */,
9A09927E147BA57C005FBF4B /* code */,
);
name = ybase64;
sourceTree = "<group>";
};
9A09927B147BA553005FBF4B /* yoauth */ = {
isa = PBXGroup;
children = (
9A0992DC147BA5DC005FBF4B /* tests */,
9A0992C3147BA5D0005FBF4B /* code */,
);
name = yoauth;
sourceTree = "<group>";
};
9A09927C147BA55E005FBF4B /* ybase64additions */ = {
isa = PBXGroup;
children = (
9A0992A0147BA5A6005FBF4B /* tests */,
9A099291147BA59A005FBF4B /* code */,
);
name = ybase64additions;
sourceTree = "<group>";
};
9A09927D147BA568005FBF4B /* ycocoaadditions */ = {
isa = PBXGroup;
children = (
9A0992BA147BA5C2005FBF4B /* tests */,
9A0992A9147BA5B6005FBF4B /* code */,
);
name = ycocoaadditions;
sourceTree = "<group>";
};
9A09927E147BA57C005FBF4B /* code */ = {
isa = PBXGroup;
children = (
9A09927F147BA57C005FBF4B /* ybase64-Prefix.pch */,
9A099280147BA57C005FBF4B /* ybase64.c */,
9A099281147BA57C005FBF4B /* ybase64.h */,
);
name = code;
path = ybase64/code;
sourceTree = "<group>";
};
9A099285147BA587005FBF4B /* tests */ = {
isa = PBXGroup;
children = (
9A099286147BA587005FBF4B /* base64Tests.h */,
9A099287147BA587005FBF4B /* base64Tests.m */,
9A099288147BA587005FBF4B /* InfoPlist.strings */,
9A09928A147BA587005FBF4B /* ybase64Tests-Info.plist */,
9A09928B147BA587005FBF4B /* ybase64Tests.h */,
9A09928C147BA587005FBF4B /* ybase64Tests.m */,
);
name = tests;
path = ybase64/tests;
sourceTree = "<group>";
};
9A099291147BA59A005FBF4B /* code */ = {
isa = PBXGroup;
children = (
9A099292147BA59A005FBF4B /* NSData+YBase64String.h */,
9A099293147BA59A005FBF4B /* NSData+YBase64String.m */,
9A099294147BA59A005FBF4B /* NSString+YBase64toData.h */,
9A099295147BA59A005FBF4B /* NSString+YBase64toData.m */,
4329A19F168EAFC1003128C5 /* NSString+YBase64.h */,
4329A1A0168EAFC1003128C5 /* NSString+YBase64.m */,
9A099296147BA59A005FBF4B /* ybase64additions-Prefix.pch */,
9A099297147BA59A005FBF4B /* ybase64additions.h */,
);
name = code;
path = ybase64additions/code;
sourceTree = "<group>";
};
9A0992A0147BA5A6005FBF4B /* tests */ = {
isa = PBXGroup;
children = (
9A0992A1147BA5A6005FBF4B /* InfoPlist.strings */,
9A0992A3147BA5A6005FBF4B /* ybase64additionsTests-Info.plist */,
9A0992A4147BA5A6005FBF4B /* ybase64additionsTests.h */,
9A0992A5147BA5A6005FBF4B /* ybase64additionsTests.m */,
);
name = tests;
path = ybase64additions/tests;
sourceTree = "<group>";
};
9A0992A9147BA5B6005FBF4B /* code */ = {
isa = PBXGroup;
children = (
9A0992AA147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h */,
9A0992AB147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.m */,
9A0992AC147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h */,
9A0992AD147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.m */,
9A0992AE147BA5B6005FBF4B /* NSString+YHTTPURLString.h */,
9A0992AF147BA5B6005FBF4B /* NSString+YHTTPURLString.m */,
9A0992B0147BA5B6005FBF4B /* ycocoaadditions-Prefix.pch */,
9A0992B1147BA5B6005FBF4B /* ycocoaadditions.h */,
);
name = code;
path = ycocoaadditions/code;
sourceTree = "<group>";
};
9A0992BA147BA5C2005FBF4B /* tests */ = {
isa = PBXGroup;
children = (
9A0992BB147BA5C2005FBF4B /* InfoPlist.strings */,
9A0992BD147BA5C2005FBF4B /* ycocoaadditionsTests-Info.plist */,
9A57F764147BAE8A00B16AE9 /* YHTTPURLMutableDictionaryTest.m */,
9A57F766147BAE8A00B16AE9 /* YHTTPURLMutableDictionaryTest.h */,
9A57F765147BAE8A00B16AE9 /* YHTTPURLStringTests.m */,
9A57F767147BAE8A00B16AE9 /* YHTTPURLStringTests.h */,
);
name = tests;
path = ycocoaadditions/tests;
sourceTree = "<group>";
};
9A0992C3147BA5D0005FBF4B /* code */ = {
isa = PBXGroup;
children = (
9A0992C4147BA5D0005FBF4B /* oauthv1 */,
9A0992C9147BA5D0005FBF4B /* oauthv2 */,
9A0992CC147BA5D0005FBF4B /* yoauth-Prefix.pch */,
9A0992CD147BA5D0005FBF4B /* yoauth.h */,
9A0992CF147BA5D0005FBF4B /* yoauth_utilities.h */,
9A0992D0147BA5D0005FBF4B /* yoauth_utilities.m */,
);
name = code;
path = yoauth/code;
sourceTree = "<group>";
};
9A0992C4147BA5D0005FBF4B /* oauthv1 */ = {
isa = PBXGroup;
children = (
9A0992C5147BA5D0005FBF4B /* yoauthv1.h */,
9A0992C6147BA5D0005FBF4B /* yoauthv1.m */,
9A0992C7147BA5D0005FBF4B /* yoauthv1_internal.h */,
9A0992C8147BA5D0005FBF4B /* yoauthv1_internal.m */,
);
path = oauthv1;
sourceTree = "<group>";
};
9A0992C9147BA5D0005FBF4B /* oauthv2 */ = {
isa = PBXGroup;
children = (
9A0992CA147BA5D0005FBF4B /* yoauthv2.h */,
9A0992CB147BA5D0005FBF4B /* yoauthv2.m */,
9AC0FCC71481287300E020AF /* NSError+YOAuthv2.h */,
9AC0FCC81481287400E020AF /* NSError+YOAuthv2.m */,
);
path = oauthv2;
sourceTree = "<group>";
};
9A0992DC147BA5DC005FBF4B /* tests */ = {
isa = PBXGroup;
children = (
9A0992DD147BA5DC005FBF4B /* InfoPlist.strings */,
9A0992DF147BA5DC005FBF4B /* yoauthTests-Info.plist */,
9A0992E0147BA5DC005FBF4B /* yoauthTests.h */,
9A0992E1147BA5DC005FBF4B /* yoauthTests.m */,
);
name = tests;
path = yoauth/tests;
sourceTree = "<group>";
};
9AC0C508147E9BBE008E5AD5 /* code */ = {
isa = PBXGroup;
children = (
9AC0C509147E9BBE008E5AD5 /* yoauthadditions-Prefix.pch */,
9AC0C519147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.h */,
9AC0C51A147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.m */,
9AC0FC9D147FF39000E020AF /* yoauthadditions.h */,
);
name = code;
path = yoauthadditions/code;
sourceTree = "<group>";
};
9AC0C50F147E9BCB008E5AD5 /* tests */ = {
isa = PBXGroup;
children = (
9AC0C510147E9BCB008E5AD5 /* InfoPlist.strings */,
9AC0C512147E9BCB008E5AD5 /* yoauthadditionsTests-Info.plist */,
9AC0C513147E9BCB008E5AD5 /* yoauthadditionsTests.h */,
9AC0C514147E9BCB008E5AD5 /* yoauthadditionsTests.m */,
);
name = tests;
path = yoauthadditions/tests;
sourceTree = "<group>";
};
9AC0C518147E9BD6008E5AD5 /* yoauthadditions */ = {
isa = PBXGroup;
children = (
9AC0C508147E9BBE008E5AD5 /* code */,
9AC0C50F147E9BCB008E5AD5 /* tests */,
);
name = yoauthadditions;
sourceTree = "<group>";
};
9AC0FCD51481318000E020AF /* Other Frameworks */ = {
isa = PBXGroup;
children = (
9AC0FCD61481318000E020AF /* AppKit.framework */,
9AC0FCD71481318000E020AF /* CoreData.framework */,
9AC0FCD81481318000E020AF /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
9AC0FCD91481318000E020AF /* ytoolkitbundle */ = {
isa = PBXGroup;
children = (
9AC0FCDA1481318000E020AF /* Supporting Files */,
9AC0FCE7148132C900E020AF /* ErrorLocalizedString.strings */,
);
path = ytoolkitbundle;
sourceTree = "<group>";
};
9AC0FCDA1481318000E020AF /* Supporting Files */ = {
isa = PBXGroup;
children = (
9AC0FCDB1481318000E020AF /* ytoolkitbundle-Info.plist */,
9AC0FCDC1481318000E020AF /* InfoPlist.strings */,
9AC0FCDF1481318000E020AF /* ytoolkitbundle-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
9AC17AED147BB3FC00499A4F /* ytoolkit */ = {
isa = PBXGroup;
children = (
9AC17AEE147BB3FC00499A4F /* Supporting Files */,
);
path = ytoolkit;
sourceTree = "<group>";
};
9AC17AEE147BB3FC00499A4F /* Supporting Files */ = {
isa = PBXGroup;
children = (
9AC17AEF147BB3FC00499A4F /* ytoolkit-Info.plist */,
9AC17AF0147BB3FC00499A4F /* InfoPlist.strings */,
9AC17AF3147BB3FC00499A4F /* ytoolkit-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
9AC17B12147BC0A800499A4F /* docs */ = {
isa = PBXGroup;
children = (
);
name = docs;
sourceTree = "<group>";
};
9AE98DCF147D690200D4488F /* externals */ = {
isa = PBXGroup;
children = (
9AE98DD0147D690200D4488F /* asi-http-request additions */,
);
path = externals;
sourceTree = "<group>";
};
9AE98DD0147D690200D4488F /* asi-http-request additions */ = {
isa = PBXGroup;
children = (
9AE98DD1147D690200D4488F /* ASIHTTPRequest+YOAuthv1Request.h */,
9AE98DD2147D690200D4488F /* ASIHTTPRequest+YOAuthv1Request.m */,
);
path = "asi-http-request additions";
sourceTree = "<group>";
};
9AED768F1498FECE001074E5 /* ycocoaaditions-MacOSX */ = {
isa = PBXGroup;
children = (
9AED76901498FECE001074E5 /* Supporting Files */,
);
path = "ycocoaaditions-MacOSX";
sourceTree = "<group>";
};
9AED76901498FECE001074E5 /* Supporting Files */ = {
isa = PBXGroup;
children = (
9AED76911498FECE001074E5 /* ycocoaaditions-MacOSX-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
9A099139147B9D6C005FBF4B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9A09916F147B9E69005FBF4B /* ydefines.h in Headers */,
9A099170147B9E69005FBF4B /* ymacros.h in Headers */,
9A099282147BA57C005FBF4B /* ybase64-Prefix.pch in Headers */,
9A099284147BA57C005FBF4B /* ybase64.h in Headers */,
9AABE9F0147F8E1200A678B3 /* ytiming.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A0991A2147BA059005FBF4B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9A0992B2147BA5B6005FBF4B /* NSDictionary+YHTTPURLDictionary.h in Headers */,
9A0992B4147BA5B6005FBF4B /* NSMutableDictionary+YDuplicatableDictionary.h in Headers */,
9A0992B6147BA5B6005FBF4B /* NSString+YHTTPURLString.h in Headers */,
9A0992B8147BA5B6005FBF4B /* ycocoaadditions-Prefix.pch in Headers */,
9A0992B9147BA5B6005FBF4B /* ycocoaadditions.h in Headers */,
9AABE9F4147F8E1500A678B3 /* ytiming.h in Headers */,
9AABE9F5147F8E1500A678B3 /* ydefines.h in Headers */,
9AABE9F6147F8E1500A678B3 /* ymacros.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A0991D9147BA274005FBF4B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9A099299147BA59A005FBF4B /* NSData+YBase64String.h in Headers */,
9A09929B147BA59A005FBF4B /* NSString+YBase64toData.h in Headers */,
9A09929D147BA59A005FBF4B /* ybase64additions-Prefix.pch in Headers */,
9A09929E147BA59A005FBF4B /* ybase64additions.h in Headers */,
9AABE9F1147F8E1400A678B3 /* ytiming.h in Headers */,
9AABE9F2147F8E1400A678B3 /* ydefines.h in Headers */,
9AABE9F3147F8E1400A678B3 /* ymacros.h in Headers */,
4329A1A1168EAFC1003128C5 /* NSString+YBase64.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A09922F147BA3F6005FBF4B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9A0992D1147BA5D0005FBF4B /* yoauthv1.h in Headers */,
9A0992D3147BA5D0005FBF4B /* yoauthv1_internal.h in Headers */,
9A0992D5147BA5D0005FBF4B /* yoauthv2.h in Headers */,
9A0992D7147BA5D0005FBF4B /* yoauth-Prefix.pch in Headers */,
9A0992D8147BA5D0005FBF4B /* yoauth.h in Headers */,
9A0992DA147BA5D0005FBF4B /* yoauth_utilities.h in Headers */,
9AABE9F7147F8E1600A678B3 /* ytiming.h in Headers */,
9AABE9F8147F8E1600A678B3 /* ydefines.h in Headers */,
9AABE9F9147F8E1600A678B3 /* ymacros.h in Headers */,
9AC0FCC91481287400E020AF /* NSError+YOAuthv2.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AC0C4E2147E9B1C008E5AD5 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9AC0C50C147E9BBE008E5AD5 /* yoauthadditions-Prefix.pch in Headers */,
9AC0C51B147E9C20008E5AD5 /* NSMutableURLRequest+YOAuth.h in Headers */,
9AABE9FA147F8E2C00A678B3 /* ytiming.h in Headers */,
9AABE9FB147F8E2C00A678B3 /* ydefines.h in Headers */,
9AABE9FC147F8E2C00A678B3 /* ymacros.h in Headers */,
9AC0FC9F147FF39000E020AF /* yoauthadditions.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AC17AE8147BB3FC00499A4F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9AC17AF9147BB45000499A4F /* ydefines.h in Headers */,
9AC17AFA147BB45C00499A4F /* ymacros.h in Headers */,
9AC17AFB147BB46500499A4F /* NSDictionary+YHTTPURLDictionary.h in Headers */,
9AC17AFF147BB4AA00499A4F /* ycocoaadditions.h in Headers */,
9AC17B00147BB4BA00499A4F /* NSMutableDictionary+YDuplicatableDictionary.h in Headers */,
9AC17B01147BB4BA00499A4F /* NSString+YHTTPURLString.h in Headers */,
9AC17B03147BB4E200499A4F /* ybase64.h in Headers */,
9AC17B04147BB50C00499A4F /* ybase64additions.h in Headers */,
9AC17B07147BB51E00499A4F /* NSData+YBase64String.h in Headers */,
9AC17B08147BB51E00499A4F /* NSString+YBase64toData.h in Headers */,
9AC17B09147BB56E00499A4F /* yoauthv1.h in Headers */,
9AC17B0A147BB56E00499A4F /* yoauthv2.h in Headers */,
9AC17B0B147BB56E00499A4F /* yoauth.h in Headers */,
9AC17B0C147BB56E00499A4F /* yoauth_utilities.h in Headers */,
9AC17B11147BB58700499A4F /* yoauthv1_internal.h in Headers */,
9AE98E9C147E5FC000D4488F /* ytiming.h in Headers */,
9AABE9FD147F8EB400A678B3 /* NSMutableURLRequest+YOAuth.h in Headers */,
9AC0FCA2147FF3C000E020AF /* yoauthadditions.h in Headers */,
9AC0FCCB14812C7100E020AF /* NSError+YOAuthv2.h in Headers */,
4329A1A2168EAFC1003128C5 /* NSString+YBase64.h in Headers */,
439E13A9171FF232006CA769 /* YUtilities.h in Headers */,
439E13AE171FF24C006CA769 /* YHelper.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9AED768B1498FECE001074E5 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9AED76981498FEF5001074E5 /* NSDictionary+YHTTPURLDictionary.h in Headers */,
9AED769A1498FEF5001074E5 /* NSMutableDictionary+YDuplicatableDictionary.h in Headers */,
9AED769C1498FEF5001074E5 /* NSString+YHTTPURLString.h in Headers */,
9AED769E1498FEF5001074E5 /* ycocoaadditions.h in Headers */,
9AED76AE14990669001074E5 /* ydefines.h in Headers */,
9AED76AF14990669001074E5 /* ymacros.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
439E139A171FF1FE006CA769 /* yutilities */ = {
isa = PBXNativeTarget;
buildConfigurationList = 439E13A6171FF1FE006CA769 /* Build configuration list for PBXNativeTarget "yutilities" */;
buildPhases = (
439E1397171FF1FE006CA769 /* Sources */,
439E1398171FF1FE006CA769 /* Frameworks */,