This repository was archived by the owner on Jul 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 452
Expand file tree
/
Copy pathproject.pbxproj
More file actions
2887 lines (2876 loc) · 266 KB
/
project.pbxproj
File metadata and controls
2887 lines (2876 loc) · 266 KB
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 */
9A0B72601CED6851004FDACC /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0B725F1CED6851004FDACC /* SystemConfiguration.framework */; };
9A0B72621CED6858004FDACC /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0B72611CED6858004FDACC /* MobileCoreServices.framework */; };
9A0B72641CED685F004FDACC /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0B72631CED685F004FDACC /* CoreTelephony.framework */; };
9A0B72661CED6868004FDACC /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0B72651CED6868004FDACC /* CoreLocation.framework */; };
9A6061C11CEC949E00D14D73 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 9A6061C01CEC949E00D14D73 /* Info.plist */; };
9AAFA2101E14FBA4006618E0 /* LCChatKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1251E14FBA3006618E0 /* LCChatKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2111E14FBA4006618E0 /* LCChatKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1261E14FBA3006618E0 /* LCChatKit.m */; };
9AAFA2121E14FBA4006618E0 /* AVIMMessage+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1281E14FBA3006618E0 /* AVIMMessage+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2131E14FBA4006618E0 /* AVIMMessage+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1291E14FBA3006618E0 /* AVIMMessage+LCCKExtension.m */; };
9AAFA2141E14FBA4006618E0 /* AVIMTypedMessage+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA12A1E14FBA3006618E0 /* AVIMTypedMessage+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2151E14FBA4006618E0 /* AVIMTypedMessage+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA12B1E14FBA3006618E0 /* AVIMTypedMessage+LCCKExtension.m */; };
9AAFA2161E14FBA4006618E0 /* LCCKMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA12C1E14FBA3006618E0 /* LCCKMessage.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2171E14FBA4006618E0 /* LCCKMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA12D1E14FBA3006618E0 /* LCCKMessage.m */; };
9AAFA2181E14FBA4006618E0 /* LCCKMessageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA12E1E14FBA3006618E0 /* LCCKMessageDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2191E14FBA4006618E0 /* LCCKUserDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA12F1E14FBA3006618E0 /* LCCKUserDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA21A1E14FBA4006618E0 /* NSMutableArray+LCCKMessageExtention.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1301E14FBA3006618E0 /* NSMutableArray+LCCKMessageExtention.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA21B1E14FBA4006618E0 /* NSMutableArray+LCCKMessageExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1311E14FBA3006618E0 /* NSMutableArray+LCCKMessageExtention.m */; };
9AAFA21C1E14FBA4006618E0 /* NSObject+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1321E14FBA3006618E0 /* NSObject+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA21D1E14FBA4006618E0 /* NSObject+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1331E14FBA3006618E0 /* NSObject+LCCKExtension.m */; };
9AAFA21E1E14FBA4006618E0 /* LCCKBaseConversationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1361E14FBA3006618E0 /* LCCKBaseConversationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA21F1E14FBA4006618E0 /* LCCKBaseConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1371E14FBA3006618E0 /* LCCKBaseConversationViewController.m */; };
9AAFA2201E14FBA4006618E0 /* LCCKBaseNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1381E14FBA3006618E0 /* LCCKBaseNavigationController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2211E14FBA4006618E0 /* LCCKBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1391E14FBA3006618E0 /* LCCKBaseNavigationController.m */; };
9AAFA2221E14FBA4006618E0 /* LCCKBaseTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA13A1E14FBA3006618E0 /* LCCKBaseTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2231E14FBA4006618E0 /* LCCKBaseTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA13B1E14FBA3006618E0 /* LCCKBaseTableViewController.m */; };
9AAFA2241E14FBA4006618E0 /* LCCKBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA13C1E14FBA3006618E0 /* LCCKBaseViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2251E14FBA4006618E0 /* LCCKBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA13D1E14FBA3006618E0 /* LCCKBaseViewController.m */; };
9AAFA2261E14FBA4006618E0 /* LCCKContactListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1401E14FBA3006618E0 /* LCCKContactListViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2271E14FBA4006618E0 /* LCCKContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1411E14FBA3006618E0 /* LCCKContactListViewController.m */; };
9AAFA2281E14FBA4006618E0 /* LCCKContact.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1431E14FBA3006618E0 /* LCCKContact.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2291E14FBA4006618E0 /* LCCKContact.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1441E14FBA3006618E0 /* LCCKContact.m */; };
9AAFA22A1E14FBA4006618E0 /* LCCKContactCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1461E14FBA3006618E0 /* LCCKContactCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA22B1E14FBA4006618E0 /* LCCKContactCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1471E14FBA3006618E0 /* LCCKContactCell.m */; };
9AAFA22C1E14FBA4006618E0 /* LCCKContactCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1481E14FBA3006618E0 /* LCCKContactCell.xib */; };
9AAFA22D1E14FBA4006618E0 /* LCCKConversationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA14B1E14FBA3006618E0 /* LCCKConversationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA22E1E14FBA4006618E0 /* LCCKConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA14C1E14FBA3006618E0 /* LCCKConversationViewController.m */; };
9AAFA22F1E14FBA4006618E0 /* LCCKLocationController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA14D1E14FBA3006618E0 /* LCCKLocationController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2301E14FBA4006618E0 /* LCCKLocationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA14E1E14FBA3006618E0 /* LCCKLocationController.m */; };
9AAFA2311E14FBA4006618E0 /* LCCKTextFullScreenViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA14F1E14FBA3006618E0 /* LCCKTextFullScreenViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2321E14FBA4006618E0 /* LCCKTextFullScreenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1501E14FBA3006618E0 /* LCCKTextFullScreenViewController.m */; };
9AAFA2331E14FBA4006618E0 /* AVIMConversation+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1521E14FBA3006618E0 /* AVIMConversation+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2341E14FBA4006618E0 /* AVIMConversation+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1531E14FBA3006618E0 /* AVIMConversation+LCCKExtension.m */; };
9AAFA2351E14FBA4006618E0 /* LCCKConversationViewModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1541E14FBA3006618E0 /* LCCKConversationViewModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2361E14FBA4006618E0 /* LCCKConversationViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1551E14FBA3006618E0 /* LCCKConversationViewModel.m */; };
9AAFA2371E14FBA4006618E0 /* LCCKImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1581E14FBA3006618E0 /* LCCKImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2381E14FBA4006618E0 /* LCCKImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1591E14FBA3006618E0 /* LCCKImageManager.m */; };
9AAFA2391E14FBA4006618E0 /* LCCKWeakReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA15A1E14FBA3006618E0 /* LCCKWeakReference.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA23A1E14FBA4006618E0 /* LCCKWeakReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA15B1E14FBA3006618E0 /* LCCKWeakReference.m */; };
9AAFA23B1E14FBA4006618E0 /* NSBundle+LCCKCaleArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA15C1E14FBA3006618E0 /* NSBundle+LCCKCaleArray.m */; };
9AAFA23C1E14FBA4006618E0 /* NSBundle+LCCKSCaleArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA15D1E14FBA3006618E0 /* NSBundle+LCCKSCaleArray.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA23D1E14FBA4006618E0 /* NSMutableDictionary+LCCKWeakReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA15E1E14FBA3006618E0 /* NSMutableDictionary+LCCKWeakReference.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA23E1E14FBA4006618E0 /* NSMutableDictionary+LCCKWeakReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA15F1E14FBA3006618E0 /* NSMutableDictionary+LCCKWeakReference.m */; };
9AAFA23F1E14FBA4006618E0 /* NSString+LCCKAddScale.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1601E14FBA3006618E0 /* NSString+LCCKAddScale.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2401E14FBA4006618E0 /* NSString+LCCKAddScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1611E14FBA3006618E0 /* NSString+LCCKAddScale.m */; };
9AAFA2411E14FBA4006618E0 /* LCCKAVAudioPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1621E14FBA3006618E0 /* LCCKAVAudioPlayer.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2421E14FBA4006618E0 /* LCCKAVAudioPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1631E14FBA3006618E0 /* LCCKAVAudioPlayer.m */; };
9AAFA2431E14FBA4006618E0 /* LCCKBubbleImageFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1641E14FBA3006618E0 /* LCCKBubbleImageFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2441E14FBA4006618E0 /* LCCKBubbleImageFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1651E14FBA3006618E0 /* LCCKBubbleImageFactory.m */; };
9AAFA2451E14FBA4006618E0 /* LCCKCellIdentifierFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1661E14FBA3006618E0 /* LCCKCellIdentifierFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2461E14FBA4006618E0 /* LCCKCellIdentifierFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1671E14FBA3006618E0 /* LCCKCellIdentifierFactory.m */; };
9AAFA2471E14FBA4006618E0 /* LCCKCellRegisterController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1681E14FBA3006618E0 /* LCCKCellRegisterController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2481E14FBA4006618E0 /* LCCKCellRegisterController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1691E14FBA3006618E0 /* LCCKCellRegisterController.m */; };
9AAFA2491E14FBA4006618E0 /* LCCKChat.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA16A1E14FBA3006618E0 /* LCCKChat.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA24A1E14FBA4006618E0 /* LCCKChatUntiles.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA16B1E14FBA3006618E0 /* LCCKChatUntiles.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA24B1E14FBA4006618E0 /* LCCKFaceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA16C1E14FBA3006618E0 /* LCCKFaceManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA24C1E14FBA4006618E0 /* LCCKFaceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA16D1E14FBA3006618E0 /* LCCKFaceManager.m */; };
9AAFA24D1E14FBA4006618E0 /* LCCKLastMessageTypeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA16E1E14FBA3006618E0 /* LCCKLastMessageTypeManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA24E1E14FBA4006618E0 /* LCCKLastMessageTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA16F1E14FBA3006618E0 /* LCCKLastMessageTypeManager.m */; };
9AAFA24F1E14FBA4006618E0 /* LCCKLocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1701E14FBA3006618E0 /* LCCKLocationManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2501E14FBA4006618E0 /* LCCKLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1711E14FBA3006618E0 /* LCCKLocationManager.m */; };
9AAFA2511E14FBA4006618E0 /* LCCKMessageVoiceFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1721E14FBA3006618E0 /* LCCKMessageVoiceFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2521E14FBA4006618E0 /* LCCKMessageVoiceFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1731E14FBA3006618E0 /* LCCKMessageVoiceFactory.m */; };
9AAFA2531E14FBA4006618E0 /* LCCKSoundManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1741E14FBA3006618E0 /* LCCKSoundManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2541E14FBA4006618E0 /* LCCKSoundManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1751E14FBA3006618E0 /* LCCKSoundManager.m */; };
9AAFA2551E14FBA4006618E0 /* LCCKChatBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1781E14FBA3006618E0 /* LCCKChatBar.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2561E14FBA4006618E0 /* LCCKChatBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1791E14FBA3006618E0 /* LCCKChatBar.m */; };
9AAFA2571E14FBA4006618E0 /* LCCKChatFaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA17A1E14FBA3006618E0 /* LCCKChatFaceView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2581E14FBA5006618E0 /* LCCKChatFaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA17B1E14FBA3006618E0 /* LCCKChatFaceView.m */; };
9AAFA2591E14FBA5006618E0 /* LCCKChatMoreView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA17C1E14FBA3006618E0 /* LCCKChatMoreView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA25A1E14FBA5006618E0 /* LCCKChatMoreView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA17D1E14FBA3006618E0 /* LCCKChatMoreView.m */; };
9AAFA25B1E14FBA5006618E0 /* LCCKFacePageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA17E1E14FBA3006618E0 /* LCCKFacePageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA25C1E14FBA5006618E0 /* LCCKFacePageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA17F1E14FBA3006618E0 /* LCCKFacePageView.m */; };
9AAFA25D1E14FBA5006618E0 /* LCCKInputViewPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1801E14FBA3006618E0 /* LCCKInputViewPlugin.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA25E1E14FBA5006618E0 /* LCCKInputViewPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1811E14FBA3006618E0 /* LCCKInputViewPlugin.m */; };
9AAFA25F1E14FBA5006618E0 /* LCCKInputViewPluginLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1821E14FBA3006618E0 /* LCCKInputViewPluginLocation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2601E14FBA5006618E0 /* LCCKInputViewPluginLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1831E14FBA3006618E0 /* LCCKInputViewPluginLocation.m */; };
9AAFA2611E14FBA5006618E0 /* LCCKInputViewPluginPickImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1841E14FBA3006618E0 /* LCCKInputViewPluginPickImage.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2621E14FBA5006618E0 /* LCCKInputViewPluginPickImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1851E14FBA3006618E0 /* LCCKInputViewPluginPickImage.m */; };
9AAFA2631E14FBA5006618E0 /* LCCKInputViewPluginTakePhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1861E14FBA3006618E0 /* LCCKInputViewPluginTakePhoto.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2641E14FBA5006618E0 /* LCCKInputViewPluginTakePhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1871E14FBA3006618E0 /* LCCKInputViewPluginTakePhoto.m */; };
9AAFA2651E14FBA5006618E0 /* LCCKProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1881E14FBA3006618E0 /* LCCKProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2661E14FBA5006618E0 /* LCCKProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1891E14FBA3006618E0 /* LCCKProgressHUD.m */; };
9AAFA2671E14FBA5006618E0 /* LCCKChatImageMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA18B1E14FBA3006618E0 /* LCCKChatImageMessageCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2681E14FBA5006618E0 /* LCCKChatImageMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA18C1E14FBA3006618E0 /* LCCKChatImageMessageCell.m */; };
9AAFA2691E14FBA5006618E0 /* LCCKChatLocationMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA18D1E14FBA3006618E0 /* LCCKChatLocationMessageCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA26A1E14FBA5006618E0 /* LCCKChatLocationMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA18E1E14FBA3006618E0 /* LCCKChatLocationMessageCell.m */; };
9AAFA26B1E14FBA5006618E0 /* LCCKChatMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA18F1E14FBA3006618E0 /* LCCKChatMessageCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA26C1E14FBA5006618E0 /* LCCKChatMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1901E14FBA3006618E0 /* LCCKChatMessageCell.m */; };
9AAFA26D1E14FBA5006618E0 /* LCCKChatSystemMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1911E14FBA3006618E0 /* LCCKChatSystemMessageCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA26E1E14FBA5006618E0 /* LCCKChatSystemMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1921E14FBA3006618E0 /* LCCKChatSystemMessageCell.m */; };
9AAFA26F1E14FBA5006618E0 /* LCCKChatTextMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1931E14FBA3006618E0 /* LCCKChatTextMessageCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2701E14FBA5006618E0 /* LCCKChatTextMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1941E14FBA3006618E0 /* LCCKChatTextMessageCell.m */; };
9AAFA2711E14FBA5006618E0 /* LCCKChatVoiceMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1951E14FBA3006618E0 /* LCCKChatVoiceMessageCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2721E14FBA5006618E0 /* LCCKChatVoiceMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1961E14FBA3006618E0 /* LCCKChatVoiceMessageCell.m */; };
9AAFA2731E14FBA5006618E0 /* LCCKContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1971E14FBA3006618E0 /* LCCKContentView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2741E14FBA5006618E0 /* LCCKContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1981E14FBA3006618E0 /* LCCKContentView.m */; };
9AAFA2751E14FBA5006618E0 /* LCCKMessageSendStateView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1991E14FBA3006618E0 /* LCCKMessageSendStateView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2761E14FBA5006618E0 /* LCCKMessageSendStateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA19A1E14FBA3006618E0 /* LCCKMessageSendStateView.m */; };
9AAFA2771E14FBA5006618E0 /* LCCKConversationNavigationTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA19B1E14FBA3006618E0 /* LCCKConversationNavigationTitleView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2781E14FBA5006618E0 /* LCCKConversationNavigationTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA19C1E14FBA3006618E0 /* LCCKConversationNavigationTitleView.m */; };
9AAFA2791E14FBA5006618E0 /* LCCKMenuItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA19D1E14FBA3006618E0 /* LCCKMenuItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA27A1E14FBA5006618E0 /* LCCKMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA19E1E14FBA3006618E0 /* LCCKMenuItem.m */; };
9AAFA27B1E14FBA5006618E0 /* LCCKConversationListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1A11E14FBA3006618E0 /* LCCKConversationListViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA27C1E14FBA5006618E0 /* LCCKConversationListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1A21E14FBA3006618E0 /* LCCKConversationListViewController.m */; };
9AAFA27D1E14FBA5006618E0 /* LCCKConversationListViewModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1A41E14FBA3006618E0 /* LCCKConversationListViewModel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA27E1E14FBA5006618E0 /* LCCKConversationListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1A51E14FBA3006618E0 /* LCCKConversationListViewModel.m */; };
9AAFA27F1E14FBA5006618E0 /* LCCKConversationListCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1A71E14FBA3006618E0 /* LCCKConversationListCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2801E14FBA5006618E0 /* LCCKConversationListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1A81E14FBA3006618E0 /* LCCKConversationListCell.m */; };
9AAFA2811E14FBA5006618E0 /* BarButtonIcon.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1AA1E14FBA4006618E0 /* BarButtonIcon.bundle */; };
9AAFA2821E14FBA5006618E0 /* ChatKeyboard.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1AB1E14FBA4006618E0 /* ChatKeyboard.bundle */; };
9AAFA2831E14FBA5006618E0 /* DateTools.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1AC1E14FBA4006618E0 /* DateTools.bundle */; };
9AAFA2841E14FBA5006618E0 /* Emoji.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1AD1E14FBA4006618E0 /* Emoji.bundle */; };
9AAFA2851E14FBA5006618E0 /* LCCKPBLocalizations.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1AE1E14FBA4006618E0 /* LCCKPBLocalizations.bundle */; };
9AAFA2861E14FBA5006618E0 /* LCCKPhotoBrowser.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1AF1E14FBA4006618E0 /* LCCKPhotoBrowser.bundle */; };
9AAFA2871E14FBA5006618E0 /* MBProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1B01E14FBA4006618E0 /* MBProgressHUD.bundle */; };
9AAFA2881E14FBA5006618E0 /* MessageBubble.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1B11E14FBA4006618E0 /* MessageBubble.bundle */; };
9AAFA2891E14FBA5006618E0 /* Other.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1B21E14FBA4006618E0 /* Other.bundle */; };
9AAFA28A1E14FBA5006618E0 /* Placeholder.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1B31E14FBA4006618E0 /* Placeholder.bundle */; };
9AAFA28B1E14FBA5006618E0 /* VoiceMessageSource.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AAFA1B41E14FBA4006618E0 /* VoiceMessageSource.bundle */; };
9AAFA28C1E14FBA5006618E0 /* NSBundle+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1B71E14FBA4006618E0 /* NSBundle+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA28D1E14FBA5006618E0 /* NSBundle+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1B81E14FBA4006618E0 /* NSBundle+LCCKExtension.m */; };
9AAFA28E1E14FBA5006618E0 /* NSFileManager+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1B91E14FBA4006618E0 /* NSFileManager+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA28F1E14FBA5006618E0 /* NSFileManager+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1BA1E14FBA4006618E0 /* NSFileManager+LCCKExtension.m */; };
9AAFA2901E14FBA5006618E0 /* NSString+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1BB1E14FBA4006618E0 /* NSString+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2911E14FBA5006618E0 /* NSString+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1BC1E14FBA4006618E0 /* NSString+LCCKExtension.m */; };
9AAFA2921E14FBA5006618E0 /* NSString+LCCKMD5.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1BD1E14FBA4006618E0 /* NSString+LCCKMD5.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2931E14FBA5006618E0 /* NSString+LCCKMD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1BE1E14FBA4006618E0 /* NSString+LCCKMD5.m */; };
9AAFA2941E14FBA5006618E0 /* UIColor+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1BF1E14FBA4006618E0 /* UIColor+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2951E14FBA5006618E0 /* UIColor+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1C01E14FBA4006618E0 /* UIColor+LCCKExtension.m */; };
9AAFA2961E14FBA5006618E0 /* UIImage+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1C11E14FBA4006618E0 /* UIImage+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2971E14FBA5006618E0 /* UIImage+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1C21E14FBA4006618E0 /* UIImage+LCCKExtension.m */; };
9AAFA2981E14FBA5006618E0 /* UIImageView+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1C31E14FBA4006618E0 /* UIImageView+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2991E14FBA5006618E0 /* UIImageView+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1C41E14FBA4006618E0 /* UIImageView+LCCKExtension.m */; };
9AAFA29A1E14FBA5006618E0 /* UIView+LCCKExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1C51E14FBA4006618E0 /* UIView+LCCKExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA29B1E14FBA5006618E0 /* UIView+LCCKExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1C61E14FBA4006618E0 /* UIView+LCCKExtension.m */; };
9AAFA29C1E14FBA5006618E0 /* ChatKitHeaders.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1C71E14FBA4006618E0 /* ChatKitHeaders.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA29D1E14FBA5006618E0 /* LCChatKit_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1C81E14FBA4006618E0 /* LCChatKit_Internal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA29E1E14FBA5006618E0 /* LCCKConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1C91E14FBA4006618E0 /* LCCKConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA29F1E14FBA5006618E0 /* LCCKServiceDefinition.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1CA1E14FBA4006618E0 /* LCCKServiceDefinition.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2A01E14FBA5006618E0 /* LCCKSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1CB1E14FBA4006618E0 /* LCCKSingleton.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2A11E14FBA5006618E0 /* LCCKSingleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1CC1E14FBA4006618E0 /* LCCKSingleton.m */; };
9AAFA2A21E14FBA5006618E0 /* NSObject+LCCKIsFirstLaunch.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1CD1E14FBA4006618E0 /* NSObject+LCCKIsFirstLaunch.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2A31E14FBA5006618E0 /* NSObject+LCCKIsFirstLaunch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1CE1E14FBA4006618E0 /* NSObject+LCCKIsFirstLaunch.m */; };
9AAFA2A41E14FBA5006618E0 /* LCCKConversationListService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1D01E14FBA4006618E0 /* LCCKConversationListService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2A51E14FBA5006618E0 /* LCCKConversationListService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1D11E14FBA4006618E0 /* LCCKConversationListService.m */; };
9AAFA2A61E14FBA5006618E0 /* LCCKConversationService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1D21E14FBA4006618E0 /* LCCKConversationService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2A71E14FBA5006618E0 /* LCCKConversationService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1D31E14FBA4006618E0 /* LCCKConversationService.m */; };
9AAFA2A81E14FBA5006618E0 /* LCCKSessionService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1D41E14FBA4006618E0 /* LCCKSessionService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2A91E14FBA5006618E0 /* LCCKSessionService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1D51E14FBA4006618E0 /* LCCKSessionService.m */; };
9AAFA2AA1E14FBA5006618E0 /* LCCKSettingService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1D61E14FBA4006618E0 /* LCCKSettingService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2AB1E14FBA5006618E0 /* LCCKSettingService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1D71E14FBA4006618E0 /* LCCKSettingService.m */; };
9AAFA2AC1E14FBA5006618E0 /* LCCKSignatureService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1D81E14FBA4006618E0 /* LCCKSignatureService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2AD1E14FBA5006618E0 /* LCCKSignatureService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1D91E14FBA4006618E0 /* LCCKSignatureService.m */; };
9AAFA2AE1E14FBA5006618E0 /* LCCKUIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1DA1E14FBA4006618E0 /* LCCKUIService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2AF1E14FBA5006618E0 /* LCCKUIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1DB1E14FBA4006618E0 /* LCCKUIService.m */; };
9AAFA2B01E14FBA5006618E0 /* LCCKUserSystemService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1DC1E14FBA4006618E0 /* LCCKUserSystemService.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2B11E14FBA5006618E0 /* LCCKUserSystemService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1DD1E14FBA4006618E0 /* LCCKUserSystemService.m */; };
9AAFA2B21E14FBA5006618E0 /* LCCKDateToolsConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1E01E14FBA4006618E0 /* LCCKDateToolsConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2B31E14FBA5006618E0 /* LCCKError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1E11E14FBA4006618E0 /* LCCKError.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2B41E14FBA5006618E0 /* LCCKError.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1E21E14FBA4006618E0 /* LCCKError.m */; };
9AAFA2B51E14FBA5006618E0 /* NSDate+LCCKDateTools.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1E31E14FBA4006618E0 /* NSDate+LCCKDateTools.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2B61E14FBA5006618E0 /* NSDate+LCCKDateTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1E41E14FBA4006618E0 /* NSDate+LCCKDateTools.m */; };
9AAFA2B71E14FBA5006618E0 /* LCCKAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1E61E14FBA4006618E0 /* LCCKAlertController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2B81E14FBA5006618E0 /* LCCKAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1E71E14FBA4006618E0 /* LCCKAlertController.m */; };
9AAFA2B91E14FBA5006618E0 /* LCCKCaptionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1E91E14FBA4006618E0 /* LCCKCaptionView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2BA1E14FBA5006618E0 /* LCCKCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1EA1E14FBA4006618E0 /* LCCKCaptionView.m */; };
9AAFA2BB1E14FBA5006618E0 /* LCCKPBConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1EB1E14FBA4006618E0 /* LCCKPBConstants.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2BC1E14FBA5006618E0 /* LCCKPhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1EC1E14FBA4006618E0 /* LCCKPhoto.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2BD1E14FBA5006618E0 /* LCCKPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1ED1E14FBA4006618E0 /* LCCKPhoto.m */; };
9AAFA2BE1E14FBA5006618E0 /* LCCKPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1EE1E14FBA4006618E0 /* LCCKPhotoBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2BF1E14FBA5006618E0 /* LCCKPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1EF1E14FBA4006618E0 /* LCCKPhotoBrowser.m */; };
9AAFA2C01E14FBA5006618E0 /* LCCKPhotoProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1F01E14FBA4006618E0 /* LCCKPhotoProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2C11E14FBA5006618E0 /* LCCKTapDetectingImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1F11E14FBA4006618E0 /* LCCKTapDetectingImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2C21E14FBA5006618E0 /* LCCKTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1F21E14FBA4006618E0 /* LCCKTapDetectingImageView.m */; };
9AAFA2C31E14FBA5006618E0 /* LCCKTapDetectingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1F31E14FBA4006618E0 /* LCCKTapDetectingView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2C41E14FBA6006618E0 /* LCCKTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1F41E14FBA4006618E0 /* LCCKTapDetectingView.m */; };
9AAFA2C51E14FBA6006618E0 /* LCCKZoomingScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1F51E14FBA4006618E0 /* LCCKZoomingScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2C61E14FBA6006618E0 /* LCCKZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1F61E14FBA4006618E0 /* LCCKZoomingScrollView.m */; };
9AAFA2C71E14FBA6006618E0 /* LCCKSafariActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1F91E14FBA4006618E0 /* LCCKSafariActivity.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2C81E14FBA6006618E0 /* LCCKSafariActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1FA1E14FBA4006618E0 /* LCCKSafariActivity.m */; };
9AAFA2C91E14FBA6006618E0 /* LCCKWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1FC1E14FBA4006618E0 /* LCCKWebViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2CA1E14FBA6006618E0 /* LCCKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA1FD1E14FBA4006618E0 /* LCCKWebViewController.m */; };
9AAFA2CB1E14FBA6006618E0 /* LCCKWebViewProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA1FF1E14FBA4006618E0 /* LCCKWebViewProgress.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2CC1E14FBA6006618E0 /* LCCKWebViewProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA2001E14FBA4006618E0 /* LCCKWebViewProgress.m */; };
9AAFA2CD1E14FBA6006618E0 /* LCCKWebViewProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA2011E14FBA4006618E0 /* LCCKWebViewProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2CE1E14FBA6006618E0 /* LCCKWebViewProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA2021E14FBA4006618E0 /* LCCKWebViewProgressView.m */; };
9AAFA2CF1E14FBA6006618E0 /* lame.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9AAFA2041E14FBA4006618E0 /* lame.framework */; };
9AAFA2D01E14FBA6006618E0 /* Mp3Recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA2051E14FBA4006618E0 /* Mp3Recorder.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2D11E14FBA6006618E0 /* Mp3Recorder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA2061E14FBA4006618E0 /* Mp3Recorder.m */; };
9AAFA2D21E14FBA6006618E0 /* LCCKBadgeView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA2081E14FBA4006618E0 /* LCCKBadgeView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2D31E14FBA6006618E0 /* LCCKBadgeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA2091E14FBA4006618E0 /* LCCKBadgeView.m */; };
9AAFA2D41E14FBA6006618E0 /* LCCKConversationRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA20A1E14FBA4006618E0 /* LCCKConversationRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2D51E14FBA6006618E0 /* LCCKConversationRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA20B1E14FBA4006618E0 /* LCCKConversationRefreshHeader.m */; };
9AAFA2D61E14FBA6006618E0 /* LCCKStatusView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA20C1E14FBA4006618E0 /* LCCKStatusView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2D71E14FBA6006618E0 /* LCCKStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA20D1E14FBA4006618E0 /* LCCKStatusView.m */; };
9AAFA2D81E14FBA6006618E0 /* LCCKSwipeView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AAFA20E1E14FBA4006618E0 /* LCCKSwipeView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AAFA2D91E14FBA6006618E0 /* LCCKSwipeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AAFA20F1E14FBA4006618E0 /* LCCKSwipeView.m */; };
9AC44D801E15154300619112 /* CYLDeallocBlockExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C3E1E15154200619112 /* CYLDeallocBlockExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D811E15154300619112 /* CYLDeallocExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C3F1E15154200619112 /* CYLDeallocExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D821E15154300619112 /* CYLDeallocExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C401E15154200619112 /* CYLDeallocExecutor.m */; };
9AC44D831E15154300619112 /* NSObject+CYLDeallocBlockExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C411E15154200619112 /* NSObject+CYLDeallocBlockExecutor.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D841E15154300619112 /* NSObject+CYLDeallocBlockExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C421E15154200619112 /* NSObject+CYLDeallocBlockExecutor.m */; };
9AC44D851E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44C431E15154200619112 /* LICENSE */; };
9AC44D861E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C441E15154200619112 /* README.md */; };
9AC44D871E15154300619112 /* DACircularProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C471E15154200619112 /* DACircularProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D881E15154300619112 /* DACircularProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C481E15154200619112 /* DACircularProgressView.m */; };
9AC44D891E15154300619112 /* DALabeledCircularProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C491E15154200619112 /* DALabeledCircularProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D8A1E15154300619112 /* DALabeledCircularProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C4A1E15154200619112 /* DALabeledCircularProgressView.m */; };
9AC44D8B1E15154300619112 /* LICENSE.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C4B1E15154200619112 /* LICENSE.md */; };
9AC44D8C1E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C4C1E15154200619112 /* README.md */; };
9AC44D8D1E15154300619112 /* FDGapLayoutGuide.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C4F1E15154200619112 /* FDGapLayoutGuide.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D8E1E15154300619112 /* FDGapLayoutGuide.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C501E15154200619112 /* FDGapLayoutGuide.m */; };
9AC44D8F1E15154300619112 /* FDLayoutSpacer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C511E15154200619112 /* FDLayoutSpacer.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D901E15154300619112 /* FDLayoutSpacer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C521E15154200619112 /* FDLayoutSpacer.m */; };
9AC44D911E15154300619112 /* FDStackView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C531E15154200619112 /* FDStackView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D921E15154300619112 /* FDStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C541E15154200619112 /* FDStackView.m */; };
9AC44D931E15154300619112 /* FDStackViewAlignmentLayoutArrangement.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C551E15154200619112 /* FDStackViewAlignmentLayoutArrangement.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D941E15154300619112 /* FDStackViewAlignmentLayoutArrangement.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C561E15154200619112 /* FDStackViewAlignmentLayoutArrangement.m */; };
9AC44D951E15154300619112 /* FDStackViewDistributionLayoutArrangement.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C571E15154200619112 /* FDStackViewDistributionLayoutArrangement.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D961E15154300619112 /* FDStackViewDistributionLayoutArrangement.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C581E15154200619112 /* FDStackViewDistributionLayoutArrangement.m */; };
9AC44D971E15154300619112 /* FDStackViewExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C591E15154200619112 /* FDStackViewExtensions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D981E15154300619112 /* FDStackViewExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C5A1E15154200619112 /* FDStackViewExtensions.m */; };
9AC44D991E15154300619112 /* FDStackViewLayoutArrangement.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C5B1E15154200619112 /* FDStackViewLayoutArrangement.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D9A1E15154300619112 /* FDStackViewLayoutArrangement.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C5C1E15154200619112 /* FDStackViewLayoutArrangement.m */; };
9AC44D9B1E15154300619112 /* FDTransformLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C5D1E15154200619112 /* FDTransformLayer.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44D9C1E15154300619112 /* FDTransformLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C5E1E15154200619112 /* FDTransformLayer.m */; };
9AC44D9D1E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44C5F1E15154200619112 /* LICENSE */; };
9AC44D9E1E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C601E15154200619112 /* README.md */; };
9AC44D9F1E15154300619112 /* LICENSE.txt in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44C621E15154200619112 /* LICENSE.txt */; };
9AC44DA01E15154300619112 /* README.markdown in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C631E15154200619112 /* README.markdown */; };
9AC44DA11E15154300619112 /* FMDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C661E15154200619112 /* FMDatabase.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DA21E15154300619112 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C671E15154200619112 /* FMDatabase.m */; };
9AC44DA31E15154300619112 /* FMDatabaseAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C681E15154200619112 /* FMDatabaseAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DA41E15154300619112 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C691E15154300619112 /* FMDatabaseAdditions.m */; };
9AC44DA51E15154300619112 /* FMDatabasePool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C6A1E15154300619112 /* FMDatabasePool.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DA61E15154300619112 /* FMDatabasePool.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C6B1E15154300619112 /* FMDatabasePool.m */; };
9AC44DA71E15154300619112 /* FMDatabaseQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C6C1E15154300619112 /* FMDatabaseQueue.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DA81E15154300619112 /* FMDatabaseQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C6D1E15154300619112 /* FMDatabaseQueue.m */; };
9AC44DA91E15154300619112 /* FMDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C6E1E15154300619112 /* FMDB.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DAA1E15154300619112 /* FMResultSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C6F1E15154300619112 /* FMResultSet.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DAB1E15154300619112 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C701E15154300619112 /* FMResultSet.m */; };
9AC44DAC1E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44C721E15154300619112 /* LICENSE */; };
9AC44DAD1E15154300619112 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C741E15154300619112 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DAE1E15154300619112 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C751E15154300619112 /* MASCompositeConstraint.m */; };
9AC44DAF1E15154300619112 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C761E15154300619112 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB01E15154300619112 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C771E15154300619112 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB11E15154300619112 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C781E15154300619112 /* MASConstraint.m */; };
9AC44DB21E15154300619112 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C791E15154300619112 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB31E15154300619112 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C7A1E15154300619112 /* MASConstraintMaker.m */; };
9AC44DB41E15154300619112 /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C7B1E15154300619112 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB51E15154300619112 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C7C1E15154300619112 /* MASLayoutConstraint.m */; };
9AC44DB61E15154300619112 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C7D1E15154300619112 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB71E15154300619112 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C7E1E15154300619112 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB81E15154300619112 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C7F1E15154300619112 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DB91E15154300619112 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C801E15154300619112 /* MASViewAttribute.m */; };
9AC44DBA1E15154300619112 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C811E15154300619112 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DBB1E15154300619112 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C821E15154300619112 /* MASViewConstraint.m */; };
9AC44DBC1E15154300619112 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C831E15154300619112 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DBD1E15154300619112 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C841E15154300619112 /* NSArray+MASAdditions.m */; };
9AC44DBE1E15154300619112 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C851E15154300619112 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DBF1E15154300619112 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C861E15154300619112 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DC01E15154300619112 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C871E15154300619112 /* NSLayoutConstraint+MASDebugAdditions.m */; };
9AC44DC11E15154300619112 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C881E15154300619112 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DC21E15154300619112 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C891E15154300619112 /* View+MASAdditions.m */; };
9AC44DC31E15154300619112 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C8A1E15154300619112 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DC41E15154300619112 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C8B1E15154300619112 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DC51E15154300619112 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C8C1E15154300619112 /* ViewController+MASAdditions.m */; };
9AC44DC61E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C8D1E15154300619112 /* README.md */; };
9AC44DC71E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44C8F1E15154300619112 /* LICENSE */; };
9AC44DC81E15154300619112 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C901E15154300619112 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DC91E15154300619112 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C911E15154300619112 /* MBProgressHUD.m */; };
9AC44DCA1E15154300619112 /* README.mdown in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C921E15154300619112 /* README.mdown */; };
9AC44DCB1E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44C941E15154300619112 /* LICENSE */; };
9AC44DCC1E15154300619112 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C971E15154300619112 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DCD1E15154300619112 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C981E15154300619112 /* MJRefreshAutoFooter.m */; };
9AC44DCE1E15154300619112 /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C991E15154300619112 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DCF1E15154300619112 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C9A1E15154300619112 /* MJRefreshBackFooter.m */; };
9AC44DD01E15154300619112 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C9B1E15154300619112 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DD11E15154300619112 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C9C1E15154300619112 /* MJRefreshComponent.m */; };
9AC44DD21E15154300619112 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C9D1E15154300619112 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DD31E15154300619112 /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44C9E1E15154300619112 /* MJRefreshFooter.m */; };
9AC44DD41E15154300619112 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44C9F1E15154300619112 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DD51E15154300619112 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CA01E15154300619112 /* MJRefreshHeader.m */; };
9AC44DD61E15154300619112 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CA41E15154300619112 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DD71E15154300619112 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CA51E15154300619112 /* MJRefreshAutoGifFooter.m */; };
9AC44DD81E15154300619112 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CA61E15154300619112 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DD91E15154300619112 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CA71E15154300619112 /* MJRefreshAutoNormalFooter.m */; };
9AC44DDA1E15154300619112 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CA81E15154300619112 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DDB1E15154300619112 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CA91E15154300619112 /* MJRefreshAutoStateFooter.m */; };
9AC44DDC1E15154300619112 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CAB1E15154300619112 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DDD1E15154300619112 /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CAC1E15154300619112 /* MJRefreshBackGifFooter.m */; };
9AC44DDE1E15154300619112 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CAD1E15154300619112 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DDF1E15154300619112 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CAE1E15154300619112 /* MJRefreshBackNormalFooter.m */; };
9AC44DE01E15154300619112 /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CAF1E15154300619112 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DE11E15154300619112 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CB01E15154300619112 /* MJRefreshBackStateFooter.m */; };
9AC44DE21E15154300619112 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CB21E15154300619112 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DE31E15154300619112 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CB31E15154300619112 /* MJRefreshGifHeader.m */; };
9AC44DE41E15154300619112 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CB41E15154300619112 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DE51E15154300619112 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CB51E15154300619112 /* MJRefreshNormalHeader.m */; };
9AC44DE61E15154300619112 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CB61E15154300619112 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DE71E15154300619112 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CB71E15154300619112 /* MJRefreshStateHeader.m */; };
9AC44DE81E15154300619112 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CB81E15154300619112 /* MJRefresh.bundle */; };
9AC44DE91E15154300619112 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CB91E15154300619112 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DEA1E15154300619112 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CBA1E15154300619112 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DEB1E15154300619112 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CBB1E15154300619112 /* MJRefreshConst.m */; };
9AC44DEC1E15154300619112 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CBC1E15154300619112 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DED1E15154300619112 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CBD1E15154300619112 /* UIScrollView+MJExtension.m */; };
9AC44DEE1E15154300619112 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CBE1E15154300619112 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DEF1E15154300619112 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CBF1E15154300619112 /* UIScrollView+MJRefresh.m */; };
9AC44DF01E15154300619112 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CC01E15154300619112 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DF11E15154300619112 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CC11E15154300619112 /* UIView+MJExtension.m */; };
9AC44DF21E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CC21E15154300619112 /* README.md */; };
9AC44DF31E15154300619112 /* NSAttributedString+MLLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CC61E15154300619112 /* NSAttributedString+MLLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DF41E15154300619112 /* NSAttributedString+MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CC71E15154300619112 /* NSAttributedString+MLLabel.m */; };
9AC44DF51E15154300619112 /* NSMutableAttributedString+MLLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CC81E15154300619112 /* NSMutableAttributedString+MLLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DF61E15154300619112 /* NSMutableAttributedString+MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CC91E15154300619112 /* NSMutableAttributedString+MLLabel.m */; };
9AC44DF71E15154300619112 /* NSString+MLLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CCA1E15154300619112 /* NSString+MLLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DF81E15154300619112 /* NSString+MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CCB1E15154300619112 /* NSString+MLLabel.m */; };
9AC44DF91E15154300619112 /* MLExpressionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CCD1E15154300619112 /* MLExpressionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DFA1E15154300619112 /* MLExpressionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CCE1E15154300619112 /* MLExpressionManager.m */; };
9AC44DFB1E15154300619112 /* MLTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CCF1E15154300619112 /* MLTextAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DFC1E15154300619112 /* MLTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CD01E15154300619112 /* MLTextAttachment.m */; };
9AC44DFD1E15154300619112 /* NSAttributedString+MLExpression.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CD11E15154300619112 /* NSAttributedString+MLExpression.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44DFE1E15154300619112 /* NSAttributedString+MLExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CD21E15154300619112 /* NSAttributedString+MLExpression.m */; };
9AC44DFF1E15154300619112 /* NSString+MLExpression.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CD31E15154300619112 /* NSString+MLExpression.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E001E15154300619112 /* NSString+MLExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CD41E15154300619112 /* NSString+MLExpression.m */; };
9AC44E011E15154300619112 /* MLLabel+Override.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CD61E15154300619112 /* MLLabel+Override.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E021E15154300619112 /* MLLabelLayoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CD71E15154300619112 /* MLLabelLayoutManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E031E15154300619112 /* MLLabelLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CD81E15154300619112 /* MLLabelLayoutManager.m */; };
9AC44E041E15154300619112 /* MLLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CD91E15154300619112 /* MLLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E051E15154300619112 /* MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CDA1E15154300619112 /* MLLabel.m */; };
9AC44E061E15154300619112 /* MLLinkLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44CDB1E15154300619112 /* MLLinkLabel.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E071E15154300619112 /* MLLinkLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CDC1E15154300619112 /* MLLinkLabel.m */; };
9AC44E081E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CDD1E15154300619112 /* LICENSE */; };
9AC44E091E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44CDE1E15154300619112 /* README.md */; };
9AC44E0A1E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE01E15154300619112 /* LICENSE */; };
9AC44E0B1E15154300619112 /* ImageError.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE31E15154300619112 /* ImageError.png */; };
9AC44E0C1E15154300619112 /* ImageError@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE41E15154300619112 /* ImageError@2x.png */; };
9AC44E0D1E15154300619112 /* ImageError@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE51E15154300619112 /* ImageError@3x.png */; };
9AC44E0E1E15154300619112 /* ImageSelectedOff.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE61E15154300619112 /* ImageSelectedOff.png */; };
9AC44E0F1E15154300619112 /* ImageSelectedOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE71E15154300619112 /* ImageSelectedOff@2x.png */; };
9AC44E101E15154300619112 /* ImageSelectedOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE81E15154300619112 /* ImageSelectedOff@3x.png */; };
9AC44E111E15154300619112 /* ImageSelectedOn.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CE91E15154300619112 /* ImageSelectedOn.png */; };
9AC44E121E15154300619112 /* ImageSelectedOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CEA1E15154300619112 /* ImageSelectedOn@2x.png */; };
9AC44E131E15154300619112 /* ImageSelectedOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CEB1E15154300619112 /* ImageSelectedOn@3x.png */; };
9AC44E141E15154300619112 /* ImageSelectedSmallOff.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CEC1E15154300619112 /* ImageSelectedSmallOff.png */; };
9AC44E151E15154300619112 /* ImageSelectedSmallOff@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CED1E15154300619112 /* ImageSelectedSmallOff@2x.png */; };
9AC44E161E15154300619112 /* ImageSelectedSmallOff@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CEE1E15154300619112 /* ImageSelectedSmallOff@3x.png */; };
9AC44E171E15154300619112 /* ImageSelectedSmallOn.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CEF1E15154300619112 /* ImageSelectedSmallOn.png */; };
9AC44E181E15154300619112 /* ImageSelectedSmallOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF01E15154300619112 /* ImageSelectedSmallOn@2x.png */; };
9AC44E191E15154300619112 /* ImageSelectedSmallOn@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF11E15154300619112 /* ImageSelectedSmallOn@3x.png */; };
9AC44E1A1E15154300619112 /* PlayButtonOverlayLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF21E15154300619112 /* PlayButtonOverlayLarge.png */; };
9AC44E1B1E15154300619112 /* PlayButtonOverlayLarge@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF31E15154300619112 /* PlayButtonOverlayLarge@2x.png */; };
9AC44E1C1E15154300619112 /* PlayButtonOverlayLarge@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF41E15154300619112 /* PlayButtonOverlayLarge@3x.png */; };
9AC44E1D1E15154300619112 /* PlayButtonOverlayLargeTap.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF51E15154300619112 /* PlayButtonOverlayLargeTap.png */; };
9AC44E1E1E15154300619112 /* PlayButtonOverlayLargeTap@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF61E15154300619112 /* PlayButtonOverlayLargeTap@2x.png */; };
9AC44E1F1E15154300619112 /* PlayButtonOverlayLargeTap@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF71E15154300619112 /* PlayButtonOverlayLargeTap@3x.png */; };
9AC44E201E15154300619112 /* UIBarButtonItemArrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF81E15154300619112 /* UIBarButtonItemArrowLeft.png */; };
9AC44E211E15154300619112 /* UIBarButtonItemArrowLeft@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CF91E15154300619112 /* UIBarButtonItemArrowLeft@2x.png */; };
9AC44E221E15154300619112 /* UIBarButtonItemArrowLeft@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CFA1E15154300619112 /* UIBarButtonItemArrowLeft@3x.png */; };
9AC44E231E15154300619112 /* UIBarButtonItemArrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CFB1E15154300619112 /* UIBarButtonItemArrowRight.png */; };
9AC44E241E15154300619112 /* UIBarButtonItemArrowRight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CFC1E15154300619112 /* UIBarButtonItemArrowRight@2x.png */; };
9AC44E251E15154300619112 /* UIBarButtonItemArrowRight@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CFD1E15154300619112 /* UIBarButtonItemArrowRight@3x.png */; };
9AC44E261E15154300619112 /* UIBarButtonItemGrid.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CFE1E15154300619112 /* UIBarButtonItemGrid.png */; };
9AC44E271E15154300619112 /* UIBarButtonItemGrid@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44CFF1E15154300619112 /* UIBarButtonItemGrid@2x.png */; };
9AC44E281E15154300619112 /* UIBarButtonItemGrid@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D001E15154300619112 /* UIBarButtonItemGrid@3x.png */; };
9AC44E291E15154300619112 /* VideoOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D011E15154300619112 /* VideoOverlay.png */; };
9AC44E2A1E15154300619112 /* VideoOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D021E15154300619112 /* VideoOverlay@2x.png */; };
9AC44E2B1E15154300619112 /* VideoOverlay@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D031E15154300619112 /* VideoOverlay@3x.png */; };
9AC44E2C1E15154300619112 /* MWCaptionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D051E15154300619112 /* MWCaptionView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E2D1E15154300619112 /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D061E15154300619112 /* MWCaptionView.m */; };
9AC44E2E1E15154300619112 /* MWCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D071E15154300619112 /* MWCommon.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E2F1E15154300619112 /* MWGridCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D081E15154300619112 /* MWGridCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E301E15154300619112 /* MWGridCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D091E15154300619112 /* MWGridCell.m */; };
9AC44E311E15154300619112 /* MWGridViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D0A1E15154300619112 /* MWGridViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E321E15154300619112 /* MWGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D0B1E15154300619112 /* MWGridViewController.m */; };
9AC44E331E15154300619112 /* MWPhoto.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D0C1E15154300619112 /* MWPhoto.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E341E15154300619112 /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D0D1E15154300619112 /* MWPhoto.m */; };
9AC44E351E15154300619112 /* MWPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D0E1E15154300619112 /* MWPhotoBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E361E15154300619112 /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D0F1E15154300619112 /* MWPhotoBrowser.m */; };
9AC44E371E15154300619112 /* MWPhotoBrowserPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D101E15154300619112 /* MWPhotoBrowserPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E381E15154300619112 /* MWPhotoProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D111E15154300619112 /* MWPhotoProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E391E15154300619112 /* MWTapDetectingImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D121E15154300619112 /* MWTapDetectingImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E3A1E15154300619112 /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D131E15154300619112 /* MWTapDetectingImageView.m */; };
9AC44E3B1E15154300619112 /* MWTapDetectingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D141E15154300619112 /* MWTapDetectingView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E3C1E15154300619112 /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D151E15154300619112 /* MWTapDetectingView.m */; };
9AC44E3D1E15154300619112 /* MWZoomingScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D161E15154300619112 /* MWZoomingScrollView.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E3E1E15154300619112 /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D171E15154300619112 /* MWZoomingScrollView.m */; };
9AC44E3F1E15154300619112 /* UIImage+MWPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D181E15154300619112 /* UIImage+MWPhotoBrowser.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E401E15154300619112 /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D191E15154300619112 /* UIImage+MWPhotoBrowser.m */; };
9AC44E411E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D1A1E15154300619112 /* README.md */; };
9AC44E421E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D1C1E15154300619112 /* LICENSE */; };
9AC44E431E15154300619112 /* POP.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D1E1E15154300619112 /* POP.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E441E15154300619112 /* POPAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D1F1E15154300619112 /* POPAction.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E451E15154300619112 /* POPAnimatableProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D201E15154300619112 /* POPAnimatableProperty.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E461E15154300619112 /* POPAnimatableProperty.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D211E15154300619112 /* POPAnimatableProperty.mm */; };
9AC44E471E15154300619112 /* POPAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D221E15154300619112 /* POPAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E481E15154300619112 /* POPAnimation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D231E15154300619112 /* POPAnimation.mm */; };
9AC44E491E15154300619112 /* POPAnimationEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D241E15154300619112 /* POPAnimationEvent.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E4A1E15154300619112 /* POPAnimationEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D251E15154300619112 /* POPAnimationEvent.mm */; };
9AC44E4B1E15154300619112 /* POPAnimationEventInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D261E15154300619112 /* POPAnimationEventInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E4C1E15154300619112 /* POPAnimationExtras.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D271E15154300619112 /* POPAnimationExtras.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E4D1E15154300619112 /* POPAnimationExtras.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D281E15154300619112 /* POPAnimationExtras.mm */; };
9AC44E4E1E15154300619112 /* POPAnimationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D291E15154300619112 /* POPAnimationInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E4F1E15154300619112 /* POPAnimationPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D2A1E15154300619112 /* POPAnimationPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E501E15154300619112 /* POPAnimationRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D2B1E15154300619112 /* POPAnimationRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E511E15154300619112 /* POPAnimationRuntime.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D2C1E15154300619112 /* POPAnimationRuntime.mm */; };
9AC44E521E15154300619112 /* POPAnimationTracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D2D1E15154300619112 /* POPAnimationTracer.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E531E15154300619112 /* POPAnimationTracer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D2E1E15154300619112 /* POPAnimationTracer.mm */; };
9AC44E541E15154300619112 /* POPAnimationTracerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D2F1E15154300619112 /* POPAnimationTracerInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E551E15154300619112 /* POPAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D301E15154300619112 /* POPAnimator.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E561E15154300619112 /* POPAnimator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D311E15154300619112 /* POPAnimator.mm */; };
9AC44E571E15154300619112 /* POPAnimatorPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D321E15154300619112 /* POPAnimatorPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E581E15154300619112 /* POPBasicAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D331E15154300619112 /* POPBasicAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E591E15154300619112 /* POPBasicAnimation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D341E15154300619112 /* POPBasicAnimation.mm */; };
9AC44E5A1E15154300619112 /* POPBasicAnimationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D351E15154300619112 /* POPBasicAnimationInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E5B1E15154300619112 /* POPCGUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D361E15154300619112 /* POPCGUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E5C1E15154300619112 /* POPCGUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D371E15154300619112 /* POPCGUtils.mm */; };
9AC44E5D1E15154300619112 /* POPCustomAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D381E15154300619112 /* POPCustomAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E5E1E15154300619112 /* POPCustomAnimation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D391E15154300619112 /* POPCustomAnimation.mm */; };
9AC44E5F1E15154300619112 /* POPDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D3A1E15154300619112 /* POPDecayAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E601E15154300619112 /* POPDecayAnimation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D3B1E15154300619112 /* POPDecayAnimation.mm */; };
9AC44E611E15154300619112 /* POPDecayAnimationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D3C1E15154300619112 /* POPDecayAnimationInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E621E15154300619112 /* POPDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D3D1E15154300619112 /* POPDefines.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E631E15154300619112 /* POPGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D3E1E15154300619112 /* POPGeometry.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E641E15154300619112 /* POPGeometry.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D3F1E15154300619112 /* POPGeometry.mm */; };
9AC44E651E15154300619112 /* POPLayerExtras.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D401E15154300619112 /* POPLayerExtras.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E661E15154300619112 /* POPLayerExtras.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D411E15154300619112 /* POPLayerExtras.mm */; };
9AC44E671E15154300619112 /* POPMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D421E15154300619112 /* POPMath.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E681E15154300619112 /* POPMath.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D431E15154300619112 /* POPMath.mm */; };
9AC44E691E15154300619112 /* POPPropertyAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D441E15154300619112 /* POPPropertyAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E6A1E15154300619112 /* POPPropertyAnimation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D451E15154300619112 /* POPPropertyAnimation.mm */; };
9AC44E6B1E15154300619112 /* POPPropertyAnimationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D461E15154300619112 /* POPPropertyAnimationInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E6C1E15154300619112 /* POPSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D471E15154300619112 /* POPSpringAnimation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E6D1E15154300619112 /* POPSpringAnimation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D481E15154300619112 /* POPSpringAnimation.mm */; };
9AC44E6E1E15154300619112 /* POPSpringAnimationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D491E15154300619112 /* POPSpringAnimationInternal.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E6F1E15154300619112 /* POPSpringSolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D4A1E15154300619112 /* POPSpringSolver.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E701E15154300619112 /* POPVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D4B1E15154300619112 /* POPVector.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E711E15154300619112 /* POPVector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D4C1E15154300619112 /* POPVector.mm */; };
9AC44E721E15154300619112 /* FloatConversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D4E1E15154300619112 /* FloatConversion.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E731E15154300619112 /* TransformationMatrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D4F1E15154300619112 /* TransformationMatrix.cpp */; };
9AC44E741E15154300619112 /* TransformationMatrix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D501E15154300619112 /* TransformationMatrix.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E751E15154300619112 /* UnitBezier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D511E15154300619112 /* UnitBezier.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E761E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D521E15154300619112 /* README.md */; };
9AC44E771E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D541E15154300619112 /* LICENSE */; };
9AC44E781E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D551E15154300619112 /* README.md */; };
9AC44E791E15154300619112 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D571E15154300619112 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E7A1E15154300619112 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D581E15154300619112 /* NSData+ImageContentType.m */; };
9AC44E7B1E15154300619112 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D591E15154300619112 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E7C1E15154300619112 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D5A1E15154300619112 /* SDImageCache.m */; };
9AC44E7D1E15154300619112 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D5B1E15154300619112 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E7E1E15154300619112 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D5C1E15154300619112 /* SDWebImageCompat.m */; };
9AC44E7F1E15154300619112 /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D5D1E15154300619112 /* SDWebImageDecoder.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E801E15154300619112 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D5E1E15154300619112 /* SDWebImageDecoder.m */; };
9AC44E811E15154300619112 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D5F1E15154300619112 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E821E15154300619112 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D601E15154300619112 /* SDWebImageDownloader.m */; };
9AC44E831E15154300619112 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D611E15154300619112 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E841E15154300619112 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D621E15154300619112 /* SDWebImageDownloaderOperation.m */; };
9AC44E851E15154300619112 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D631E15154300619112 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E861E15154300619112 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D641E15154300619112 /* SDWebImageManager.m */; };
9AC44E871E15154300619112 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D651E15154300619112 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E881E15154300619112 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D661E15154300619112 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E891E15154300619112 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D671E15154300619112 /* SDWebImagePrefetcher.m */; };
9AC44E8A1E15154300619112 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D681E15154300619112 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E8B1E15154300619112 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D691E15154300619112 /* UIButton+WebCache.m */; };
9AC44E8C1E15154300619112 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D6A1E15154300619112 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E8D1E15154300619112 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D6B1E15154300619112 /* UIImage+GIF.m */; };
9AC44E8E1E15154300619112 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D6C1E15154300619112 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E8F1E15154300619112 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D6D1E15154300619112 /* UIImage+MultiFormat.m */; };
9AC44E901E15154300619112 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D6E1E15154300619112 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E911E15154300619112 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D6F1E15154300619112 /* UIImageView+HighlightedWebCache.m */; };
9AC44E921E15154300619112 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D701E15154300619112 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E931E15154300619112 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D711E15154300619112 /* UIImageView+WebCache.m */; };
9AC44E941E15154300619112 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D721E15154300619112 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E951E15154300619112 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D731E15154300619112 /* UIView+WebCacheOperation.m */; };
9AC44E961E15154300619112 /* UITableView+FDIndexPathHeightCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D761E15154300619112 /* UITableView+FDIndexPathHeightCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E971E15154300619112 /* UITableView+FDIndexPathHeightCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D771E15154300619112 /* UITableView+FDIndexPathHeightCache.m */; };
9AC44E981E15154300619112 /* UITableView+FDKeyedHeightCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D781E15154300619112 /* UITableView+FDKeyedHeightCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E991E15154300619112 /* UITableView+FDKeyedHeightCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D791E15154300619112 /* UITableView+FDKeyedHeightCache.m */; };
9AC44E9A1E15154300619112 /* UITableView+FDTemplateLayoutCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D7A1E15154300619112 /* UITableView+FDTemplateLayoutCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E9B1E15154300619112 /* UITableView+FDTemplateLayoutCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D7B1E15154300619112 /* UITableView+FDTemplateLayoutCell.m */; };
9AC44E9C1E15154300619112 /* UITableView+FDTemplateLayoutCellDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC44D7C1E15154300619112 /* UITableView+FDTemplateLayoutCellDebug.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AC44E9D1E15154300619112 /* UITableView+FDTemplateLayoutCellDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D7D1E15154300619112 /* UITableView+FDTemplateLayoutCellDebug.m */; };
9AC44E9E1E15154300619112 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 9AC44D7E1E15154300619112 /* LICENSE */; };
9AC44E9F1E15154300619112 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 9AC44D7F1E15154300619112 /* README.md */; };
FAE19C971EEA8EE4003B95FE /* LCCKRecordAudioHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE19C951EEA8EE4003B95FE /* LCCKRecordAudioHUD.h */; };
FAE19C981EEA8EE4003B95FE /* LCCKRecordAudioHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = FAE19C961EEA8EE4003B95FE /* LCCKRecordAudioHUD.m */; };
FAE19C9E1EEA95CC003B95FE /* LCCKRecordAudioHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = FAE19C9D1EEA95CC003B95FE /* LCCKRecordAudioHUD.bundle */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
44B343625F3F83AFA1F15140 /* Pods-ChatKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ChatKit.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ChatKit/Pods-ChatKit.debug.xcconfig"; sourceTree = "<group>"; };
5159CA305046AA97933FF01E /* Pods-ChatKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ChatKit.release.xcconfig"; path = "Pods/Target Support Files/Pods-ChatKit/Pods-ChatKit.release.xcconfig"; sourceTree = "<group>"; };
9A0B725F1CED6851004FDACC /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
9A0B72611CED6858004FDACC /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
9A0B72631CED685F004FDACC /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
9A0B72651CED6868004FDACC /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
9A1E391A1CED802F007B40F4 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
9A6060821CEC831800D14D73 /* ChatKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ChatKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9A6061C01CEC949E00D14D73 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9AAFA1251E14FBA3006618E0 /* LCChatKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCChatKit.h; sourceTree = "<group>"; };
9AAFA1261E14FBA3006618E0 /* LCChatKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCChatKit.m; sourceTree = "<group>"; };
9AAFA1281E14FBA3006618E0 /* AVIMMessage+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AVIMMessage+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1291E14FBA3006618E0 /* AVIMMessage+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AVIMMessage+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA12A1E14FBA3006618E0 /* AVIMTypedMessage+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AVIMTypedMessage+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA12B1E14FBA3006618E0 /* AVIMTypedMessage+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AVIMTypedMessage+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA12C1E14FBA3006618E0 /* LCCKMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKMessage.h; sourceTree = "<group>"; };
9AAFA12D1E14FBA3006618E0 /* LCCKMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKMessage.m; sourceTree = "<group>"; };
9AAFA12E1E14FBA3006618E0 /* LCCKMessageDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKMessageDelegate.h; sourceTree = "<group>"; };
9AAFA12F1E14FBA3006618E0 /* LCCKUserDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKUserDelegate.h; sourceTree = "<group>"; };
9AAFA1301E14FBA3006618E0 /* NSMutableArray+LCCKMessageExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+LCCKMessageExtention.h"; sourceTree = "<group>"; };
9AAFA1311E14FBA3006618E0 /* NSMutableArray+LCCKMessageExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+LCCKMessageExtention.m"; sourceTree = "<group>"; };
9AAFA1321E14FBA3006618E0 /* NSObject+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1331E14FBA3006618E0 /* NSObject+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1361E14FBA3006618E0 /* LCCKBaseConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKBaseConversationViewController.h; sourceTree = "<group>"; };
9AAFA1371E14FBA3006618E0 /* LCCKBaseConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKBaseConversationViewController.m; sourceTree = "<group>"; };
9AAFA1381E14FBA3006618E0 /* LCCKBaseNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKBaseNavigationController.h; sourceTree = "<group>"; };
9AAFA1391E14FBA3006618E0 /* LCCKBaseNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKBaseNavigationController.m; sourceTree = "<group>"; };
9AAFA13A1E14FBA3006618E0 /* LCCKBaseTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKBaseTableViewController.h; sourceTree = "<group>"; };
9AAFA13B1E14FBA3006618E0 /* LCCKBaseTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKBaseTableViewController.m; sourceTree = "<group>"; };
9AAFA13C1E14FBA3006618E0 /* LCCKBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKBaseViewController.h; sourceTree = "<group>"; };
9AAFA13D1E14FBA3006618E0 /* LCCKBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKBaseViewController.m; sourceTree = "<group>"; };
9AAFA1401E14FBA3006618E0 /* LCCKContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKContactListViewController.h; sourceTree = "<group>"; };
9AAFA1411E14FBA3006618E0 /* LCCKContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKContactListViewController.m; sourceTree = "<group>"; };
9AAFA1431E14FBA3006618E0 /* LCCKContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKContact.h; sourceTree = "<group>"; };
9AAFA1441E14FBA3006618E0 /* LCCKContact.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKContact.m; sourceTree = "<group>"; };
9AAFA1461E14FBA3006618E0 /* LCCKContactCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKContactCell.h; sourceTree = "<group>"; };
9AAFA1471E14FBA3006618E0 /* LCCKContactCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKContactCell.m; sourceTree = "<group>"; };
9AAFA1481E14FBA3006618E0 /* LCCKContactCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LCCKContactCell.xib; sourceTree = "<group>"; };
9AAFA14B1E14FBA3006618E0 /* LCCKConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationViewController.h; sourceTree = "<group>"; };
9AAFA14C1E14FBA3006618E0 /* LCCKConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationViewController.m; sourceTree = "<group>"; };
9AAFA14D1E14FBA3006618E0 /* LCCKLocationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKLocationController.h; sourceTree = "<group>"; };
9AAFA14E1E14FBA3006618E0 /* LCCKLocationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKLocationController.m; sourceTree = "<group>"; };
9AAFA14F1E14FBA3006618E0 /* LCCKTextFullScreenViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKTextFullScreenViewController.h; sourceTree = "<group>"; };
9AAFA1501E14FBA3006618E0 /* LCCKTextFullScreenViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKTextFullScreenViewController.m; sourceTree = "<group>"; };
9AAFA1521E14FBA3006618E0 /* AVIMConversation+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AVIMConversation+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1531E14FBA3006618E0 /* AVIMConversation+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AVIMConversation+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1541E14FBA3006618E0 /* LCCKConversationViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationViewModel.h; sourceTree = "<group>"; };
9AAFA1551E14FBA3006618E0 /* LCCKConversationViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationViewModel.m; sourceTree = "<group>"; };
9AAFA1581E14FBA3006618E0 /* LCCKImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKImageManager.h; sourceTree = "<group>"; };
9AAFA1591E14FBA3006618E0 /* LCCKImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKImageManager.m; sourceTree = "<group>"; };
9AAFA15A1E14FBA3006618E0 /* LCCKWeakReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKWeakReference.h; sourceTree = "<group>"; };
9AAFA15B1E14FBA3006618E0 /* LCCKWeakReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKWeakReference.m; sourceTree = "<group>"; };
9AAFA15C1E14FBA3006618E0 /* NSBundle+LCCKCaleArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+LCCKCaleArray.m"; sourceTree = "<group>"; };
9AAFA15D1E14FBA3006618E0 /* NSBundle+LCCKSCaleArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+LCCKSCaleArray.h"; sourceTree = "<group>"; };
9AAFA15E1E14FBA3006618E0 /* NSMutableDictionary+LCCKWeakReference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+LCCKWeakReference.h"; sourceTree = "<group>"; };
9AAFA15F1E14FBA3006618E0 /* NSMutableDictionary+LCCKWeakReference.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+LCCKWeakReference.m"; sourceTree = "<group>"; };
9AAFA1601E14FBA3006618E0 /* NSString+LCCKAddScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+LCCKAddScale.h"; sourceTree = "<group>"; };
9AAFA1611E14FBA3006618E0 /* NSString+LCCKAddScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+LCCKAddScale.m"; sourceTree = "<group>"; };
9AAFA1621E14FBA3006618E0 /* LCCKAVAudioPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKAVAudioPlayer.h; sourceTree = "<group>"; };
9AAFA1631E14FBA3006618E0 /* LCCKAVAudioPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKAVAudioPlayer.m; sourceTree = "<group>"; };
9AAFA1641E14FBA3006618E0 /* LCCKBubbleImageFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKBubbleImageFactory.h; sourceTree = "<group>"; };
9AAFA1651E14FBA3006618E0 /* LCCKBubbleImageFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKBubbleImageFactory.m; sourceTree = "<group>"; };
9AAFA1661E14FBA3006618E0 /* LCCKCellIdentifierFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKCellIdentifierFactory.h; sourceTree = "<group>"; };
9AAFA1671E14FBA3006618E0 /* LCCKCellIdentifierFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKCellIdentifierFactory.m; sourceTree = "<group>"; };
9AAFA1681E14FBA3006618E0 /* LCCKCellRegisterController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKCellRegisterController.h; sourceTree = "<group>"; };
9AAFA1691E14FBA3006618E0 /* LCCKCellRegisterController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKCellRegisterController.m; sourceTree = "<group>"; };
9AAFA16A1E14FBA3006618E0 /* LCCKChat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChat.h; sourceTree = "<group>"; };
9AAFA16B1E14FBA3006618E0 /* LCCKChatUntiles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatUntiles.h; sourceTree = "<group>"; };
9AAFA16C1E14FBA3006618E0 /* LCCKFaceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKFaceManager.h; sourceTree = "<group>"; };
9AAFA16D1E14FBA3006618E0 /* LCCKFaceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKFaceManager.m; sourceTree = "<group>"; };
9AAFA16E1E14FBA3006618E0 /* LCCKLastMessageTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKLastMessageTypeManager.h; sourceTree = "<group>"; };
9AAFA16F1E14FBA3006618E0 /* LCCKLastMessageTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKLastMessageTypeManager.m; sourceTree = "<group>"; };
9AAFA1701E14FBA3006618E0 /* LCCKLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKLocationManager.h; sourceTree = "<group>"; };
9AAFA1711E14FBA3006618E0 /* LCCKLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKLocationManager.m; sourceTree = "<group>"; };
9AAFA1721E14FBA3006618E0 /* LCCKMessageVoiceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKMessageVoiceFactory.h; sourceTree = "<group>"; };
9AAFA1731E14FBA3006618E0 /* LCCKMessageVoiceFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKMessageVoiceFactory.m; sourceTree = "<group>"; };
9AAFA1741E14FBA3006618E0 /* LCCKSoundManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSoundManager.h; sourceTree = "<group>"; };
9AAFA1751E14FBA3006618E0 /* LCCKSoundManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSoundManager.m; sourceTree = "<group>"; };
9AAFA1781E14FBA3006618E0 /* LCCKChatBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatBar.h; sourceTree = "<group>"; };
9AAFA1791E14FBA3006618E0 /* LCCKChatBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatBar.m; sourceTree = "<group>"; };
9AAFA17A1E14FBA3006618E0 /* LCCKChatFaceView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatFaceView.h; sourceTree = "<group>"; };
9AAFA17B1E14FBA3006618E0 /* LCCKChatFaceView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatFaceView.m; sourceTree = "<group>"; };
9AAFA17C1E14FBA3006618E0 /* LCCKChatMoreView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatMoreView.h; sourceTree = "<group>"; };
9AAFA17D1E14FBA3006618E0 /* LCCKChatMoreView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatMoreView.m; sourceTree = "<group>"; };
9AAFA17E1E14FBA3006618E0 /* LCCKFacePageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKFacePageView.h; sourceTree = "<group>"; };
9AAFA17F1E14FBA3006618E0 /* LCCKFacePageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKFacePageView.m; sourceTree = "<group>"; };
9AAFA1801E14FBA3006618E0 /* LCCKInputViewPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKInputViewPlugin.h; sourceTree = "<group>"; };
9AAFA1811E14FBA3006618E0 /* LCCKInputViewPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKInputViewPlugin.m; sourceTree = "<group>"; };
9AAFA1821E14FBA3006618E0 /* LCCKInputViewPluginLocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKInputViewPluginLocation.h; sourceTree = "<group>"; };
9AAFA1831E14FBA3006618E0 /* LCCKInputViewPluginLocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKInputViewPluginLocation.m; sourceTree = "<group>"; };
9AAFA1841E14FBA3006618E0 /* LCCKInputViewPluginPickImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKInputViewPluginPickImage.h; sourceTree = "<group>"; };
9AAFA1851E14FBA3006618E0 /* LCCKInputViewPluginPickImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKInputViewPluginPickImage.m; sourceTree = "<group>"; };
9AAFA1861E14FBA3006618E0 /* LCCKInputViewPluginTakePhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKInputViewPluginTakePhoto.h; sourceTree = "<group>"; };
9AAFA1871E14FBA3006618E0 /* LCCKInputViewPluginTakePhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKInputViewPluginTakePhoto.m; sourceTree = "<group>"; };
9AAFA1881E14FBA3006618E0 /* LCCKProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKProgressHUD.h; sourceTree = "<group>"; };
9AAFA1891E14FBA3006618E0 /* LCCKProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKProgressHUD.m; sourceTree = "<group>"; };
9AAFA18B1E14FBA3006618E0 /* LCCKChatImageMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatImageMessageCell.h; sourceTree = "<group>"; };
9AAFA18C1E14FBA3006618E0 /* LCCKChatImageMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatImageMessageCell.m; sourceTree = "<group>"; };
9AAFA18D1E14FBA3006618E0 /* LCCKChatLocationMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatLocationMessageCell.h; sourceTree = "<group>"; };
9AAFA18E1E14FBA3006618E0 /* LCCKChatLocationMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatLocationMessageCell.m; sourceTree = "<group>"; };
9AAFA18F1E14FBA3006618E0 /* LCCKChatMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatMessageCell.h; sourceTree = "<group>"; };
9AAFA1901E14FBA3006618E0 /* LCCKChatMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatMessageCell.m; sourceTree = "<group>"; };
9AAFA1911E14FBA3006618E0 /* LCCKChatSystemMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatSystemMessageCell.h; sourceTree = "<group>"; };
9AAFA1921E14FBA3006618E0 /* LCCKChatSystemMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatSystemMessageCell.m; sourceTree = "<group>"; };
9AAFA1931E14FBA3006618E0 /* LCCKChatTextMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatTextMessageCell.h; sourceTree = "<group>"; };
9AAFA1941E14FBA3006618E0 /* LCCKChatTextMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatTextMessageCell.m; sourceTree = "<group>"; };
9AAFA1951E14FBA3006618E0 /* LCCKChatVoiceMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKChatVoiceMessageCell.h; sourceTree = "<group>"; };
9AAFA1961E14FBA3006618E0 /* LCCKChatVoiceMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKChatVoiceMessageCell.m; sourceTree = "<group>"; };
9AAFA1971E14FBA3006618E0 /* LCCKContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKContentView.h; sourceTree = "<group>"; };
9AAFA1981E14FBA3006618E0 /* LCCKContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKContentView.m; sourceTree = "<group>"; };
9AAFA1991E14FBA3006618E0 /* LCCKMessageSendStateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKMessageSendStateView.h; sourceTree = "<group>"; };
9AAFA19A1E14FBA3006618E0 /* LCCKMessageSendStateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKMessageSendStateView.m; sourceTree = "<group>"; };
9AAFA19B1E14FBA3006618E0 /* LCCKConversationNavigationTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationNavigationTitleView.h; sourceTree = "<group>"; };
9AAFA19C1E14FBA3006618E0 /* LCCKConversationNavigationTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationNavigationTitleView.m; sourceTree = "<group>"; };
9AAFA19D1E14FBA3006618E0 /* LCCKMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKMenuItem.h; sourceTree = "<group>"; };
9AAFA19E1E14FBA3006618E0 /* LCCKMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKMenuItem.m; sourceTree = "<group>"; };
9AAFA1A11E14FBA3006618E0 /* LCCKConversationListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationListViewController.h; sourceTree = "<group>"; };
9AAFA1A21E14FBA3006618E0 /* LCCKConversationListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationListViewController.m; sourceTree = "<group>"; };
9AAFA1A41E14FBA3006618E0 /* LCCKConversationListViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationListViewModel.h; sourceTree = "<group>"; };
9AAFA1A51E14FBA3006618E0 /* LCCKConversationListViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationListViewModel.m; sourceTree = "<group>"; };
9AAFA1A71E14FBA3006618E0 /* LCCKConversationListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationListCell.h; sourceTree = "<group>"; };
9AAFA1A81E14FBA3006618E0 /* LCCKConversationListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationListCell.m; sourceTree = "<group>"; };
9AAFA1AA1E14FBA4006618E0 /* BarButtonIcon.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = BarButtonIcon.bundle; sourceTree = "<group>"; };
9AAFA1AB1E14FBA4006618E0 /* ChatKeyboard.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = ChatKeyboard.bundle; sourceTree = "<group>"; };
9AAFA1AC1E14FBA4006618E0 /* DateTools.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = DateTools.bundle; sourceTree = "<group>"; };
9AAFA1AD1E14FBA4006618E0 /* Emoji.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Emoji.bundle; sourceTree = "<group>"; };
9AAFA1AE1E14FBA4006618E0 /* LCCKPBLocalizations.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = LCCKPBLocalizations.bundle; sourceTree = "<group>"; };
9AAFA1AF1E14FBA4006618E0 /* LCCKPhotoBrowser.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = LCCKPhotoBrowser.bundle; sourceTree = "<group>"; };
9AAFA1B01E14FBA4006618E0 /* MBProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MBProgressHUD.bundle; sourceTree = "<group>"; };
9AAFA1B11E14FBA4006618E0 /* MessageBubble.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MessageBubble.bundle; sourceTree = "<group>"; };
9AAFA1B21E14FBA4006618E0 /* Other.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Other.bundle; sourceTree = "<group>"; };
9AAFA1B31E14FBA4006618E0 /* Placeholder.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Placeholder.bundle; sourceTree = "<group>"; };
9AAFA1B41E14FBA4006618E0 /* VoiceMessageSource.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = VoiceMessageSource.bundle; sourceTree = "<group>"; };
9AAFA1B71E14FBA4006618E0 /* NSBundle+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1B81E14FBA4006618E0 /* NSBundle+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1B91E14FBA4006618E0 /* NSFileManager+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSFileManager+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1BA1E14FBA4006618E0 /* NSFileManager+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSFileManager+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1BB1E14FBA4006618E0 /* NSString+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1BC1E14FBA4006618E0 /* NSString+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1BD1E14FBA4006618E0 /* NSString+LCCKMD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+LCCKMD5.h"; sourceTree = "<group>"; };
9AAFA1BE1E14FBA4006618E0 /* NSString+LCCKMD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+LCCKMD5.m"; sourceTree = "<group>"; };
9AAFA1BF1E14FBA4006618E0 /* UIColor+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1C01E14FBA4006618E0 /* UIColor+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1C11E14FBA4006618E0 /* UIImage+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1C21E14FBA4006618E0 /* UIImage+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1C31E14FBA4006618E0 /* UIImageView+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1C41E14FBA4006618E0 /* UIImageView+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1C51E14FBA4006618E0 /* UIView+LCCKExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+LCCKExtension.h"; sourceTree = "<group>"; };
9AAFA1C61E14FBA4006618E0 /* UIView+LCCKExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+LCCKExtension.m"; sourceTree = "<group>"; };
9AAFA1C71E14FBA4006618E0 /* ChatKitHeaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatKitHeaders.h; sourceTree = "<group>"; };
9AAFA1C81E14FBA4006618E0 /* LCChatKit_Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCChatKit_Internal.h; sourceTree = "<group>"; };
9AAFA1C91E14FBA4006618E0 /* LCCKConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConstants.h; sourceTree = "<group>"; };
9AAFA1CA1E14FBA4006618E0 /* LCCKServiceDefinition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKServiceDefinition.h; sourceTree = "<group>"; };
9AAFA1CB1E14FBA4006618E0 /* LCCKSingleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSingleton.h; sourceTree = "<group>"; };
9AAFA1CC1E14FBA4006618E0 /* LCCKSingleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSingleton.m; sourceTree = "<group>"; };
9AAFA1CD1E14FBA4006618E0 /* NSObject+LCCKIsFirstLaunch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+LCCKIsFirstLaunch.h"; sourceTree = "<group>"; };
9AAFA1CE1E14FBA4006618E0 /* NSObject+LCCKIsFirstLaunch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+LCCKIsFirstLaunch.m"; sourceTree = "<group>"; };
9AAFA1D01E14FBA4006618E0 /* LCCKConversationListService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationListService.h; sourceTree = "<group>"; };
9AAFA1D11E14FBA4006618E0 /* LCCKConversationListService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationListService.m; sourceTree = "<group>"; };
9AAFA1D21E14FBA4006618E0 /* LCCKConversationService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationService.h; sourceTree = "<group>"; };
9AAFA1D31E14FBA4006618E0 /* LCCKConversationService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationService.m; sourceTree = "<group>"; };
9AAFA1D41E14FBA4006618E0 /* LCCKSessionService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSessionService.h; sourceTree = "<group>"; };
9AAFA1D51E14FBA4006618E0 /* LCCKSessionService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSessionService.m; sourceTree = "<group>"; };
9AAFA1D61E14FBA4006618E0 /* LCCKSettingService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSettingService.h; sourceTree = "<group>"; };
9AAFA1D71E14FBA4006618E0 /* LCCKSettingService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSettingService.m; sourceTree = "<group>"; };
9AAFA1D81E14FBA4006618E0 /* LCCKSignatureService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSignatureService.h; sourceTree = "<group>"; };
9AAFA1D91E14FBA4006618E0 /* LCCKSignatureService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSignatureService.m; sourceTree = "<group>"; };
9AAFA1DA1E14FBA4006618E0 /* LCCKUIService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKUIService.h; sourceTree = "<group>"; };
9AAFA1DB1E14FBA4006618E0 /* LCCKUIService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKUIService.m; sourceTree = "<group>"; };
9AAFA1DC1E14FBA4006618E0 /* LCCKUserSystemService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKUserSystemService.h; sourceTree = "<group>"; };
9AAFA1DD1E14FBA4006618E0 /* LCCKUserSystemService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKUserSystemService.m; sourceTree = "<group>"; };
9AAFA1E01E14FBA4006618E0 /* LCCKDateToolsConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKDateToolsConstants.h; sourceTree = "<group>"; };
9AAFA1E11E14FBA4006618E0 /* LCCKError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKError.h; sourceTree = "<group>"; };
9AAFA1E21E14FBA4006618E0 /* LCCKError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKError.m; sourceTree = "<group>"; };
9AAFA1E31E14FBA4006618E0 /* NSDate+LCCKDateTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+LCCKDateTools.h"; sourceTree = "<group>"; };
9AAFA1E41E14FBA4006618E0 /* NSDate+LCCKDateTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+LCCKDateTools.m"; sourceTree = "<group>"; };
9AAFA1E61E14FBA4006618E0 /* LCCKAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKAlertController.h; sourceTree = "<group>"; };
9AAFA1E71E14FBA4006618E0 /* LCCKAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKAlertController.m; sourceTree = "<group>"; };
9AAFA1E91E14FBA4006618E0 /* LCCKCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKCaptionView.h; sourceTree = "<group>"; };
9AAFA1EA1E14FBA4006618E0 /* LCCKCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKCaptionView.m; sourceTree = "<group>"; };
9AAFA1EB1E14FBA4006618E0 /* LCCKPBConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKPBConstants.h; sourceTree = "<group>"; };
9AAFA1EC1E14FBA4006618E0 /* LCCKPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKPhoto.h; sourceTree = "<group>"; };
9AAFA1ED1E14FBA4006618E0 /* LCCKPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKPhoto.m; sourceTree = "<group>"; };
9AAFA1EE1E14FBA4006618E0 /* LCCKPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKPhotoBrowser.h; sourceTree = "<group>"; };
9AAFA1EF1E14FBA4006618E0 /* LCCKPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKPhotoBrowser.m; sourceTree = "<group>"; };
9AAFA1F01E14FBA4006618E0 /* LCCKPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKPhotoProtocol.h; sourceTree = "<group>"; };
9AAFA1F11E14FBA4006618E0 /* LCCKTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKTapDetectingImageView.h; sourceTree = "<group>"; };
9AAFA1F21E14FBA4006618E0 /* LCCKTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKTapDetectingImageView.m; sourceTree = "<group>"; };
9AAFA1F31E14FBA4006618E0 /* LCCKTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKTapDetectingView.h; sourceTree = "<group>"; };
9AAFA1F41E14FBA4006618E0 /* LCCKTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKTapDetectingView.m; sourceTree = "<group>"; };
9AAFA1F51E14FBA4006618E0 /* LCCKZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKZoomingScrollView.h; sourceTree = "<group>"; };
9AAFA1F61E14FBA4006618E0 /* LCCKZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKZoomingScrollView.m; sourceTree = "<group>"; };
9AAFA1F91E14FBA4006618E0 /* LCCKSafariActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSafariActivity.h; sourceTree = "<group>"; };
9AAFA1FA1E14FBA4006618E0 /* LCCKSafariActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSafariActivity.m; sourceTree = "<group>"; };
9AAFA1FC1E14FBA4006618E0 /* LCCKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKWebViewController.h; sourceTree = "<group>"; };
9AAFA1FD1E14FBA4006618E0 /* LCCKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKWebViewController.m; sourceTree = "<group>"; };
9AAFA1FF1E14FBA4006618E0 /* LCCKWebViewProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKWebViewProgress.h; sourceTree = "<group>"; };
9AAFA2001E14FBA4006618E0 /* LCCKWebViewProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKWebViewProgress.m; sourceTree = "<group>"; };
9AAFA2011E14FBA4006618E0 /* LCCKWebViewProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKWebViewProgressView.h; sourceTree = "<group>"; };
9AAFA2021E14FBA4006618E0 /* LCCKWebViewProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKWebViewProgressView.m; sourceTree = "<group>"; };
9AAFA2041E14FBA4006618E0 /* lame.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = lame.framework; sourceTree = "<group>"; };
9AAFA2051E14FBA4006618E0 /* Mp3Recorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Mp3Recorder.h; sourceTree = "<group>"; };
9AAFA2061E14FBA4006618E0 /* Mp3Recorder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Mp3Recorder.m; sourceTree = "<group>"; };
9AAFA2081E14FBA4006618E0 /* LCCKBadgeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKBadgeView.h; sourceTree = "<group>"; };
9AAFA2091E14FBA4006618E0 /* LCCKBadgeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKBadgeView.m; sourceTree = "<group>"; };
9AAFA20A1E14FBA4006618E0 /* LCCKConversationRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKConversationRefreshHeader.h; sourceTree = "<group>"; };
9AAFA20B1E14FBA4006618E0 /* LCCKConversationRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKConversationRefreshHeader.m; sourceTree = "<group>"; };
9AAFA20C1E14FBA4006618E0 /* LCCKStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKStatusView.h; sourceTree = "<group>"; };
9AAFA20D1E14FBA4006618E0 /* LCCKStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKStatusView.m; sourceTree = "<group>"; };
9AAFA20E1E14FBA4006618E0 /* LCCKSwipeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LCCKSwipeView.h; sourceTree = "<group>"; };
9AAFA20F1E14FBA4006618E0 /* LCCKSwipeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LCCKSwipeView.m; sourceTree = "<group>"; };
9AC44C3E1E15154200619112 /* CYLDeallocBlockExecutor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYLDeallocBlockExecutor.h; sourceTree = "<group>"; };
9AC44C3F1E15154200619112 /* CYLDeallocExecutor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYLDeallocExecutor.h; sourceTree = "<group>"; };
9AC44C401E15154200619112 /* CYLDeallocExecutor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYLDeallocExecutor.m; sourceTree = "<group>"; };
9AC44C411E15154200619112 /* NSObject+CYLDeallocBlockExecutor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+CYLDeallocBlockExecutor.h"; sourceTree = "<group>"; };
9AC44C421E15154200619112 /* NSObject+CYLDeallocBlockExecutor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+CYLDeallocBlockExecutor.m"; sourceTree = "<group>"; };
9AC44C431E15154200619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44C441E15154200619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44C471E15154200619112 /* DACircularProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DACircularProgressView.h; sourceTree = "<group>"; };
9AC44C481E15154200619112 /* DACircularProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DACircularProgressView.m; sourceTree = "<group>"; };
9AC44C491E15154200619112 /* DALabeledCircularProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DALabeledCircularProgressView.h; sourceTree = "<group>"; };
9AC44C4A1E15154200619112 /* DALabeledCircularProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DALabeledCircularProgressView.m; sourceTree = "<group>"; };
9AC44C4B1E15154200619112 /* LICENSE.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = LICENSE.md; sourceTree = "<group>"; };
9AC44C4C1E15154200619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44C4F1E15154200619112 /* FDGapLayoutGuide.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDGapLayoutGuide.h; sourceTree = "<group>"; };
9AC44C501E15154200619112 /* FDGapLayoutGuide.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDGapLayoutGuide.m; sourceTree = "<group>"; };
9AC44C511E15154200619112 /* FDLayoutSpacer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDLayoutSpacer.h; sourceTree = "<group>"; };
9AC44C521E15154200619112 /* FDLayoutSpacer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDLayoutSpacer.m; sourceTree = "<group>"; };
9AC44C531E15154200619112 /* FDStackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDStackView.h; sourceTree = "<group>"; };
9AC44C541E15154200619112 /* FDStackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDStackView.m; sourceTree = "<group>"; };
9AC44C551E15154200619112 /* FDStackViewAlignmentLayoutArrangement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDStackViewAlignmentLayoutArrangement.h; sourceTree = "<group>"; };
9AC44C561E15154200619112 /* FDStackViewAlignmentLayoutArrangement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDStackViewAlignmentLayoutArrangement.m; sourceTree = "<group>"; };
9AC44C571E15154200619112 /* FDStackViewDistributionLayoutArrangement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDStackViewDistributionLayoutArrangement.h; sourceTree = "<group>"; };
9AC44C581E15154200619112 /* FDStackViewDistributionLayoutArrangement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDStackViewDistributionLayoutArrangement.m; sourceTree = "<group>"; };
9AC44C591E15154200619112 /* FDStackViewExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDStackViewExtensions.h; sourceTree = "<group>"; };
9AC44C5A1E15154200619112 /* FDStackViewExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDStackViewExtensions.m; sourceTree = "<group>"; };
9AC44C5B1E15154200619112 /* FDStackViewLayoutArrangement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDStackViewLayoutArrangement.h; sourceTree = "<group>"; };
9AC44C5C1E15154200619112 /* FDStackViewLayoutArrangement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDStackViewLayoutArrangement.m; sourceTree = "<group>"; };
9AC44C5D1E15154200619112 /* FDTransformLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FDTransformLayer.h; sourceTree = "<group>"; };
9AC44C5E1E15154200619112 /* FDTransformLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FDTransformLayer.m; sourceTree = "<group>"; };
9AC44C5F1E15154200619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44C601E15154200619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44C621E15154200619112 /* LICENSE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.txt; sourceTree = "<group>"; };
9AC44C631E15154200619112 /* README.markdown */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.markdown; sourceTree = "<group>"; };
9AC44C661E15154200619112 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabase.h; sourceTree = "<group>"; };
9AC44C671E15154200619112 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabase.m; sourceTree = "<group>"; };
9AC44C681E15154200619112 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseAdditions.h; sourceTree = "<group>"; };
9AC44C691E15154300619112 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseAdditions.m; sourceTree = "<group>"; };
9AC44C6A1E15154300619112 /* FMDatabasePool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabasePool.h; sourceTree = "<group>"; };
9AC44C6B1E15154300619112 /* FMDatabasePool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabasePool.m; sourceTree = "<group>"; };
9AC44C6C1E15154300619112 /* FMDatabaseQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseQueue.h; sourceTree = "<group>"; };
9AC44C6D1E15154300619112 /* FMDatabaseQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseQueue.m; sourceTree = "<group>"; };
9AC44C6E1E15154300619112 /* FMDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDB.h; sourceTree = "<group>"; };
9AC44C6F1E15154300619112 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMResultSet.h; sourceTree = "<group>"; };
9AC44C701E15154300619112 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMResultSet.m; sourceTree = "<group>"; };
9AC44C721E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44C741E15154300619112 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASCompositeConstraint.h; sourceTree = "<group>"; };
9AC44C751E15154300619112 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASCompositeConstraint.m; sourceTree = "<group>"; };
9AC44C761E15154300619112 /* MASConstraint+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MASConstraint+Private.h"; sourceTree = "<group>"; };
9AC44C771E15154300619112 /* MASConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraint.h; sourceTree = "<group>"; };
9AC44C781E15154300619112 /* MASConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraint.m; sourceTree = "<group>"; };
9AC44C791E15154300619112 /* MASConstraintMaker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASConstraintMaker.h; sourceTree = "<group>"; };
9AC44C7A1E15154300619112 /* MASConstraintMaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASConstraintMaker.m; sourceTree = "<group>"; };
9AC44C7B1E15154300619112 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASLayoutConstraint.h; sourceTree = "<group>"; };
9AC44C7C1E15154300619112 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASLayoutConstraint.m; sourceTree = "<group>"; };
9AC44C7D1E15154300619112 /* Masonry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
9AC44C7E1E15154300619112 /* MASUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASUtilities.h; sourceTree = "<group>"; };
9AC44C7F1E15154300619112 /* MASViewAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewAttribute.h; sourceTree = "<group>"; };
9AC44C801E15154300619112 /* MASViewAttribute.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewAttribute.m; sourceTree = "<group>"; };
9AC44C811E15154300619112 /* MASViewConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MASViewConstraint.h; sourceTree = "<group>"; };
9AC44C821E15154300619112 /* MASViewConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MASViewConstraint.m; sourceTree = "<group>"; };
9AC44C831E15154300619112 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASAdditions.h"; sourceTree = "<group>"; };
9AC44C841E15154300619112 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+MASAdditions.m"; sourceTree = "<group>"; };
9AC44C851E15154300619112 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
9AC44C861E15154300619112 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
9AC44C871E15154300619112 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
9AC44C881E15154300619112 /* View+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASAdditions.h"; sourceTree = "<group>"; };
9AC44C891E15154300619112 /* View+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "View+MASAdditions.m"; sourceTree = "<group>"; };
9AC44C8A1E15154300619112 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
9AC44C8B1E15154300619112 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ViewController+MASAdditions.h"; sourceTree = "<group>"; };
9AC44C8C1E15154300619112 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ViewController+MASAdditions.m"; sourceTree = "<group>"; };
9AC44C8D1E15154300619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44C8F1E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44C901E15154300619112 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
9AC44C911E15154300619112 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
9AC44C921E15154300619112 /* README.mdown */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.mdown; sourceTree = "<group>"; };
9AC44C941E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44C971E15154300619112 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoFooter.h; sourceTree = "<group>"; };
9AC44C981E15154300619112 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoFooter.m; sourceTree = "<group>"; };
9AC44C991E15154300619112 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackFooter.h; sourceTree = "<group>"; };
9AC44C9A1E15154300619112 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackFooter.m; sourceTree = "<group>"; };
9AC44C9B1E15154300619112 /* MJRefreshComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshComponent.h; sourceTree = "<group>"; };
9AC44C9C1E15154300619112 /* MJRefreshComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshComponent.m; sourceTree = "<group>"; };
9AC44C9D1E15154300619112 /* MJRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshFooter.h; sourceTree = "<group>"; };
9AC44C9E1E15154300619112 /* MJRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshFooter.m; sourceTree = "<group>"; };
9AC44C9F1E15154300619112 /* MJRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshHeader.h; sourceTree = "<group>"; };
9AC44CA01E15154300619112 /* MJRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshHeader.m; sourceTree = "<group>"; };
9AC44CA41E15154300619112 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
9AC44CA51E15154300619112 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
9AC44CA61E15154300619112 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
9AC44CA71E15154300619112 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
9AC44CA81E15154300619112 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
9AC44CA91E15154300619112 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
9AC44CAB1E15154300619112 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
9AC44CAC1E15154300619112 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
9AC44CAD1E15154300619112 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
9AC44CAE1E15154300619112 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
9AC44CAF1E15154300619112 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
9AC44CB01E15154300619112 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
9AC44CB21E15154300619112 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshGifHeader.h; sourceTree = "<group>"; };
9AC44CB31E15154300619112 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshGifHeader.m; sourceTree = "<group>"; };
9AC44CB41E15154300619112 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalHeader.h; sourceTree = "<group>"; };
9AC44CB51E15154300619112 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalHeader.m; sourceTree = "<group>"; };
9AC44CB61E15154300619112 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateHeader.h; sourceTree = "<group>"; };
9AC44CB71E15154300619112 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateHeader.m; sourceTree = "<group>"; };
9AC44CB81E15154300619112 /* MJRefresh.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MJRefresh.bundle; sourceTree = "<group>"; };
9AC44CB91E15154300619112 /* MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefresh.h; sourceTree = "<group>"; };
9AC44CBA1E15154300619112 /* MJRefreshConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConst.h; sourceTree = "<group>"; };
9AC44CBB1E15154300619112 /* MJRefreshConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConst.m; sourceTree = "<group>"; };
9AC44CBC1E15154300619112 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
9AC44CBD1E15154300619112 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
9AC44CBE1E15154300619112 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
9AC44CBF1E15154300619112 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
9AC44CC01E15154300619112 /* UIView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MJExtension.h"; sourceTree = "<group>"; };
9AC44CC11E15154300619112 /* UIView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MJExtension.m"; sourceTree = "<group>"; };
9AC44CC21E15154300619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44CC61E15154300619112 /* NSAttributedString+MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSAttributedString+MLLabel.h"; sourceTree = "<group>"; };
9AC44CC71E15154300619112 /* NSAttributedString+MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSAttributedString+MLLabel.m"; sourceTree = "<group>"; };
9AC44CC81E15154300619112 /* NSMutableAttributedString+MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+MLLabel.h"; sourceTree = "<group>"; };
9AC44CC91E15154300619112 /* NSMutableAttributedString+MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+MLLabel.m"; sourceTree = "<group>"; };
9AC44CCA1E15154300619112 /* NSString+MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MLLabel.h"; sourceTree = "<group>"; };
9AC44CCB1E15154300619112 /* NSString+MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MLLabel.m"; sourceTree = "<group>"; };
9AC44CCD1E15154300619112 /* MLExpressionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLExpressionManager.h; sourceTree = "<group>"; };
9AC44CCE1E15154300619112 /* MLExpressionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLExpressionManager.m; sourceTree = "<group>"; };
9AC44CCF1E15154300619112 /* MLTextAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLTextAttachment.h; sourceTree = "<group>"; };
9AC44CD01E15154300619112 /* MLTextAttachment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLTextAttachment.m; sourceTree = "<group>"; };
9AC44CD11E15154300619112 /* NSAttributedString+MLExpression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSAttributedString+MLExpression.h"; sourceTree = "<group>"; };
9AC44CD21E15154300619112 /* NSAttributedString+MLExpression.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSAttributedString+MLExpression.m"; sourceTree = "<group>"; };
9AC44CD31E15154300619112 /* NSString+MLExpression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MLExpression.h"; sourceTree = "<group>"; };
9AC44CD41E15154300619112 /* NSString+MLExpression.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MLExpression.m"; sourceTree = "<group>"; };
9AC44CD61E15154300619112 /* MLLabel+Override.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MLLabel+Override.h"; sourceTree = "<group>"; };
9AC44CD71E15154300619112 /* MLLabelLayoutManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLLabelLayoutManager.h; sourceTree = "<group>"; };
9AC44CD81E15154300619112 /* MLLabelLayoutManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLLabelLayoutManager.m; sourceTree = "<group>"; };
9AC44CD91E15154300619112 /* MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLLabel.h; sourceTree = "<group>"; };
9AC44CDA1E15154300619112 /* MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLLabel.m; sourceTree = "<group>"; };
9AC44CDB1E15154300619112 /* MLLinkLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLLinkLabel.h; sourceTree = "<group>"; };
9AC44CDC1E15154300619112 /* MLLinkLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLLinkLabel.m; sourceTree = "<group>"; };
9AC44CDD1E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44CDE1E15154300619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44CE01E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44CE31E15154300619112 /* ImageError.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageError.png; sourceTree = "<group>"; };
9AC44CE41E15154300619112 /* ImageError@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@2x.png"; sourceTree = "<group>"; };
9AC44CE51E15154300619112 /* ImageError@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageError@3x.png"; sourceTree = "<group>"; };
9AC44CE61E15154300619112 /* ImageSelectedOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOff.png; sourceTree = "<group>"; };
9AC44CE71E15154300619112 /* ImageSelectedOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@2x.png"; sourceTree = "<group>"; };
9AC44CE81E15154300619112 /* ImageSelectedOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOff@3x.png"; sourceTree = "<group>"; };
9AC44CE91E15154300619112 /* ImageSelectedOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedOn.png; sourceTree = "<group>"; };
9AC44CEA1E15154300619112 /* ImageSelectedOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@2x.png"; sourceTree = "<group>"; };
9AC44CEB1E15154300619112 /* ImageSelectedOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedOn@3x.png"; sourceTree = "<group>"; };
9AC44CEC1E15154300619112 /* ImageSelectedSmallOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOff.png; sourceTree = "<group>"; };
9AC44CED1E15154300619112 /* ImageSelectedSmallOff@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@2x.png"; sourceTree = "<group>"; };
9AC44CEE1E15154300619112 /* ImageSelectedSmallOff@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOff@3x.png"; sourceTree = "<group>"; };
9AC44CEF1E15154300619112 /* ImageSelectedSmallOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ImageSelectedSmallOn.png; sourceTree = "<group>"; };
9AC44CF01E15154300619112 /* ImageSelectedSmallOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@2x.png"; sourceTree = "<group>"; };
9AC44CF11E15154300619112 /* ImageSelectedSmallOn@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ImageSelectedSmallOn@3x.png"; sourceTree = "<group>"; };
9AC44CF21E15154300619112 /* PlayButtonOverlayLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLarge.png; sourceTree = "<group>"; };
9AC44CF31E15154300619112 /* PlayButtonOverlayLarge@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@2x.png"; sourceTree = "<group>"; };
9AC44CF41E15154300619112 /* PlayButtonOverlayLarge@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLarge@3x.png"; sourceTree = "<group>"; };
9AC44CF51E15154300619112 /* PlayButtonOverlayLargeTap.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PlayButtonOverlayLargeTap.png; sourceTree = "<group>"; };
9AC44CF61E15154300619112 /* PlayButtonOverlayLargeTap@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@2x.png"; sourceTree = "<group>"; };
9AC44CF71E15154300619112 /* PlayButtonOverlayLargeTap@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayButtonOverlayLargeTap@3x.png"; sourceTree = "<group>"; };
9AC44CF81E15154300619112 /* UIBarButtonItemArrowLeft.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowLeft.png; sourceTree = "<group>"; };
9AC44CF91E15154300619112 /* UIBarButtonItemArrowLeft@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@2x.png"; sourceTree = "<group>"; };
9AC44CFA1E15154300619112 /* UIBarButtonItemArrowLeft@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowLeft@3x.png"; sourceTree = "<group>"; };
9AC44CFB1E15154300619112 /* UIBarButtonItemArrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemArrowRight.png; sourceTree = "<group>"; };
9AC44CFC1E15154300619112 /* UIBarButtonItemArrowRight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@2x.png"; sourceTree = "<group>"; };
9AC44CFD1E15154300619112 /* UIBarButtonItemArrowRight@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemArrowRight@3x.png"; sourceTree = "<group>"; };
9AC44CFE1E15154300619112 /* UIBarButtonItemGrid.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UIBarButtonItemGrid.png; sourceTree = "<group>"; };
9AC44CFF1E15154300619112 /* UIBarButtonItemGrid@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@2x.png"; sourceTree = "<group>"; };
9AC44D001E15154300619112 /* UIBarButtonItemGrid@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "UIBarButtonItemGrid@3x.png"; sourceTree = "<group>"; };
9AC44D011E15154300619112 /* VideoOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VideoOverlay.png; sourceTree = "<group>"; };
9AC44D021E15154300619112 /* VideoOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@2x.png"; sourceTree = "<group>"; };
9AC44D031E15154300619112 /* VideoOverlay@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VideoOverlay@3x.png"; sourceTree = "<group>"; };
9AC44D051E15154300619112 /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
9AC44D061E15154300619112 /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
9AC44D071E15154300619112 /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
9AC44D081E15154300619112 /* MWGridCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridCell.h; sourceTree = "<group>"; };
9AC44D091E15154300619112 /* MWGridCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridCell.m; sourceTree = "<group>"; };
9AC44D0A1E15154300619112 /* MWGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridViewController.h; sourceTree = "<group>"; };
9AC44D0B1E15154300619112 /* MWGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridViewController.m; sourceTree = "<group>"; };
9AC44D0C1E15154300619112 /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
9AC44D0D1E15154300619112 /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
9AC44D0E1E15154300619112 /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
9AC44D0F1E15154300619112 /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
9AC44D101E15154300619112 /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
9AC44D111E15154300619112 /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
9AC44D121E15154300619112 /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
9AC44D131E15154300619112 /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
9AC44D141E15154300619112 /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
9AC44D151E15154300619112 /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
9AC44D161E15154300619112 /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
9AC44D171E15154300619112 /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
9AC44D181E15154300619112 /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
9AC44D191E15154300619112 /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
9AC44D1A1E15154300619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44D1C1E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44D1E1E15154300619112 /* POP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POP.h; sourceTree = "<group>"; };
9AC44D1F1E15154300619112 /* POPAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAction.h; sourceTree = "<group>"; };
9AC44D201E15154300619112 /* POPAnimatableProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimatableProperty.h; sourceTree = "<group>"; };
9AC44D211E15154300619112 /* POPAnimatableProperty.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimatableProperty.mm; sourceTree = "<group>"; };
9AC44D221E15154300619112 /* POPAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimation.h; sourceTree = "<group>"; };
9AC44D231E15154300619112 /* POPAnimation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimation.mm; sourceTree = "<group>"; };
9AC44D241E15154300619112 /* POPAnimationEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationEvent.h; sourceTree = "<group>"; };
9AC44D251E15154300619112 /* POPAnimationEvent.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimationEvent.mm; sourceTree = "<group>"; };
9AC44D261E15154300619112 /* POPAnimationEventInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationEventInternal.h; sourceTree = "<group>"; };
9AC44D271E15154300619112 /* POPAnimationExtras.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationExtras.h; sourceTree = "<group>"; };
9AC44D281E15154300619112 /* POPAnimationExtras.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimationExtras.mm; sourceTree = "<group>"; };
9AC44D291E15154300619112 /* POPAnimationInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationInternal.h; sourceTree = "<group>"; };
9AC44D2A1E15154300619112 /* POPAnimationPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationPrivate.h; sourceTree = "<group>"; };
9AC44D2B1E15154300619112 /* POPAnimationRuntime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationRuntime.h; sourceTree = "<group>"; };
9AC44D2C1E15154300619112 /* POPAnimationRuntime.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimationRuntime.mm; sourceTree = "<group>"; };
9AC44D2D1E15154300619112 /* POPAnimationTracer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationTracer.h; sourceTree = "<group>"; };
9AC44D2E1E15154300619112 /* POPAnimationTracer.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimationTracer.mm; sourceTree = "<group>"; };
9AC44D2F1E15154300619112 /* POPAnimationTracerInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimationTracerInternal.h; sourceTree = "<group>"; };
9AC44D301E15154300619112 /* POPAnimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimator.h; sourceTree = "<group>"; };
9AC44D311E15154300619112 /* POPAnimator.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPAnimator.mm; sourceTree = "<group>"; };
9AC44D321E15154300619112 /* POPAnimatorPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPAnimatorPrivate.h; sourceTree = "<group>"; };
9AC44D331E15154300619112 /* POPBasicAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPBasicAnimation.h; sourceTree = "<group>"; };
9AC44D341E15154300619112 /* POPBasicAnimation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPBasicAnimation.mm; sourceTree = "<group>"; };
9AC44D351E15154300619112 /* POPBasicAnimationInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPBasicAnimationInternal.h; sourceTree = "<group>"; };
9AC44D361E15154300619112 /* POPCGUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPCGUtils.h; sourceTree = "<group>"; };
9AC44D371E15154300619112 /* POPCGUtils.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPCGUtils.mm; sourceTree = "<group>"; };
9AC44D381E15154300619112 /* POPCustomAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPCustomAnimation.h; sourceTree = "<group>"; };
9AC44D391E15154300619112 /* POPCustomAnimation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPCustomAnimation.mm; sourceTree = "<group>"; };
9AC44D3A1E15154300619112 /* POPDecayAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPDecayAnimation.h; sourceTree = "<group>"; };
9AC44D3B1E15154300619112 /* POPDecayAnimation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPDecayAnimation.mm; sourceTree = "<group>"; };
9AC44D3C1E15154300619112 /* POPDecayAnimationInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPDecayAnimationInternal.h; sourceTree = "<group>"; };
9AC44D3D1E15154300619112 /* POPDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPDefines.h; sourceTree = "<group>"; };
9AC44D3E1E15154300619112 /* POPGeometry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPGeometry.h; sourceTree = "<group>"; };
9AC44D3F1E15154300619112 /* POPGeometry.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPGeometry.mm; sourceTree = "<group>"; };
9AC44D401E15154300619112 /* POPLayerExtras.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPLayerExtras.h; sourceTree = "<group>"; };
9AC44D411E15154300619112 /* POPLayerExtras.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPLayerExtras.mm; sourceTree = "<group>"; };
9AC44D421E15154300619112 /* POPMath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPMath.h; sourceTree = "<group>"; };
9AC44D431E15154300619112 /* POPMath.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPMath.mm; sourceTree = "<group>"; };
9AC44D441E15154300619112 /* POPPropertyAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPPropertyAnimation.h; sourceTree = "<group>"; };
9AC44D451E15154300619112 /* POPPropertyAnimation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPPropertyAnimation.mm; sourceTree = "<group>"; };
9AC44D461E15154300619112 /* POPPropertyAnimationInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPPropertyAnimationInternal.h; sourceTree = "<group>"; };
9AC44D471E15154300619112 /* POPSpringAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPSpringAnimation.h; sourceTree = "<group>"; };
9AC44D481E15154300619112 /* POPSpringAnimation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPSpringAnimation.mm; sourceTree = "<group>"; };
9AC44D491E15154300619112 /* POPSpringAnimationInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPSpringAnimationInternal.h; sourceTree = "<group>"; };
9AC44D4A1E15154300619112 /* POPSpringSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPSpringSolver.h; sourceTree = "<group>"; };
9AC44D4B1E15154300619112 /* POPVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = POPVector.h; sourceTree = "<group>"; };
9AC44D4C1E15154300619112 /* POPVector.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = POPVector.mm; sourceTree = "<group>"; };
9AC44D4E1E15154300619112 /* FloatConversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FloatConversion.h; sourceTree = "<group>"; };
9AC44D4F1E15154300619112 /* TransformationMatrix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TransformationMatrix.cpp; sourceTree = "<group>"; };
9AC44D501E15154300619112 /* TransformationMatrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransformationMatrix.h; sourceTree = "<group>"; };
9AC44D511E15154300619112 /* UnitBezier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnitBezier.h; sourceTree = "<group>"; };
9AC44D521E15154300619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44D541E15154300619112 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
9AC44D551E15154300619112 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
9AC44D571E15154300619112 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
9AC44D581E15154300619112 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
9AC44D591E15154300619112 /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
9AC44D5A1E15154300619112 /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
9AC44D5B1E15154300619112 /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
9AC44D5C1E15154300619112 /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
9AC44D5D1E15154300619112 /* SDWebImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDecoder.h; sourceTree = "<group>"; };
9AC44D5E1E15154300619112 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDecoder.m; sourceTree = "<group>"; };
9AC44D5F1E15154300619112 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
9AC44D601E15154300619112 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
9AC44D611E15154300619112 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
9AC44D621E15154300619112 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
9AC44D631E15154300619112 /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
9AC44D641E15154300619112 /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
9AC44D651E15154300619112 /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
9AC44D661E15154300619112 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
9AC44D671E15154300619112 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImagePrefetcher.m; sourceTree = "<group>"; };
9AC44D681E15154300619112 /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
9AC44D691E15154300619112 /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+WebCache.m"; sourceTree = "<group>"; };
9AC44D6A1E15154300619112 /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
9AC44D6B1E15154300619112 /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
9AC44D6C1E15154300619112 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
9AC44D6D1E15154300619112 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
9AC44D6E1E15154300619112 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
9AC44D6F1E15154300619112 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
9AC44D701E15154300619112 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
9AC44D711E15154300619112 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
9AC44D721E15154300619112 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
9AC44D731E15154300619112 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
9AC44D761E15154300619112 /* UITableView+FDIndexPathHeightCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+FDIndexPathHeightCache.h"; sourceTree = "<group>"; };