forked from Taehan-Kim/AppSlate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.pbxproj
1958 lines (1947 loc) · 159 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 */
180B65F914CABC600010DCE3 /* CSToggleButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 180B65F814CABC600010DCE3 /* CSToggleButton.m */; };
18145150146ADA3400AE2B83 /* CSLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1814514F146ADA3400AE2B83 /* CSLabel.m */; };
1819F1CF14FD1F7100A9D65A /* CSAbs.m in Sources */ = {isa = PBXBuildFile; fileRef = 1819F1CE14FD1F7100A9D65A /* CSAbs.m */; };
181EC2BA1751256B00833D22 /* ParseGalleryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 181EC2B91751256B00833D22 /* ParseGalleryViewController.m */; };
181F4F8214F551C900E95C39 /* CSNumComp.m in Sources */ = {isa = PBXBuildFile; fileRef = 181F4F8114F551C900E95C39 /* CSNumComp.m */; };
1841AA3814CA93C8000AC42D /* CSButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 1841AA3714CA93C8000AC42D /* CSButton.m */; };
1851B78C1494825E0029CFEF /* PropertyTVController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1851B78B1494825E0029CFEF /* PropertyTVController.m */; };
18634A22173D659600D2E732 /* MyLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18634A21173D659600D2E732 /* MyLoginViewController.m */; };
186CE11F1702027500F5A176 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 186CE11E1702027500F5A176 /* CoreText.framework */; };
186CE121170202B100F5A176 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 186CE120170202B100F5A176 /* OpenGLES.framework */; };
186CE123170202D000F5A176 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 186CE122170202D000F5A176 /* SystemConfiguration.framework */; };
187299B9150B29D600925283 /* CSStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 187299B8150B29D600925283 /* CSStack.m */; };
1874559A1500970C00AF4106 /* CSTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 187455991500970C00AF4106 /* CSTime.m */; };
1876F51414DC3246006C2B1F /* UIView+JMNoise.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F50414DC3245006C2B1F /* UIView+JMNoise.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
1876F51514DC3246006C2B1F /* close.png in Resources */ = {isa = PBXBuildFile; fileRef = 1876F50614DC3245006C2B1F /* close.png */; };
1876F51614DC3246006C2B1F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 1876F50714DC3245006C2B1F /* [email protected] */; };
1876F51714DC3246006C2B1F /* UAModalPanel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F50A14DC3245006C2B1F /* UAModalPanel.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
1876F51814DC3246006C2B1F /* UATitledModalPanel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F50C14DC3245006C2B1F /* UATitledModalPanel.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
1876F51914DC3246006C2B1F /* UAGradientBackground.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F50F14DC3245006C2B1F /* UAGradientBackground.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
1876F51A14DC3246006C2B1F /* UANoisyGradientBackground.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F51114DC3245006C2B1F /* UANoisyGradientBackground.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
1876F51B14DC3246006C2B1F /* UARoundedRectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F51314DC3245006C2B1F /* UARoundedRectView.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
187BBDD415F1DC9200A0676A /* CSLayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 187BBDD315F1DC9200A0676A /* CSLayerViewController.m */; };
187BF21F14F837BF0038B5CF /* CSStrComp.m in Sources */ = {isa = PBXBuildFile; fileRef = 187BF21E14F837BF0038B5CF /* CSStrComp.m */; };
187C6D3C15025A7E00507D73 /* CSAccelero.m in Sources */ = {isa = PBXBuildFile; fileRef = 187C6D3B15025A7E00507D73 /* CSAccelero.m */; };
188406AB15458E5C004D804A /* CSPlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 188406AA15458E5C004D804A /* CSPlay.m */; };
18874D13173963EE006508F1 /* libAviarySDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 18874D10173963EE006508F1 /* libAviarySDK.a */; };
18874D14173963EE006508F1 /* AviarySDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 18874D12173963EE006508F1 /* AviarySDKResources.bundle */; };
18899B31173AA60F00577A28 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18899B30173AA60F00577A28 /* CFNetwork.framework */; };
18899B33173AA64600577A28 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18899B32173AA64600577A28 /* Security.framework */; };
18899B35173AAB7200577A28 /* FacebookSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18899B34173AAB7200577A28 /* FacebookSDK.framework */; };
18899B37173AABD500577A28 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18899B36173AABD500577A28 /* AdSupport.framework */; settings = {ATTRIBUTES = (Required, ); }; };
1897CB2F1518C550001ADB3E /* CSNote.m in Sources */ = {isa = PBXBuildFile; fileRef = 1897CB2E1518C550001ADB3E /* CSNote.m */; };
189CF0E814D19D9C00C1E66F /* CSSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 189CF0E714D19D9C00C1E66F /* CSSlider.m */; };
18A04CB517410B4000F60971 /* MySignUpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A04CB417410B4000F60971 /* MySignUpViewController.m */; };
18A351211864A5F8001A53B5 /* LiteVersionModal.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A351201864A5F7001A53B5 /* LiteVersionModal.m */; };
18A351251864A824001A53B5 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18A351231864A824001A53B5 /* [email protected] */; };
18A9B8AD14ED4CE70055FDAE /* CSAnd.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A9B8AC14ED4CE70055FDAE /* CSAnd.m */; };
18A9B8B114ED54C60055FDAE /* CSOr.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A9B8B014ED54C60055FDAE /* CSOr.m */; };
18A9B8B414ED55590055FDAE /* CSXor.m in Sources */ = {isa = PBXBuildFile; fileRef = 18A9B8B314ED55590055FDAE /* CSXor.m */; };
18B7C2811503B8EE00802D8F /* CSMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B7C2801503B8EE00802D8F /* CSMapView.m */; };
18B7C2861503BA3F00802D8F /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18B7C2851503BA3F00802D8F /* CoreLocation.framework */; };
18BFB1EE14F1AB4900EC0987 /* CSNand.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BFB1EB14F1AB4900EC0987 /* CSNand.m */; };
18BFB1EF14F1AB4900EC0987 /* CSNor.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BFB1ED14F1AB4900EC0987 /* CSNor.m */; };
18BFB1F314F1AE2600EC0987 /* CSXnor.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BFB1F214F1AE2600EC0987 /* CSXnor.m */; };
18C04D6114F00A3600E3ECDF /* CSTouchButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 18C04D6014F00A3600E3ECDF /* CSTouchButton.m */; };
18C1FF33154EE54E00EA9687 /* libz.1.2.5.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 18C1FF32154EE54E00EA9687 /* libz.1.2.5.dylib */; };
18C22F72150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F6B150BBDA1004FB33E /* [email protected] */; };
18C22F73150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F6C150BBDA1004FB33E /* [email protected] */; };
18C22F74150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F6D150BBDA1004FB33E /* [email protected] */; };
18C22F75150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F6E150BBDA1004FB33E /* [email protected] */; };
18C22F76150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F6F150BBDA1004FB33E /* [email protected] */; };
18C22F77150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F70150BBDA1004FB33E /* [email protected] */; };
18C22F78150BBDA1004FB33E /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 18C22F71150BBDA1004FB33E /* [email protected] */; };
18D48CB814F1B38600503CFA /* CSTee.m in Sources */ = {isa = PBXBuildFile; fileRef = 18D48CB714F1B38600503CFA /* CSTee.m */; };
18D5DF5D186EF478002858F6 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18D5DF5C186EF478002858F6 /* MapKit.framework */; };
18D78B2315558F9C00FBF510 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18D78B2215558F9C00FBF510 /* CoreData.framework */; };
18D78B2515558FBC00FBF510 /* libsqlite3.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 18D78B2415558FBC00FBF510 /* libsqlite3.0.dylib */; };
18D78B2D15559A0300FBF510 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18D78B2C15559A0300FBF510 /* Accelerate.framework */; };
18DD5389174A851E0009FBB2 /* SaveModal.m in Sources */ = {isa = PBXBuildFile; fileRef = 18DD5388174A851E0009FBB2 /* SaveModal.m */; };
18E8A72214B7488A00E61C05 /* PropertyLinkTVController.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E8A72114B7488A00E61C05 /* PropertyLinkTVController.m */; };
5404080214AB0B63002A764B /* HRBrightnessCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 540407F714AB0B63002A764B /* HRBrightnessCursor.m */; };
5404080314AB0B63002A764B /* HRCgUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 540407F914AB0B63002A764B /* HRCgUtil.m */; };
5404080414AB0B63002A764B /* HRColorCursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 540407FB14AB0B63002A764B /* HRColorCursor.m */; };
5404080514AB0B63002A764B /* HRColorPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 540407FD14AB0B63002A764B /* HRColorPickerView.m */; };
5404080614AB0B63002A764B /* HRColorPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 540407FF14AB0B63002A764B /* HRColorPickerViewController.m */; };
5404080714AB0B63002A764B /* HRColorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 5404080114AB0B63002A764B /* HRColorUtil.m */; };
540D941A187BB3E700684057 /* CSMakeCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 540D9419187BB3E700684057 /* CSMakeCode.m */; };
540D941D187BD81900684057 /* CodingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 540D941C187BD81900684057 /* CodingViewController.m */; };
540DD846151036BA0073E320 /* CSNumLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 540DD845151036BA0073E320 /* CSNumLabel.m */; };
540DD84E15108D760073E320 /* CSShowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 540DD84D15108D760073E320 /* CSShowLineView.m */; };
540F670B18C442A900F6DDDF /* Parse.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18899B2E173AA5D100577A28 /* Parse.framework */; };
541672B11860443B00332D78 /* AppSlateLite-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 541672B01860443B00332D78 /* AppSlateLite-Info.plist */; };
541F47DE14E4C2B400A90F5C /* objectDrop.wav in Resources */ = {isa = PBXBuildFile; fileRef = 541F47DB14E4C2B400A90F5C /* objectDrop.wav */; };
541F47DF14E4C2B400A90F5C /* run.wav in Resources */ = {isa = PBXBuildFile; fileRef = 541F47DC14E4C2B400A90F5C /* run.wav */; };
541F47E014E4C2B400A90F5C /* tock.wav in Resources */ = {isa = PBXBuildFile; fileRef = 541F47DD14E4C2B400A90F5C /* tock.wav */; };
541F47E914E4F27F00A90F5C /* delSound.wav in Resources */ = {isa = PBXBuildFile; fileRef = 541F47E614E4F27F00A90F5C /* delSound.wav */; };
541F47EA14E4F27F00A90F5C /* drawerClose.wav in Resources */ = {isa = PBXBuildFile; fileRef = 541F47E714E4F27F00A90F5C /* drawerClose.wav */; };
541F47EB14E4F27F00A90F5C /* drawerOpen.wav in Resources */ = {isa = PBXBuildFile; fileRef = 541F47E814E4F27F00A90F5C /* drawerOpen.wav */; };
54207C08174CC0C800FD1ED1 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 54207C04174CC0C800FD1ED1 /* [email protected] */; };
54207C0A174CC0C800FD1ED1 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 54207C06174CC0C800FD1ED1 /* [email protected] */; };
5423B430160188B300E77768 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 5423B42F160188B300E77768 /* [email protected] */; };
54252B6114F795C80057DC39 /* CSCalc.m in Sources */ = {isa = PBXBuildFile; fileRef = 54252B6014F795C80057DC39 /* CSCalc.m */; };
54252B6514F79E1F0057DC39 /* CSAtof.m in Sources */ = {isa = PBXBuildFile; fileRef = 54252B6414F79E1E0057DC39 /* CSAtof.m */; };
542A310814AD5B8B00150060 /* AlignSettingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 542A310714AD5B8B00150060 /* AlignSettingController.m */; };
542AD3EF15F44FCD00CC4AEE /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 1851EB07158C7D64001D352E /* [email protected] */; };
542AD3F215F459B700CC4AEE /* CSBToothPeer.m in Sources */ = {isa = PBXBuildFile; fileRef = 542AD3F115F459B700CC4AEE /* CSBToothPeer.m */; };
542AD40915F4C9C700CC4AEE /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 542AD40715F4C9C700CC4AEE /* [email protected] */; };
542F3B4D14C69C710066B13D /* BookshelfViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B4C14C69C710066B13D /* BookshelfViewController.m */; };
542F3B6A14C6A17B0066B13D /* AQGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B5614C6A17B0066B13D /* AQGridView.m */; };
542F3B6B14C6A17B0066B13D /* AQGridViewAnimatorItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B5814C6A17B0066B13D /* AQGridViewAnimatorItem.m */; };
542F3B6C14C6A17B0066B13D /* AQGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B5B14C6A17B0066B13D /* AQGridViewCell.m */; };
542F3B6D14C6A17B0066B13D /* AQGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B5D14C6A17B0066B13D /* AQGridViewController.m */; };
542F3B6E14C6A17B0066B13D /* AQGridViewData.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B5F14C6A17B0066B13D /* AQGridViewData.m */; };
542F3B6F14C6A17B0066B13D /* AQGridViewUpdateInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B6114C6A17B0066B13D /* AQGridViewUpdateInfo.m */; };
542F3B7014C6A17B0066B13D /* AQGridViewUpdateItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B6314C6A17B0066B13D /* AQGridViewUpdateItem.m */; };
542F3B7114C6A17B0066B13D /* NSIndexSet+AQIndexesOutsideSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B6514C6A17B0066B13D /* NSIndexSet+AQIndexesOutsideSet.m */; };
542F3B7214C6A17B0066B13D /* NSIndexSet+AQIsSetContiguous.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B6714C6A17B0066B13D /* NSIndexSet+AQIsSetContiguous.m */; };
542F3B7314C6A17B0066B13D /* UIColor+AQGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B6914C6A17B0066B13D /* UIColor+AQGridView.m */; };
542F3B7614C6B85B0066B13D /* FileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 542F3B7514C6B85B0066B13D /* FileCell.m */; };
5432D2631868306A00B41393 /* UIImage+ImageEffects.m in Sources */ = {isa = PBXBuildFile; fileRef = 5432D2621868306A00B41393 /* UIImage+ImageEffects.m */; };
5434EFEC14A0A65600433710 /* StringSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5434EFEB14A0A65600433710 /* StringSettingViewController.m */; };
5438D641146A68AB00CE9136 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5438D640146A68AB00CE9136 /* UIKit.framework */; };
5438D643146A68AB00CE9136 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5438D642146A68AB00CE9136 /* Foundation.framework */; };
5438D645146A68AB00CE9136 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5438D644146A68AB00CE9136 /* CoreGraphics.framework */; };
5438D64B146A68AB00CE9136 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5438D649146A68AB00CE9136 /* InfoPlist.strings */; };
5438D64D146A68AB00CE9136 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 5438D64C146A68AB00CE9136 /* main.m */; };
5438D651146A68AB00CE9136 /* CSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5438D650146A68AB00CE9136 /* CSAppDelegate.m */; };
5438D654146A68AB00CE9136 /* CSMainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5438D653146A68AB00CE9136 /* CSMainViewController.m */; };
5438D657146A68AB00CE9136 /* CSFlipsideViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5438D656146A68AB00CE9136 /* CSFlipsideViewController.m */; };
5438D660146A68AB00CE9136 /* CSFlipsideViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5438D65E146A68AB00CE9136 /* CSFlipsideViewController.xib */; };
5438D674146A949600CE9136 /* CSGearObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 5438D673146A949600CE9136 /* CSGearObject.m */; };
5439B32A14E0FC4F0081E7F4 /* CSLayerTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5439B32914E0FC4F0081E7F4 /* CSLayerTableViewController.m */; };
543C33D114FB723B00B44618 /* CSImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 543C33D014FB723A00B44618 /* CSImage.m */; };
544179AD17BA247A00A69B4F /* CSStoreView.m in Sources */ = {isa = PBXBuildFile; fileRef = 544179AC17BA247A00A69B4F /* CSStoreView.m */; };
54421DD814AC5D84006226B4 /* CMFontSelectTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54421DCE14AC5D84006226B4 /* CMFontSelectTableViewController.m */; };
54421DD914AC5D84006226B4 /* CMFontSelectTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 54421DCF14AC5D84006226B4 /* CMFontSelectTableViewController.xib */; };
54421DDA14AC5D84006226B4 /* CMFontStyleSelectTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54421DD114AC5D84006226B4 /* CMFontStyleSelectTableViewController.m */; };
54421DDB14AC5D84006226B4 /* CMFontStyleSelectTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 54421DD214AC5D84006226B4 /* CMFontStyleSelectTableViewController.xib */; };
54421DDC14AC5D84006226B4 /* CMTextStylePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54421DD414AC5D84006226B4 /* CMTextStylePickerViewController.m */; };
54421DDD14AC5D84006226B4 /* CMTextStylePickerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 54421DD514AC5D84006226B4 /* CMTextStylePickerViewController.xib */; };
54421DDE14AC5D84006226B4 /* CMUpDownControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 54421DD714AC5D84006226B4 /* CMUpDownControl.m */; };
54421DE214AC6153006226B4 /* FontSettingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54421DE114AC6153006226B4 /* FontSettingController.m */; };
54471F19150F0EDD00354AEC /* CSFBSend.m in Sources */ = {isa = PBXBuildFile; fileRef = 54471F18150F0EDD00354AEC /* CSFBSend.m */; };
544A14D11768535F0034A3FD /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 544A14D01768535F0034A3FD /* Media.xcassets */; };
544A8650173CAD8B0065824A /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 544A864E173CAD8B0065824A /* [email protected] */; };
5450089714ECA25600F98501 /* CSAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5450089614ECA25600F98501 /* CSAlert.m */; };
5450089B14ECCA1400F98501 /* CSRect.m in Sources */ = {isa = PBXBuildFile; fileRef = 5450089A14ECCA1400F98501 /* CSRect.m */; };
545008B414ED0D6200F98501 /* CSNot.m in Sources */ = {isa = PBXBuildFile; fileRef = 545008B314ED0D6200F98501 /* CSNot.m */; };
54523F271557712000B80F92 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 54523F241557712000B80F92 /* NSData+Base64.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
5457456917F57FBC00EFBC22 /* MultipeerConnectivity.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5457456817F57FBC00EFBC22 /* MultipeerConnectivity.framework */; };
545CF92B14764FEA00D3B544 /* CSBlueprintController.m in Sources */ = {isa = PBXBuildFile; fileRef = 545CF92A14764FEA00D3B544 /* CSBlueprintController.m */; };
5463E3F815074B90008D4717 /* CSTwitTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E3F515074B90008D4717 /* CSTwitTable.m */; };
5463E3F915074B90008D4717 /* TTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E3F715074B90008D4717 /* TTableCell.m */; };
5463E408150751E2008D4717 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E3FC150751E2008D4717 /* SDImageCache.m */; };
5463E409150751E2008D4717 /* SDProfileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E3FF150751E2008D4717 /* SDProfileCache.m */; };
5463E40A150751E2008D4717 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E401150751E2008D4717 /* SDWebImageDownloader.m */; };
5463E40B150751E2008D4717 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E404150751E2008D4717 /* SDWebImageManager.m */; };
5463E40C150751E2008D4717 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5463E407150751E2008D4717 /* UIImageView+WebCache.m */; };
5465684415EB84980017739D /* TSActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 5465683A15EB84980017739D /* TSActionSheet.m */; };
5465684515EB84980017739D /* TSPopoverController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5465683C15EB84980017739D /* TSPopoverController.m */; };
5465684615EB84980017739D /* TSPopoverPopoverView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5465683E15EB84980017739D /* TSPopoverPopoverView.m */; };
5465684715EB84980017739D /* TSPopoverTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5465684115EB84980017739D /* TSPopoverTouchView.m */; };
5465684815EB84980017739D /* UIBarButtonItem+WEPopover.m in Sources */ = {isa = PBXBuildFile; fileRef = 5465684315EB84980017739D /* UIBarButtonItem+WEPopover.m */; };
546A8E5214B5A4A900AB71BD /* CSBlueprintView.m in Sources */ = {isa = PBXBuildFile; fileRef = 546A8E5114B5A4A900AB71BD /* CSBlueprintView.m */; };
546B50DD14FE1E9900EF264A /* CSWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = 546B50DC14FE1E9800EF264A /* CSWeb.m */; };
546E3F2517B9FA0200A40187 /* CSWeiboComposer.m in Sources */ = {isa = PBXBuildFile; fileRef = 546E3F2417B9FA0200A40187 /* CSWeiboComposer.m */; };
5474F86D1470BF01002C8652 /* CSTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 5474F86C1470BF01002C8652 /* CSTextField.m */; };
547872B0156B5E0900CAAC19 /* Default-Portrait~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 547872AF156B5E0900CAAC19 /* Default-Portrait~ipad.png */; };
547AAF0814C9157C00B6EF08 /* CSSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 547AAF0714C9157C00B6EF08 /* CSSwitch.m */; };
548260BE14FC9E8100AE8005 /* CSRand.m in Sources */ = {isa = PBXBuildFile; fileRef = 548260BD14FC9E8100AE8005 /* CSRand.m */; };
548260CE14FCE86200AE8005 /* AppSettingModal.m in Sources */ = {isa = PBXBuildFile; fileRef = 548260CD14FCE86200AE8005 /* AppSettingModal.m */; };
548260D114FCE93D00AE8005 /* InfoModal.m in Sources */ = {isa = PBXBuildFile; fileRef = 548260D014FCE93D00AE8005 /* InfoModal.m */; };
54856F1A17533D690013A10E /* WorldCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 54856F1917533D690013A10E /* WorldCell.m */; };
54857B0D155B637300004CCA /* CSCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 54857B0C155B637300004CCA /* CSCamera.m */; };
54857B10155B6B2E00004CCA /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54857B0F155B6B2E00004CCA /* MobileCoreServices.framework */; };
5486166A14739CCA0007709E /* UserContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 5486166914739CCA0007709E /* UserContext.m */; };
5486166E14739D950007709E /* WaitView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5486166D14739D950007709E /* WaitView.m */; };
548907E014EE24560030A34E /* WelcomeMovieModal.m in Sources */ = {isa = PBXBuildFile; fileRef = 548907DF14EE24560030A34E /* WelcomeMovieModal.m */; };
548907E614EE46980030A34E /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 548907E514EE46980030A34E /* MediaPlayer.framework */; };
54893428151193A500BF276F /* CSRadDeg.m in Sources */ = {isa = PBXBuildFile; fileRef = 54893427151193A500BF276F /* CSRadDeg.m */; };
5489342C1511B2CA00BF276F /* CSTrigonometric.m in Sources */ = {isa = PBXBuildFile; fileRef = 5489342B1511B2CA00BF276F /* CSTrigonometric.m */; };
548A7D1714DF69FD0044FF00 /* PaperSetModal.m in Sources */ = {isa = PBXBuildFile; fileRef = 548A7D1614DF69FD0044FF00 /* PaperSetModal.m */; };
548B4B1C14FC66E4007EE7D8 /* CSHLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 548B4B1B14FC66E4007EE7D8 /* CSHLine.m */; };
548B4B2014FC70F3007EE7D8 /* CSVLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 548B4B1F14FC70F3007EE7D8 /* CSVLine.m */; };
548B4B2614FC7778007EE7D8 /* CSTick.m in Sources */ = {isa = PBXBuildFile; fileRef = 548B4B2514FC7778007EE7D8 /* CSTick.m */; };
548F0F4F17AB994600531AB6 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 548F0F4E17AB994600531AB6 /* CoreMotion.framework */; };
549313DC14D11C3E00F2E7DC /* FlipCounterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 549313DB14D11C3E00F2E7DC /* FlipCounterView.m */; };
549313DE14D11C6000F2E7DC /* digits.png in Resources */ = {isa = PBXBuildFile; fileRef = 549313DD14D11C6000F2E7DC /* digits.png */; };
549313E114D11F0200F2E7DC /* CSFlipCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 549313E014D11F0200F2E7DC /* CSFlipCounter.m */; };
549313E414D1388100F2E7DC /* NumberSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 549313E314D1388100F2E7DC /* NumberSettingViewController.m */; };
5493734314A8864F00697A40 /* BButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5493734214A8864F00697A40 /* BButton.m */; };
5493734514A88E3500697A40 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5493734414A88E3500697A40 /* QuartzCore.framework */; };
549BAF8C150DC35400EDC162 /* CSQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 549BAF8B150DC35400EDC162 /* CSQueue.m */; };
54A8616E1589BBBA00693BE7 /* libxml2.2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 54A8616D1589BBBA00693BE7 /* libxml2.2.dylib */; };
54A861711589CD9700693BE7 /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54A861701589CD9700693BE7 /* Social.framework */; settings = {ATTRIBUTES = (Required, ); }; };
54A8A26F1505F2B4004F4B19 /* BlogRss.m in Sources */ = {isa = PBXBuildFile; fileRef = 54A8A26C1505F2B4004F4B19 /* BlogRss.m */; };
54A8A2701505F2B4004F4B19 /* BlogRssParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 54A8A26E1505F2B4004F4B19 /* BlogRssParser.m */; };
54A8A2761505F915004F4B19 /* CSRssTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 54A8A2751505F915004F4B19 /* CSRssTable.m */; };
54AB74801504D17200B355DA /* CSLinkStr.m in Sources */ = {isa = PBXBuildFile; fileRef = 54AB747F1504D17200B355DA /* CSLinkStr.m */; };
54B5BDC618C97D700070911D /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 54B5BDC418C97D700070911D /* [email protected] */; };
54B5BDC818C98BA70070911D /* InfoIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 54B5BDC718C98BA70070911D /* InfoIcon.png */; };
54BA25AB1755C3420075D78F /* UIBAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54BA25AA1755C3420075D78F /* UIBAlertView.m */; };
54C02A2E176864920079ED2B /* GameKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18E12EDD15ECB7FA005CCF65 /* GameKit.framework */; };
54C02A2F176864B80079ED2B /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18D78B2015558F9400FBF510 /* StoreKit.framework */; };
54C4317017CF0509004B150D /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 54C4316E17CF0509004B150D /* Localizable.strings */; };
54C4317217CF070D004B150D /* AppSlate-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 5438D648146A68AB00CE9136 /* AppSlate-Info.plist */; };
54CAB49F14F33CAC00E16FC9 /* CSTextAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 54CAB49E14F33CAC00E16FC9 /* CSTextAlert.m */; };
54CAB4A314F344F800E16FC9 /* CSMailComposer.m in Sources */ = {isa = PBXBuildFile; fileRef = 54CAB4A214F344F800E16FC9 /* CSMailComposer.m */; };
54D0A40F14F35DC800652002 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54D0A40E14F35DC800652002 /* MessageUI.framework */; };
54D0A41314F36F2F00652002 /* CSTwitComposer.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D0A41214F36F2F00652002 /* CSTwitComposer.m */; };
54D0A41D14F3724100652002 /* Accounts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54D0A41C14F3724100652002 /* Accounts.framework */; };
54D0A42C14F38C2900652002 /* CSAlbum.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D0A42B14F38C2900652002 /* CSAlbum.m */; };
54D0A42E14F38CC400652002 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54D0A42D14F38CC400652002 /* AssetsLibrary.framework */; };
54D13BE814D7B542005D4616 /* CSBulb.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D13BE714D7B542005D4616 /* CSBulb.m */; };
54D326AD14C7F57A00AF1CDE /* CSBtnTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D326AC14C7F57A00AF1CDE /* CSBtnTextField.m */; };
54D4EAF214DB712D00973536 /* JWFolders.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D4EAED14DB712D00973536 /* JWFolders.m */; };
54D4EAF314DB712D00973536 /* UIScreen+Scale.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D4EAEF14DB712D00973536 /* UIScreen+Scale.m */; };
54D4EAF414DB712D00973536 /* UIView+Screenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D4EAF114DB712D00973536 /* UIView+Screenshot.m */; };
54D7326614B6C8EF0092FD98 /* CMPopTipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D7326514B6C8EF0092FD98 /* CMPopTipView.m */; };
54E5AD3C151B142B0017D2A7 /* CSClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E5AD3B151B142B0017D2A7 /* CSClock.m */; };
54E5AD4D151B14D90017D2A7 /* ClockView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E5AD45151B14D90017D2A7 /* ClockView.m */; };
54E5BBE214AC05D000C84F69 /* SettingViewCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E5BBE114AC05D000C84F69 /* SettingViewCommon.m */; };
54EB155514E3BD9D004EB231 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54EB155414E3BD9D004EB231 /* AudioToolbox.framework */; };
54EB155914E3C724004EB231 /* setSound.wav in Resources */ = {isa = PBXBuildFile; fileRef = 54EB155814E3C724004EB231 /* setSound.wav */; };
54F3264914BD6944005EC167 /* BoolSettingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F3264814BD6944005EC167 /* BoolSettingController.m */; };
54FC43C814D24C550015E977 /* CSTable.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FC43C714D24C550015E977 /* CSTable.m */; };
54FC43CC14D288080015E977 /* CellSettingController.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FC43CB14D288080015E977 /* CellSettingController.m */; };
54FD865F14F65A5700A1FE33 /* CSProgressBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FD865E14F65A5700A1FE33 /* CSProgressBar.m */; };
9A59654518CA25A50086D631 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 9A59654418CA25A50086D631 /* [email protected] */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
180B65F714CABC600010DCE3 /* CSToggleButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSToggleButton.h; path = GearObjects/CSToggleButton.h; sourceTree = "<group>"; };
180B65F814CABC600010DCE3 /* CSToggleButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSToggleButton.m; path = GearObjects/CSToggleButton.m; sourceTree = "<group>"; };
1814514E146ADA3400AE2B83 /* CSLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSLabel.h; path = GearObjects/CSLabel.h; sourceTree = "<group>"; };
1814514F146ADA3400AE2B83 /* CSLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSLabel.m; path = GearObjects/CSLabel.m; sourceTree = "<group>"; };
1819F1CD14FD1F7100A9D65A /* CSAbs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSAbs.h; path = GearObjects/CSAbs.h; sourceTree = "<group>"; };
1819F1CE14FD1F7100A9D65A /* CSAbs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSAbs.m; path = GearObjects/CSAbs.m; sourceTree = "<group>"; };
181EC2B81751256B00833D22 /* ParseGalleryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ParseGalleryViewController.h; path = FileGallery/ParseGalleryViewController.h; sourceTree = "<group>"; };
181EC2B91751256B00833D22 /* ParseGalleryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ParseGalleryViewController.m; path = FileGallery/ParseGalleryViewController.m; sourceTree = "<group>"; };
181F4F8014F551C900E95C39 /* CSNumComp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSNumComp.h; path = GearObjects/CSNumComp.h; sourceTree = "<group>"; };
181F4F8114F551C900E95C39 /* CSNumComp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSNumComp.m; path = GearObjects/CSNumComp.m; sourceTree = "<group>"; };
1841AA3614CA93C8000AC42D /* CSButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSButton.h; path = GearObjects/CSButton.h; sourceTree = "<group>"; };
1841AA3714CA93C8000AC42D /* CSButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSButton.m; path = GearObjects/CSButton.m; sourceTree = "<group>"; };
1851B78A1494825E0029CFEF /* PropertyTVController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PropertyTVController.h; path = Blueprint/PropertyTVController.h; sourceTree = "<group>"; };
1851B78B1494825E0029CFEF /* PropertyTVController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PropertyTVController.m; path = Blueprint/PropertyTVController.m; sourceTree = "<group>"; };
1851EB07158C7D64001D352E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "../[email protected]"; sourceTree = "<group>"; };
18634A20173D659600D2E732 /* MyLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MyLoginViewController.h; path = FileGallery/MyLoginViewController.h; sourceTree = "<group>"; };
18634A21173D659600D2E732 /* MyLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MyLoginViewController.m; path = FileGallery/MyLoginViewController.m; sourceTree = "<group>"; };
186CE11E1702027500F5A176 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
186CE120170202B100F5A176 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
186CE122170202D000F5A176 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
187299B7150B29D600925283 /* CSStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSStack.h; path = GearObjects/CSStack.h; sourceTree = "<group>"; };
187299B8150B29D600925283 /* CSStack.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSStack.m; path = GearObjects/CSStack.m; sourceTree = "<group>"; };
187455981500970C00AF4106 /* CSTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTime.h; path = GearObjects/CSTime.h; sourceTree = "<group>"; };
187455991500970C00AF4106 /* CSTime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTime.m; path = GearObjects/CSTime.m; sourceTree = "<group>"; };
1876F50314DC3245006C2B1F /* UIView+JMNoise.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JMNoise.h"; sourceTree = "<group>"; };
1876F50414DC3245006C2B1F /* UIView+JMNoise.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JMNoise.m"; sourceTree = "<group>"; };
1876F50614DC3245006C2B1F /* close.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = close.png; sourceTree = "<group>"; };
1876F50714DC3245006C2B1F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
1876F50914DC3245006C2B1F /* UAModalPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UAModalPanel.h; sourceTree = "<group>"; };
1876F50A14DC3245006C2B1F /* UAModalPanel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UAModalPanel.m; sourceTree = "<group>"; };
1876F50B14DC3245006C2B1F /* UATitledModalPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UATitledModalPanel.h; sourceTree = "<group>"; };
1876F50C14DC3245006C2B1F /* UATitledModalPanel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UATitledModalPanel.m; sourceTree = "<group>"; };
1876F50E14DC3245006C2B1F /* UAGradientBackground.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UAGradientBackground.h; sourceTree = "<group>"; };
1876F50F14DC3245006C2B1F /* UAGradientBackground.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UAGradientBackground.m; sourceTree = "<group>"; };
1876F51014DC3245006C2B1F /* UANoisyGradientBackground.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UANoisyGradientBackground.h; sourceTree = "<group>"; };
1876F51114DC3245006C2B1F /* UANoisyGradientBackground.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UANoisyGradientBackground.m; sourceTree = "<group>"; };
1876F51214DC3245006C2B1F /* UARoundedRectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UARoundedRectView.h; sourceTree = "<group>"; };
1876F51314DC3245006C2B1F /* UARoundedRectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UARoundedRectView.m; sourceTree = "<group>"; };
187BBDD215F1DC9200A0676A /* CSLayerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSLayerViewController.h; sourceTree = "<group>"; };
187BBDD315F1DC9200A0676A /* CSLayerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CSLayerViewController.m; sourceTree = "<group>"; };
187BF21D14F837BF0038B5CF /* CSStrComp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSStrComp.h; path = GearObjects/CSStrComp.h; sourceTree = "<group>"; };
187BF21E14F837BF0038B5CF /* CSStrComp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSStrComp.m; path = GearObjects/CSStrComp.m; sourceTree = "<group>"; };
187C6D3A15025A7E00507D73 /* CSAccelero.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSAccelero.h; path = GearObjects/CSAccelero.h; sourceTree = "<group>"; };
187C6D3B15025A7E00507D73 /* CSAccelero.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSAccelero.m; path = GearObjects/CSAccelero.m; sourceTree = "<group>"; };
188406A915458E5C004D804A /* CSPlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSPlay.h; path = GearObjects/CSPlay.h; sourceTree = "<group>"; };
188406AA15458E5C004D804A /* CSPlay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSPlay.m; path = GearObjects/CSPlay.m; sourceTree = "<group>"; };
18874D0A173963EE006508F1 /* AFOpenGLManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFOpenGLManager.h; sourceTree = "<group>"; };
18874D0B173963EE006508F1 /* AFPhotoEditorContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFPhotoEditorContext.h; sourceTree = "<group>"; };
18874D0C173963EE006508F1 /* AFPhotoEditorController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFPhotoEditorController.h; sourceTree = "<group>"; };
18874D0D173963EE006508F1 /* AFPhotoEditorControllerOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFPhotoEditorControllerOptions.h; sourceTree = "<group>"; };
18874D0E173963EE006508F1 /* AFPhotoEditorCustomization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFPhotoEditorCustomization.h; sourceTree = "<group>"; };
18874D0F173963EE006508F1 /* AFPhotoEditorSession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFPhotoEditorSession.h; sourceTree = "<group>"; };
18874D10173963EE006508F1 /* libAviarySDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libAviarySDK.a; sourceTree = "<group>"; };
18874D12173963EE006508F1 /* AviarySDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AviarySDKResources.bundle; sourceTree = "<group>"; };
18899B2E173AA5D100577A28 /* Parse.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Parse.framework; path = Utils/Parse.framework; sourceTree = "<group>"; };
18899B30173AA60F00577A28 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
18899B32173AA64600577A28 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
18899B34173AAB7200577A28 /* FacebookSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FacebookSDK.framework; path = Utils/FacebookSDK.framework; sourceTree = "<group>"; };
18899B36173AABD500577A28 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
1890514817E1E571003DD4F6 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "../[email protected]"; sourceTree = "<group>"; };
1890514917E1E591003DD4F6 /* Icon~ipad7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon~ipad7.png"; path = "../Icon~ipad7.png"; sourceTree = "<group>"; };
1890514A17E1E59E003DD4F6 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "../[email protected]"; sourceTree = "<group>"; };
1897CB2D1518C550001ADB3E /* CSNote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSNote.h; path = GearObjects/CSNote.h; sourceTree = "<group>"; };
1897CB2E1518C550001ADB3E /* CSNote.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSNote.m; path = GearObjects/CSNote.m; sourceTree = "<group>"; };
189CF0E614D19D9C00C1E66F /* CSSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSSlider.h; path = GearObjects/CSSlider.h; sourceTree = "<group>"; };
189CF0E714D19D9C00C1E66F /* CSSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSSlider.m; path = GearObjects/CSSlider.m; sourceTree = "<group>"; };
18A04CB317410B4000F60971 /* MySignUpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MySignUpViewController.h; path = FileGallery/MySignUpViewController.h; sourceTree = "<group>"; };
18A04CB417410B4000F60971 /* MySignUpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MySignUpViewController.m; path = FileGallery/MySignUpViewController.m; sourceTree = "<group>"; };
18A3511F1864A5F7001A53B5 /* LiteVersionModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LiteVersionModal.h; sourceTree = "<group>"; };
18A351201864A5F7001A53B5 /* LiteVersionModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LiteVersionModal.m; sourceTree = "<group>"; };
18A351231864A824001A53B5 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18A9B8AB14ED4CE70055FDAE /* CSAnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSAnd.h; path = GearObjects/CSAnd.h; sourceTree = "<group>"; };
18A9B8AC14ED4CE70055FDAE /* CSAnd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSAnd.m; path = GearObjects/CSAnd.m; sourceTree = "<group>"; };
18A9B8AF14ED54C60055FDAE /* CSOr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSOr.h; path = GearObjects/CSOr.h; sourceTree = "<group>"; };
18A9B8B014ED54C60055FDAE /* CSOr.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSOr.m; path = GearObjects/CSOr.m; sourceTree = "<group>"; };
18A9B8B214ED55590055FDAE /* CSXor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSXor.h; path = GearObjects/CSXor.h; sourceTree = "<group>"; };
18A9B8B314ED55590055FDAE /* CSXor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSXor.m; path = GearObjects/CSXor.m; sourceTree = "<group>"; };
18B7C27F1503B8EE00802D8F /* CSMapView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSMapView.h; path = GearObjects/CSMapView.h; sourceTree = "<group>"; };
18B7C2801503B8EE00802D8F /* CSMapView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSMapView.m; path = GearObjects/CSMapView.m; sourceTree = "<group>"; };
18B7C2851503BA3F00802D8F /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
18BFB1EA14F1AB4900EC0987 /* CSNand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSNand.h; path = GearObjects/CSNand.h; sourceTree = "<group>"; };
18BFB1EB14F1AB4900EC0987 /* CSNand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSNand.m; path = GearObjects/CSNand.m; sourceTree = "<group>"; };
18BFB1EC14F1AB4900EC0987 /* CSNor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSNor.h; path = GearObjects/CSNor.h; sourceTree = "<group>"; };
18BFB1ED14F1AB4900EC0987 /* CSNor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSNor.m; path = GearObjects/CSNor.m; sourceTree = "<group>"; };
18BFB1F114F1AE2600EC0987 /* CSXnor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSXnor.h; path = GearObjects/CSXnor.h; sourceTree = "<group>"; };
18BFB1F214F1AE2600EC0987 /* CSXnor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSXnor.m; path = GearObjects/CSXnor.m; sourceTree = "<group>"; };
18C04D5F14F00A3600E3ECDF /* CSTouchButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTouchButton.h; path = GearObjects/CSTouchButton.h; sourceTree = "<group>"; };
18C04D6014F00A3600E3ECDF /* CSTouchButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTouchButton.m; path = GearObjects/CSTouchButton.m; sourceTree = "<group>"; };
18C1FF32154EE54E00EA9687 /* libz.1.2.5.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.1.2.5.dylib; path = usr/lib/libz.1.2.5.dylib; sourceTree = SDKROOT; };
18C22F6B150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18C22F6C150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18C22F6D150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18C22F6E150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18C22F6F150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18C22F70150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18C22F71150BBDA1004FB33E /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
18D48CB614F1B38600503CFA /* CSTee.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTee.h; path = GearObjects/CSTee.h; sourceTree = "<group>"; };
18D48CB714F1B38600503CFA /* CSTee.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTee.m; path = GearObjects/CSTee.m; sourceTree = "<group>"; };
18D5DF5C186EF478002858F6 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
18D78B2015558F9400FBF510 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
18D78B2215558F9C00FBF510 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
18D78B2415558FBC00FBF510 /* libsqlite3.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.0.dylib; path = usr/lib/libsqlite3.0.dylib; sourceTree = SDKROOT; };
18D78B2C15559A0300FBF510 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
18DD5387174A851E0009FBB2 /* SaveModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SaveModal.h; sourceTree = "<group>"; };
18DD5388174A851E0009FBB2 /* SaveModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SaveModal.m; sourceTree = "<group>"; };
18E12EDD15ECB7FA005CCF65 /* GameKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameKit.framework; path = System/Library/Frameworks/GameKit.framework; sourceTree = SDKROOT; };
18E8A72014B7488A00E61C05 /* PropertyLinkTVController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PropertyLinkTVController.h; path = Blueprint/PropertyLinkTVController.h; sourceTree = "<group>"; };
18E8A72114B7488A00E61C05 /* PropertyLinkTVController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PropertyLinkTVController.m; path = Blueprint/PropertyLinkTVController.m; sourceTree = "<group>"; };
540407F614AB0B63002A764B /* HRBrightnessCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRBrightnessCursor.h; sourceTree = "<group>"; };
540407F714AB0B63002A764B /* HRBrightnessCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRBrightnessCursor.m; sourceTree = "<group>"; };
540407F814AB0B63002A764B /* HRCgUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRCgUtil.h; sourceTree = "<group>"; };
540407F914AB0B63002A764B /* HRCgUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRCgUtil.m; sourceTree = "<group>"; };
540407FA14AB0B63002A764B /* HRColorCursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorCursor.h; sourceTree = "<group>"; };
540407FB14AB0B63002A764B /* HRColorCursor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorCursor.m; sourceTree = "<group>"; };
540407FC14AB0B63002A764B /* HRColorPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerView.h; sourceTree = "<group>"; };
540407FD14AB0B63002A764B /* HRColorPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorPickerView.m; sourceTree = "<group>"; };
540407FE14AB0B63002A764B /* HRColorPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorPickerViewController.h; sourceTree = "<group>"; };
540407FF14AB0B63002A764B /* HRColorPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorPickerViewController.m; sourceTree = "<group>"; };
5404080014AB0B63002A764B /* HRColorUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HRColorUtil.h; sourceTree = "<group>"; };
5404080114AB0B63002A764B /* HRColorUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HRColorUtil.m; sourceTree = "<group>"; };
540D9418187BB3E700684057 /* CSMakeCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSMakeCode.h; path = CodeGenerator/CSMakeCode.h; sourceTree = "<group>"; };
540D9419187BB3E700684057 /* CSMakeCode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSMakeCode.m; path = CodeGenerator/CSMakeCode.m; sourceTree = "<group>"; };
540D941B187BD81900684057 /* CodingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CodingViewController.h; path = CodeGenerator/CodingViewController.h; sourceTree = "<group>"; };
540D941C187BD81900684057 /* CodingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CodingViewController.m; path = CodeGenerator/CodingViewController.m; sourceTree = "<group>"; };
540DD844151036BA0073E320 /* CSNumLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSNumLabel.h; path = GearObjects/CSNumLabel.h; sourceTree = "<group>"; };
540DD845151036BA0073E320 /* CSNumLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSNumLabel.m; path = GearObjects/CSNumLabel.m; sourceTree = "<group>"; };
540DD84C15108D760073E320 /* CSShowLineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSShowLineView.h; path = Blueprint/CSShowLineView.h; sourceTree = "<group>"; };
540DD84D15108D760073E320 /* CSShowLineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSShowLineView.m; path = Blueprint/CSShowLineView.m; sourceTree = "<group>"; };
541672B01860443B00332D78 /* AppSlateLite-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "AppSlateLite-Info.plist"; sourceTree = "<group>"; };
541F47DB14E4C2B400A90F5C /* objectDrop.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = objectDrop.wav; sourceTree = "<group>"; };
541F47DC14E4C2B400A90F5C /* run.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = run.wav; sourceTree = "<group>"; };
541F47DD14E4C2B400A90F5C /* tock.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = tock.wav; sourceTree = "<group>"; };
541F47E614E4F27F00A90F5C /* delSound.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = delSound.wav; sourceTree = "<group>"; };
541F47E714E4F27F00A90F5C /* drawerClose.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = drawerClose.wav; sourceTree = "<group>"; };
541F47E814E4F27F00A90F5C /* drawerOpen.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = drawerOpen.wav; sourceTree = "<group>"; };
54207C04174CC0C800FD1ED1 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
54207C06174CC0C800FD1ED1 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
5423B42F160188B300E77768 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "[email protected]"; path = "../[email protected]"; sourceTree = "<group>"; };
54252B5F14F795C80057DC39 /* CSCalc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSCalc.h; path = GearObjects/CSCalc.h; sourceTree = "<group>"; };
54252B6014F795C80057DC39 /* CSCalc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSCalc.m; path = GearObjects/CSCalc.m; sourceTree = "<group>"; };
54252B6314F79E1E0057DC39 /* CSAtof.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSAtof.h; path = GearObjects/CSAtof.h; sourceTree = "<group>"; };
54252B6414F79E1E0057DC39 /* CSAtof.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSAtof.m; path = GearObjects/CSAtof.m; sourceTree = "<group>"; };
542A310614AD5B8B00150060 /* AlignSettingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AlignSettingController.h; path = SettingControllers/AlignSettingController.h; sourceTree = "<group>"; };
542A310714AD5B8B00150060 /* AlignSettingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AlignSettingController.m; path = SettingControllers/AlignSettingController.m; sourceTree = "<group>"; };
542AD3F015F459B700CC4AEE /* CSBToothPeer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSBToothPeer.h; path = GearObjects/CSBToothPeer.h; sourceTree = "<group>"; };
542AD3F115F459B700CC4AEE /* CSBToothPeer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSBToothPeer.m; path = GearObjects/CSBToothPeer.m; sourceTree = "<group>"; };
542AD40715F4C9C700CC4AEE /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
542F3B4B14C69C710066B13D /* BookshelfViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BookshelfViewController.h; path = FileGallery/BookshelfViewController.h; sourceTree = "<group>"; };
542F3B4C14C69C710066B13D /* BookshelfViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BookshelfViewController.m; path = FileGallery/BookshelfViewController.m; sourceTree = "<group>"; };
542F3B5314C6A17B0066B13D /* AQGridView+CellLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AQGridView+CellLayout.h"; sourceTree = "<group>"; };
542F3B5414C6A17B0066B13D /* AQGridView+CellLocationDelegation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AQGridView+CellLocationDelegation.h"; sourceTree = "<group>"; };
542F3B5514C6A17B0066B13D /* AQGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridView.h; sourceTree = "<group>"; };
542F3B5614C6A17B0066B13D /* AQGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridView.m; sourceTree = "<group>"; };
542F3B5714C6A17B0066B13D /* AQGridViewAnimatorItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridViewAnimatorItem.h; sourceTree = "<group>"; };
542F3B5814C6A17B0066B13D /* AQGridViewAnimatorItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridViewAnimatorItem.m; sourceTree = "<group>"; };
542F3B5914C6A17B0066B13D /* AQGridViewCell+AQGridViewCellPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AQGridViewCell+AQGridViewCellPrivate.h"; sourceTree = "<group>"; };
542F3B5A14C6A17B0066B13D /* AQGridViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridViewCell.h; sourceTree = "<group>"; };
542F3B5B14C6A17B0066B13D /* AQGridViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridViewCell.m; sourceTree = "<group>"; };
542F3B5C14C6A17B0066B13D /* AQGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridViewController.h; sourceTree = "<group>"; };
542F3B5D14C6A17B0066B13D /* AQGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridViewController.m; sourceTree = "<group>"; };
542F3B5E14C6A17B0066B13D /* AQGridViewData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridViewData.h; sourceTree = "<group>"; };
542F3B5F14C6A17B0066B13D /* AQGridViewData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridViewData.m; sourceTree = "<group>"; };
542F3B6014C6A17B0066B13D /* AQGridViewUpdateInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridViewUpdateInfo.h; sourceTree = "<group>"; };
542F3B6114C6A17B0066B13D /* AQGridViewUpdateInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridViewUpdateInfo.m; sourceTree = "<group>"; };
542F3B6214C6A17B0066B13D /* AQGridViewUpdateItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AQGridViewUpdateItem.h; sourceTree = "<group>"; };
542F3B6314C6A17B0066B13D /* AQGridViewUpdateItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AQGridViewUpdateItem.m; sourceTree = "<group>"; };
542F3B6414C6A17B0066B13D /* NSIndexSet+AQIndexesOutsideSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+AQIndexesOutsideSet.h"; sourceTree = "<group>"; };
542F3B6514C6A17B0066B13D /* NSIndexSet+AQIndexesOutsideSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+AQIndexesOutsideSet.m"; sourceTree = "<group>"; };
542F3B6614C6A17B0066B13D /* NSIndexSet+AQIsSetContiguous.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSIndexSet+AQIsSetContiguous.h"; sourceTree = "<group>"; };
542F3B6714C6A17B0066B13D /* NSIndexSet+AQIsSetContiguous.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSIndexSet+AQIsSetContiguous.m"; sourceTree = "<group>"; };
542F3B6814C6A17B0066B13D /* UIColor+AQGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+AQGridView.h"; sourceTree = "<group>"; };
542F3B6914C6A17B0066B13D /* UIColor+AQGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+AQGridView.m"; sourceTree = "<group>"; };
542F3B7414C6B85B0066B13D /* FileCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FileCell.h; path = FileGallery/FileCell.h; sourceTree = "<group>"; };
542F3B7514C6B85B0066B13D /* FileCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FileCell.m; path = FileGallery/FileCell.m; sourceTree = "<group>"; };
5432D2611868306A00B41393 /* UIImage+ImageEffects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ImageEffects.h"; sourceTree = "<group>"; };
5432D2621868306A00B41393 /* UIImage+ImageEffects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ImageEffects.m"; sourceTree = "<group>"; };
5434EFEA14A0A65600433710 /* StringSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StringSettingViewController.h; path = SettingControllers/StringSettingViewController.h; sourceTree = "<group>"; };
5434EFEB14A0A65600433710 /* StringSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StringSettingViewController.m; path = SettingControllers/StringSettingViewController.m; sourceTree = "<group>"; };
5434EFED14A0A91D00433710 /* SettingViewCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingViewCommon.h; path = SettingControllers/SettingViewCommon.h; sourceTree = "<group>"; };
5438D63C146A68AB00CE9136 /* AppSlate.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AppSlate.app; sourceTree = BUILT_PRODUCTS_DIR; };
5438D640146A68AB00CE9136 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
5438D642146A68AB00CE9136 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
5438D644146A68AB00CE9136 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
5438D648146A68AB00CE9136 /* AppSlate-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "AppSlate-Info.plist"; sourceTree = "<group>"; };
5438D64A146A68AB00CE9136 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5438D64C146A68AB00CE9136 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
5438D64E146A68AB00CE9136 /* AppSlate-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "AppSlate-Prefix.pch"; sourceTree = "<group>"; };
5438D64F146A68AB00CE9136 /* CSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSAppDelegate.h; sourceTree = "<group>"; };
5438D650146A68AB00CE9136 /* CSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CSAppDelegate.m; sourceTree = "<group>"; };
5438D652146A68AB00CE9136 /* CSMainViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSMainViewController.h; sourceTree = "<group>"; };
5438D653146A68AB00CE9136 /* CSMainViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CSMainViewController.m; sourceTree = "<group>"; };
5438D655146A68AB00CE9136 /* CSFlipsideViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CSFlipsideViewController.h; sourceTree = "<group>"; };
5438D656146A68AB00CE9136 /* CSFlipsideViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CSFlipsideViewController.m; sourceTree = "<group>"; };
5438D65F146A68AB00CE9136 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/CSFlipsideViewController.xib; sourceTree = "<group>"; };
5438D672146A949600CE9136 /* CSGearObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSGearObject.h; path = GearObjects/CSGearObject.h; sourceTree = "<group>"; };
5438D673146A949600CE9136 /* CSGearObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSGearObject.m; path = GearObjects/CSGearObject.m; sourceTree = "<group>"; };
5439B32814E0FC4F0081E7F4 /* CSLayerTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSLayerTableViewController.h; sourceTree = "<group>"; };
5439B32914E0FC4F0081E7F4 /* CSLayerTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CSLayerTableViewController.m; sourceTree = "<group>"; };
543C33CF14FB723900B44618 /* CSImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSImage.h; path = GearObjects/CSImage.h; sourceTree = "<group>"; };
543C33D014FB723A00B44618 /* CSImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSImage.m; path = GearObjects/CSImage.m; sourceTree = "<group>"; };
544179AB17BA247A00A69B4F /* CSStoreView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSStoreView.h; path = GearObjects/CSStoreView.h; sourceTree = "<group>"; };
544179AC17BA247A00A69B4F /* CSStoreView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSStoreView.m; path = GearObjects/CSStoreView.m; sourceTree = "<group>"; };
54421DCD14AC5D84006226B4 /* CMFontSelectTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMFontSelectTableViewController.h; sourceTree = "<group>"; };
54421DCE14AC5D84006226B4 /* CMFontSelectTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMFontSelectTableViewController.m; sourceTree = "<group>"; };
54421DCF14AC5D84006226B4 /* CMFontSelectTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CMFontSelectTableViewController.xib; sourceTree = "<group>"; };
54421DD014AC5D84006226B4 /* CMFontStyleSelectTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMFontStyleSelectTableViewController.h; sourceTree = "<group>"; };
54421DD114AC5D84006226B4 /* CMFontStyleSelectTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMFontStyleSelectTableViewController.m; sourceTree = "<group>"; };
54421DD214AC5D84006226B4 /* CMFontStyleSelectTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CMFontStyleSelectTableViewController.xib; sourceTree = "<group>"; };
54421DD314AC5D84006226B4 /* CMTextStylePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMTextStylePickerViewController.h; sourceTree = "<group>"; };
54421DD414AC5D84006226B4 /* CMTextStylePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMTextStylePickerViewController.m; sourceTree = "<group>"; };
54421DD514AC5D84006226B4 /* CMTextStylePickerViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CMTextStylePickerViewController.xib; sourceTree = "<group>"; };
54421DD614AC5D84006226B4 /* CMUpDownControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMUpDownControl.h; sourceTree = "<group>"; };
54421DD714AC5D84006226B4 /* CMUpDownControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMUpDownControl.m; sourceTree = "<group>"; };
54421DE014AC6153006226B4 /* FontSettingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FontSettingController.h; path = SettingControllers/FontSettingController.h; sourceTree = "<group>"; };
54421DE114AC6153006226B4 /* FontSettingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FontSettingController.m; path = SettingControllers/FontSettingController.m; sourceTree = "<group>"; };
54471F17150F0EDD00354AEC /* CSFBSend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSFBSend.h; path = GearObjects/CSFBSend.h; sourceTree = "<group>"; };
54471F18150F0EDD00354AEC /* CSFBSend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSFBSend.m; path = GearObjects/CSFBSend.m; sourceTree = "<group>"; };
544A14D01768535F0034A3FD /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Media.xcassets; path = AppSlate/Media.xcassets; sourceTree = "<group>"; };
544A864E173CAD8B0065824A /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
5450089514ECA25600F98501 /* CSAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSAlert.h; path = GearObjects/CSAlert.h; sourceTree = "<group>"; };
5450089614ECA25600F98501 /* CSAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSAlert.m; path = GearObjects/CSAlert.m; sourceTree = "<group>"; };
5450089914ECCA1400F98501 /* CSRect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSRect.h; path = GearObjects/CSRect.h; sourceTree = "<group>"; };
5450089A14ECCA1400F98501 /* CSRect.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSRect.m; path = GearObjects/CSRect.m; sourceTree = "<group>"; };
545008B214ED0D6200F98501 /* CSNot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSNot.h; path = GearObjects/CSNot.h; sourceTree = "<group>"; };
545008B314ED0D6200F98501 /* CSNot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSNot.m; path = GearObjects/CSNot.m; sourceTree = "<group>"; };
54523F231557712000B80F92 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+Base64.h"; sourceTree = "<group>"; };
54523F241557712000B80F92 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+Base64.m"; sourceTree = "<group>"; };
5457456817F57FBC00EFBC22 /* MultipeerConnectivity.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MultipeerConnectivity.framework; path = System/Library/Frameworks/MultipeerConnectivity.framework; sourceTree = SDKROOT; };
545CF92914764FEA00D3B544 /* CSBlueprintController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSBlueprintController.h; path = Blueprint/CSBlueprintController.h; sourceTree = "<group>"; };
545CF92A14764FEA00D3B544 /* CSBlueprintController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSBlueprintController.m; path = Blueprint/CSBlueprintController.m; sourceTree = "<group>"; };
5463E3F415074B90008D4717 /* CSTwitTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSTwitTable.h; sourceTree = "<group>"; };
5463E3F515074B90008D4717 /* CSTwitTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CSTwitTable.m; sourceTree = "<group>"; };
5463E3F615074B90008D4717 /* TTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TTableCell.h; sourceTree = "<group>"; };
5463E3F715074B90008D4717 /* TTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TTableCell.m; sourceTree = "<group>"; };
5463E3FB150751E2008D4717 /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
5463E3FC150751E2008D4717 /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
5463E3FD150751E2008D4717 /* SDImageCacheDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCacheDelegate.h; sourceTree = "<group>"; };
5463E3FE150751E2008D4717 /* SDProfileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDProfileCache.h; sourceTree = "<group>"; };
5463E3FF150751E2008D4717 /* SDProfileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDProfileCache.m; sourceTree = "<group>"; };
5463E400150751E2008D4717 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
5463E401150751E2008D4717 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
5463E402150751E2008D4717 /* SDWebImageDownloaderDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderDelegate.h; sourceTree = "<group>"; };
5463E403150751E2008D4717 /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
5463E404150751E2008D4717 /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
5463E405150751E2008D4717 /* SDWebImageManagerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManagerDelegate.h; sourceTree = "<group>"; };
5463E406150751E2008D4717 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
5463E407150751E2008D4717 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
5465683915EB84980017739D /* TSActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TSActionSheet.h; sourceTree = "<group>"; };
5465683A15EB84980017739D /* TSActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TSActionSheet.m; sourceTree = "<group>"; };
5465683B15EB84980017739D /* TSPopoverController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TSPopoverController.h; sourceTree = "<group>"; };
5465683C15EB84980017739D /* TSPopoverController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TSPopoverController.m; sourceTree = "<group>"; };
5465683D15EB84980017739D /* TSPopoverPopoverView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TSPopoverPopoverView.h; sourceTree = "<group>"; };
5465683E15EB84980017739D /* TSPopoverPopoverView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TSPopoverPopoverView.m; sourceTree = "<group>"; };
5465683F15EB84980017739D /* TSPopoverTouchesDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TSPopoverTouchesDelegate.h; sourceTree = "<group>"; };
5465684015EB84980017739D /* TSPopoverTouchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TSPopoverTouchView.h; sourceTree = "<group>"; };
5465684115EB84980017739D /* TSPopoverTouchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TSPopoverTouchView.m; sourceTree = "<group>"; };
5465684215EB84980017739D /* UIBarButtonItem+WEPopover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+WEPopover.h"; sourceTree = "<group>"; };
5465684315EB84980017739D /* UIBarButtonItem+WEPopover.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+WEPopover.m"; sourceTree = "<group>"; };
546A8E5014B5A4A900AB71BD /* CSBlueprintView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSBlueprintView.h; path = Blueprint/CSBlueprintView.h; sourceTree = "<group>"; };
546A8E5114B5A4A900AB71BD /* CSBlueprintView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSBlueprintView.m; path = Blueprint/CSBlueprintView.m; sourceTree = "<group>"; };
546B50DB14FE1E9800EF264A /* CSWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSWeb.h; path = GearObjects/CSWeb.h; sourceTree = "<group>"; };
546B50DC14FE1E9800EF264A /* CSWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSWeb.m; path = GearObjects/CSWeb.m; sourceTree = "<group>"; };
546E3F2317B9FA0200A40187 /* CSWeiboComposer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSWeiboComposer.h; path = GearObjects/CSWeiboComposer.h; sourceTree = "<group>"; };
546E3F2417B9FA0200A40187 /* CSWeiboComposer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSWeiboComposer.m; path = GearObjects/CSWeiboComposer.m; sourceTree = "<group>"; };
5474F86B1470BF01002C8652 /* CSTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTextField.h; path = GearObjects/CSTextField.h; sourceTree = "<group>"; };
5474F86C1470BF01002C8652 /* CSTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTextField.m; path = GearObjects/CSTextField.m; sourceTree = "<group>"; };
547872AF156B5E0900CAAC19 /* Default-Portrait~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default-Portrait~ipad.png"; path = "../Default-Portrait~ipad.png"; sourceTree = "<group>"; };
547AAF0614C9157C00B6EF08 /* CSSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSSwitch.h; path = GearObjects/CSSwitch.h; sourceTree = "<group>"; };
547AAF0714C9157C00B6EF08 /* CSSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSSwitch.m; path = GearObjects/CSSwitch.m; sourceTree = "<group>"; };
548260BC14FC9E8100AE8005 /* CSRand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSRand.h; path = GearObjects/CSRand.h; sourceTree = "<group>"; };
548260BD14FC9E8100AE8005 /* CSRand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSRand.m; path = GearObjects/CSRand.m; sourceTree = "<group>"; };
548260CC14FCE86200AE8005 /* AppSettingModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppSettingModal.h; sourceTree = "<group>"; };
548260CD14FCE86200AE8005 /* AppSettingModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppSettingModal.m; sourceTree = "<group>"; };
548260CF14FCE93D00AE8005 /* InfoModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InfoModal.h; sourceTree = "<group>"; };
548260D014FCE93D00AE8005 /* InfoModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InfoModal.m; sourceTree = "<group>"; };
54856F1817533D690013A10E /* WorldCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WorldCell.h; path = FileGallery/WorldCell.h; sourceTree = "<group>"; };
54856F1917533D690013A10E /* WorldCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WorldCell.m; path = FileGallery/WorldCell.m; sourceTree = "<group>"; };
54857B0B155B637300004CCA /* CSCamera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSCamera.h; path = GearObjects/CSCamera.h; sourceTree = "<group>"; };
54857B0C155B637300004CCA /* CSCamera.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSCamera.m; path = GearObjects/CSCamera.m; sourceTree = "<group>"; };
54857B0F155B6B2E00004CCA /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
5486166814739CCA0007709E /* UserContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserContext.h; sourceTree = "<group>"; };
5486166914739CCA0007709E /* UserContext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserContext.m; sourceTree = "<group>"; };
5486166C14739D950007709E /* WaitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WaitView.h; path = Utils/WaitView/WaitView.h; sourceTree = "<group>"; };
5486166D14739D950007709E /* WaitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WaitView.m; path = Utils/WaitView/WaitView.m; sourceTree = "<group>"; };
548907DE14EE24560030A34E /* WelcomeMovieModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WelcomeMovieModal.h; sourceTree = "<group>"; };
548907DF14EE24560030A34E /* WelcomeMovieModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WelcomeMovieModal.m; sourceTree = "<group>"; };
548907E514EE46980030A34E /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
54893426151193A500BF276F /* CSRadDeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSRadDeg.h; path = GearObjects/CSRadDeg.h; sourceTree = "<group>"; };
54893427151193A500BF276F /* CSRadDeg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSRadDeg.m; path = GearObjects/CSRadDeg.m; sourceTree = "<group>"; };
5489342A1511B2CA00BF276F /* CSTrigonometric.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTrigonometric.h; path = GearObjects/CSTrigonometric.h; sourceTree = "<group>"; };
5489342B1511B2CA00BF276F /* CSTrigonometric.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTrigonometric.m; path = GearObjects/CSTrigonometric.m; sourceTree = "<group>"; };
548A7D1514DF69FD0044FF00 /* PaperSetModal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PaperSetModal.h; sourceTree = "<group>"; };
548A7D1614DF69FD0044FF00 /* PaperSetModal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PaperSetModal.m; sourceTree = "<group>"; };
548B4B1A14FC66E4007EE7D8 /* CSHLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSHLine.h; path = GearObjects/CSHLine.h; sourceTree = "<group>"; };
548B4B1B14FC66E4007EE7D8 /* CSHLine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSHLine.m; path = GearObjects/CSHLine.m; sourceTree = "<group>"; };
548B4B1E14FC70F3007EE7D8 /* CSVLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSVLine.h; path = GearObjects/CSVLine.h; sourceTree = "<group>"; };
548B4B1F14FC70F3007EE7D8 /* CSVLine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSVLine.m; path = GearObjects/CSVLine.m; sourceTree = "<group>"; };
548B4B2414FC7778007EE7D8 /* CSTick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTick.h; path = GearObjects/CSTick.h; sourceTree = "<group>"; };
548B4B2514FC7778007EE7D8 /* CSTick.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTick.m; path = GearObjects/CSTick.m; sourceTree = "<group>"; };
548F0F4E17AB994600531AB6 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
549313DA14D11C3E00F2E7DC /* FlipCounterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FlipCounterView.h; sourceTree = "<group>"; };
549313DB14D11C3E00F2E7DC /* FlipCounterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FlipCounterView.m; sourceTree = "<group>"; };
549313DD14D11C6000F2E7DC /* digits.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = digits.png; sourceTree = "<group>"; };
549313DF14D11F0200F2E7DC /* CSFlipCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSFlipCounter.h; path = GearObjects/CSFlipCounter.h; sourceTree = "<group>"; };
549313E014D11F0200F2E7DC /* CSFlipCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSFlipCounter.m; path = GearObjects/CSFlipCounter.m; sourceTree = "<group>"; };
549313E214D1388100F2E7DC /* NumberSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NumberSettingViewController.h; path = SettingControllers/NumberSettingViewController.h; sourceTree = "<group>"; };
549313E314D1388100F2E7DC /* NumberSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NumberSettingViewController.m; path = SettingControllers/NumberSettingViewController.m; sourceTree = "<group>"; };
5493734114A8864F00697A40 /* BButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BButton.h; path = Utils/BButton/BButton.h; sourceTree = "<group>"; };
5493734214A8864F00697A40 /* BButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BButton.m; path = Utils/BButton/BButton.m; sourceTree = "<group>"; };
5493734414A88E3500697A40 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
549BAF8A150DC35400EDC162 /* CSQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSQueue.h; path = GearObjects/CSQueue.h; sourceTree = "<group>"; };
549BAF8B150DC35400EDC162 /* CSQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSQueue.m; path = GearObjects/CSQueue.m; sourceTree = "<group>"; };
54A8616D1589BBBA00693BE7 /* libxml2.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.2.dylib; path = usr/lib/libxml2.2.dylib; sourceTree = SDKROOT; };
54A861701589CD9700693BE7 /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; };
54A8A26B1505F2B4004F4B19 /* BlogRss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlogRss.h; sourceTree = "<group>"; };
54A8A26C1505F2B4004F4B19 /* BlogRss.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlogRss.m; sourceTree = "<group>"; };
54A8A26D1505F2B4004F4B19 /* BlogRssParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlogRssParser.h; sourceTree = "<group>"; };
54A8A26E1505F2B4004F4B19 /* BlogRssParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlogRssParser.m; sourceTree = "<group>"; };
54A8A2741505F915004F4B19 /* CSRssTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSRssTable.h; path = GearObjects/CSRssTable.h; sourceTree = "<group>"; };
54A8A2751505F915004F4B19 /* CSRssTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSRssTable.m; path = GearObjects/CSRssTable.m; sourceTree = "<group>"; };
54AB747E1504D17200B355DA /* CSLinkStr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSLinkStr.h; path = GearObjects/CSLinkStr.h; sourceTree = "<group>"; };
54AB747F1504D17200B355DA /* CSLinkStr.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSLinkStr.m; path = GearObjects/CSLinkStr.m; sourceTree = "<group>"; };
54B5BDC418C97D700070911D /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
54B5BDC718C98BA70070911D /* InfoIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = InfoIcon.png; sourceTree = SOURCE_ROOT; };
54B8AC8F17B0CC6800ABD992 /* SDNetworkActivityIndicator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDNetworkActivityIndicator.h; sourceTree = "<group>"; };
54B8AC9017B0CC6800ABD992 /* SDNetworkActivityIndicator.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDNetworkActivityIndicator.m; sourceTree = "<group>"; };
54BA25A91755C3420075D78F /* UIBAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIBAlertView.h; sourceTree = "<group>"; };
54BA25AA1755C3420075D78F /* UIBAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIBAlertView.m; sourceTree = "<group>"; };
54C4316F17CF0509004B150D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
54C4317117CF070D004B150D /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
54CAB49D14F33CAC00E16FC9 /* CSTextAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTextAlert.h; path = GearObjects/CSTextAlert.h; sourceTree = "<group>"; };
54CAB49E14F33CAC00E16FC9 /* CSTextAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTextAlert.m; path = GearObjects/CSTextAlert.m; sourceTree = "<group>"; };
54CAB4A114F344F800E16FC9 /* CSMailComposer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSMailComposer.h; path = GearObjects/CSMailComposer.h; sourceTree = "<group>"; };
54CAB4A214F344F800E16FC9 /* CSMailComposer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSMailComposer.m; path = GearObjects/CSMailComposer.m; sourceTree = "<group>"; };
54D0A40E14F35DC800652002 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
54D0A41114F36F2F00652002 /* CSTwitComposer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTwitComposer.h; path = GearObjects/CSTwitComposer.h; sourceTree = "<group>"; };
54D0A41214F36F2F00652002 /* CSTwitComposer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTwitComposer.m; path = GearObjects/CSTwitComposer.m; sourceTree = "<group>"; };
54D0A41414F36F4000652002 /* Twitter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Twitter.framework; path = System/Library/Frameworks/Twitter.framework; sourceTree = SDKROOT; };
54D0A41C14F3724100652002 /* Accounts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accounts.framework; path = System/Library/Frameworks/Accounts.framework; sourceTree = SDKROOT; };
54D0A42A14F38C2900652002 /* CSAlbum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSAlbum.h; path = GearObjects/CSAlbum.h; sourceTree = "<group>"; };
54D0A42B14F38C2900652002 /* CSAlbum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSAlbum.m; path = GearObjects/CSAlbum.m; sourceTree = "<group>"; };
54D0A42D14F38CC400652002 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
54D13BE614D7B542005D4616 /* CSBulb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSBulb.h; path = GearObjects/CSBulb/CSBulb.h; sourceTree = "<group>"; };
54D13BE714D7B542005D4616 /* CSBulb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSBulb.m; path = GearObjects/CSBulb/CSBulb.m; sourceTree = "<group>"; };
54D326AB14C7F57A00AF1CDE /* CSBtnTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSBtnTextField.h; path = GearObjects/CSBtnTextField.h; sourceTree = "<group>"; };
54D326AC14C7F57A00AF1CDE /* CSBtnTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSBtnTextField.m; path = GearObjects/CSBtnTextField.m; sourceTree = "<group>"; };
54D4EAEC14DB712D00973536 /* JWFolders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JWFolders.h; sourceTree = "<group>"; };
54D4EAED14DB712D00973536 /* JWFolders.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JWFolders.m; sourceTree = "<group>"; };
54D4EAEE14DB712D00973536 /* UIScreen+Scale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Scale.h"; sourceTree = "<group>"; };
54D4EAEF14DB712D00973536 /* UIScreen+Scale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Scale.m"; sourceTree = "<group>"; };
54D4EAF014DB712D00973536 /* UIView+Screenshot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Screenshot.h"; sourceTree = "<group>"; };
54D4EAF114DB712D00973536 /* UIView+Screenshot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Screenshot.m"; sourceTree = "<group>"; };
54D7326414B6C8EF0092FD98 /* CMPopTipView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CMPopTipView.h; sourceTree = "<group>"; };
54D7326514B6C8EF0092FD98 /* CMPopTipView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CMPopTipView.m; sourceTree = "<group>"; };
54E3E73817AB4C2D0013E5C8 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
54E5AD3A151B142B0017D2A7 /* CSClock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSClock.h; path = GearObjects/CSClock/CSClock.h; sourceTree = "<group>"; };
54E5AD3B151B142B0017D2A7 /* CSClock.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSClock.m; path = GearObjects/CSClock/CSClock.m; sourceTree = "<group>"; };
54E5AD44151B14D90017D2A7 /* ClockView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ClockView.h; path = GearObjects/CSClock/ClockView.h; sourceTree = "<group>"; };
54E5AD45151B14D90017D2A7 /* ClockView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ClockView.m; path = GearObjects/CSClock/ClockView.m; sourceTree = "<group>"; };
54E5BBE114AC05D000C84F69 /* SettingViewCommon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingViewCommon.m; path = SettingControllers/SettingViewCommon.m; sourceTree = "<group>"; };
54EB155414E3BD9D004EB231 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
54EB155814E3C724004EB231 /* setSound.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = setSound.wav; sourceTree = "<group>"; };
54F3264714BD6944005EC167 /* BoolSettingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BoolSettingController.h; path = SettingControllers/BoolSettingController.h; sourceTree = "<group>"; };
54F3264814BD6944005EC167 /* BoolSettingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BoolSettingController.m; path = SettingControllers/BoolSettingController.m; sourceTree = "<group>"; };
54FA4A5317DD93EE00CDA045 /* ko */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = ko; path = ko.lproj/CSFlipsideViewController.xib; sourceTree = "<group>"; };
54FA4A5417DD941300CDA045 /* es */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = es; path = es.lproj/CSFlipsideViewController.xib; sourceTree = "<group>"; };
54FA4A5517DD94D800CDA045 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
54FC43C614D24C550015E977 /* CSTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSTable.h; path = GearObjects/CSTable.h; sourceTree = "<group>"; };
54FC43C714D24C550015E977 /* CSTable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSTable.m; path = GearObjects/CSTable.m; sourceTree = "<group>"; };
54FC43CA14D288080015E977 /* CellSettingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CellSettingController.h; path = SettingControllers/CellSettingController.h; sourceTree = "<group>"; };
54FC43CB14D288080015E977 /* CellSettingController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CellSettingController.m; path = SettingControllers/CellSettingController.m; sourceTree = "<group>"; };
54FD865D14F65A5600A1FE33 /* CSProgressBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CSProgressBar.h; path = GearObjects/CSProgressBar.h; sourceTree = "<group>"; };
54FD865E14F65A5700A1FE33 /* CSProgressBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CSProgressBar.m; path = GearObjects/CSProgressBar.m; sourceTree = "<group>"; };
9A59654418CA25A50086D631 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
5438D639146A68AB00CE9136 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
540F670B18C442A900F6DDDF /* Parse.framework in Frameworks */,
5457456917F57FBC00EFBC22 /* MultipeerConnectivity.framework in Frameworks */,
18899B35173AAB7200577A28 /* FacebookSDK.framework in Frameworks */,
548F0F4F17AB994600531AB6 /* CoreMotion.framework in Frameworks */,
54C02A2F176864B80079ED2B /* StoreKit.framework in Frameworks */,
54C02A2E176864920079ED2B /* GameKit.framework in Frameworks */,
18899B37173AABD500577A28 /* AdSupport.framework in Frameworks */,
18899B33173AA64600577A28 /* Security.framework in Frameworks */,
18899B31173AA60F00577A28 /* CFNetwork.framework in Frameworks */,
186CE123170202D000F5A176 /* SystemConfiguration.framework in Frameworks */,
186CE121170202B100F5A176 /* OpenGLES.framework in Frameworks */,
186CE11F1702027500F5A176 /* CoreText.framework in Frameworks */,
54A861711589CD9700693BE7 /* Social.framework in Frameworks */,
54A8616E1589BBBA00693BE7 /* libxml2.2.dylib in Frameworks */,
54857B10155B6B2E00004CCA /* MobileCoreServices.framework in Frameworks */,
18D78B2D15559A0300FBF510 /* Accelerate.framework in Frameworks */,
18D78B2515558FBC00FBF510 /* libsqlite3.0.dylib in Frameworks */,
18D78B2315558F9C00FBF510 /* CoreData.framework in Frameworks */,
18C1FF33154EE54E00EA9687 /* libz.1.2.5.dylib in Frameworks */,
18B7C2861503BA3F00802D8F /* CoreLocation.framework in Frameworks */,
54D0A42E14F38CC400652002 /* AssetsLibrary.framework in Frameworks */,
54D0A41D14F3724100652002 /* Accounts.framework in Frameworks */,
54D0A40F14F35DC800652002 /* MessageUI.framework in Frameworks */,
548907E614EE46980030A34E /* MediaPlayer.framework in Frameworks */,
54EB155514E3BD9D004EB231 /* AudioToolbox.framework in Frameworks */,
5493734514A88E3500697A40 /* QuartzCore.framework in Frameworks */,
5438D641146A68AB00CE9136 /* UIKit.framework in Frameworks */,
5438D643146A68AB00CE9136 /* Foundation.framework in Frameworks */,
5438D645146A68AB00CE9136 /* CoreGraphics.framework in Frameworks */,
18D5DF5D186EF478002858F6 /* MapKit.framework in Frameworks */,
18874D13173963EE006508F1 /* libAviarySDK.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
1876F50114DC3245006C2B1F /* UAPanel */ = {
isa = PBXGroup;
children = (
1876F50214DC3245006C2B1F /* Categories */,
1876F50514DC3245006C2B1F /* Images */,
1876F50814DC3245006C2B1F /* Panels */,
1876F50D14DC3245006C2B1F /* Views */,
);
name = UAPanel;
path = Utils/UAPanel;
sourceTree = "<group>";
};
1876F50214DC3245006C2B1F /* Categories */ = {
isa = PBXGroup;
children = (
1876F50314DC3245006C2B1F /* UIView+JMNoise.h */,
1876F50414DC3245006C2B1F /* UIView+JMNoise.m */,
);
path = Categories;
sourceTree = "<group>";
};
1876F50514DC3245006C2B1F /* Images */ = {
isa = PBXGroup;
children = (
1876F50614DC3245006C2B1F /* close.png */,
1876F50714DC3245006C2B1F /* [email protected] */,
);
path = Images;
sourceTree = "<group>";
};
1876F50814DC3245006C2B1F /* Panels */ = {
isa = PBXGroup;
children = (
1876F50914DC3245006C2B1F /* UAModalPanel.h */,
1876F50A14DC3245006C2B1F /* UAModalPanel.m */,
1876F50B14DC3245006C2B1F /* UATitledModalPanel.h */,
1876F50C14DC3245006C2B1F /* UATitledModalPanel.m */,
);
path = Panels;
sourceTree = "<group>";
};
1876F50D14DC3245006C2B1F /* Views */ = {
isa = PBXGroup;
children = (
1876F50E14DC3245006C2B1F /* UAGradientBackground.h */,
1876F50F14DC3245006C2B1F /* UAGradientBackground.m */,
1876F51014DC3245006C2B1F /* UANoisyGradientBackground.h */,
1876F51114DC3245006C2B1F /* UANoisyGradientBackground.m */,
1876F51214DC3245006C2B1F /* UARoundedRectView.h */,
1876F51314DC3245006C2B1F /* UARoundedRectView.m */,
);
path = Views;
sourceTree = "<group>";
};
18874D08173963EE006508F1 /* AviarySDK */ = {
isa = PBXGroup;
children = (
18874D09173963EE006508F1 /* Headers */,
18874D10173963EE006508F1 /* libAviarySDK.a */,
18874D11173963EE006508F1 /* Resources */,
);
name = AviarySDK;
path = Utils/AviarySDK;
sourceTree = "<group>";
};
18874D09173963EE006508F1 /* Headers */ = {
isa = PBXGroup;
children = (
18874D0A173963EE006508F1 /* AFOpenGLManager.h */,
18874D0B173963EE006508F1 /* AFPhotoEditorContext.h */,
18874D0C173963EE006508F1 /* AFPhotoEditorController.h */,
18874D0D173963EE006508F1 /* AFPhotoEditorControllerOptions.h */,
18874D0E173963EE006508F1 /* AFPhotoEditorCustomization.h */,
18874D0F173963EE006508F1 /* AFPhotoEditorSession.h */,
);
path = Headers;
sourceTree = "<group>";
};
18874D11173963EE006508F1 /* Resources */ = {
isa = PBXGroup;
children = (
18874D12173963EE006508F1 /* AviarySDKResources.bundle */,
);
path = Resources;
sourceTree = "<group>";
};
18A899F1148EC47000E5EFA9 /* images_ipad */ = {
isa = PBXGroup;
children = (
18A351231864A824001A53B5 /* [email protected] */,
54E3E73817AB4C2D0013E5C8 /* [email protected] */,
);
path = images_ipad;
sourceTree = "<group>";
};
540407F514AB0B63002A764B /* ColorPicker */ = {
isa = PBXGroup;
children = (
540407F614AB0B63002A764B /* HRBrightnessCursor.h */,
540407F714AB0B63002A764B /* HRBrightnessCursor.m */,
540407F814AB0B63002A764B /* HRCgUtil.h */,
540407F914AB0B63002A764B /* HRCgUtil.m */,
540407FA14AB0B63002A764B /* HRColorCursor.h */,
540407FB14AB0B63002A764B /* HRColorCursor.m */,
540407FC14AB0B63002A764B /* HRColorPickerView.h */,
540407FD14AB0B63002A764B /* HRColorPickerView.m */,
540407FE14AB0B63002A764B /* HRColorPickerViewController.h */,
540407FF14AB0B63002A764B /* HRColorPickerViewController.m */,
5404080014AB0B63002A764B /* HRColorUtil.h */,
5404080114AB0B63002A764B /* HRColorUtil.m */,
);
name = ColorPicker;
path = Utils/ColorPicker;
sourceTree = "<group>";
};
540D9417187BB37F00684057 /* CodeGenerator */ = {
isa = PBXGroup;
children = (
540D9418187BB3E700684057 /* CSMakeCode.h */,
540D9419187BB3E700684057 /* CSMakeCode.m */,
540D941B187BD81900684057 /* CodingViewController.h */,
540D941C187BD81900684057 /* CodingViewController.m */,
);
name = CodeGenerator;
sourceTree = "<group>";
};
542F3B4614C68E040066B13D /* FileGallery */ = {
isa = PBXGroup;
children = (
542F3B4B14C69C710066B13D /* BookshelfViewController.h */,
542F3B4C14C69C710066B13D /* BookshelfViewController.m */,
542F3B7414C6B85B0066B13D /* FileCell.h */,
542F3B7514C6B85B0066B13D /* FileCell.m */,
18634A20173D659600D2E732 /* MyLoginViewController.h */,
18634A21173D659600D2E732 /* MyLoginViewController.m */,
18A04CB317410B4000F60971 /* MySignUpViewController.h */,
18A04CB417410B4000F60971 /* MySignUpViewController.m */,
181EC2B81751256B00833D22 /* ParseGalleryViewController.h */,
181EC2B91751256B00833D22 /* ParseGalleryViewController.m */,
54856F1817533D690013A10E /* WorldCell.h */,
54856F1917533D690013A10E /* WorldCell.m */,
);
name = FileGallery;
sourceTree = "<group>";
};
542F3B5214C6A17B0066B13D /* AQGrid */ = {
isa = PBXGroup;
children = (
542F3B5314C6A17B0066B13D /* AQGridView+CellLayout.h */,
542F3B5414C6A17B0066B13D /* AQGridView+CellLocationDelegation.h */,
542F3B5514C6A17B0066B13D /* AQGridView.h */,
542F3B5614C6A17B0066B13D /* AQGridView.m */,
542F3B5714C6A17B0066B13D /* AQGridViewAnimatorItem.h */,
542F3B5814C6A17B0066B13D /* AQGridViewAnimatorItem.m */,
542F3B5914C6A17B0066B13D /* AQGridViewCell+AQGridViewCellPrivate.h */,
542F3B5A14C6A17B0066B13D /* AQGridViewCell.h */,
542F3B5B14C6A17B0066B13D /* AQGridViewCell.m */,
542F3B5C14C6A17B0066B13D /* AQGridViewController.h */,
542F3B5D14C6A17B0066B13D /* AQGridViewController.m */,
542F3B5E14C6A17B0066B13D /* AQGridViewData.h */,
542F3B5F14C6A17B0066B13D /* AQGridViewData.m */,
542F3B6014C6A17B0066B13D /* AQGridViewUpdateInfo.h */,
542F3B6114C6A17B0066B13D /* AQGridViewUpdateInfo.m */,
542F3B6214C6A17B0066B13D /* AQGridViewUpdateItem.h */,
542F3B6314C6A17B0066B13D /* AQGridViewUpdateItem.m */,
542F3B6414C6A17B0066B13D /* NSIndexSet+AQIndexesOutsideSet.h */,
542F3B6514C6A17B0066B13D /* NSIndexSet+AQIndexesOutsideSet.m */,
542F3B6614C6A17B0066B13D /* NSIndexSet+AQIsSetContiguous.h */,
542F3B6714C6A17B0066B13D /* NSIndexSet+AQIsSetContiguous.m */,
542F3B6814C6A17B0066B13D /* UIColor+AQGridView.h */,
542F3B6914C6A17B0066B13D /* UIColor+AQGridView.m */,
);
name = AQGrid;
path = Utils/AQGrid;
sourceTree = "<group>";
};
5432D2601868306A00B41393 /* UIImage+ImageEffects */ = {
isa = PBXGroup;
children = (
5432D2611868306A00B41393 /* UIImage+ImageEffects.h */,
5432D2621868306A00B41393 /* UIImage+ImageEffects.m */,
);
name = "UIImage+ImageEffects";
path = "Utils/UIImage+ImageEffects";
sourceTree = "<group>";
};
5434EFE814A0A5BA00433710 /* SettingControllers */ = {
isa = PBXGroup;
children = (
54FC43CA14D288080015E977 /* CellSettingController.h */,
54FC43CB14D288080015E977 /* CellSettingController.m */,
549313E214D1388100F2E7DC /* NumberSettingViewController.h */,
549313E314D1388100F2E7DC /* NumberSettingViewController.m */,
54F3264714BD6944005EC167 /* BoolSettingController.h */,
54F3264814BD6944005EC167 /* BoolSettingController.m */,
5434EFED14A0A91D00433710 /* SettingViewCommon.h */,
54E5BBE114AC05D000C84F69 /* SettingViewCommon.m */,
5434EFEA14A0A65600433710 /* StringSettingViewController.h */,
5434EFEB14A0A65600433710 /* StringSettingViewController.m */,
54421DE014AC6153006226B4 /* FontSettingController.h */,
54421DE114AC6153006226B4 /* FontSettingController.m */,
542A310614AD5B8B00150060 /* AlignSettingController.h */,
542A310714AD5B8B00150060 /* AlignSettingController.m */,
);
name = SettingControllers;
sourceTree = "<group>";
};
5438D631146A68AA00CE9136 = {
isa = PBXGroup;
children = (
544A14D01768535F0034A3FD /* Media.xcassets */,
540D9417187BB37F00684057 /* CodeGenerator */,
542F3B4614C68E040066B13D /* FileGallery */,
5434EFE814A0A5BA00433710 /* SettingControllers */,
5486166F14739D9F0007709E /* Utils */,
5486166714739CCA0007709E /* Base */,
5438D66E146A929500CE9136 /* Blueprint */,
5438D66D146A90A500CE9136 /* GearObjects */,
5438D646146A68AB00CE9136 /* AppSlate */,
5438D63F146A68AB00CE9136 /* Frameworks */,
54A09CE5148E0B3C00CB9974 /* Resources */,
5438D63D146A68AB00CE9136 /* Products */,
);
sourceTree = "<group>";
};
5438D63D146A68AB00CE9136 /* Products */ = {
isa = PBXGroup;
children = (
5438D63C146A68AB00CE9136 /* AppSlate.app */,
);
name = Products;
sourceTree = "<group>";
};
5438D63F146A68AB00CE9136 /* Frameworks */ = {
isa = PBXGroup;
children = (
18D5DF5C186EF478002858F6 /* MapKit.framework */,
5457456817F57FBC00EFBC22 /* MultipeerConnectivity.framework */,
548F0F4E17AB994600531AB6 /* CoreMotion.framework */,
18899B36173AABD500577A28 /* AdSupport.framework */,
18899B34173AAB7200577A28 /* FacebookSDK.framework */,
18899B32173AA64600577A28 /* Security.framework */,
18899B30173AA60F00577A28 /* CFNetwork.framework */,
18899B2E173AA5D100577A28 /* Parse.framework */,
186CE122170202D000F5A176 /* SystemConfiguration.framework */,
186CE120170202B100F5A176 /* OpenGLES.framework */,
186CE11E1702027500F5A176 /* CoreText.framework */,
18E12EDD15ECB7FA005CCF65 /* GameKit.framework */,
54A861701589CD9700693BE7 /* Social.framework */,
54A8616D1589BBBA00693BE7 /* libxml2.2.dylib */,
54857B0F155B6B2E00004CCA /* MobileCoreServices.framework */,
18D78B2C15559A0300FBF510 /* Accelerate.framework */,
18D78B2415558FBC00FBF510 /* libsqlite3.0.dylib */,
18D78B2215558F9C00FBF510 /* CoreData.framework */,
18D78B2015558F9400FBF510 /* StoreKit.framework */,
18C1FF32154EE54E00EA9687 /* libz.1.2.5.dylib */,
18B7C2851503BA3F00802D8F /* CoreLocation.framework */,
54D0A42D14F38CC400652002 /* AssetsLibrary.framework */,
54D0A41C14F3724100652002 /* Accounts.framework */,
54D0A41414F36F4000652002 /* Twitter.framework */,
54D0A40E14F35DC800652002 /* MessageUI.framework */,
548907E514EE46980030A34E /* MediaPlayer.framework */,
54EB155414E3BD9D004EB231 /* AudioToolbox.framework */,
5493734414A88E3500697A40 /* QuartzCore.framework */,
5438D640146A68AB00CE9136 /* UIKit.framework */,
5438D642146A68AB00CE9136 /* Foundation.framework */,
5438D644146A68AB00CE9136 /* CoreGraphics.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
5438D646146A68AB00CE9136 /* AppSlate */ = {
isa = PBXGroup;
children = (
18DD5387174A851E0009FBB2 /* SaveModal.h */,
18DD5388174A851E0009FBB2 /* SaveModal.m */,
548260CF14FCE93D00AE8005 /* InfoModal.h */,
548260D014FCE93D00AE8005 /* InfoModal.m */,
18A3511F1864A5F7001A53B5 /* LiteVersionModal.h */,
18A351201864A5F7001A53B5 /* LiteVersionModal.m */,
548260CC14FCE86200AE8005 /* AppSettingModal.h */,
548260CD14FCE86200AE8005 /* AppSettingModal.m */,
187BBDD215F1DC9200A0676A /* CSLayerViewController.h */,
187BBDD315F1DC9200A0676A /* CSLayerViewController.m */,
5439B32814E0FC4F0081E7F4 /* CSLayerTableViewController.h */,
5439B32914E0FC4F0081E7F4 /* CSLayerTableViewController.m */,
548A7D1514DF69FD0044FF00 /* PaperSetModal.h */,
548A7D1614DF69FD0044FF00 /* PaperSetModal.m */,
5438D64F146A68AB00CE9136 /* CSAppDelegate.h */,
5438D650146A68AB00CE9136 /* CSAppDelegate.m */,
5438D652146A68AB00CE9136 /* CSMainViewController.h */,
5438D653146A68AB00CE9136 /* CSMainViewController.m */,
5438D655146A68AB00CE9136 /* CSFlipsideViewController.h */,
5438D656146A68AB00CE9136 /* CSFlipsideViewController.m */,
5438D65E146A68AB00CE9136 /* CSFlipsideViewController.xib */,
548907DE14EE24560030A34E /* WelcomeMovieModal.h */,
548907DF14EE24560030A34E /* WelcomeMovieModal.m */,
5438D647146A68AB00CE9136 /* Supporting Files */,
);
path = AppSlate;
sourceTree = "<group>";
};
5438D647146A68AB00CE9136 /* Supporting Files */ = {
isa = PBXGroup;
children = (
541672B01860443B00332D78 /* AppSlateLite-Info.plist */,
54C4316E17CF0509004B150D /* Localizable.strings */,
5438D648146A68AB00CE9136 /* AppSlate-Info.plist */,
5438D649146A68AB00CE9136 /* InfoPlist.strings */,
5438D64C146A68AB00CE9136 /* main.m */,
5438D64E146A68AB00CE9136 /* AppSlate-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
5438D66D146A90A500CE9136 /* GearObjects */ = {
isa = PBXGroup;
children = (
5438D672146A949600CE9136 /* CSGearObject.h */,
5438D673146A949600CE9136 /* CSGearObject.m */,
54E5AD38151B140F0017D2A7 /* CSClock */,
54471F17150F0EDD00354AEC /* CSFBSend.h */,
54471F18150F0EDD00354AEC /* CSFBSend.m */,
549BAF8A150DC35400EDC162 /* CSQueue.h */,
549BAF8B150DC35400EDC162 /* CSQueue.m */,
54D13BE914D7BF2C005D4616 /* CSBulb */,
5463E3F315074B90008D4717 /* CSTwitTable */,
187C6D3A15025A7E00507D73 /* CSAccelero.h */,
187C6D3B15025A7E00507D73 /* CSAccelero.m */,
548B4B2414FC7778007EE7D8 /* CSTick.h */,
548B4B2514FC7778007EE7D8 /* CSTick.m */,
548B4B1E14FC70F3007EE7D8 /* CSVLine.h */,
548B4B1F14FC70F3007EE7D8 /* CSVLine.m */,
187BF21D14F837BF0038B5CF /* CSStrComp.h */,
187BF21E14F837BF0038B5CF /* CSStrComp.m */,
18D48CB614F1B38600503CFA /* CSTee.h */,
18D48CB714F1B38600503CFA /* CSTee.m */,
18BFB1F114F1AE2600EC0987 /* CSXnor.h */,
18BFB1F214F1AE2600EC0987 /* CSXnor.m */,
18BFB1EA14F1AB4900EC0987 /* CSNand.h */,
18BFB1EB14F1AB4900EC0987 /* CSNand.m */,
18BFB1EC14F1AB4900EC0987 /* CSNor.h */,
18BFB1ED14F1AB4900EC0987 /* CSNor.m */,
54FC43C614D24C550015E977 /* CSTable.h */,
54FC43C714D24C550015E977 /* CSTable.m */,
189CF0E614D19D9C00C1E66F /* CSSlider.h */,
189CF0E714D19D9C00C1E66F /* CSSlider.m */,
180B65F714CABC600010DCE3 /* CSToggleButton.h */,
180B65F814CABC600010DCE3 /* CSToggleButton.m */,
1841AA3614CA93C8000AC42D /* CSButton.h */,
1841AA3714CA93C8000AC42D /* CSButton.m */,
547AAF0614C9157C00B6EF08 /* CSSwitch.h */,
547AAF0714C9157C00B6EF08 /* CSSwitch.m */,
54D326AB14C7F57A00AF1CDE /* CSBtnTextField.h */,
54D326AC14C7F57A00AF1CDE /* CSBtnTextField.m */,
1814514E146ADA3400AE2B83 /* CSLabel.h */,
1814514F146ADA3400AE2B83 /* CSLabel.m */,
5474F86B1470BF01002C8652 /* CSTextField.h */,
5474F86C1470BF01002C8652 /* CSTextField.m */,
549313DF14D11F0200F2E7DC /* CSFlipCounter.h */,
549313E014D11F0200F2E7DC /* CSFlipCounter.m */,