-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
3665 lines (3653 loc) · 200 KB
/
project.pbxproj
File metadata and controls
3665 lines (3653 loc) · 200 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 */
008669B24E7AE97174D72C0CF156F3AA /* AHServiceRouter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7123E01BC00AC592A932988847FACA0 /* AHServiceRouter-dummy.m */; };
01322C912D91773F1D668EFA4BFD557E /* AHFMFeatureManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E0CF7A21D3EB487DBF4662C6438F93 /* AHFMFeatureManager-dummy.m */; };
04ABA1441A64063461EB0000E33947B4 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BC04BD99D70E3786DE15A9EF997035B /* ResponseSerialization.swift */; };
0598CE735F4731B2D270CE29BB75BBC7 /* AHFMServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17511966F3CABDB97E08CF5AD5E86FE7 /* AHFMServices.swift */; };
07A5E60837E229D8A40A04C4CDD71CB3 /* AHFMSubscribedShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = A81C009CE3F2A17FABE100BB7B76A7E2 /* AHFMSubscribedShow.swift */; };
089376426529595C084BD18FF691EF9C /* AHDataModel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E3C2791191712A8F6B09E8BCC654A1 /* AHDataModel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
091CD2CD4160503446DD4F68D0DA0A46 /* AHFMEpisodeInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9AEC0B54CE7C3F7BCAE77ABBE71FAC3 /* AHFMEpisodeInfo.swift */; };
0A53D7B5A76FBFC0FBAB456FD871AD1A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
0C0BD4F0BA99E6599393E7DF444557BC /* AHFMModuleManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C9F36EC29EF17C91EEB564EEDE1F31 /* AHFMModuleManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0DCF48E12E885346E3F32A5696145731 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3ADC556469E3DA0973BCF751E0A3DF4E /* Alamofire.framework */; };
0DE24BBA949385A1908C8866640A3E0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
0EB444C3F07B3D8B2F28A40498CD848C /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA53E8111BF3A04E00D92024CC3FE2DE /* UIDeviceExtension.framework */; };
10CFE89F5DB889A2A7684F2D6AD54700 /* Manager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB10E3AE5CAEC21B94EE9EBC7FC5DBF6 /* Manager.swift */; };
16026FC70332D44D538FC1FA0920E12A /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = A94C620AB7CA85E7087F95111C1613B9 /* Response.swift */; };
1A56977044DFF5B48AC16124DD352E6B /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E39BE975997C7372624042A2E5B82AF3 /* KeychainAccess.framework */; };
1BCB9EA428FB59F6DAF3AC5D09769A2D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
1EC0837D0DFB8CA195F87F0E077639A0 /* AHFMShowPageServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 442488A7864A522ED765826EE68D50BC /* AHFMShowPageServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1EC5943DE63628D27A377B2B2886516C /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93B4C40346BA1968F8BCF22C9FF4CD75 /* AFError.swift */; };
20BD6D1587B4249B949754E60580AE74 /* AHFMDataCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781B8C7B26738B1F94B084CD77C07645 /* AHFMDataCenter.swift */; };
2276441EDC92CDAE54D68D4D6250D573 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
236044CD1B6C49A7DB91239E05624E93 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57DA107902512FB6BA98951E556F48D4 /* NetworkReachabilityManager.swift */; };
24E78DADB1B0FC360512AA291C5F81A5 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA4595AD83E8C0C5765CE134EDC238C4 /* Alamofire-dummy.m */; };
252AD8ED6624484BE807D1CD476610D3 /* AHFMModuleManager.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F2A20E09E3269FDBA1E973296488CA92 /* AHFMModuleManager.framework */; };
2654EBF76703DBE9E9FB414962BA45FE /* AHDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = C96DC40D2FC4968932F5424FA2646EAC /* AHDatabase.swift */; };
2F6BE6F75A99AC93F549F44D0B9FD8AE /* AHServiceRouter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F513BD950254F2C83A477BFFBB542773 /* AHServiceRouter.framework */; };
2F9A0013CA2432AF4536E95723B8B019 /* UIDeviceExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FB720A01021341191E7425740418873 /* UIDeviceExtension-dummy.m */; };
2F9F1C45FB922FE86B381AEF6038CF3F /* AHDataModelQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20E80E80B5E8DBFAE5F975165134C724 /* AHDataModelQuery.swift */; };
30EDF1B39DC9DE6CFDB759A3D9E64452 /* Pods-AHFMFeatureManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F6B9EB197C31F254BB4B882722BE1D0 /* Pods-AHFMFeatureManager_Example-dummy.m */; };
32A16F3BB3E05501846FCEE1D6FF9E0A /* AHFMShowTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD076FD23476940E2DAC0DEDE2F0010A /* AHFMShowTransform.swift */; };
32DCAB8845CDD35DF424592150ED50C3 /* AHFMDataCenter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15DA475EBCF7BD3B3670C3084D89F7BE /* AHFMDataCenter.framework */; };
36983FD65BA2F41AB4DADD35E3D1150E /* AHFMShow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F4BEDB4530321A04BDEFF3F48158165 /* AHFMShow.swift */; };
38304DA23D8DEDC6A4EAF79027221518 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFD4E8C2BC0885BA59C933070D07E5C /* AHFMServices.framework */; };
3DC090B6C3C2240140ED92E593C234F6 /* AHFMBottomPlayerServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE938854F92E2E01F38A8E62994CD5B4 /* AHFMBottomPlayerServices.swift */; };
3E88EE3EC75AC4547860147A64DA4C04 /* AHFMFeatureManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A026CCA2849830A9BDE0F5A3AA1C636 /* AHFMFeatureManager.swift */; };
3F33979F684123CBFB8ECBDA74625A62 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00326B9F95BFECDDC75445C2BE027FF7 /* Request.swift */; };
432463C50099CC4809681B32D0DDEBF1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
45AEA155190F769C06C60040C472A89E /* AHDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F10FE503BBBDBDE70350B00EB5ADEBB /* AHDataModel.swift */; };
48552515631523C612889916EEB60D21 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FDBE7B166E5035D0A4268A2C77D5BA /* MultipartFormData.swift */; };
48B4CE53D47D4EC8819FC2233CFA2F83 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
4B9FFC76F5975932D4C87D30B8A274F4 /* AHFMNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DA3D636DFA33DC86F973B23831088B32 /* AHFMNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
4BD5EB7257634C0D6BB8B2D7CCB9CCB7 /* AHFMBottomPlayerServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 016C926F6DA6DEDB2BC5F6F34012B911 /* AHFMBottomPlayerServices-dummy.m */; };
4C8A68F906386A8C6C967A80748D41EA /* AHNetworkConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ABBC3510B8E8D952E626B3AB53CBE1D /* AHNetworkConstants.swift */; };
4EEE6F31829B94C057E75C4EAFF2EA70 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
5177183EBD80B2E669592F3F71030E32 /* AHFMFeatureManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0923FE7B5621039EC960B118929A1F00 /* AHFMFeatureManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
523425CEDC4E88A2EA94B499CC417198 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = A796C85BF82F0CCBE3C63E5D110D233A /* Notifications.swift */; };
530C52804630A61F73BEB95B038A07FA /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F963F3FE9C7EC7E42E9824D25C66E4D1 /* Alamofire.swift */; };
53A62FCA2F15F9798ED509FF3A414F94 /* AHFMFeatureServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B61E6D2856D3B0C263D3B245710E3780 /* AHFMFeatureServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
57E9E0E4715A325607182C84777DBB09 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B8F1CF6788899A58C2DBA793C8DC1EE /* SwiftyJSON.framework */; };
5CBFF178A094D4EBD452002FB8A418BD /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95950EF3D2DF555FF37BD586E848B0F3 /* TaskDelegate.swift */; };
5EA57901FC70C8F345CF0EA2A678E05D /* AHFMShowPageServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A5A56E6F59DF86FECD22C7DD93E641FD /* AHFMShowPageServices.framework */; };
5F3EC8F987C68E403573E2F2C39055DE /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9055CD22986DC5F8F0029FD355A10CA9 /* ServerTrustPolicy.swift */; };
69FB9C1F024D09460D19C82C87CC1F09 /* AHFMNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2756D8531A0EB10F719BAD7384047A8 /* AHFMNetworking-dummy.m */; };
6AEC39816CFC03E9852A868F33006250 /* AHFMModuleManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA654609D4534A335C7148C24AD3585 /* AHFMModuleManager-dummy.m */; };
6BD27A9357103B1862B3FAAA10F02459 /* Pods-AHFMFeatureManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7378DF95BD7208CD45098DA9A3F137 /* Pods-AHFMFeatureManager_Tests-dummy.m */; };
6C12B2A05814E9B9AF5B701C56F01742 /* AHServiceRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE761174E32E92860EB72D3073E5BB02 /* AHServiceRouter.swift */; };
713B48E1A8936C1E33596BED8A5DAA27 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A040B62525FEEE07E2E1BD049AAE974 /* SessionManager.swift */; };
7476818E4CBE153EA05B00FA5B1EC211 /* AHFMDataCenter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C1CFFF3EF81DB071E00894A2FE6486D4 /* AHFMDataCenter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
75E17A5ED46AA1455800589D1964B70A /* AHFMFeatureServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6D2AD38A574F71E2A77F5E4C49D543 /* AHFMFeatureServices-dummy.m */; };
7BB2A62D83F07EBADF6C3AE44B56BF7F /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BF9F6944EB72C022A247DFF11A11A3 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
82223E634611AA235CFCE61B3784F4AE /* AHFMDataCenter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9780D27A4A8D1A0CF435920E4F953E5B /* AHFMDataCenter-dummy.m */; };
829EC71A533CC2C58F919327FD57AF2C /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 908708617A8BF2383961CC30F2147AB7 /* Keychain.swift */; };
82B31C08911DA5C7F8C800A1064DAD03 /* Pods-AHFMFeatureManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D95AC7074444731870B4202EB2BE0B /* Pods-AHFMFeatureManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
8426D017CAFF19347FAF72F6A0903A0F /* AHFMBottomPlayerServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C7923A23FB3B706DE40F86BF97F7FA4 /* AHFMBottomPlayerServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
882F4142A88258C63F8F9BAAAF6E8FE4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
8A425FD37DC64B6B2E994ED6B7D12C05 /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E39BE975997C7372624042A2E5B82AF3 /* KeychainAccess.framework */; };
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B8F1CF6788899A58C2DBA793C8DC1EE /* SwiftyJSON.framework */; };
8B31F554EBACB4039929D103045C60BF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
8B7958B8BC5449893663F717E45AA349 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3ADC556469E3DA0973BCF751E0A3DF4E /* Alamofire.framework */; };
8E357A8575E7F57FAD16D1A2E6C07DC7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
9275668FE00E1BB034C511BC2970BC37 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
929B4A9A832AA81E3B983683BF21D117 /* AHFMDataTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7EB98821E12EC6C8E125221563FDD1BE /* AHFMDataTransformers.framework */; };
95CE55CB17944E5498A1ACCDC250DC08 /* AHFMEpisodeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BC81F08700C07599F8DE45FF1089201 /* AHFMEpisodeTransform.swift */; };
9948B99E63C147C89AF568E060D5E1AB /* AHDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45F907492B7D2D62725B56BBF94BE134 /* AHDB.swift */; };
9A9AC40E8E4203CCF75D9F98DE9EF4A7 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC78A3F407E19A25BE83D6CC623C662C /* DispatchQueue+Alamofire.swift */; };
9E552BAF5EAB88F8EAE183DEE09F726F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
A2E236E35E1A9BF673E2AF91A5EB80A1 /* AHFMFeatureServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75A6E9C1D20EDA91CF25172C62079AE2 /* AHFMFeatureServices.swift */; };
A5068F3D2B2FFAA5F22177BC7026F21B /* UIDeviceExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 86199A21B1624DBB1BD87651FAFBA61B /* UIDeviceExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A586A6A878CB413F5672A939CECA7BFB /* AHFMDataTransformers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6121192B18A015BE7D62FD94EDA16056 /* AHFMDataTransformers-dummy.m */; };
AB2E638C38C54111C700A6E06E3F10AC /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11D52830C228A621F8C23469A2E974F7 /* AHDataModel.framework */; };
AC7FA7BB8BA4B69723951F160655BC36 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
AD618C25DBCBD01E4844DDAFEC37747D /* AHDBColumnInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 216936694A788DC9F7D4DBFB7ECA5BBA /* AHDBColumnInfo.swift */; };
AE4DF20360653F2D22563D6C7B29BCC9 /* AHFMEpisode.swift in Sources */ = {isa = PBXBuildFile; fileRef = E51A5A63C266E4E0705EA3EF2677A2EA /* AHFMEpisode.swift */; };
AEF3C970AEA56EBC64E3DF58AB0B1917 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFD4E8C2BC0885BA59C933070D07E5C /* AHFMServices.framework */; };
AF373FA1758FBE62C705534EE8060693 /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F1E956CD51BE2A32D7F86BD5EF473FB /* Validation.swift */; };
B1D0CB89982FC8DAB74254794B6B8DFE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
B44733092257EEE594217AE508B825BB /* AHFMNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23C9582DD43169BD8462EEE25DA3A8D4 /* AHFMNetworking.framework */; };
B4B9E30B53AEB1C380C9C0127B745495 /* AHFMDataTransformers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EE174543C1DAD90A9C3A525ECA710145 /* AHFMDataTransformers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B5C232B8C7F7561985771FBFCE22C2C6 /* AHFMShowPageServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7750BC47CA0163398197C3070E8B5DC0 /* AHFMShowPageServices-dummy.m */; };
B5F0007CEDF8921CF49F6AE64197C442 /* UIDeviceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA53E8111BF3A04E00D92024CC3FE2DE /* UIDeviceExtension.framework */; };
B768E2734C442696E91382AF2C84C679 /* AHServiceRouter-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C3BD9F1119ACDB349985366C2E49D388 /* AHServiceRouter-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
BBE968224FA22F6A53894F2B8979C2BE /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3485D1EBA0FBFCE1CC997E48560F2DB /* KeychainAccess-dummy.m */; };
BC48168348A03D7EF4C98FA28A55385C /* Pods-AHFMFeatureManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EA63203345EDC0EBB83B876524B85D17 /* Pods-AHFMFeatureManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BCF648AACFED8FF77C8583DFE4061BDA /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CE770DEBF2158C892C02748387FA428 /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C053DA80C910B54F14073FCD5FDFE418 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7304F6E63D2ED5DEE9FFB2F1A66D13C2 /* SessionDelegate.swift */; };
C1EBF8CE1C69DE2C1C450325344F2878 /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB2AA7DD75B1C32B9DAB48DBCE9322D1 /* Migration.swift */; };
CE661C7056D30B28D478D7AA00FEA05A /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = B89ADD9AE8C5335E48E59D3A45446838 /* Timeline.swift */; };
D05721BDC9695ADC12510F22055446F8 /* AHFMModuleManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD506348CDAD1CA0FAC8316F0F7F3CBA /* AHFMModuleManager.swift */; };
D1BC0C9BF05B65CAF222AC33FB3D65E3 /* Migrator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EAD43DF1C3CF2157879309C0BF261F1 /* Migrator.swift */; };
D27966F9686FFB5F3146138888917A50 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7383228A051E25D88AF165CB1D926199 /* Result.swift */; };
D64FE85AC3C06F7D41D9FE1CD85B9B03 /* AHFMEpisodeHistory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FDCC909AD8FD26D507B3598882856FA /* AHFMEpisodeHistory.swift */; };
D7276157FDCDD5B5F24759193CD48890 /* AHFMBottomPlayerServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD12A4106276D2F8B469529629BED946 /* AHFMBottomPlayerServices.framework */; };
D97A02594385F188100C50EF3544CCAC /* AHFMServices-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C298068ED5BAE51F34E0CAA99257702 /* AHFMServices-dummy.m */; };
DB1F3924384E944A23B58B1CE9CA2BBF /* AHKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1235AFD9D6164B77D0D7CD4794C42DA0 /* AHKeychain.swift */; };
DCF03131CFBEEB885E554E82C152F459 /* AHFMNetworking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E65C445365EA88227B147DF396030AB /* AHFMNetworking.swift */; };
DF749BFF36930372947AFA7640A41BC9 /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFD4E8C2BC0885BA59C933070D07E5C /* AHFMServices.framework */; };
E3A59E60DABAB10E2F6EC8452AADECAE /* UIDevice+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EBEA48132936D79FB7A43FE06143E5C /* UIDevice+Extension.swift */; };
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
E5886DD5E48BD020E404D8420CF0B8F1 /* AHFMFeatureServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A4BCBCD789D6B426CE727649C4D758D3 /* AHFMFeatureServices.framework */; };
E886601C65F6A7AFF40781123E84556E /* SwiftyJSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FAF15E97DB91250699F0AA95583A8F1 /* SwiftyJSON.swift */; };
EB1CC0D24A92F96012FDE2F422FC6BFF /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CBC53E2ACC3878059EDC45B7D777EF2 /* ParameterEncoding.swift */; };
EBB0B36F14342B1132D3C4C0A19BAB08 /* SwiftyJSON-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25D2F17AFB721228FE7C26AF95FBC49B /* SwiftyJSON-dummy.m */; };
ED74D6C8098DA3FBDE71F9F2C3B4343A /* AHFMServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EFD4E8C2BC0885BA59C933070D07E5C /* AHFMServices.framework */; };
ED906584E67D451A2730B869460475E4 /* AHFMShowPageServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491434F47D6D22442FBCAB78D130BFF7 /* AHFMShowPageServices.swift */; };
EDE8DFD4BA65CF229ADDC01F3A38DFA2 /* OAuth2Handler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3A7F311D60EF715F08C54AB7AB6F0B9 /* OAuth2Handler.swift */; };
F1CC403B475A55892913D014B94E6EB3 /* SwiftyJSON-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD5019F6D6F251B45F5FB6B0BDE6AA2 /* SwiftyJSON-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F6278E30A7BE8BCF316207BCC33563DF /* AHDataModel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11D52830C228A621F8C23469A2E974F7 /* AHDataModel.framework */; };
F688ABFECC1E0CD24B44E144A0911673 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */; };
F7C2B26233D486908A223D7AD91321E7 /* AHFMServices-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 699E3E0FCBA72CDC99032705D38DD051 /* AHFMServices-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FB7F6146FB91963D61AFA6DABAAF3150 /* AHDataModel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A37CCF71E92D0237800F798DB41C59 /* AHDataModel-dummy.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
008373B5FEA57E2EA5BE27F61C293BCF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
0284ACD022C1AD8F8E191365DDBD4E7E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
03D25E6A390F52A359A2DCDD28E3C709 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
131B0E35D91F664FEB0FD52A1AAFB6F9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E1F0AFE0611A365CFF26B61C42417973;
remoteInfo = AHFMFeatureManager;
};
1A2B263487D5350E0C10436AEC799D56 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
242D98F1FF9A06CF7A443A582DD28774 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
2CC24109141AEAAE7D8074C5FB5A75DF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
2FC3994362ABD812F3AECC47F55555B1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E7E3CCD45B31C8CBE20DB257EB077944;
remoteInfo = KeychainAccess;
};
3332D73BB940F7A42FE34938957C406C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = ED502015755919A139C59C7E499296E5;
remoteInfo = AHDataModel;
};
3FAB9E5F044F6247BD9C206EE59D532A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
4ECC518AA677043CD5B6433D67646BE3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
53C54A7DE3B6BA1F7C805FCC7669B442 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B9117A807B1E00C65967A9FF41056264;
remoteInfo = AHServiceRouter;
};
68AB3B08A454222A6BB0BD771FCC7EB8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 48F43B51EC00537EE7C4CCEE25EA4179;
remoteInfo = Alamofire;
};
6F570D265F3E0EAF6F18BB64CA9F5F14 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E7E3CCD45B31C8CBE20DB257EB077944;
remoteInfo = KeychainAccess;
};
722F436748973F1AF3C8F1537804FABE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DCEF86D4BA30CB6EB552645ED7CC3198;
remoteInfo = AHFMFeatureServices;
};
746CEC37D4E804DC9DF7746CC2C4F32E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
76EDB956768CFDA3500FA7A947E06388 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B9117A807B1E00C65967A9FF41056264;
remoteInfo = AHServiceRouter;
};
7B9C102208F5DC0E920EB82C5BA39FE3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6E5DCEC9CDB2238DF1998012014278E8;
remoteInfo = AHFMShowPageServices;
};
7E1633706E91FC6D0F69806C94898071 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
8693518040065628D52B77B5A35B43BC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 90FFACD9ED27711955DE37F535F1ABA2;
remoteInfo = AHFMModuleManager;
};
889D4ECA66800ADF179165C171BC36EE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
894D2CB0409C1DDE662EFB72255B089E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8C1EE9091653098E2BCC00F7B1FC00DB;
remoteInfo = AHFMBottomPlayerServices;
};
8D21CBC9F35EDF567AE06BF2EFB5C4B1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 48F43B51EC00537EE7C4CCEE25EA4179;
remoteInfo = Alamofire;
};
8F80752EDCFA399AC8B04CEFF938600D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DCEF86D4BA30CB6EB552645ED7CC3198;
remoteInfo = AHFMFeatureServices;
};
905A49E95C67C635363CD2274B0AB47C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DC6434385E58C47B3D9AFEEFCA3C083F;
remoteInfo = AHFMDataTransformers;
};
9934A7C4BD78F6B40F6688A8FB350AB8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 092D0A40D6045DE75C3E46BC3B97370D;
remoteInfo = AHFMDataCenter;
};
A689A4CEB848298BF354E29ED8B7A300 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FEF2EA712C16F4472926FAB68E1BAC2F;
remoteInfo = AHFMNetworking;
};
AD16781D10BA5B16DEFBBCBF119315AB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 48F43B51EC00537EE7C4CCEE25EA4179;
remoteInfo = Alamofire;
};
B38FD1D839D19AED00CFF6DA17F0DFFE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
B84D7981720AC2F9C781716586B37771 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FEF2EA712C16F4472926FAB68E1BAC2F;
remoteInfo = AHFMNetworking;
};
BB73198F8360BD42CBF43F0C9022607D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6E5DCEC9CDB2238DF1998012014278E8;
remoteInfo = AHFMShowPageServices;
};
C058C6D75C71BDF474C958F944F5F2C9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 816374D115E6FB620EA7042CF7C05739;
remoteInfo = SwiftyJSON;
};
C8C06BE68F4CF61719FE5731571F1999 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 90FFACD9ED27711955DE37F535F1ABA2;
remoteInfo = AHFMModuleManager;
};
CA45B68DB5AE9E039CD6BBAC049B6836 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = E7E3CCD45B31C8CBE20DB257EB077944;
remoteInfo = KeychainAccess;
};
DCA956212719BA4862A837BB2548479D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B6B749285B2BCE20FE45EF0783729029;
remoteInfo = AHFMServices;
};
E2AC30B0D1238BD02D6930A332F76CC3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
F8BE4C34502CDFC01DB0F0BC5B6E32EC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 820131156757CAB66181ACAEE457B109;
remoteInfo = UIDeviceExtension;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
00326B9F95BFECDDC75445C2BE027FF7 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
014E6F2552A482FCB4053650E51109ED /* AHFMModuleManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMModuleManager.xcconfig; sourceTree = "<group>"; };
016C926F6DA6DEDB2BC5F6F34012B911 /* AHFMBottomPlayerServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMBottomPlayerServices-dummy.m"; sourceTree = "<group>"; };
03EE6F0887DC9BCED9772CAB4DC572E6 /* Pods-AHFMFeatureManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMFeatureManager_Example.release.xcconfig"; sourceTree = "<group>"; };
05E0CF7A21D3EB487DBF4662C6438F93 /* AHFMFeatureManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMFeatureManager-dummy.m"; sourceTree = "<group>"; };
0923FE7B5621039EC960B118929A1F00 /* AHFMFeatureManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMFeatureManager-umbrella.h"; sourceTree = "<group>"; };
0A22BD45261EF97677D47ED931E70D3B /* Pods-AHFMFeatureManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMFeatureManager_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
0C4F0D50CE3FC23041D712083FF0EF9A /* AHFMShowPageServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-prefix.pch"; sourceTree = "<group>"; };
0D944FB5FD180D9819AAF8FD2474E719 /* AHFMDataTransformers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-prefix.pch"; sourceTree = "<group>"; };
11391651EC1DF17ECCCA04956E70002F /* AHServiceRouter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-prefix.pch"; sourceTree = "<group>"; };
11D52830C228A621F8C23469A2E974F7 /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1235AFD9D6164B77D0D7CD4794C42DA0 /* AHKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHKeychain.swift; path = AHFMNetworking/Classes/AHKeychain.swift; sourceTree = "<group>"; };
15DA475EBCF7BD3B3670C3084D89F7BE /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
174C7E302C9340EA20AFCAECC065729F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
17511966F3CABDB97E08CF5AD5E86FE7 /* AHFMServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMServices.swift; path = AHFMServices/Classes/AHFMServices.swift; sourceTree = "<group>"; };
1A41E27F14F7B2FB80FA20CA56964685 /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1B8F1CF6788899A58C2DBA793C8DC1EE /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1C21CEC6F07484B15A528CE65675D6FE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1D71EE343078DED1995896FD985AF2E7 /* AHFMNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMNetworking.modulemap; sourceTree = "<group>"; };
1E20323DBF5870EE1DFC3607B3B6C781 /* AHFMFeatureManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMFeatureManager-prefix.pch"; sourceTree = "<group>"; };
1E70F29E51DBA7B512DD2C6F4E05A87B /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
20E80E80B5E8DBFAE5F975165134C724 /* AHDataModelQuery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModelQuery.swift; path = AHDataModel/Classes/AHDataModelQuery.swift; sourceTree = "<group>"; };
216936694A788DC9F7D4DBFB7ECA5BBA /* AHDBColumnInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDBColumnInfo.swift; path = AHDataModel/Classes/AHDBColumnInfo.swift; sourceTree = "<group>"; };
23C9582DD43169BD8462EEE25DA3A8D4 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
25A536BAE770018E47613E2328D84D06 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
25D2F17AFB721228FE7C26AF95FBC49B /* SwiftyJSON-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyJSON-dummy.m"; sourceTree = "<group>"; };
290A66DC3310A33AD0E390063661C11E /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2A026CCA2849830A9BDE0F5A3AA1C636 /* AHFMFeatureManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AHFMFeatureManager.swift; sourceTree = "<group>"; };
2B2AAABFAB30B2D30617D00FB9666B40 /* AHFMFeatureManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMFeatureManager.modulemap; sourceTree = "<group>"; };
2D17E51714FE3F3621A5639D36C7EE4A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2E65C445365EA88227B147DF396030AB /* AHFMNetworking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMNetworking.swift; path = AHFMNetworking/Classes/AHFMNetworking.swift; sourceTree = "<group>"; };
2EAD43DF1C3CF2157879309C0BF261F1 /* Migrator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migrator.swift; path = AHDataModel/Classes/Migrator.swift; sourceTree = "<group>"; };
2EBEA48132936D79FB7A43FE06143E5C /* UIDevice+Extension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDevice+Extension.swift"; path = "UIDeviceExtension/Classes/UIDevice+Extension.swift"; sourceTree = "<group>"; };
31F44FBCFB8669B6656A95135FF85191 /* AHFMFeatureServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMFeatureServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
32E374BFCF31CFA0B07632BFF5B21273 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
39577E905D96878D0F2FA5A76976B3F6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3ADC556469E3DA0973BCF751E0A3DF4E /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3C298068ED5BAE51F34E0CAA99257702 /* AHFMServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMServices-dummy.m"; sourceTree = "<group>"; };
3CE770DEBF2158C892C02748387FA428 /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
3E641075761DDCA6ED843D661AFC5026 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3F045F2019A00F954C07C6B439E90790 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
41EFD8C8EB0758B93B722937A11D8320 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
442488A7864A522ED765826EE68D50BC /* AHFMShowPageServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMShowPageServices-umbrella.h"; sourceTree = "<group>"; };
443EFD3F4CC3D34CD134AC4D5A4F96F2 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
44FD1EDC17BF9654425F7AF1B1817D1F /* AHDataModel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHDataModel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
45F907492B7D2D62725B56BBF94BE134 /* AHDB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDB.swift; path = AHDataModel/Classes/AHDB.swift; sourceTree = "<group>"; };
46C7979A58F26EDA84D70C9E774D4A69 /* SwiftyJSON-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-prefix.pch"; sourceTree = "<group>"; };
48BF9F6944EB72C022A247DFF11A11A3 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
491434F47D6D22442FBCAB78D130BFF7 /* AHFMShowPageServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowPageServices.swift; path = AHFMShowPageServices/Classes/AHFMShowPageServices.swift; sourceTree = "<group>"; };
4BC81F08700C07599F8DE45FF1089201 /* AHFMEpisodeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeTransform.swift; path = AHFMDataTransformers/Classes/AHFMEpisodeTransform.swift; sourceTree = "<group>"; };
4F10FE503BBBDBDE70350B00EB5ADEBB /* AHDataModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDataModel.swift; path = AHDataModel/Classes/AHDataModel.swift; sourceTree = "<group>"; };
505A2B352F01255BCCBEA28AB6C75637 /* AHFMNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
516A20E8300D1A63113BB6CF977F50D6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
554AFF12496FE66AF67328B2CAD577F7 /* UIDeviceExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-prefix.pch"; sourceTree = "<group>"; };
57DA107902512FB6BA98951E556F48D4 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
5952AB2FE856F52324D90AB1787FAFED /* AHFMFeatureServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMFeatureServices-prefix.pch"; sourceTree = "<group>"; };
5ABBC3510B8E8D952E626B3AB53CBE1D /* AHNetworkConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHNetworkConstants.swift; path = AHFMNetworking/Classes/AHNetworkConstants.swift; sourceTree = "<group>"; };
5BE943E8820DCF4CF0A9410DBDCDA4F7 /* AHFMNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-prefix.pch"; sourceTree = "<group>"; };
5C31FFC50BF18FFD920599C49A25B5E0 /* AHFMDataCenter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-prefix.pch"; sourceTree = "<group>"; };
5C7923A23FB3B706DE40F86BF97F7FA4 /* AHFMBottomPlayerServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-umbrella.h"; sourceTree = "<group>"; };
6121192B18A015BE7D62FD94EDA16056 /* AHFMDataTransformers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataTransformers-dummy.m"; sourceTree = "<group>"; };
61225C6D59609C6A3A64C70EF61501AA /* AHFMBottomPlayerServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMBottomPlayerServices.modulemap; sourceTree = "<group>"; };
699E3E0FCBA72CDC99032705D38DD051 /* AHFMServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-umbrella.h"; sourceTree = "<group>"; };
6A5601B46098187EC09E070AC7827674 /* Pods-AHFMFeatureManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AHFMFeatureManager_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
6C23BF0846636422F60A8BD71E3DA352 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6F1E956CD51BE2A32D7F86BD5EF473FB /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
70F382D526F3C6CD8371163EB7A90DF6 /* Pods_AHFMFeatureManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AHFMFeatureManager_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7256667E74D15172DE607296AB63F386 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7304F6E63D2ED5DEE9FFB2F1A66D13C2 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
7383228A051E25D88AF165CB1D926199 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
75A6E9C1D20EDA91CF25172C62079AE2 /* AHFMFeatureServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMFeatureServices.swift; path = AHFMFeatureServices/Classes/AHFMFeatureServices.swift; sourceTree = "<group>"; };
76DB7A61809284A025280CCB4E0A8F08 /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7750BC47CA0163398197C3070E8B5DC0 /* AHFMShowPageServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMShowPageServices-dummy.m"; sourceTree = "<group>"; };
781B8C7B26738B1F94B084CD77C07645 /* AHFMDataCenter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMDataCenter.swift; path = AHFMDataCenter/Classes/AHFMDataCenter.swift; sourceTree = "<group>"; };
7A040B62525FEEE07E2E1BD049AAE974 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
7D6D2AD38A574F71E2A77F5E4C49D543 /* AHFMFeatureServices-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMFeatureServices-dummy.m"; sourceTree = "<group>"; };
7EA2E5ECB820A54EBE1612D111C81828 /* AHFMServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMServices-prefix.pch"; sourceTree = "<group>"; };
7EB98821E12EC6C8E125221563FDD1BE /* AHFMDataTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7F28DE966A96477463A4B972861E531B /* Pods-AHFMFeatureManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMFeatureManager_Tests.debug.xcconfig"; sourceTree = "<group>"; };
81CC5DA6F9E640F0CA2F4F92235F6C03 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8233C79FC53A09F647387BB1D2CEAF3C /* AHFMModuleManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMModuleManager.modulemap; sourceTree = "<group>"; };
84A39DF7AD747A180AAD249036E76645 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
85DD976090330AB99EC5AD9458784F8A /* AHDataModel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-prefix.pch"; sourceTree = "<group>"; };
86199A21B1624DBB1BD87651FAFBA61B /* UIDeviceExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDeviceExtension-umbrella.h"; sourceTree = "<group>"; };
875D8B4B377BC1804CE5E9F7597B6C38 /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
87CC20C9670EA5E45AC820E627DBC39D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
88FA9A149E4C57E450E49EC4F55C0E5C /* Pods-AHFMFeatureManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMFeatureManager_Example.debug.xcconfig"; sourceTree = "<group>"; };
89E1A1A66526AC6B3FB0116A8E6A0F13 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8A5C4602CD07033AFFC2BDEEAD09AAD3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8BC04BD99D70E3786DE15A9EF997035B /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
8CBC53E2ACC3878059EDC45B7D777EF2 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
8EFD4E8C2BC0885BA59C933070D07E5C /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8F7378DF95BD7208CD45098DA9A3F137 /* Pods-AHFMFeatureManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMFeatureManager_Tests-dummy.m"; sourceTree = "<group>"; };
8FAF15E97DB91250699F0AA95583A8F1 /* SwiftyJSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyJSON.swift; path = Source/SwiftyJSON.swift; sourceTree = "<group>"; };
8FB720A01021341191E7425740418873 /* UIDeviceExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIDeviceExtension-dummy.m"; sourceTree = "<group>"; };
8FDCC909AD8FD26D507B3598882856FA /* AHFMEpisodeHistory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeHistory.swift; path = AHFMDataCenter/Classes/AHFMEpisodeHistory.swift; sourceTree = "<group>"; };
9055CD22986DC5F8F0029FD355A10CA9 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
908708617A8BF2383961CC30F2147AB7 /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
9223FFBF4F0B6B344707ACAE884EC3EE /* Pods-AHFMFeatureManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMFeatureManager_Example-acknowledgements.plist"; sourceTree = "<group>"; };
923AFC38A510020B03C72E3F726AC1E0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
92E11360783A5A66CBF0659CBC0CB18C /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
93B4C40346BA1968F8BCF22C9FF4CD75 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
9440B54DAB1FF7F7372AEB5D1E41D742 /* UIDeviceExtension.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UIDeviceExtension.xcconfig; sourceTree = "<group>"; };
95950EF3D2DF555FF37BD586E848B0F3 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
95BEF2DD72D9E07E1FE159F8F54000FE /* Pods-AHFMFeatureManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMFeatureManager_Tests-frameworks.sh"; sourceTree = "<group>"; };
9780D27A4A8D1A0CF435920E4F953E5B /* AHFMDataCenter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMDataCenter-dummy.m"; sourceTree = "<group>"; };
99E3C2791191712A8F6B09E8BCC654A1 /* AHDataModel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHDataModel-umbrella.h"; sourceTree = "<group>"; };
9DC52877EB414D07E97F4EAD72915BDD /* SwiftyJSON.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftyJSON.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9F4BEDB4530321A04BDEFF3F48158165 /* AHFMShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShow.swift; path = AHFMDataCenter/Classes/AHFMShow.swift; sourceTree = "<group>"; };
9F6B9EB197C31F254BB4B882722BE1D0 /* Pods-AHFMFeatureManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AHFMFeatureManager_Example-dummy.m"; sourceTree = "<group>"; };
A09D9FEE2FB81FA9E1FCA820D3966A27 /* AHFMBottomPlayerServices-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMBottomPlayerServices-prefix.pch"; sourceTree = "<group>"; };
A2BDA0BDE1B9BCF0AC4AA460E8E383CC /* AHFMFeatureServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMFeatureServices.modulemap; sourceTree = "<group>"; };
A2FEE0C51E6F4295921936C43ED107B3 /* Pods-AHFMFeatureManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMFeatureManager_Example-frameworks.sh"; sourceTree = "<group>"; };
A37703DD9DF89C9B5E150FEEC8D426DF /* AHFMShowPageServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMShowPageServices.modulemap; sourceTree = "<group>"; };
A4BCBCD789D6B426CE727649C4D758D3 /* AHFMFeatureServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMFeatureServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A577A3BB12DA1ABADC6A54095A31B80D /* Pods-AHFMFeatureManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMFeatureManager_Example-resources.sh"; sourceTree = "<group>"; };
A5A56E6F59DF86FECD22C7DD93E641FD /* AHFMShowPageServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMShowPageServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A796C85BF82F0CCBE3C63E5D110D233A /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
A81C009CE3F2A17FABE100BB7B76A7E2 /* AHFMSubscribedShow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMSubscribedShow.swift; path = AHFMDataCenter/Classes/AHFMSubscribedShow.swift; sourceTree = "<group>"; };
A8F91FBE0364FE31735C901DB39DFEBB /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
A94C620AB7CA85E7087F95111C1613B9 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
A9AEC0B54CE7C3F7BCAE77ABBE71FAC3 /* AHFMEpisodeInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisodeInfo.swift; path = AHFMDataCenter/Classes/AHFMEpisodeInfo.swift; sourceTree = "<group>"; };
AB10E3AE5CAEC21B94EE9EBC7FC5DBF6 /* Manager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Manager.swift; sourceTree = "<group>"; };
AC78A3F407E19A25BE83D6CC623C662C /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
AD820EA7266333FE1C772ADDA03946C9 /* SwiftyJSON.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftyJSON.modulemap; sourceTree = "<group>"; };
AF82BDB22B873BBA60632234CFF6C087 /* Pods-AHFMFeatureManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AHFMFeatureManager_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
B1C9F36EC29EF17C91EEB564EEDE1F31 /* AHFMModuleManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-umbrella.h"; sourceTree = "<group>"; };
B22DF4ACC87029C7D524544D330BAD90 /* AHDataModel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHDataModel.modulemap; sourceTree = "<group>"; };
B341C070E76BB745022874BE22A2569E /* AHFMBottomPlayerServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMBottomPlayerServices.xcconfig; sourceTree = "<group>"; };
B61E6D2856D3B0C263D3B245710E3780 /* AHFMFeatureServices-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMFeatureServices-umbrella.h"; sourceTree = "<group>"; };
B62F47AFE9F9FC9E42DD8A52EC2CCED5 /* Pods_AHFMFeatureManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AHFMFeatureManager_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B637E74DFE38B1727FA10927760AB7AD /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Alamofire.modulemap; sourceTree = "<group>"; };
B72FCDE7345E81CB8A4772F64EFAA05C /* AHFMServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMServices.xcconfig; sourceTree = "<group>"; };
B89ADD9AE8C5335E48E59D3A45446838 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
BB74D2D12CCCD80D8E9967AB586713AD /* AHFMDataCenter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMDataCenter.modulemap; sourceTree = "<group>"; };
BC1A9F8B06D2A8D29CE3CE045DFFD092 /* Pods-AHFMFeatureManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AHFMFeatureManager_Example.modulemap"; sourceTree = "<group>"; };
BD506348CDAD1CA0FAC8316F0F7F3CBA /* AHFMModuleManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMModuleManager.swift; path = AHFMModuleManager/Classes/AHFMModuleManager.swift; sourceTree = "<group>"; };
C0D95AC7074444731870B4202EB2BE0B /* Pods-AHFMFeatureManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMFeatureManager_Tests-umbrella.h"; sourceTree = "<group>"; };
C17D0136E858D8B754B29A7B8AD4B9CD /* AHFMServices.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMServices.modulemap; sourceTree = "<group>"; };
C1CFFF3EF81DB071E00894A2FE6486D4 /* AHFMDataCenter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataCenter-umbrella.h"; sourceTree = "<group>"; };
C3BD9F1119ACDB349985366C2E49D388 /* AHServiceRouter-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHServiceRouter-umbrella.h"; sourceTree = "<group>"; };
C506FF232AD5F738756E80066BB48A07 /* Pods-AHFMFeatureManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AHFMFeatureManager_Tests.modulemap"; sourceTree = "<group>"; };
C5EF2810D2B01339A4FCD4C2945B42A6 /* AHFMFeatureServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMFeatureServices.xcconfig; sourceTree = "<group>"; };
C7123E01BC00AC592A932988847FACA0 /* AHServiceRouter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHServiceRouter-dummy.m"; sourceTree = "<group>"; };
C76D5C56766D366FB4280FFEDF1510C4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C79850EFF449907F6E48B2892119D845 /* AHFMDataTransformers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHFMDataTransformers.modulemap; sourceTree = "<group>"; };
C7A107C02D9772DA4FF7F674C3CB510A /* AHFMNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMNetworking.xcconfig; sourceTree = "<group>"; };
C8FAFBD5ED980216EC0CA009A0F7CB1F /* UIDeviceExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = UIDeviceExtension.modulemap; sourceTree = "<group>"; };
C96DC40D2FC4968932F5424FA2646EAC /* AHDatabase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHDatabase.swift; path = AHDataModel/Classes/AHDatabase.swift; sourceTree = "<group>"; };
CD2FDD5337AF08230978738979BC2257 /* AHFMShowPageServices.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMShowPageServices.xcconfig; sourceTree = "<group>"; };
CE761174E32E92860EB72D3073E5BB02 /* AHServiceRouter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHServiceRouter.swift; path = AHServiceRouter/Classes/AHServiceRouter.swift; sourceTree = "<group>"; };
D000BAAC122C9AEDBDEC59886E17152E /* AHFMFeatureManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMFeatureManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D3485D1EBA0FBFCE1CC997E48560F2DB /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
D6A37CCF71E92D0237800F798DB41C59 /* AHDataModel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHDataModel-dummy.m"; sourceTree = "<group>"; };
D7FDBE7B166E5035D0A4268A2C77D5BA /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
D952BDC59DC0A4BC8A95EAEF0F2FD96C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DA3D636DFA33DC86F973B23831088B32 /* AHFMNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMNetworking-umbrella.h"; sourceTree = "<group>"; };
DB2AA7DD75B1C32B9DAB48DBCE9322D1 /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = AHDataModel/Classes/Migration.swift; sourceTree = "<group>"; };
DD076FD23476940E2DAC0DEDE2F0010A /* AHFMShowTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMShowTransform.swift; path = AHFMDataTransformers/Classes/AHFMShowTransform.swift; sourceTree = "<group>"; };
DD62902EF687F9843371CFE9CEF91DF5 /* AHFMModuleManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMModuleManager-prefix.pch"; sourceTree = "<group>"; };
DDD5019F6D6F251B45F5FB6B0BDE6AA2 /* SwiftyJSON-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyJSON-umbrella.h"; sourceTree = "<group>"; };
DEA654609D4534A335C7148C24AD3585 /* AHFMModuleManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMModuleManager-dummy.m"; sourceTree = "<group>"; };
DEB1ED0B6A99FD6A265369E219A58978 /* Pods-AHFMFeatureManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AHFMFeatureManager_Tests-resources.sh"; sourceTree = "<group>"; };
E0B55DC00BC9B31E2FE1F02A11BA4F15 /* AHFMDataCenter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataCenter.xcconfig; sourceTree = "<group>"; };
E1677E33D6D52F93FC9AE6E882233A5B /* AHFMDataCenter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMDataCenter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E29ED4D612738F1A37F9E2A1A3EF001B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E39BE975997C7372624042A2E5B82AF3 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E3A7F311D60EF715F08C54AB7AB6F0B9 /* OAuth2Handler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OAuth2Handler.swift; path = AHFMNetworking/Classes/OAuth2Handler.swift; sourceTree = "<group>"; };
E417792D4B2C3E02D991C7BF9EE48C6E /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
E51A5A63C266E4E0705EA3EF2677A2EA /* AHFMEpisode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMEpisode.swift; path = AHFMDataCenter/Classes/AHFMEpisode.swift; sourceTree = "<group>"; };
EA53E8111BF3A04E00D92024CC3FE2DE /* UIDeviceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIDeviceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EA63203345EDC0EBB83B876524B85D17 /* Pods-AHFMFeatureManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AHFMFeatureManager_Example-umbrella.h"; sourceTree = "<group>"; };
EADBE81EFF6F2B9425998D7033B6CCA0 /* Pods-AHFMFeatureManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AHFMFeatureManager_Tests.release.xcconfig"; sourceTree = "<group>"; };
EBC9151E8C9BAEDF3E5874C8089768D0 /* AHServiceRouter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHServiceRouter.xcconfig; sourceTree = "<group>"; };
EE174543C1DAD90A9C3A525ECA710145 /* AHFMDataTransformers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AHFMDataTransformers-umbrella.h"; sourceTree = "<group>"; };
EE209841DC6F3A9478555F34987B2A65 /* AHFMFeatureManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMFeatureManager.xcconfig; sourceTree = "<group>"; };
EE938854F92E2E01F38A8E62994CD5B4 /* AHFMBottomPlayerServices.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AHFMBottomPlayerServices.swift; path = AHFMBottomPlayerServices/Classes/AHFMBottomPlayerServices.swift; sourceTree = "<group>"; };
EF33AA0CB0E4AC24FACC2C2AE1901B52 /* AHServiceRouter.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AHServiceRouter.modulemap; sourceTree = "<group>"; };
F25103B7A5DF837864D9F9DE7155B316 /* AHFMServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F2756D8531A0EB10F719BAD7384047A8 /* AHFMNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AHFMNetworking-dummy.m"; sourceTree = "<group>"; };
F2A20E09E3269FDBA1E973296488CA92 /* AHFMModuleManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMModuleManager.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F4B5BCA241C4BC9917D49C674489A6C3 /* AHFMDataTransformers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHFMDataTransformers.xcconfig; sourceTree = "<group>"; };
F513BD950254F2C83A477BFFBB542773 /* AHServiceRouter.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHServiceRouter.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F963F3FE9C7EC7E42E9824D25C66E4D1 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
FA4595AD83E8C0C5765CE134EDC238C4 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
FD12A4106276D2F8B469529629BED946 /* AHFMBottomPlayerServices.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AHFMBottomPlayerServices.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FF309809740BFA51E82F5E85055D73D1 /* AHDataModel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AHDataModel.xcconfig; sourceTree = "<group>"; };
FF7C6A25D17E9141CE7D2E2693DF7586 /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
FFB96867B7D32C2117A706D013FC746F /* SwiftyJSON.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyJSON.xcconfig; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0A5A78ACDA6012F1E4FA98667B7F4E0F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F688ABFECC1E0CD24B44E144A0911673 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
10D942BCA420589087A16144B2124E95 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E48A0477E0D9A1A5155398F6650E7021 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
1C7C8AD932546CD59D981BCFCB0C53A9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
48B4CE53D47D4EC8819FC2233CFA2F83 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
34485522599D3F971EDDFD29238B0371 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9E552BAF5EAB88F8EAE183DEE09F726F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3B79C91C85C1F5AEA0330E96DBA67D51 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B1D0CB89982FC8DAB74254794B6B8DFE /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3FFC3D74762362CE78F40FFFCB559E0B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F6278E30A7BE8BCF316207BCC33563DF /* AHDataModel.framework in Frameworks */,
D7276157FDCDD5B5F24759193CD48890 /* AHFMBottomPlayerServices.framework in Frameworks */,
32DCAB8845CDD35DF424592150ED50C3 /* AHFMDataCenter.framework in Frameworks */,
929B4A9A832AA81E3B983683BF21D117 /* AHFMDataTransformers.framework in Frameworks */,
E5886DD5E48BD020E404D8420CF0B8F1 /* AHFMFeatureServices.framework in Frameworks */,
252AD8ED6624484BE807D1CD476610D3 /* AHFMModuleManager.framework in Frameworks */,
B44733092257EEE594217AE508B825BB /* AHFMNetworking.framework in Frameworks */,
DF749BFF36930372947AFA7640A41BC9 /* AHFMServices.framework in Frameworks */,
5EA57901FC70C8F345CF0EA2A678E05D /* AHFMShowPageServices.framework in Frameworks */,
2F6BE6F75A99AC93F549F44D0B9FD8AE /* AHServiceRouter.framework in Frameworks */,
0DCF48E12E885346E3F32A5696145731 /* Alamofire.framework in Frameworks */,
882F4142A88258C63F8F9BAAAF6E8FE4 /* Foundation.framework in Frameworks */,
1A56977044DFF5B48AC16124DD352E6B /* KeychainAccess.framework in Frameworks */,
57E9E0E4715A325607182C84777DBB09 /* SwiftyJSON.framework in Frameworks */,
0EB444C3F07B3D8B2F28A40498CD848C /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
75F48361C43A211822AEB70CC40A0E2F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1BCB9EA428FB59F6DAF3AC5D09769A2D /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7851958F5EC9780AC724E018F7F576F9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8B7958B8BC5449893663F717E45AA349 /* Alamofire.framework in Frameworks */,
2276441EDC92CDAE54D68D4D6250D573 /* Foundation.framework in Frameworks */,
8A425FD37DC64B6B2E994ED6B7D12C05 /* KeychainAccess.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
80A7AB927155E707AC4DC4A3254B9836 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
9275668FE00E1BB034C511BC2970BC37 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
96A2E1C26B5D8901772CCC8F1210923E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
38304DA23D8DEDC6A4EAF79027221518 /* AHFMServices.framework in Frameworks */,
AC7FA7BB8BA4B69723951F160655BC36 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
9A54F4A594176B3CF7F8CDAA85BB8E0C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AEF3C970AEA56EBC64E3DF58AB0B1917 /* AHFMServices.framework in Frameworks */,
8B31F554EBACB4039929D103045C60BF /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A1ED3E73DAB3AE14378DD6CF1A76AE8C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BAAC4293A822346B1F27573BF927E1BE /* Foundation.framework in Frameworks */,
8A43301A1FD1C5B83B57B60A76DA9886 /* SwiftyJSON.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B6767283118BDF58C5384DEA17BBDF83 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8E357A8575E7F57FAD16D1A2E6C07DC7 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CC94C857FCF6CF66F779649354883F92 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AB2E638C38C54111C700A6E06E3F10AC /* AHDataModel.framework in Frameworks */,
0A53D7B5A76FBFC0FBAB456FD871AD1A /* Foundation.framework in Frameworks */,
B5F0007CEDF8921CF49F6AE64197C442 /* UIDeviceExtension.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DC074E8FFD22022C9286C9531B37C105 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
432463C50099CC4809681B32D0DDEBF1 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F33E2B55D567338F8F39F6684220F412 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ED74D6C8098DA3FBDE71F9F2C3B4343A /* AHFMServices.framework in Frameworks */,
4EEE6F31829B94C057E75C4EAFF2EA70 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F90104E5558E8D6585E110C2D7A7595F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
0DE24BBA949385A1908C8866640A3E0A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
007D8F4DCB0908BC2103EF7E27AAB222 /* AHDataModel */ = {
isa = PBXGroup;
children = (
C96DC40D2FC4968932F5424FA2646EAC /* AHDatabase.swift */,
4F10FE503BBBDBDE70350B00EB5ADEBB /* AHDataModel.swift */,
20E80E80B5E8DBFAE5F975165134C724 /* AHDataModelQuery.swift */,
45F907492B7D2D62725B56BBF94BE134 /* AHDB.swift */,
216936694A788DC9F7D4DBFB7ECA5BBA /* AHDBColumnInfo.swift */,
DB2AA7DD75B1C32B9DAB48DBCE9322D1 /* Migration.swift */,
2EAD43DF1C3CF2157879309C0BF261F1 /* Migrator.swift */,
08449EDC9F28D71FA4F7245FE865C54E /* Support Files */,
);
path = AHDataModel;
sourceTree = "<group>";
};
02287A8FFE7410566D78F9881A92898A /* Support Files */ = {
isa = PBXGroup;
children = (
C17D0136E858D8B754B29A7B8AD4B9CD /* AHFMServices.modulemap */,
B72FCDE7345E81CB8A4772F64EFAA05C /* AHFMServices.xcconfig */,
3C298068ED5BAE51F34E0CAA99257702 /* AHFMServices-dummy.m */,
7EA2E5ECB820A54EBE1612D111C81828 /* AHFMServices-prefix.pch */,
699E3E0FCBA72CDC99032705D38DD051 /* AHFMServices-umbrella.h */,
1C21CEC6F07484B15A528CE65675D6FE /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMServices";
sourceTree = "<group>";
};
075E820DBD1DE381B2C70DE9CE83A6D8 /* AHFMDataTransformers */ = {
isa = PBXGroup;
children = (
4BC81F08700C07599F8DE45FF1089201 /* AHFMEpisodeTransform.swift */,
DD076FD23476940E2DAC0DEDE2F0010A /* AHFMShowTransform.swift */,
51DCF069BD486440B53115CD8770AE99 /* Support Files */,
);
path = AHFMDataTransformers;
sourceTree = "<group>";
};
08449EDC9F28D71FA4F7245FE865C54E /* Support Files */ = {
isa = PBXGroup;
children = (
B22DF4ACC87029C7D524544D330BAD90 /* AHDataModel.modulemap */,
FF309809740BFA51E82F5E85055D73D1 /* AHDataModel.xcconfig */,
D6A37CCF71E92D0237800F798DB41C59 /* AHDataModel-dummy.m */,
85DD976090330AB99EC5AD9458784F8A /* AHDataModel-prefix.pch */,
99E3C2791191712A8F6B09E8BCC654A1 /* AHDataModel-umbrella.h */,
6C23BF0846636422F60A8BD71E3DA352 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHDataModel";
sourceTree = "<group>";
};
0CE0BC93D3D261FFB81EAD0475B6E634 /* Pods-AHFMFeatureManager_Example */ = {
isa = PBXGroup;
children = (
89E1A1A66526AC6B3FB0116A8E6A0F13 /* Info.plist */,
BC1A9F8B06D2A8D29CE3CE045DFFD092 /* Pods-AHFMFeatureManager_Example.modulemap */,
6A5601B46098187EC09E070AC7827674 /* Pods-AHFMFeatureManager_Example-acknowledgements.markdown */,
9223FFBF4F0B6B344707ACAE884EC3EE /* Pods-AHFMFeatureManager_Example-acknowledgements.plist */,
9F6B9EB197C31F254BB4B882722BE1D0 /* Pods-AHFMFeatureManager_Example-dummy.m */,
A2FEE0C51E6F4295921936C43ED107B3 /* Pods-AHFMFeatureManager_Example-frameworks.sh */,
A577A3BB12DA1ABADC6A54095A31B80D /* Pods-AHFMFeatureManager_Example-resources.sh */,
EA63203345EDC0EBB83B876524B85D17 /* Pods-AHFMFeatureManager_Example-umbrella.h */,
88FA9A149E4C57E450E49EC4F55C0E5C /* Pods-AHFMFeatureManager_Example.debug.xcconfig */,
03EE6F0887DC9BCED9772CAB4DC572E6 /* Pods-AHFMFeatureManager_Example.release.xcconfig */,
);
name = "Pods-AHFMFeatureManager_Example";
path = "Target Support Files/Pods-AHFMFeatureManager_Example";
sourceTree = "<group>";
};
11C066AB6CF6DA31A2E195C1BDEA9D92 /* Support Files */ = {
isa = PBXGroup;
children = (
8233C79FC53A09F647387BB1D2CEAF3C /* AHFMModuleManager.modulemap */,
014E6F2552A482FCB4053650E51109ED /* AHFMModuleManager.xcconfig */,
DEA654609D4534A335C7148C24AD3585 /* AHFMModuleManager-dummy.m */,
DD62902EF687F9843371CFE9CEF91DF5 /* AHFMModuleManager-prefix.pch */,
B1C9F36EC29EF17C91EEB564EEDE1F31 /* AHFMModuleManager-umbrella.h */,
516A20E8300D1A63113BB6CF977F50D6 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMModuleManager";
sourceTree = "<group>";
};
1206004F0537399DFB6E3E54D8BCA593 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
0CE0BC93D3D261FFB81EAD0475B6E634 /* Pods-AHFMFeatureManager_Example */,
567FDA097FF49A8B5F0B5A0BA576EFE7 /* Pods-AHFMFeatureManager_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
22D15FF1F9EBABFFB7082D6E7CB4AF1E /* AHFMFeatureManager */ = {
isa = PBXGroup;
children = (
DDF69CFF909829594AD29CD3E7DEAFA2 /* Classes */,
);
path = AHFMFeatureManager;
sourceTree = "<group>";
};
2441E721878972916B51BAE1E70FDEFB /* Frameworks */ = {
isa = PBXGroup;
children = (
11D52830C228A621F8C23469A2E974F7 /* AHDataModel.framework */,
FD12A4106276D2F8B469529629BED946 /* AHFMBottomPlayerServices.framework */,
15DA475EBCF7BD3B3670C3084D89F7BE /* AHFMDataCenter.framework */,
7EB98821E12EC6C8E125221563FDD1BE /* AHFMDataTransformers.framework */,
A4BCBCD789D6B426CE727649C4D758D3 /* AHFMFeatureServices.framework */,
F2A20E09E3269FDBA1E973296488CA92 /* AHFMModuleManager.framework */,
23C9582DD43169BD8462EEE25DA3A8D4 /* AHFMNetworking.framework */,
8EFD4E8C2BC0885BA59C933070D07E5C /* AHFMServices.framework */,
A5A56E6F59DF86FECD22C7DD93E641FD /* AHFMShowPageServices.framework */,
F513BD950254F2C83A477BFFBB542773 /* AHServiceRouter.framework */,
3ADC556469E3DA0973BCF751E0A3DF4E /* Alamofire.framework */,
E39BE975997C7372624042A2E5B82AF3 /* KeychainAccess.framework */,
1B8F1CF6788899A58C2DBA793C8DC1EE /* SwiftyJSON.framework */,
EA53E8111BF3A04E00D92024CC3FE2DE /* UIDeviceExtension.framework */,
5A716BABA8081E1E8A0ECD6C44D17E6E /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
29581E37EA7E110670F1B2FE07593EAA /* AHFMBottomPlayerServices */ = {
isa = PBXGroup;
children = (
EE938854F92E2E01F38A8E62994CD5B4 /* AHFMBottomPlayerServices.swift */,
71CEBA79E09A8E647E650A2C5F28B32F /* Support Files */,
);
path = AHFMBottomPlayerServices;
sourceTree = "<group>";
};
336C49D265CB15D6A7710FDDCD0E5D84 /* AHFMModuleManager */ = {
isa = PBXGroup;
children = (
BD506348CDAD1CA0FAC8316F0F7F3CBA /* AHFMModuleManager.swift */,
11C066AB6CF6DA31A2E195C1BDEA9D92 /* Support Files */,
);
path = AHFMModuleManager;
sourceTree = "<group>";
};
39DA7200A52A86136BDD79F00510A934 /* Support Files */ = {
isa = PBXGroup;
children = (
174C7E302C9340EA20AFCAECC065729F /* Info.plist */,
C8FAFBD5ED980216EC0CA009A0F7CB1F /* UIDeviceExtension.modulemap */,
9440B54DAB1FF7F7372AEB5D1E41D742 /* UIDeviceExtension.xcconfig */,
8FB720A01021341191E7425740418873 /* UIDeviceExtension-dummy.m */,
554AFF12496FE66AF67328B2CAD577F7 /* UIDeviceExtension-prefix.pch */,
86199A21B1624DBB1BD87651FAFBA61B /* UIDeviceExtension-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/UIDeviceExtension";
sourceTree = "<group>";
};
3AF0CDB96B4D51B7102B1FD9C972988F /* Pods */ = {
isa = PBXGroup;
children = (
007D8F4DCB0908BC2103EF7E27AAB222 /* AHDataModel */,
29581E37EA7E110670F1B2FE07593EAA /* AHFMBottomPlayerServices */,
EF214F83364291A9762DC0049BBDF605 /* AHFMDataCenter */,
075E820DBD1DE381B2C70DE9CE83A6D8 /* AHFMDataTransformers */,
B6359DB09A290F24FAF64CA246C298E2 /* AHFMFeatureServices */,
336C49D265CB15D6A7710FDDCD0E5D84 /* AHFMModuleManager */,
CD778B5584BD4D2B431D78CA2D34E57F /* AHFMNetworking */,
62B4161251FFCF88A3C2CAF160AEACD5 /* AHFMServices */,
ECE36CC33EB95D7656F3B14D3721FDAA /* AHFMShowPageServices */,
B674AC0DAD8C8AA94A0D90AA77DD2500 /* AHServiceRouter */,
8EDC3E81537F605A1B70E52EAA1E5CBE /* Alamofire */,
DF63430E27A974D0742DB29F6AD990AE /* KeychainAccess */,
5B1BC16782E596B94ADAB0CE2BACBF28 /* SwiftyJSON */,
8C2151E8903EB49BDF00567E20720411 /* UIDeviceExtension */,
);
name = Pods;
sourceTree = "<group>";
};
40452BE0AA20AC8AF817756DC9534B00 /* Support Files */ = {
isa = PBXGroup;
children = (
B637E74DFE38B1727FA10927760AB7AD /* Alamofire.modulemap */,
25A536BAE770018E47613E2328D84D06 /* Alamofire.xcconfig */,
FA4595AD83E8C0C5765CE134EDC238C4 /* Alamofire-dummy.m */,
92E11360783A5A66CBF0659CBC0CB18C /* Alamofire-prefix.pch */,
48BF9F6944EB72C022A247DFF11A11A3 /* Alamofire-umbrella.h */,
87CC20C9670EA5E45AC820E627DBC39D /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/Alamofire";
sourceTree = "<group>";
};
48044D79444E9CDC9A0820B07CAE825E /* Development Pods */ = {
isa = PBXGroup;
children = (
A5E640C5F882D429BA68D63E80F3D520 /* AHFMFeatureManager */,
);
name = "Development Pods";
sourceTree = "<group>";
};
51DCF069BD486440B53115CD8770AE99 /* Support Files */ = {
isa = PBXGroup;
children = (
C79850EFF449907F6E48B2892119D845 /* AHFMDataTransformers.modulemap */,
F4B5BCA241C4BC9917D49C674489A6C3 /* AHFMDataTransformers.xcconfig */,
6121192B18A015BE7D62FD94EDA16056 /* AHFMDataTransformers-dummy.m */,
0D944FB5FD180D9819AAF8FD2474E719 /* AHFMDataTransformers-prefix.pch */,
EE174543C1DAD90A9C3A525ECA710145 /* AHFMDataTransformers-umbrella.h */,
84A39DF7AD747A180AAD249036E76645 /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMDataTransformers";
sourceTree = "<group>";
};
5669D94B3A27387BB473EE021C8406D2 /* Support Files */ = {
isa = PBXGroup;
children = (
BB74D2D12CCCD80D8E9967AB586713AD /* AHFMDataCenter.modulemap */,
E0B55DC00BC9B31E2FE1F02A11BA4F15 /* AHFMDataCenter.xcconfig */,
9780D27A4A8D1A0CF435920E4F953E5B /* AHFMDataCenter-dummy.m */,
5C31FFC50BF18FFD920599C49A25B5E0 /* AHFMDataCenter-prefix.pch */,
C1CFFF3EF81DB071E00894A2FE6486D4 /* AHFMDataCenter-umbrella.h */,
E29ED4D612738F1A37F9E2A1A3EF001B /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/AHFMDataCenter";
sourceTree = "<group>";
};
567FDA097FF49A8B5F0B5A0BA576EFE7 /* Pods-AHFMFeatureManager_Tests */ = {
isa = PBXGroup;
children = (
D952BDC59DC0A4BC8A95EAEF0F2FD96C /* Info.plist */,
C506FF232AD5F738756E80066BB48A07 /* Pods-AHFMFeatureManager_Tests.modulemap */,
0A22BD45261EF97677D47ED931E70D3B /* Pods-AHFMFeatureManager_Tests-acknowledgements.markdown */,
AF82BDB22B873BBA60632234CFF6C087 /* Pods-AHFMFeatureManager_Tests-acknowledgements.plist */,
8F7378DF95BD7208CD45098DA9A3F137 /* Pods-AHFMFeatureManager_Tests-dummy.m */,
95BEF2DD72D9E07E1FE159F8F54000FE /* Pods-AHFMFeatureManager_Tests-frameworks.sh */,
DEB1ED0B6A99FD6A265369E219A58978 /* Pods-AHFMFeatureManager_Tests-resources.sh */,
C0D95AC7074444731870B4202EB2BE0B /* Pods-AHFMFeatureManager_Tests-umbrella.h */,
7F28DE966A96477463A4B972861E531B /* Pods-AHFMFeatureManager_Tests.debug.xcconfig */,
EADBE81EFF6F2B9425998D7033B6CCA0 /* Pods-AHFMFeatureManager_Tests.release.xcconfig */,
);
name = "Pods-AHFMFeatureManager_Tests";
path = "Target Support Files/Pods-AHFMFeatureManager_Tests";
sourceTree = "<group>";
};
5709C3992618961151515DC2581AE231 /* Support Files */ = {
isa = PBXGroup;
children = (
1D71EE343078DED1995896FD985AF2E7 /* AHFMNetworking.modulemap */,
C7A107C02D9772DA4FF7F674C3CB510A /* AHFMNetworking.xcconfig */,
F2756D8531A0EB10F719BAD7384047A8 /* AHFMNetworking-dummy.m */,
5BE943E8820DCF4CF0A9410DBDCDA4F7 /* AHFMNetworking-prefix.pch */,